30.13/14.11 YES 32.63/14.80 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 32.63/14.80 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 32.63/14.80 32.63/14.80 32.63/14.80 H-Termination with start terms of the given HASKELL could be proven: 32.63/14.80 32.63/14.80 (0) HASKELL 32.63/14.80 (1) LR [EQUIVALENT, 0 ms] 32.63/14.80 (2) HASKELL 32.63/14.80 (3) CR [EQUIVALENT, 0 ms] 32.63/14.80 (4) HASKELL 32.63/14.80 (5) IFR [EQUIVALENT, 0 ms] 32.63/14.80 (6) HASKELL 32.63/14.80 (7) BR [EQUIVALENT, 3 ms] 32.63/14.80 (8) HASKELL 32.63/14.80 (9) COR [EQUIVALENT, 0 ms] 32.63/14.80 (10) HASKELL 32.63/14.80 (11) LetRed [EQUIVALENT, 0 ms] 32.63/14.80 (12) HASKELL 32.63/14.80 (13) NumRed [SOUND, 0 ms] 32.63/14.80 (14) HASKELL 32.63/14.80 (15) Narrow [SOUND, 0 ms] 32.63/14.80 (16) AND 32.63/14.80 (17) QDP 32.63/14.80 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 32.63/14.80 (19) YES 32.63/14.80 (20) QDP 32.63/14.80 (21) QDPSizeChangeProof [EQUIVALENT, 21 ms] 32.63/14.80 (22) YES 32.63/14.80 (23) QDP 32.63/14.80 (24) QDPSizeChangeProof [EQUIVALENT, 185 ms] 32.63/14.80 (25) YES 32.63/14.80 (26) QDP 32.63/14.80 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 32.63/14.80 (28) YES 32.63/14.80 (29) QDP 32.63/14.80 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 32.63/14.80 (31) YES 32.63/14.80 (32) QDP 32.63/14.80 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 32.63/14.80 (34) YES 32.71/14.80 (35) QDP 32.71/14.80 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 32.71/14.80 (37) YES 32.71/14.80 (38) QDP 32.71/14.80 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 32.71/14.80 (40) YES 32.71/14.80 (41) QDP 32.71/14.80 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 32.71/14.80 (43) YES 32.71/14.80 32.71/14.80 32.71/14.80 ---------------------------------------- 32.71/14.80 32.71/14.80 (0) 32.71/14.80 Obligation: 32.71/14.80 mainModule Main 32.71/14.80 module FiniteMap where { 32.71/14.80 import qualified Main; 32.71/14.80 import qualified Maybe; 32.71/14.80 import qualified Prelude; 32.71/14.80 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 32.71/14.80 32.71/14.80 instance (Eq a, Eq b) => Eq FiniteMap a b where { 32.71/14.80 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.71/14.80 } 32.71/14.80 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.71/14.80 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.71/14.80 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.71/14.80 }; 32.71/14.80 32.71/14.80 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 32.71/14.80 addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.71/14.80 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 32.71/14.80 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 32.71/14.80 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 32.71/14.80 32.71/14.80 emptyFM :: FiniteMap b a; 32.71/14.80 emptyFM = EmptyFM; 32.71/14.80 32.71/14.80 findMax :: FiniteMap a b -> (a,b); 32.71/14.80 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 32.71/14.80 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 32.71/14.80 32.71/14.80 findMin :: FiniteMap a b -> (a,b); 32.71/14.80 findMin (Branch key elt _ EmptyFM _) = (key,elt); 32.71/14.80 findMin (Branch key elt _ fm_l _) = findMin fm_l; 32.71/14.80 32.71/14.80 fmToList :: FiniteMap b a -> [(b,a)]; 32.71/14.80 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 32.71/14.80 32.71/14.80 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 32.71/14.80 foldFM k z EmptyFM = z; 32.71/14.80 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.71/14.80 32.71/14.80 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.71/14.80 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.71/14.80 | size_r > sIZE_RATIO * size_l = case fm_R of { 32.71/14.80 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 32.71/14.80 | otherwise -> double_L fm_L fm_R; 32.71/14.80 } 32.71/14.80 | size_l > sIZE_RATIO * size_r = case fm_L of { 32.71/14.80 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 32.71/14.80 | otherwise -> double_R fm_L fm_R; 32.71/14.80 } 32.71/14.80 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.71/14.80 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); 32.71/14.80 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); 32.71/14.80 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; 32.71/14.80 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); 32.71/14.80 size_l = sizeFM fm_L; 32.71/14.80 size_r = sizeFM fm_R; 32.71/14.80 }; 32.71/14.80 32.71/14.80 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 32.71/14.80 mkBranch which key elt fm_l fm_r = let { 32.71/14.80 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.71/14.80 } in result where { 32.71/14.80 balance_ok = True; 32.71/14.80 left_ok = case fm_l of { 32.71/14.80 EmptyFM-> True; 32.71/14.80 Branch left_key _ _ _ _-> let { 32.71/14.80 biggest_left_key = fst (findMax fm_l); 32.71/14.80 } in biggest_left_key < key; 32.71/14.80 } ; 32.71/14.80 left_size = sizeFM fm_l; 32.71/14.80 right_ok = case fm_r of { 32.71/14.80 EmptyFM-> True; 32.71/14.80 Branch right_key _ _ _ _-> let { 32.71/14.80 smallest_right_key = fst (findMin fm_r); 32.71/14.80 } in key < smallest_right_key; 32.71/14.80 } ; 32.71/14.80 right_size = sizeFM fm_r; 32.71/14.80 unbox :: Int -> Int; 32.71/14.80 unbox x = x; 32.71/14.80 }; 32.71/14.80 32.71/14.80 sIZE_RATIO :: Int; 32.71/14.80 sIZE_RATIO = 5; 32.71/14.80 32.71/14.80 sizeFM :: FiniteMap a b -> Int; 32.71/14.80 sizeFM EmptyFM = 0; 32.71/14.80 sizeFM (Branch _ _ size _ _) = size; 32.71/14.80 32.71/14.80 unitFM :: a -> b -> FiniteMap a b; 32.71/14.80 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.71/14.80 32.71/14.80 } 32.71/14.80 module Maybe where { 32.71/14.80 import qualified FiniteMap; 32.71/14.80 import qualified Main; 32.71/14.80 import qualified Prelude; 32.71/14.80 } 32.71/14.80 module Main where { 32.71/14.80 import qualified FiniteMap; 32.71/14.80 import qualified Maybe; 32.71/14.80 import qualified Prelude; 32.71/14.80 } 32.71/14.80 32.71/14.80 ---------------------------------------- 32.71/14.80 32.71/14.80 (1) LR (EQUIVALENT) 32.71/14.80 Lambda Reductions: 32.71/14.80 The following Lambda expression 32.71/14.80 "\keyeltrest->(key,elt) : rest" 32.71/14.80 is transformed to 32.71/14.80 "fmToList0 key elt rest = (key,elt) : rest; 32.71/14.80 " 32.71/14.80 32.71/14.80 ---------------------------------------- 32.71/14.80 32.71/14.80 (2) 32.71/14.80 Obligation: 32.71/14.80 mainModule Main 32.71/14.80 module FiniteMap where { 32.71/14.80 import qualified Main; 32.71/14.80 import qualified Maybe; 32.71/14.80 import qualified Prelude; 32.71/14.80 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 32.71/14.80 32.71/14.80 instance (Eq a, Eq b) => Eq FiniteMap a b where { 32.71/14.80 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.71/14.80 } 32.71/14.80 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.71/14.80 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.71/14.80 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.71/14.80 }; 32.71/14.80 32.71/14.80 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 32.71/14.80 addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.71/14.80 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 32.71/14.80 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 32.71/14.80 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 32.71/14.80 32.71/14.80 emptyFM :: FiniteMap b a; 32.71/14.80 emptyFM = EmptyFM; 32.71/14.80 32.71/14.80 findMax :: FiniteMap a b -> (a,b); 32.71/14.80 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 32.71/14.80 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 32.71/14.80 32.71/14.80 findMin :: FiniteMap a b -> (a,b); 32.71/14.80 findMin (Branch key elt _ EmptyFM _) = (key,elt); 32.71/14.80 findMin (Branch key elt _ fm_l _) = findMin fm_l; 32.71/14.80 32.71/14.80 fmToList :: FiniteMap a b -> [(a,b)]; 32.71/14.80 fmToList fm = foldFM fmToList0 [] fm; 32.71/14.80 32.71/14.80 fmToList0 key elt rest = (key,elt) : rest; 32.71/14.80 32.71/14.80 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 32.71/14.80 foldFM k z EmptyFM = z; 32.71/14.80 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.71/14.80 32.71/14.80 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.71/14.80 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.71/14.80 | size_r > sIZE_RATIO * size_l = case fm_R of { 32.71/14.80 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 32.71/14.80 | otherwise -> double_L fm_L fm_R; 32.71/14.80 } 32.71/14.80 | size_l > sIZE_RATIO * size_r = case fm_L of { 32.71/14.80 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 32.71/14.80 | otherwise -> double_R fm_L fm_R; 32.71/14.80 } 32.71/14.80 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.71/14.80 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); 32.71/14.80 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); 32.71/14.80 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; 32.80/14.87 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); 32.80/14.87 size_l = sizeFM fm_L; 32.80/14.87 size_r = sizeFM fm_R; 32.80/14.87 }; 32.80/14.87 32.80/14.87 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.80/14.87 mkBranch which key elt fm_l fm_r = let { 32.80/14.87 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.80/14.87 } in result where { 32.80/14.87 balance_ok = True; 32.80/14.87 left_ok = case fm_l of { 32.80/14.87 EmptyFM-> True; 32.80/14.87 Branch left_key _ _ _ _-> let { 32.80/14.87 biggest_left_key = fst (findMax fm_l); 32.80/14.87 } in biggest_left_key < key; 32.80/14.87 } ; 32.80/14.87 left_size = sizeFM fm_l; 32.80/14.87 right_ok = case fm_r of { 32.80/14.87 EmptyFM-> True; 32.80/14.87 Branch right_key _ _ _ _-> let { 32.80/14.87 smallest_right_key = fst (findMin fm_r); 32.80/14.87 } in key < smallest_right_key; 32.80/14.87 } ; 32.80/14.87 right_size = sizeFM fm_r; 32.80/14.87 unbox :: Int -> Int; 32.80/14.87 unbox x = x; 32.80/14.87 }; 32.80/14.87 32.80/14.87 sIZE_RATIO :: Int; 32.80/14.87 sIZE_RATIO = 5; 32.80/14.87 32.80/14.87 sizeFM :: FiniteMap a b -> Int; 32.80/14.87 sizeFM EmptyFM = 0; 32.80/14.87 sizeFM (Branch _ _ size _ _) = size; 32.80/14.87 32.80/14.87 unitFM :: b -> a -> FiniteMap b a; 32.80/14.87 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.80/14.87 32.80/14.87 } 32.80/14.87 module Maybe where { 32.80/14.87 import qualified FiniteMap; 32.80/14.87 import qualified Main; 32.80/14.87 import qualified Prelude; 32.80/14.87 } 32.80/14.87 module Main where { 32.80/14.87 import qualified FiniteMap; 32.80/14.87 import qualified Maybe; 32.80/14.87 import qualified Prelude; 32.80/14.87 } 32.80/14.87 32.80/14.87 ---------------------------------------- 32.80/14.87 32.80/14.87 (3) CR (EQUIVALENT) 32.80/14.87 Case Reductions: 32.80/14.87 The following Case expression 32.80/14.87 "case compare x y of { 32.80/14.87 EQ -> o; 32.80/14.87 LT -> LT; 32.80/14.87 GT -> GT} 32.80/14.87 " 32.80/14.87 is transformed to 32.80/14.87 "primCompAux0 o EQ = o; 32.80/14.87 primCompAux0 o LT = LT; 32.80/14.87 primCompAux0 o GT = GT; 32.80/14.87 " 32.80/14.87 The following Case expression 32.80/14.87 "case fm_r of { 32.80/14.87 EmptyFM -> True; 32.80/14.87 Branch right_key _ _ _ _ -> let { 32.80/14.87 smallest_right_key = fst (findMin fm_r); 32.80/14.87 } in key < smallest_right_key} 32.80/14.87 " 32.80/14.87 is transformed to 32.80/14.87 "right_ok0 fm_r key EmptyFM = True; 32.80/14.87 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 32.80/14.87 smallest_right_key = fst (findMin fm_r); 32.80/14.87 } in key < smallest_right_key; 32.80/14.87 " 32.80/14.87 The following Case expression 32.80/14.87 "case fm_l of { 32.80/14.87 EmptyFM -> True; 32.80/14.87 Branch left_key _ _ _ _ -> let { 32.80/14.87 biggest_left_key = fst (findMax fm_l); 32.80/14.87 } in biggest_left_key < key} 32.80/14.87 " 32.80/14.87 is transformed to 32.80/14.87 "left_ok0 fm_l key EmptyFM = True; 32.80/14.87 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 32.80/14.87 biggest_left_key = fst (findMax fm_l); 32.80/14.87 } in biggest_left_key < key; 32.80/14.87 " 32.80/14.87 The following Case expression 32.80/14.87 "case fm_R of { 32.80/14.87 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 32.80/14.87 " 32.80/14.87 is transformed to 32.80/14.87 "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; 32.80/14.87 " 32.80/14.87 The following Case expression 32.80/14.87 "case fm_L of { 32.80/14.87 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 32.80/14.87 " 32.80/14.87 is transformed to 32.80/14.87 "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; 32.80/14.87 " 32.80/14.87 32.80/14.87 ---------------------------------------- 32.80/14.87 32.80/14.87 (4) 32.80/14.87 Obligation: 32.80/14.87 mainModule Main 32.80/14.87 module FiniteMap where { 32.80/14.87 import qualified Main; 32.80/14.87 import qualified Maybe; 32.80/14.87 import qualified Prelude; 32.80/14.87 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 32.80/14.87 32.80/14.87 instance (Eq a, Eq b) => Eq FiniteMap b a where { 32.80/14.87 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.80/14.87 } 32.80/14.87 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 32.80/14.87 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.80/14.87 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.80/14.87 }; 32.80/14.87 32.80/14.87 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 32.80/14.87 addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.80/14.87 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 32.80/14.87 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 32.80/14.87 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 32.80/14.87 32.80/14.87 emptyFM :: FiniteMap a b; 32.80/14.87 emptyFM = EmptyFM; 32.80/14.87 32.80/14.87 findMax :: FiniteMap b a -> (b,a); 32.80/14.87 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 32.80/14.87 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 32.80/14.87 32.80/14.87 findMin :: FiniteMap b a -> (b,a); 32.80/14.87 findMin (Branch key elt _ EmptyFM _) = (key,elt); 32.80/14.87 findMin (Branch key elt _ fm_l _) = findMin fm_l; 32.80/14.87 32.80/14.87 fmToList :: FiniteMap b a -> [(b,a)]; 32.80/14.87 fmToList fm = foldFM fmToList0 [] fm; 32.80/14.87 32.80/14.87 fmToList0 key elt rest = (key,elt) : rest; 32.80/14.87 32.80/14.87 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 32.80/14.87 foldFM k z EmptyFM = z; 32.80/14.87 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.80/14.87 32.80/14.87 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.80/14.87 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.80/14.87 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 32.80/14.87 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 32.80/14.87 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.80/14.87 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); 32.80/14.87 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); 32.80/14.87 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 32.80/14.87 | otherwise = double_L fm_L fm_R; 32.80/14.87 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 32.80/14.87 | otherwise = double_R fm_L fm_R; 32.80/14.87 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; 32.80/14.87 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); 32.80/14.87 size_l = sizeFM fm_L; 32.80/14.87 size_r = sizeFM fm_R; 32.80/14.87 }; 32.80/14.87 32.80/14.87 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 32.80/14.87 mkBranch which key elt fm_l fm_r = let { 32.80/14.87 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.80/14.87 } in result where { 32.80/14.87 balance_ok = True; 32.80/14.87 left_ok = left_ok0 fm_l key fm_l; 32.80/14.87 left_ok0 fm_l key EmptyFM = True; 32.80/14.87 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 32.80/14.87 biggest_left_key = fst (findMax fm_l); 32.80/14.87 } in biggest_left_key < key; 32.80/14.87 left_size = sizeFM fm_l; 32.80/14.87 right_ok = right_ok0 fm_r key fm_r; 32.80/14.87 right_ok0 fm_r key EmptyFM = True; 32.80/14.87 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 32.80/14.87 smallest_right_key = fst (findMin fm_r); 32.80/14.87 } in key < smallest_right_key; 32.80/14.87 right_size = sizeFM fm_r; 32.80/14.87 unbox :: Int -> Int; 32.80/14.87 unbox x = x; 32.80/14.87 }; 32.80/14.87 32.80/14.87 sIZE_RATIO :: Int; 32.80/14.87 sIZE_RATIO = 5; 32.80/14.87 32.80/14.87 sizeFM :: FiniteMap b a -> Int; 32.80/14.87 sizeFM EmptyFM = 0; 32.80/14.87 sizeFM (Branch _ _ size _ _) = size; 32.80/14.87 32.80/14.87 unitFM :: a -> b -> FiniteMap a b; 32.80/14.87 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.80/14.87 32.80/14.87 } 32.80/14.87 module Maybe where { 32.80/14.87 import qualified FiniteMap; 32.80/14.87 import qualified Main; 32.80/14.87 import qualified Prelude; 32.80/14.87 } 32.80/14.87 module Main where { 32.80/14.87 import qualified FiniteMap; 32.80/14.87 import qualified Maybe; 32.80/14.87 import qualified Prelude; 32.80/14.87 } 32.80/14.87 32.80/14.87 ---------------------------------------- 32.80/14.87 32.80/14.87 (5) IFR (EQUIVALENT) 32.80/14.87 If Reductions: 32.80/14.87 The following If expression 32.80/14.87 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 32.80/14.87 is transformed to 32.80/14.87 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 32.80/14.87 primDivNatS0 x y False = Zero; 32.80/14.87 " 32.80/14.87 The following If expression 32.80/14.87 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 32.80/14.87 is transformed to 32.80/14.87 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 32.80/14.87 primModNatS0 x y False = Succ x; 32.80/14.87 " 32.80/14.87 32.80/14.87 ---------------------------------------- 32.80/14.87 32.80/14.87 (6) 32.80/14.87 Obligation: 32.80/14.87 mainModule Main 32.80/14.87 module FiniteMap where { 32.80/14.87 import qualified Main; 32.80/14.87 import qualified Maybe; 32.80/14.87 import qualified Prelude; 32.80/14.87 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 32.80/14.87 32.80/14.87 instance (Eq a, Eq b) => Eq FiniteMap b a where { 32.80/14.87 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.80/14.87 } 32.80/14.87 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 32.80/14.87 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.80/14.87 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.80/14.87 }; 32.80/14.87 32.80/14.87 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 32.80/14.87 addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.80/14.87 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 32.80/14.87 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 32.80/14.87 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 32.80/14.87 32.80/14.87 emptyFM :: FiniteMap b a; 32.80/14.87 emptyFM = EmptyFM; 32.80/14.87 32.80/14.87 findMax :: FiniteMap b a -> (b,a); 32.80/14.87 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 32.80/14.87 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 32.80/14.87 32.80/14.87 findMin :: FiniteMap a b -> (a,b); 32.80/14.87 findMin (Branch key elt _ EmptyFM _) = (key,elt); 32.80/14.87 findMin (Branch key elt _ fm_l _) = findMin fm_l; 32.80/14.87 32.80/14.87 fmToList :: FiniteMap b a -> [(b,a)]; 32.80/14.87 fmToList fm = foldFM fmToList0 [] fm; 32.80/14.87 32.80/14.87 fmToList0 key elt rest = (key,elt) : rest; 32.80/14.87 32.80/14.87 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 32.80/14.87 foldFM k z EmptyFM = z; 32.80/14.87 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.80/14.87 32.80/14.87 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 32.80/14.87 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.80/14.87 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 32.80/14.87 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 32.80/14.87 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.80/14.87 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); 32.80/14.87 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); 32.80/14.87 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 32.80/14.87 | otherwise = double_L fm_L fm_R; 32.80/14.87 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 32.80/14.87 | otherwise = double_R fm_L fm_R; 32.80/14.87 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; 32.80/14.87 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); 32.80/14.87 size_l = sizeFM fm_L; 32.80/14.87 size_r = sizeFM fm_R; 32.80/14.87 }; 32.80/14.87 32.80/14.87 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.80/14.87 mkBranch which key elt fm_l fm_r = let { 32.80/14.87 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.80/14.87 } in result where { 32.80/14.87 balance_ok = True; 32.80/14.87 left_ok = left_ok0 fm_l key fm_l; 32.80/14.87 left_ok0 fm_l key EmptyFM = True; 32.80/14.87 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 32.80/14.87 biggest_left_key = fst (findMax fm_l); 32.80/14.87 } in biggest_left_key < key; 32.80/14.87 left_size = sizeFM fm_l; 32.80/14.87 right_ok = right_ok0 fm_r key fm_r; 32.80/14.87 right_ok0 fm_r key EmptyFM = True; 32.80/14.87 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 32.80/14.87 smallest_right_key = fst (findMin fm_r); 32.80/14.87 } in key < smallest_right_key; 32.80/14.87 right_size = sizeFM fm_r; 32.80/14.87 unbox :: Int -> Int; 32.80/14.87 unbox x = x; 32.80/14.87 }; 32.80/14.87 32.80/14.87 sIZE_RATIO :: Int; 32.80/14.87 sIZE_RATIO = 5; 32.80/14.87 32.80/14.87 sizeFM :: FiniteMap a b -> Int; 32.80/14.87 sizeFM EmptyFM = 0; 32.80/14.87 sizeFM (Branch _ _ size _ _) = size; 32.80/14.87 32.80/14.87 unitFM :: a -> b -> FiniteMap a b; 32.80/14.87 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.80/14.87 32.80/14.87 } 32.80/14.87 module Maybe where { 32.80/14.87 import qualified FiniteMap; 32.80/14.87 import qualified Main; 32.80/14.87 import qualified Prelude; 32.80/14.87 } 32.80/14.87 module Main where { 32.80/14.87 import qualified FiniteMap; 32.80/14.87 import qualified Maybe; 32.80/14.87 import qualified Prelude; 32.80/14.87 } 32.80/14.87 32.80/14.87 ---------------------------------------- 32.80/14.87 32.80/14.87 (7) BR (EQUIVALENT) 32.80/14.87 Replaced joker patterns by fresh variables and removed binding patterns. 32.80/14.87 ---------------------------------------- 32.80/14.87 32.80/14.87 (8) 32.80/14.87 Obligation: 32.80/14.87 mainModule Main 32.80/14.87 module FiniteMap where { 32.80/14.87 import qualified Main; 32.80/14.87 import qualified Maybe; 32.80/14.87 import qualified Prelude; 32.80/14.87 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 32.80/14.87 32.80/14.87 instance (Eq a, Eq b) => Eq FiniteMap b a where { 32.80/14.87 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 32.80/14.87 } 32.80/14.87 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 32.80/14.87 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 32.80/14.87 add fmap (key,elt) = addToFM_C combiner fmap key elt; 32.80/14.87 }; 32.80/14.87 32.80/14.87 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 32.80/14.87 addToFM_C combiner EmptyFM key elt = unitFM key elt; 32.80/14.87 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 32.80/14.87 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 32.80/14.87 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 32.80/14.87 32.80/14.87 emptyFM :: FiniteMap a b; 32.80/14.87 emptyFM = EmptyFM; 32.80/14.87 32.80/14.87 findMax :: FiniteMap b a -> (b,a); 32.80/14.87 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 32.80/14.87 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 32.80/14.87 32.80/14.87 findMin :: FiniteMap b a -> (b,a); 32.80/14.87 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 32.80/14.87 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 32.80/14.87 32.80/14.87 fmToList :: FiniteMap a b -> [(a,b)]; 32.80/14.87 fmToList fm = foldFM fmToList0 [] fm; 32.80/14.87 32.80/14.87 fmToList0 key elt rest = (key,elt) : rest; 32.80/14.87 32.80/14.87 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 32.80/14.88 foldFM k z EmptyFM = z; 32.80/14.88 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 32.80/14.88 32.80/14.88 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 32.80/14.88 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 32.80/14.88 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 32.80/14.88 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 32.80/14.88 | otherwise = mkBranch 2 key elt fm_L fm_R where { 32.80/14.88 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); 32.80/14.88 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); 32.80/14.88 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 32.80/14.88 | otherwise = double_L fm_L fm_R; 32.80/14.88 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 32.80/14.88 | otherwise = double_R fm_L fm_R; 32.80/14.88 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; 32.80/14.88 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); 32.80/14.88 size_l = sizeFM fm_L; 32.80/14.88 size_r = sizeFM fm_R; 32.80/14.88 }; 32.80/14.88 32.80/14.88 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 32.80/14.88 mkBranch which key elt fm_l fm_r = let { 32.80/14.88 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 32.80/14.88 } in result where { 32.80/14.88 balance_ok = True; 32.80/14.88 left_ok = left_ok0 fm_l key fm_l; 32.80/14.88 left_ok0 fm_l key EmptyFM = True; 32.80/14.88 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 32.80/14.88 biggest_left_key = fst (findMax fm_l); 32.80/14.88 } in biggest_left_key < key; 32.80/14.88 left_size = sizeFM fm_l; 32.80/14.88 right_ok = right_ok0 fm_r key fm_r; 32.80/14.88 right_ok0 fm_r key EmptyFM = True; 32.80/14.88 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 32.80/14.88 smallest_right_key = fst (findMin fm_r); 32.80/14.88 } in key < smallest_right_key; 32.80/14.88 right_size = sizeFM fm_r; 32.80/14.88 unbox :: Int -> Int; 32.80/14.88 unbox x = x; 32.80/14.88 }; 32.80/14.88 32.80/14.88 sIZE_RATIO :: Int; 32.80/14.88 sIZE_RATIO = 5; 32.80/14.88 32.80/14.88 sizeFM :: FiniteMap b a -> Int; 32.80/14.88 sizeFM EmptyFM = 0; 32.80/14.88 sizeFM (Branch vyu vyv size vyw vyx) = size; 32.80/14.88 32.80/14.88 unitFM :: b -> a -> FiniteMap b a; 32.80/14.88 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 32.80/14.88 32.80/14.88 } 32.80/14.88 module Maybe where { 32.80/14.88 import qualified FiniteMap; 32.80/14.88 import qualified Main; 32.80/14.88 import qualified Prelude; 32.80/14.88 } 32.80/14.88 module Main where { 32.80/14.88 import qualified FiniteMap; 32.80/14.88 import qualified Maybe; 32.80/14.88 import qualified Prelude; 32.80/14.88 } 32.80/14.88 32.80/14.88 ---------------------------------------- 32.80/14.88 32.80/14.88 (9) COR (EQUIVALENT) 32.80/14.88 Cond Reductions: 32.80/14.88 The following Function with conditions 32.80/14.88 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 32.80/14.88 " 32.80/14.88 is transformed to 32.80/14.88 "compare x y = compare3 x y; 32.80/14.88 " 32.80/14.88 "compare1 x y True = LT; 32.80/14.88 compare1 x y False = compare0 x y otherwise; 32.80/14.88 " 32.80/14.88 "compare0 x y True = GT; 32.80/14.88 " 32.80/14.88 "compare2 x y True = EQ; 32.80/14.88 compare2 x y False = compare1 x y (x <= y); 32.80/14.88 " 32.80/14.88 "compare3 x y = compare2 x y (x == y); 32.80/14.88 " 32.80/14.88 The following Function with conditions 33.20/14.96 "absReal x|x >= 0x|otherwise`negate` x; 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "absReal x = absReal2 x; 33.20/14.96 " 33.20/14.96 "absReal0 x True = `negate` x; 33.20/14.96 " 33.20/14.96 "absReal1 x True = x; 33.20/14.96 absReal1 x False = absReal0 x otherwise; 33.20/14.96 " 33.20/14.96 "absReal2 x = absReal1 x (x >= 0); 33.20/14.96 " 33.20/14.96 The following Function with conditions 33.20/14.96 "gcd' x 0 = x; 33.20/14.96 gcd' x y = gcd' y (x `rem` y); 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "gcd' x vzw = gcd'2 x vzw; 33.20/14.96 gcd' x y = gcd'0 x y; 33.20/14.96 " 33.20/14.96 "gcd'0 x y = gcd' y (x `rem` y); 33.20/14.96 " 33.20/14.96 "gcd'1 True x vzw = x; 33.20/14.96 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 33.20/14.96 " 33.20/14.96 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 33.20/14.96 gcd'2 wuu wuv = gcd'0 wuu wuv; 33.20/14.96 " 33.20/14.96 The following Function with conditions 33.20/14.96 "gcd 0 0 = error []; 33.20/14.96 gcd x y = gcd' (abs x) (abs y) where { 33.20/14.96 gcd' x 0 = x; 33.20/14.96 gcd' x y = gcd' y (x `rem` y); 33.20/14.96 } 33.20/14.96 ; 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "gcd wuw wux = gcd3 wuw wux; 33.20/14.96 gcd x y = gcd0 x y; 33.20/14.96 " 33.20/14.96 "gcd0 x y = gcd' (abs x) (abs y) where { 33.20/14.96 gcd' x vzw = gcd'2 x vzw; 33.20/14.96 gcd' x y = gcd'0 x y; 33.20/14.96 ; 33.20/14.96 gcd'0 x y = gcd' y (x `rem` y); 33.20/14.96 ; 33.20/14.96 gcd'1 True x vzw = x; 33.20/14.96 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 33.20/14.96 ; 33.20/14.96 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 33.20/14.96 gcd'2 wuu wuv = gcd'0 wuu wuv; 33.20/14.96 } 33.20/14.96 ; 33.20/14.96 " 33.20/14.96 "gcd1 True wuw wux = error []; 33.20/14.96 gcd1 wuy wuz wvu = gcd0 wuz wvu; 33.20/14.96 " 33.20/14.96 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 33.20/14.96 gcd2 wvv wvw wvx = gcd0 wvw wvx; 33.20/14.96 " 33.20/14.96 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 33.20/14.96 gcd3 wvy wvz = gcd0 wvy wvz; 33.20/14.96 " 33.20/14.96 The following Function with conditions 33.20/14.96 "undefined |Falseundefined; 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "undefined = undefined1; 33.20/14.96 " 33.20/14.96 "undefined0 True = undefined; 33.20/14.96 " 33.20/14.96 "undefined1 = undefined0 False; 33.20/14.96 " 33.20/14.96 The following Function with conditions 33.20/14.96 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 33.20/14.96 d = gcd x y; 33.20/14.96 } 33.20/14.96 ; 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "reduce x y = reduce2 x y; 33.20/14.96 " 33.20/14.96 "reduce2 x y = reduce1 x y (y == 0) where { 33.20/14.96 d = gcd x y; 33.20/14.96 ; 33.20/14.96 reduce0 x y True = x `quot` d :% (y `quot` d); 33.20/14.96 ; 33.20/14.96 reduce1 x y True = error []; 33.20/14.96 reduce1 x y False = reduce0 x y otherwise; 33.20/14.96 } 33.20/14.96 ; 33.20/14.96 " 33.20/14.96 The following Function with conditions 33.20/14.96 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 33.20/14.96 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; 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 33.20/14.96 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; 33.20/14.96 " 33.20/14.96 "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; 33.20/14.96 " 33.20/14.96 "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; 33.20/14.96 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); 33.20/14.96 " 33.20/14.96 "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); 33.20/14.96 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; 33.20/14.96 " 33.20/14.96 "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); 33.20/14.96 " 33.20/14.96 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 33.20/14.96 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 33.20/14.96 " 33.20/14.96 The following Function with conditions 33.20/14.96 "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; 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "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); 33.20/14.96 " 33.20/14.96 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 33.20/14.96 " 33.20/14.96 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 33.20/14.96 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; 33.20/14.96 " 33.20/14.96 "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); 33.20/14.96 " 33.20/14.96 The following Function with conditions 33.20/14.96 "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; 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "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); 33.20/14.96 " 33.20/14.96 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 33.20/14.96 " 33.20/14.96 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 33.20/14.96 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; 33.20/14.96 " 33.20/14.96 "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); 33.20/14.96 " 33.20/14.96 The following Function with conditions 33.20/14.96 "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 { 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 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; 33.20/14.96 ; 33.20/14.96 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; 33.20/14.96 ; 33.20/14.96 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; 33.20/14.96 ; 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 size_l = sizeFM fm_L; 33.20/14.96 ; 33.20/14.96 size_r = sizeFM fm_R; 33.20/14.96 } 33.20/14.96 ; 33.20/14.96 " 33.20/14.96 is transformed to 33.20/14.96 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 33.20/14.96 " 33.20/14.96 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 33.20/14.96 ; 33.20/14.96 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 33.20/14.96 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; 33.20/14.96 ; 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 33.20/14.96 ; 33.20/14.96 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 33.20/14.96 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; 33.20/14.96 ; 33.20/14.96 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); 33.20/14.96 ; 33.20/14.96 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 33.20/14.96 ; 33.20/14.96 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 33.20/14.96 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 33.20/14.96 ; 33.20/14.96 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 33.20/14.96 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 33.20/14.96 ; 33.20/14.96 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 33.20/14.96 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 33.20/15.00 ; 33.20/15.00 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; 33.20/15.00 ; 33.20/15.00 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); 33.20/15.00 ; 33.20/15.00 size_l = sizeFM fm_L; 33.20/15.00 ; 33.20/15.00 size_r = sizeFM fm_R; 33.20/15.00 } 33.20/15.00 ; 33.20/15.00 " 33.20/15.00 33.20/15.00 ---------------------------------------- 33.20/15.00 33.20/15.00 (10) 33.20/15.00 Obligation: 33.20/15.00 mainModule Main 33.20/15.00 module FiniteMap where { 33.20/15.00 import qualified Main; 33.20/15.00 import qualified Maybe; 33.20/15.00 import qualified Prelude; 33.20/15.00 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 33.20/15.00 33.20/15.00 instance (Eq a, Eq b) => Eq FiniteMap b a where { 33.20/15.00 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 33.20/15.00 } 33.20/15.00 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 33.20/15.00 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 33.20/15.00 add fmap (key,elt) = addToFM_C combiner fmap key elt; 33.20/15.00 }; 33.20/15.00 33.20/15.00 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 33.20/15.00 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 33.20/15.00 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; 33.20/15.00 33.20/15.00 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; 33.20/15.00 33.20/15.00 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); 33.20/15.00 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; 33.20/15.00 33.20/15.00 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; 33.20/15.00 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); 33.20/15.00 33.20/15.00 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); 33.20/15.00 33.20/15.00 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 33.20/15.00 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 33.20/15.00 33.20/15.00 emptyFM :: FiniteMap a b; 33.20/15.00 emptyFM = EmptyFM; 33.20/15.00 33.20/15.00 findMax :: FiniteMap a b -> (a,b); 33.20/15.00 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 33.20/15.00 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 33.20/15.00 33.20/15.00 findMin :: FiniteMap a b -> (a,b); 33.20/15.00 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 33.20/15.00 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 33.20/15.00 33.20/15.00 fmToList :: FiniteMap b a -> [(b,a)]; 33.20/15.00 fmToList fm = foldFM fmToList0 [] fm; 33.20/15.00 33.20/15.00 fmToList0 key elt rest = (key,elt) : rest; 33.20/15.00 33.20/15.00 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 33.20/15.00 foldFM k z EmptyFM = z; 33.20/15.00 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 33.20/15.00 33.20/15.00 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 33.20/15.00 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 33.20/15.00 33.20/15.00 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 33.20/15.00 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); 33.20/15.00 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); 33.20/15.00 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); 33.20/15.00 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 33.20/15.00 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 33.20/15.00 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; 33.20/15.00 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); 33.20/15.00 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); 33.20/15.00 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 33.20/15.00 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 33.20/15.00 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; 33.20/15.00 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); 33.20/15.00 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 33.20/15.00 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 33.20/15.00 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 33.20/15.00 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 33.20/15.00 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 33.20/15.00 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 33.20/15.00 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 33.20/15.00 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; 33.20/15.00 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); 33.20/15.00 size_l = sizeFM fm_L; 33.20/15.00 size_r = sizeFM fm_R; 33.20/15.00 }; 33.20/15.00 33.20/15.00 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 33.20/15.00 mkBranch which key elt fm_l fm_r = let { 33.20/15.00 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 33.20/15.00 } in result where { 33.20/15.00 balance_ok = True; 33.20/15.00 left_ok = left_ok0 fm_l key fm_l; 33.20/15.00 left_ok0 fm_l key EmptyFM = True; 33.20/15.00 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 33.20/15.00 biggest_left_key = fst (findMax fm_l); 33.20/15.00 } in biggest_left_key < key; 33.20/15.00 left_size = sizeFM fm_l; 33.20/15.00 right_ok = right_ok0 fm_r key fm_r; 33.20/15.00 right_ok0 fm_r key EmptyFM = True; 33.20/15.00 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 33.20/15.00 smallest_right_key = fst (findMin fm_r); 33.20/15.00 } in key < smallest_right_key; 33.20/15.00 right_size = sizeFM fm_r; 33.20/15.00 unbox :: Int -> Int; 33.20/15.00 unbox x = x; 33.20/15.00 }; 33.20/15.00 33.20/15.00 sIZE_RATIO :: Int; 33.20/15.00 sIZE_RATIO = 5; 33.20/15.00 33.20/15.00 sizeFM :: FiniteMap a b -> Int; 33.20/15.00 sizeFM EmptyFM = 0; 33.20/15.00 sizeFM (Branch vyu vyv size vyw vyx) = size; 33.20/15.00 33.20/15.00 unitFM :: b -> a -> FiniteMap b a; 33.20/15.00 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 33.20/15.00 33.20/15.00 } 33.20/15.00 module Maybe where { 33.20/15.00 import qualified FiniteMap; 33.20/15.00 import qualified Main; 33.20/15.00 import qualified Prelude; 33.20/15.00 } 33.20/15.00 module Main where { 33.20/15.00 import qualified FiniteMap; 33.20/15.00 import qualified Maybe; 33.20/15.00 import qualified Prelude; 33.20/15.00 } 33.20/15.00 33.20/15.00 ---------------------------------------- 33.20/15.00 33.20/15.00 (11) LetRed (EQUIVALENT) 33.20/15.00 Let/Where Reductions: 33.20/15.00 The bindings of the following Let/Where expression 33.20/15.00 "gcd' (abs x) (abs y) where { 33.20/15.00 gcd' x vzw = gcd'2 x vzw; 33.20/15.00 gcd' x y = gcd'0 x y; 33.20/15.00 ; 33.20/15.00 gcd'0 x y = gcd' y (x `rem` y); 33.20/15.00 ; 33.20/15.00 gcd'1 True x vzw = x; 33.20/15.00 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 33.20/15.00 ; 33.20/15.00 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 33.20/15.00 gcd'2 wuu wuv = gcd'0 wuu wuv; 33.20/15.00 } 33.20/15.00 " 33.20/15.00 are unpacked to the following functions on top level 33.20/15.00 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 33.20/15.00 gcd0Gcd' x y = gcd0Gcd'0 x y; 33.20/15.00 " 33.20/15.00 "gcd0Gcd'1 True x vzw = x; 33.20/15.00 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 33.20/15.00 " 33.20/15.00 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 33.20/15.00 " 33.20/15.00 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 33.20/15.00 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 33.20/15.00 " 33.20/15.00 The bindings of the following Let/Where expression 33.20/15.00 "reduce1 x y (y == 0) where { 33.20/15.00 d = gcd x y; 33.20/15.00 ; 33.20/15.00 reduce0 x y True = x `quot` d :% (y `quot` d); 33.20/15.00 ; 33.20/15.00 reduce1 x y True = error []; 33.20/15.00 reduce1 x y False = reduce0 x y otherwise; 33.20/15.00 } 33.20/15.00 " 33.20/15.00 are unpacked to the following functions on top level 33.20/15.00 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 33.20/15.00 " 33.20/15.00 "reduce2Reduce1 wxw wxx x y True = error []; 33.20/15.00 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 33.20/15.00 " 33.20/15.00 "reduce2D wxw wxx = gcd wxw wxx; 33.20/15.00 " 33.20/15.00 The bindings of the following Let/Where expression 33.20/15.00 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 33.20/15.00 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); 33.20/15.00 ; 33.20/15.00 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); 33.50/15.02 ; 33.50/15.02 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); 33.50/15.02 ; 33.50/15.02 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 33.50/15.02 ; 33.50/15.02 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 33.50/15.02 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; 33.50/15.02 ; 33.50/15.02 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); 33.50/15.02 ; 33.50/15.02 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); 33.50/15.02 ; 33.50/15.02 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 33.50/15.02 ; 33.50/15.02 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 33.50/15.02 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; 33.50/15.02 ; 33.50/15.02 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); 33.50/15.02 ; 33.50/15.02 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 33.50/15.02 ; 33.50/15.02 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 33.50/15.02 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 33.50/15.02 ; 33.50/15.02 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 33.50/15.02 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 33.50/15.02 ; 33.50/15.02 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 33.50/15.02 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 33.50/15.02 ; 33.50/15.02 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; 33.50/15.02 ; 33.50/15.02 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); 33.50/15.02 ; 33.50/15.02 size_l = sizeFM fm_L; 33.50/15.02 ; 33.50/15.02 size_r = sizeFM fm_R; 33.50/15.02 } 33.50/15.02 " 33.50/15.02 are unpacked to the following functions on top level 33.50/15.02 "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); 33.50/15.02 " 33.50/15.02 "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); 33.50/15.02 " 33.50/15.02 "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); 33.50/15.02 " 33.50/15.02 "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; 33.50/15.02 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; 33.50/15.02 " 33.50/15.02 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 33.50/15.02 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); 33.50/15.02 " 33.50/15.02 "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; 33.50/15.02 " 33.50/15.02 "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); 33.50/15.02 " 33.50/15.02 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 33.50/15.02 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 33.50/15.02 " 33.50/15.02 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 33.50/15.02 " 33.50/15.02 "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); 33.50/15.02 " 33.50/15.02 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 33.50/15.02 " 33.50/15.02 "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; 33.50/15.02 " 33.50/15.02 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 33.50/15.02 " 33.50/15.02 "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; 33.50/15.02 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; 33.50/15.02 " 33.50/15.02 "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; 33.50/15.02 " 33.50/15.02 "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); 33.50/15.02 " 33.50/15.02 "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); 33.50/15.02 " 33.50/15.02 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 33.50/15.02 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); 33.50/15.02 " 33.50/15.02 The bindings of the following Let/Where expression 33.50/15.02 "foldl add fm key_elt_pairs where { 33.50/15.02 add fmap (key,elt) = addToFM_C combiner fmap key elt; 33.50/15.02 } 33.50/15.02 " 33.50/15.02 are unpacked to the following functions on top level 33.50/15.02 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 33.50/15.02 " 33.50/15.02 The bindings of the following Let/Where expression 33.50/15.02 "let { 33.50/15.02 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 33.50/15.02 } in result where { 33.50/15.02 balance_ok = True; 33.50/15.02 ; 33.50/15.02 left_ok = left_ok0 fm_l key fm_l; 33.50/15.02 ; 33.50/15.02 left_ok0 fm_l key EmptyFM = True; 33.50/15.02 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 33.50/15.02 biggest_left_key = fst (findMax fm_l); 33.50/15.02 } in biggest_left_key < key; 33.50/15.02 ; 33.50/15.02 left_size = sizeFM fm_l; 33.50/15.02 ; 33.50/15.02 right_ok = right_ok0 fm_r key fm_r; 33.50/15.02 ; 33.50/15.02 right_ok0 fm_r key EmptyFM = True; 33.50/15.02 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 33.50/15.02 smallest_right_key = fst (findMin fm_r); 33.50/15.02 } in key < smallest_right_key; 33.50/15.02 ; 33.50/15.02 right_size = sizeFM fm_r; 33.50/15.02 ; 33.50/15.02 unbox x = x; 33.50/15.02 } 33.50/15.02 " 33.50/15.02 are unpacked to the following functions on top level 33.50/15.02 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 33.50/15.02 " 33.50/15.02 "mkBranchBalance_ok wyx wyy wyz = True; 33.50/15.02 " 33.50/15.02 "mkBranchUnbox wyx wyy wyz x = x; 33.50/15.02 " 33.50/15.02 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 33.50/15.02 " 33.50/15.02 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 33.50/15.02 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 33.50/15.02 " 33.50/15.02 "mkBranchRight_size wyx wyy wyz = sizeFM wyz; 33.50/15.02 " 33.50/15.02 "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 33.50/15.02 " 33.50/15.02 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 33.50/15.02 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 33.50/15.02 " 33.50/15.02 The bindings of the following Let/Where expression 33.50/15.02 "let { 33.50/15.02 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 33.50/15.02 } in result" 33.50/15.02 are unpacked to the following functions on top level 33.50/15.02 "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; 33.50/15.02 " 33.50/15.02 The bindings of the following Let/Where expression 33.50/15.02 "let { 33.50/15.02 biggest_left_key = fst (findMax fm_l); 33.50/15.02 } in biggest_left_key < key" 33.50/15.02 are unpacked to the following functions on top level 33.50/15.02 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 33.50/15.02 " 33.50/15.02 The bindings of the following Let/Where expression 33.50/15.02 "let { 33.50/15.02 smallest_right_key = fst (findMin fm_r); 33.50/15.02 } in key < smallest_right_key" 33.50/15.02 are unpacked to the following functions on top level 33.50/15.02 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 33.50/15.02 " 33.50/15.02 33.50/15.02 ---------------------------------------- 33.50/15.02 33.50/15.02 (12) 33.50/15.02 Obligation: 33.50/15.02 mainModule Main 33.50/15.02 module FiniteMap where { 33.50/15.02 import qualified Main; 33.50/15.02 import qualified Maybe; 33.50/15.02 import qualified Prelude; 33.50/15.02 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 33.50/15.02 33.50/15.02 instance (Eq a, Eq b) => Eq FiniteMap b a where { 33.50/15.02 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 33.50/15.02 } 33.50/15.02 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 33.50/15.02 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 33.50/15.02 33.50/15.02 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 33.50/15.02 33.50/15.02 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 33.50/15.02 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 33.50/15.02 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; 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 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); 33.50/15.02 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; 33.50/15.02 33.50/15.02 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; 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 33.50/15.02 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 33.50/15.02 33.50/15.02 emptyFM :: FiniteMap b a; 33.50/15.02 emptyFM = EmptyFM; 33.50/15.02 33.50/15.02 findMax :: FiniteMap b a -> (b,a); 33.50/15.02 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 33.50/15.02 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 33.50/15.02 33.50/15.02 findMin :: FiniteMap a b -> (a,b); 33.50/15.02 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 33.50/15.02 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 33.50/15.02 33.50/15.02 fmToList :: FiniteMap b a -> [(b,a)]; 33.50/15.02 fmToList fm = foldFM fmToList0 [] fm; 33.50/15.02 33.50/15.02 fmToList0 key elt rest = (key,elt) : rest; 33.50/15.02 33.50/15.02 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 33.50/15.02 foldFM k z EmptyFM = z; 33.50/15.02 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 33.50/15.02 33.50/15.02 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 33.50/15.02 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 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; 33.50/15.02 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; 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 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; 33.50/15.02 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; 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 33.50/15.02 33.50/15.02 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 33.50/15.02 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 33.50/15.02 33.50/15.02 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 33.50/15.02 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); 33.50/15.02 33.50/15.02 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 33.50/15.02 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); 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 33.50/15.02 33.50/15.02 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 33.50/15.02 33.50/15.02 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 33.50/15.02 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 33.50/15.02 33.50/15.02 mkBranchBalance_ok wyx wyy wyz = True; 33.50/15.02 33.50/15.02 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 33.50/15.02 33.50/15.02 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 33.50/15.02 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 33.50/15.02 33.50/15.02 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 33.50/15.02 33.50/15.02 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 33.50/15.02 33.50/15.02 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 33.50/15.02 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 33.50/15.02 33.50/15.02 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 33.50/15.02 33.50/15.02 mkBranchRight_size wyx wyy wyz = sizeFM wyz; 33.50/15.02 33.50/15.02 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 33.50/15.02 mkBranchUnbox wyx wyy wyz x = x; 33.50/15.02 33.50/15.02 sIZE_RATIO :: Int; 33.50/15.02 sIZE_RATIO = 5; 33.50/15.02 33.50/15.02 sizeFM :: FiniteMap b a -> Int; 33.50/15.02 sizeFM EmptyFM = 0; 33.50/15.02 sizeFM (Branch vyu vyv size vyw vyx) = size; 33.50/15.02 33.50/15.02 unitFM :: b -> a -> FiniteMap b a; 33.50/15.02 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 33.50/15.02 33.50/15.02 } 33.50/15.02 module Maybe where { 33.50/15.02 import qualified FiniteMap; 33.50/15.02 import qualified Main; 33.50/15.02 import qualified Prelude; 33.50/15.02 } 33.50/15.02 module Main where { 33.50/15.02 import qualified FiniteMap; 33.50/15.02 import qualified Maybe; 33.50/15.02 import qualified Prelude; 33.50/15.02 } 33.50/15.02 33.50/15.02 ---------------------------------------- 33.50/15.02 33.50/15.02 (13) NumRed (SOUND) 33.50/15.02 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 33.50/15.02 ---------------------------------------- 33.50/15.02 33.50/15.02 (14) 33.50/15.02 Obligation: 33.50/15.02 mainModule Main 33.50/15.02 module FiniteMap where { 33.50/15.02 import qualified Main; 33.50/15.02 import qualified Maybe; 33.50/15.02 import qualified Prelude; 33.50/15.02 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 33.50/15.02 33.50/15.02 instance (Eq a, Eq b) => Eq FiniteMap a b where { 33.50/15.02 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 33.50/15.02 } 33.50/15.02 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 33.50/15.02 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 33.50/15.02 33.50/15.02 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 33.50/15.02 33.50/15.02 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 33.50/15.02 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 33.50/15.02 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; 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 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); 33.50/15.02 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; 33.50/15.02 33.50/15.02 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; 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 33.50/15.02 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 33.50/15.02 33.50/15.02 emptyFM :: FiniteMap b a; 33.50/15.02 emptyFM = EmptyFM; 33.50/15.02 33.50/15.02 findMax :: FiniteMap a b -> (a,b); 33.50/15.02 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 33.50/15.02 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 33.50/15.02 33.50/15.02 findMin :: FiniteMap b a -> (b,a); 33.50/15.02 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 33.50/15.02 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 33.50/15.02 33.50/15.02 fmToList :: FiniteMap a b -> [(a,b)]; 33.50/15.02 fmToList fm = foldFM fmToList0 [] fm; 33.50/15.02 33.50/15.02 fmToList0 key elt rest = (key,elt) : rest; 33.50/15.02 33.50/15.02 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 33.50/15.02 foldFM k z EmptyFM = z; 33.50/15.02 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 33.50/15.02 33.50/15.02 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 33.50/15.02 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 33.50/15.02 33.50/15.02 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))); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 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; 33.50/15.02 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; 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 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; 33.50/15.02 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; 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 33.50/15.02 33.50/15.02 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 33.50/15.02 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 33.50/15.02 33.50/15.02 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 33.50/15.02 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); 33.50/15.02 33.50/15.02 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 33.50/15.02 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); 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 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); 33.50/15.02 33.50/15.02 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 33.50/15.02 33.50/15.02 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 33.50/15.02 33.50/15.02 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 33.50/15.02 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 33.50/15.02 33.50/15.02 mkBranchBalance_ok wyx wyy wyz = True; 33.50/15.02 33.50/15.02 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; 33.50/15.02 33.50/15.02 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 33.50/15.02 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 33.50/15.02 33.50/15.02 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 33.50/15.02 33.50/15.02 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 33.50/15.02 33.50/15.02 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; 33.50/15.02 33.50/15.02 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; 33.50/15.02 33.50/15.02 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 33.50/15.02 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 33.50/15.02 33.50/15.02 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 33.50/15.02 33.50/15.02 mkBranchRight_size wyx wyy wyz = sizeFM wyz; 33.50/15.02 33.50/15.02 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 33.50/15.02 mkBranchUnbox wyx wyy wyz x = x; 33.50/15.02 33.50/15.02 sIZE_RATIO :: Int; 33.50/15.02 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 33.50/15.02 33.50/15.02 sizeFM :: FiniteMap b a -> Int; 33.50/15.02 sizeFM EmptyFM = Pos Zero; 33.50/15.02 sizeFM (Branch vyu vyv size vyw vyx) = size; 33.50/15.02 33.50/15.02 unitFM :: a -> b -> FiniteMap a b; 33.50/15.02 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 33.50/15.02 33.50/15.02 } 33.50/15.02 module Maybe where { 33.50/15.02 import qualified FiniteMap; 33.50/15.02 import qualified Main; 33.50/15.02 import qualified Prelude; 33.50/15.02 } 33.50/15.02 module Main where { 33.50/15.02 import qualified FiniteMap; 33.50/15.02 import qualified Maybe; 33.50/15.02 import qualified Prelude; 33.50/15.02 } 33.50/15.02 33.50/15.02 ---------------------------------------- 33.50/15.02 33.50/15.02 (15) Narrow (SOUND) 33.50/15.02 Haskell To QDPs 33.50/15.02 33.50/15.02 digraph dp_graph { 33.50/15.02 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM_C",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 33.50/15.02 3[label="FiniteMap.addListToFM_C xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 33.50/15.02 4[label="FiniteMap.addListToFM_C xuu3 xuu4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 33.50/15.02 5[label="FiniteMap.addListToFM_C xuu3 xuu4 xuu5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 33.50/15.02 6[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 xuu5",fontsize=16,color="burlywood",shape="triangle"];3117[label="xuu5/xuu50 : xuu51",fontsize=10,color="white",style="solid",shape="box"];6 -> 3117[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3117 -> 7[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3118[label="xuu5/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 3118[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3118 -> 8[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 7[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 (xuu50 : xuu51)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 33.50/15.02 8[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 33.50/15.02 9 -> 6[label="",style="dashed", color="red", weight=0]; 33.50/15.02 9[label="foldl (FiniteMap.addListToFM_CAdd xuu3) (FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50) xuu51",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 10[label="xuu4",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50",fontsize=16,color="burlywood",shape="box"];3119[label="xuu50/(xuu500,xuu501)",fontsize=10,color="white",style="solid",shape="box"];11 -> 3119[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3119 -> 13[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 12[label="xuu51",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 (xuu500,xuu501)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 33.50/15.02 14[label="FiniteMap.addToFM_C xuu3 xuu4 xuu500 xuu501",fontsize=16,color="burlywood",shape="triangle"];3120[label="xuu4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 3120[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3120 -> 15[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3121[label="xuu4/FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44",fontsize=10,color="white",style="solid",shape="box"];14 -> 3121[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3121 -> 16[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 15[label="FiniteMap.addToFM_C xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 33.50/15.02 16[label="FiniteMap.addToFM_C xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 33.50/15.02 17[label="FiniteMap.addToFM_C4 xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 33.50/15.02 18[label="FiniteMap.addToFM_C3 xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 33.50/15.02 19[label="FiniteMap.unitFM xuu500 xuu501",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 33.50/15.02 20 -> 22[label="",style="dashed", color="red", weight=0]; 33.50/15.02 20[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (xuu500 < xuu40)",fontsize=16,color="magenta"];20 -> 23[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 20 -> 24[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 20 -> 25[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 20 -> 26[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 20 -> 27[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 20 -> 28[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 20 -> 29[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 20 -> 30[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 20 -> 31[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 21[label="FiniteMap.Branch xuu500 xuu501 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 32[label="",style="dashed", color="green", weight=3]; 33.50/15.02 21 -> 33[label="",style="dashed", color="green", weight=3]; 33.50/15.02 23[label="xuu42",fontsize=16,color="green",shape="box"];24[label="xuu40",fontsize=16,color="green",shape="box"];25[label="xuu501",fontsize=16,color="green",shape="box"];26[label="xuu3",fontsize=16,color="green",shape="box"];27[label="xuu41",fontsize=16,color="green",shape="box"];28[label="xuu43",fontsize=16,color="green",shape="box"];29[label="xuu500",fontsize=16,color="green",shape="box"];30[label="xuu44",fontsize=16,color="green",shape="box"];31[label="xuu500 < xuu40",fontsize=16,color="blue",shape="box"];3122[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3122[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3122 -> 34[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3123[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3123[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3123 -> 35[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3124[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3124[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3124 -> 36[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3125[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3125[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3125 -> 37[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3126[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3126[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3126 -> 38[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3127[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3127[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3127 -> 39[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3128[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3128[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3128 -> 40[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3129[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3129[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3129 -> 41[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3130[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3130[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3130 -> 42[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3131[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3131[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3131 -> 43[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3132[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3132[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3132 -> 44[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3133[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3133[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3133 -> 45[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3134[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3134[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3134 -> 46[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3135[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3135[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3135 -> 47[label="",style="solid", color="blue", weight=3]; 33.50/15.02 22[label="FiniteMap.addToFM_C2 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 xuu24",fontsize=16,color="burlywood",shape="triangle"];3136[label="xuu24/False",fontsize=10,color="white",style="solid",shape="box"];22 -> 3136[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3136 -> 48[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3137[label="xuu24/True",fontsize=10,color="white",style="solid",shape="box"];22 -> 3137[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3137 -> 49[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 32[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];32 -> 50[label="",style="solid", color="black", weight=3]; 33.50/15.02 33 -> 32[label="",style="dashed", color="red", weight=0]; 33.50/15.02 33[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];34[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];34 -> 51[label="",style="solid", color="black", weight=3]; 33.50/15.02 35[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];35 -> 52[label="",style="solid", color="black", weight=3]; 33.50/15.02 36[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];36 -> 53[label="",style="solid", color="black", weight=3]; 33.50/15.02 37[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];37 -> 54[label="",style="solid", color="black", weight=3]; 33.50/15.02 38[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];38 -> 55[label="",style="solid", color="black", weight=3]; 33.50/15.02 39[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];39 -> 56[label="",style="solid", color="black", weight=3]; 33.50/15.02 40[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];40 -> 57[label="",style="solid", color="black", weight=3]; 33.50/15.02 41[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];41 -> 58[label="",style="solid", color="black", weight=3]; 33.50/15.02 42[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];42 -> 59[label="",style="solid", color="black", weight=3]; 33.50/15.02 43[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];43 -> 60[label="",style="solid", color="black", weight=3]; 33.50/15.02 44[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];44 -> 61[label="",style="solid", color="black", weight=3]; 33.50/15.02 45[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];45 -> 62[label="",style="solid", color="black", weight=3]; 33.50/15.02 46[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];46 -> 63[label="",style="solid", color="black", weight=3]; 33.50/15.02 47[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];47 -> 64[label="",style="solid", color="black", weight=3]; 33.50/15.02 48[label="FiniteMap.addToFM_C2 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 False",fontsize=16,color="black",shape="box"];48 -> 65[label="",style="solid", color="black", weight=3]; 33.50/15.02 49[label="FiniteMap.addToFM_C2 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 True",fontsize=16,color="black",shape="box"];49 -> 66[label="",style="solid", color="black", weight=3]; 33.50/15.02 50[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];51 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 51[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];51 -> 178[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 52 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 52[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];52 -> 179[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 53 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 53[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];53 -> 180[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 54 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 54[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];54 -> 181[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 55 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 55[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];55 -> 182[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 56 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 56[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];56 -> 183[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 57 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 57[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];57 -> 184[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 58 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 58[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];58 -> 185[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 59 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 59[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];59 -> 186[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 60 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 60[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];60 -> 187[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 61 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 61[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];61 -> 188[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 62 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 62[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];62 -> 189[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 63 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 63[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];63 -> 190[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 64 -> 177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 64[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];64 -> 191[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 82[label="",style="dashed", color="red", weight=0]; 33.50/15.02 65[label="FiniteMap.addToFM_C1 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 (xuu22 > xuu17)",fontsize=16,color="magenta"];65 -> 83[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 84[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 85[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 86[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 87[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 88[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 89[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 90[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 65 -> 91[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 66 -> 92[label="",style="dashed", color="red", weight=0]; 33.50/15.02 66[label="FiniteMap.mkBalBranch xuu17 xuu18 (FiniteMap.addToFM_C xuu16 xuu20 xuu22 xuu23) xuu21",fontsize=16,color="magenta"];66 -> 93[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 178[label="compare xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3138[label="xuu500/xuu5000 :% xuu5001",fontsize=10,color="white",style="solid",shape="box"];178 -> 3138[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3138 -> 215[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 177[label="xuu47 == LT",fontsize=16,color="burlywood",shape="triangle"];3139[label="xuu47/LT",fontsize=10,color="white",style="solid",shape="box"];177 -> 3139[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3139 -> 216[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3140[label="xuu47/EQ",fontsize=10,color="white",style="solid",shape="box"];177 -> 3140[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3140 -> 217[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3141[label="xuu47/GT",fontsize=10,color="white",style="solid",shape="box"];177 -> 3141[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3141 -> 218[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 179[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];179 -> 219[label="",style="solid", color="black", weight=3]; 33.50/15.02 180[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];180 -> 220[label="",style="solid", color="black", weight=3]; 33.50/15.02 181[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];181 -> 221[label="",style="solid", color="black", weight=3]; 33.50/15.02 182[label="compare xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3142[label="xuu500/Integer xuu5000",fontsize=10,color="white",style="solid",shape="box"];182 -> 3142[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3142 -> 222[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 183[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];183 -> 223[label="",style="solid", color="black", weight=3]; 33.50/15.02 184[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];184 -> 224[label="",style="solid", color="black", weight=3]; 33.50/15.02 185[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];185 -> 225[label="",style="solid", color="black", weight=3]; 33.50/15.02 186[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];186 -> 226[label="",style="solid", color="black", weight=3]; 33.50/15.02 187[label="compare xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3143[label="xuu500/xuu5000 : xuu5001",fontsize=10,color="white",style="solid",shape="box"];187 -> 3143[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3143 -> 227[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3144[label="xuu500/[]",fontsize=10,color="white",style="solid",shape="box"];187 -> 3144[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3144 -> 228[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 188[label="compare xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3145[label="xuu500/()",fontsize=10,color="white",style="solid",shape="box"];188 -> 3145[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3145 -> 229[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 189[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];189 -> 230[label="",style="solid", color="black", weight=3]; 33.50/15.02 190[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];190 -> 231[label="",style="solid", color="black", weight=3]; 33.50/15.02 191[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];191 -> 232[label="",style="solid", color="black", weight=3]; 33.50/15.02 83[label="xuu23",fontsize=16,color="green",shape="box"];84[label="xuu20",fontsize=16,color="green",shape="box"];85[label="xuu22 > xuu17",fontsize=16,color="blue",shape="box"];3146[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3146[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3146 -> 112[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3147[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3147[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3147 -> 113[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3148[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3148[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3148 -> 114[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3149[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3149[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3149 -> 115[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3150[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3150[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3150 -> 116[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3151[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3151[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3151 -> 117[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3152[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3152[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3152 -> 118[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3153[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3153[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3153 -> 119[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3154[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3154[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3154 -> 120[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3155[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3155[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3155 -> 121[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3156[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3156[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3156 -> 122[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3157[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3157[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3157 -> 123[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3158[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3158[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3158 -> 124[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3159[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3159[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3159 -> 125[label="",style="solid", color="blue", weight=3]; 33.50/15.02 86[label="xuu17",fontsize=16,color="green",shape="box"];87[label="xuu16",fontsize=16,color="green",shape="box"];88[label="xuu18",fontsize=16,color="green",shape="box"];89[label="xuu19",fontsize=16,color="green",shape="box"];90[label="xuu22",fontsize=16,color="green",shape="box"];91[label="xuu21",fontsize=16,color="green",shape="box"];82[label="FiniteMap.addToFM_C1 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 xuu43",fontsize=16,color="burlywood",shape="triangle"];3160[label="xuu43/False",fontsize=10,color="white",style="solid",shape="box"];82 -> 3160[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3160 -> 126[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3161[label="xuu43/True",fontsize=10,color="white",style="solid",shape="box"];82 -> 3161[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3161 -> 127[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 93 -> 14[label="",style="dashed", color="red", weight=0]; 33.50/15.02 93[label="FiniteMap.addToFM_C xuu16 xuu20 xuu22 xuu23",fontsize=16,color="magenta"];93 -> 128[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 93 -> 129[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 93 -> 130[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 93 -> 131[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 92[label="FiniteMap.mkBalBranch xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="triangle"];92 -> 132[label="",style="solid", color="black", weight=3]; 33.50/15.02 215[label="compare (xuu5000 :% xuu5001) xuu40",fontsize=16,color="burlywood",shape="box"];3162[label="xuu40/xuu400 :% xuu401",fontsize=10,color="white",style="solid",shape="box"];215 -> 3162[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3162 -> 248[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 216[label="LT == LT",fontsize=16,color="black",shape="box"];216 -> 249[label="",style="solid", color="black", weight=3]; 33.50/15.02 217[label="EQ == LT",fontsize=16,color="black",shape="box"];217 -> 250[label="",style="solid", color="black", weight=3]; 33.50/15.02 218[label="GT == LT",fontsize=16,color="black",shape="box"];218 -> 251[label="",style="solid", color="black", weight=3]; 33.50/15.02 219[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];219 -> 252[label="",style="solid", color="black", weight=3]; 33.50/15.02 220[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];220 -> 253[label="",style="solid", color="black", weight=3]; 33.50/15.02 221[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];221 -> 254[label="",style="solid", color="black", weight=3]; 33.50/15.02 222[label="compare (Integer xuu5000) xuu40",fontsize=16,color="burlywood",shape="box"];3163[label="xuu40/Integer xuu400",fontsize=10,color="white",style="solid",shape="box"];222 -> 3163[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3163 -> 255[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 223[label="primCmpChar xuu500 xuu40",fontsize=16,color="burlywood",shape="box"];3164[label="xuu500/Char xuu5000",fontsize=10,color="white",style="solid",shape="box"];223 -> 3164[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3164 -> 256[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 224[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];224 -> 257[label="",style="solid", color="black", weight=3]; 33.50/15.02 225[label="primCmpInt xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3165[label="xuu500/Pos xuu5000",fontsize=10,color="white",style="solid",shape="box"];225 -> 3165[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3165 -> 258[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3166[label="xuu500/Neg xuu5000",fontsize=10,color="white",style="solid",shape="box"];225 -> 3166[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3166 -> 259[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 226[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];226 -> 260[label="",style="solid", color="black", weight=3]; 33.50/15.02 227[label="compare (xuu5000 : xuu5001) xuu40",fontsize=16,color="burlywood",shape="box"];3167[label="xuu40/xuu400 : xuu401",fontsize=10,color="white",style="solid",shape="box"];227 -> 3167[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3167 -> 261[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3168[label="xuu40/[]",fontsize=10,color="white",style="solid",shape="box"];227 -> 3168[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3168 -> 262[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 228[label="compare [] xuu40",fontsize=16,color="burlywood",shape="box"];3169[label="xuu40/xuu400 : xuu401",fontsize=10,color="white",style="solid",shape="box"];228 -> 3169[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3169 -> 263[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3170[label="xuu40/[]",fontsize=10,color="white",style="solid",shape="box"];228 -> 3170[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3170 -> 264[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 229[label="compare () xuu40",fontsize=16,color="burlywood",shape="box"];3171[label="xuu40/()",fontsize=10,color="white",style="solid",shape="box"];229 -> 3171[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3171 -> 265[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 230[label="primCmpDouble xuu500 xuu40",fontsize=16,color="burlywood",shape="box"];3172[label="xuu500/Double xuu5000 xuu5001",fontsize=10,color="white",style="solid",shape="box"];230 -> 3172[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3172 -> 266[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 231[label="primCmpFloat xuu500 xuu40",fontsize=16,color="burlywood",shape="box"];3173[label="xuu500/Float xuu5000 xuu5001",fontsize=10,color="white",style="solid",shape="box"];231 -> 3173[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3173 -> 267[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 232[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];232 -> 268[label="",style="solid", color="black", weight=3]; 33.50/15.02 112[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];112 -> 160[label="",style="solid", color="black", weight=3]; 33.50/15.02 113[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];113 -> 161[label="",style="solid", color="black", weight=3]; 33.50/15.02 114[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];114 -> 162[label="",style="solid", color="black", weight=3]; 33.50/15.02 115[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];115 -> 163[label="",style="solid", color="black", weight=3]; 33.50/15.02 116[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];116 -> 164[label="",style="solid", color="black", weight=3]; 33.50/15.02 117[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];117 -> 165[label="",style="solid", color="black", weight=3]; 33.50/15.02 118[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];118 -> 166[label="",style="solid", color="black", weight=3]; 33.50/15.02 119[label="xuu22 > xuu17",fontsize=16,color="black",shape="triangle"];119 -> 167[label="",style="solid", color="black", weight=3]; 33.50/15.02 120[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];120 -> 168[label="",style="solid", color="black", weight=3]; 33.50/15.02 121[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];121 -> 169[label="",style="solid", color="black", weight=3]; 33.50/15.02 122[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];122 -> 170[label="",style="solid", color="black", weight=3]; 33.50/15.02 123[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];123 -> 171[label="",style="solid", color="black", weight=3]; 33.50/15.02 124[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];124 -> 172[label="",style="solid", color="black", weight=3]; 33.50/15.02 125[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];125 -> 173[label="",style="solid", color="black", weight=3]; 33.50/15.02 126[label="FiniteMap.addToFM_C1 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 False",fontsize=16,color="black",shape="box"];126 -> 174[label="",style="solid", color="black", weight=3]; 33.50/15.02 127[label="FiniteMap.addToFM_C1 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 True",fontsize=16,color="black",shape="box"];127 -> 175[label="",style="solid", color="black", weight=3]; 33.50/15.02 128[label="xuu20",fontsize=16,color="green",shape="box"];129[label="xuu16",fontsize=16,color="green",shape="box"];130[label="xuu22",fontsize=16,color="green",shape="box"];131[label="xuu23",fontsize=16,color="green",shape="box"];132[label="FiniteMap.mkBalBranch6 xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="box"];132 -> 176[label="",style="solid", color="black", weight=3]; 33.50/15.02 248[label="compare (xuu5000 :% xuu5001) (xuu400 :% xuu401)",fontsize=16,color="black",shape="box"];248 -> 276[label="",style="solid", color="black", weight=3]; 33.50/15.02 249[label="True",fontsize=16,color="green",shape="box"];250[label="False",fontsize=16,color="green",shape="box"];251[label="False",fontsize=16,color="green",shape="box"];252[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3174[label="xuu500/(xuu5000,xuu5001)",fontsize=10,color="white",style="solid",shape="box"];252 -> 3174[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3174 -> 277[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 253[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3175[label="xuu500/Nothing",fontsize=10,color="white",style="solid",shape="box"];253 -> 3175[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3175 -> 278[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3176[label="xuu500/Just xuu5000",fontsize=10,color="white",style="solid",shape="box"];253 -> 3176[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3176 -> 279[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 254[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3177[label="xuu500/(xuu5000,xuu5001,xuu5002)",fontsize=10,color="white",style="solid",shape="box"];254 -> 3177[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3177 -> 280[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 255[label="compare (Integer xuu5000) (Integer xuu400)",fontsize=16,color="black",shape="box"];255 -> 281[label="",style="solid", color="black", weight=3]; 33.50/15.02 256[label="primCmpChar (Char xuu5000) xuu40",fontsize=16,color="burlywood",shape="box"];3178[label="xuu40/Char xuu400",fontsize=10,color="white",style="solid",shape="box"];256 -> 3178[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3178 -> 282[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 257[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3179[label="xuu500/LT",fontsize=10,color="white",style="solid",shape="box"];257 -> 3179[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3179 -> 283[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3180[label="xuu500/EQ",fontsize=10,color="white",style="solid",shape="box"];257 -> 3180[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3180 -> 284[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3181[label="xuu500/GT",fontsize=10,color="white",style="solid",shape="box"];257 -> 3181[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3181 -> 285[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 258[label="primCmpInt (Pos xuu5000) xuu40",fontsize=16,color="burlywood",shape="box"];3182[label="xuu5000/Succ xuu50000",fontsize=10,color="white",style="solid",shape="box"];258 -> 3182[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3182 -> 286[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3183[label="xuu5000/Zero",fontsize=10,color="white",style="solid",shape="box"];258 -> 3183[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3183 -> 287[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 259[label="primCmpInt (Neg xuu5000) xuu40",fontsize=16,color="burlywood",shape="box"];3184[label="xuu5000/Succ xuu50000",fontsize=10,color="white",style="solid",shape="box"];259 -> 3184[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3184 -> 288[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3185[label="xuu5000/Zero",fontsize=10,color="white",style="solid",shape="box"];259 -> 3185[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3185 -> 289[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 260[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3186[label="xuu500/False",fontsize=10,color="white",style="solid",shape="box"];260 -> 3186[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3186 -> 290[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3187[label="xuu500/True",fontsize=10,color="white",style="solid",shape="box"];260 -> 3187[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3187 -> 291[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 261[label="compare (xuu5000 : xuu5001) (xuu400 : xuu401)",fontsize=16,color="black",shape="box"];261 -> 292[label="",style="solid", color="black", weight=3]; 33.50/15.02 262[label="compare (xuu5000 : xuu5001) []",fontsize=16,color="black",shape="box"];262 -> 293[label="",style="solid", color="black", weight=3]; 33.50/15.02 263[label="compare [] (xuu400 : xuu401)",fontsize=16,color="black",shape="box"];263 -> 294[label="",style="solid", color="black", weight=3]; 33.50/15.02 264[label="compare [] []",fontsize=16,color="black",shape="box"];264 -> 295[label="",style="solid", color="black", weight=3]; 33.50/15.02 265[label="compare () ()",fontsize=16,color="black",shape="box"];265 -> 296[label="",style="solid", color="black", weight=3]; 33.50/15.02 266[label="primCmpDouble (Double xuu5000 xuu5001) xuu40",fontsize=16,color="burlywood",shape="box"];3188[label="xuu5001/Pos xuu50010",fontsize=10,color="white",style="solid",shape="box"];266 -> 3188[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3188 -> 297[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3189[label="xuu5001/Neg xuu50010",fontsize=10,color="white",style="solid",shape="box"];266 -> 3189[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3189 -> 298[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 267[label="primCmpFloat (Float xuu5000 xuu5001) xuu40",fontsize=16,color="burlywood",shape="box"];3190[label="xuu5001/Pos xuu50010",fontsize=10,color="white",style="solid",shape="box"];267 -> 3190[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3190 -> 299[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3191[label="xuu5001/Neg xuu50010",fontsize=10,color="white",style="solid",shape="box"];267 -> 3191[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3191 -> 300[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 268[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3192[label="xuu500/Left xuu5000",fontsize=10,color="white",style="solid",shape="box"];268 -> 3192[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3192 -> 301[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3193[label="xuu500/Right xuu5000",fontsize=10,color="white",style="solid",shape="box"];268 -> 3193[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3193 -> 302[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 160 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 160[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];160 -> 234[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 161 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 161[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];161 -> 235[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 162 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 162[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];162 -> 236[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 163 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 163[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];163 -> 237[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 164 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 164[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];164 -> 238[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 165 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 165[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];165 -> 239[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 166 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 166[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];166 -> 240[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 167 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 167[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];167 -> 241[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 168 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 168[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];168 -> 242[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 169 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 169[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];169 -> 243[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 170 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 170[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];170 -> 244[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 171 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 171[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];171 -> 245[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 172 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 172[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];172 -> 246[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 173 -> 233[label="",style="dashed", color="red", weight=0]; 33.50/15.02 173[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];173 -> 247[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 174[label="FiniteMap.addToFM_C0 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 otherwise",fontsize=16,color="black",shape="box"];174 -> 269[label="",style="solid", color="black", weight=3]; 33.50/15.02 175 -> 92[label="",style="dashed", color="red", weight=0]; 33.50/15.02 175[label="FiniteMap.mkBalBranch xuu36 xuu37 xuu39 (FiniteMap.addToFM_C xuu35 xuu40 xuu41 xuu42)",fontsize=16,color="magenta"];175 -> 270[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 175 -> 271[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 175 -> 272[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 175 -> 273[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 176 -> 274[label="",style="dashed", color="red", weight=0]; 33.50/15.02 176[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 (FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 + FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];176 -> 275[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 276[label="compare (xuu5000 * xuu401) (xuu400 * xuu5001)",fontsize=16,color="blue",shape="box"];3194[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];276 -> 3194[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3194 -> 343[label="",style="solid", color="blue", weight=3]; 33.50/15.02 3195[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];276 -> 3195[label="",style="solid", color="blue", weight=9]; 33.50/15.02 3195 -> 344[label="",style="solid", color="blue", weight=3]; 33.50/15.02 277[label="compare2 (xuu5000,xuu5001) xuu40 ((xuu5000,xuu5001) == xuu40)",fontsize=16,color="burlywood",shape="box"];3196[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];277 -> 3196[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3196 -> 345[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 278[label="compare2 Nothing xuu40 (Nothing == xuu40)",fontsize=16,color="burlywood",shape="box"];3197[label="xuu40/Nothing",fontsize=10,color="white",style="solid",shape="box"];278 -> 3197[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3197 -> 346[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3198[label="xuu40/Just xuu400",fontsize=10,color="white",style="solid",shape="box"];278 -> 3198[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3198 -> 347[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 279[label="compare2 (Just xuu5000) xuu40 (Just xuu5000 == xuu40)",fontsize=16,color="burlywood",shape="box"];3199[label="xuu40/Nothing",fontsize=10,color="white",style="solid",shape="box"];279 -> 3199[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3199 -> 348[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3200[label="xuu40/Just xuu400",fontsize=10,color="white",style="solid",shape="box"];279 -> 3200[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3200 -> 349[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 280[label="compare2 (xuu5000,xuu5001,xuu5002) xuu40 ((xuu5000,xuu5001,xuu5002) == xuu40)",fontsize=16,color="burlywood",shape="box"];3201[label="xuu40/(xuu400,xuu401,xuu402)",fontsize=10,color="white",style="solid",shape="box"];280 -> 3201[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3201 -> 350[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 281 -> 225[label="",style="dashed", color="red", weight=0]; 33.50/15.02 281[label="primCmpInt xuu5000 xuu400",fontsize=16,color="magenta"];281 -> 351[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 281 -> 352[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 282[label="primCmpChar (Char xuu5000) (Char xuu400)",fontsize=16,color="black",shape="box"];282 -> 353[label="",style="solid", color="black", weight=3]; 33.50/15.02 283[label="compare2 LT xuu40 (LT == xuu40)",fontsize=16,color="burlywood",shape="box"];3202[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];283 -> 3202[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3202 -> 354[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3203[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];283 -> 3203[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3203 -> 355[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3204[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];283 -> 3204[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3204 -> 356[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 284[label="compare2 EQ xuu40 (EQ == xuu40)",fontsize=16,color="burlywood",shape="box"];3205[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];284 -> 3205[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3205 -> 357[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3206[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];284 -> 3206[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3206 -> 358[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3207[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];284 -> 3207[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3207 -> 359[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 285[label="compare2 GT xuu40 (GT == xuu40)",fontsize=16,color="burlywood",shape="box"];3208[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];285 -> 3208[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3208 -> 360[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3209[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];285 -> 3209[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3209 -> 361[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3210[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];285 -> 3210[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3210 -> 362[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 286[label="primCmpInt (Pos (Succ xuu50000)) xuu40",fontsize=16,color="burlywood",shape="box"];3211[label="xuu40/Pos xuu400",fontsize=10,color="white",style="solid",shape="box"];286 -> 3211[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3211 -> 363[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3212[label="xuu40/Neg xuu400",fontsize=10,color="white",style="solid",shape="box"];286 -> 3212[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3212 -> 364[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 287[label="primCmpInt (Pos Zero) xuu40",fontsize=16,color="burlywood",shape="box"];3213[label="xuu40/Pos xuu400",fontsize=10,color="white",style="solid",shape="box"];287 -> 3213[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3213 -> 365[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3214[label="xuu40/Neg xuu400",fontsize=10,color="white",style="solid",shape="box"];287 -> 3214[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3214 -> 366[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 288[label="primCmpInt (Neg (Succ xuu50000)) xuu40",fontsize=16,color="burlywood",shape="box"];3215[label="xuu40/Pos xuu400",fontsize=10,color="white",style="solid",shape="box"];288 -> 3215[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3215 -> 367[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3216[label="xuu40/Neg xuu400",fontsize=10,color="white",style="solid",shape="box"];288 -> 3216[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3216 -> 368[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 289[label="primCmpInt (Neg Zero) xuu40",fontsize=16,color="burlywood",shape="box"];3217[label="xuu40/Pos xuu400",fontsize=10,color="white",style="solid",shape="box"];289 -> 3217[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3217 -> 369[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3218[label="xuu40/Neg xuu400",fontsize=10,color="white",style="solid",shape="box"];289 -> 3218[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3218 -> 370[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 290[label="compare2 False xuu40 (False == xuu40)",fontsize=16,color="burlywood",shape="box"];3219[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];290 -> 3219[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3219 -> 371[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3220[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];290 -> 3220[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3220 -> 372[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 291[label="compare2 True xuu40 (True == xuu40)",fontsize=16,color="burlywood",shape="box"];3221[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];291 -> 3221[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3221 -> 373[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3222[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];291 -> 3222[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3222 -> 374[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 292 -> 375[label="",style="dashed", color="red", weight=0]; 33.50/15.02 292[label="primCompAux xuu5000 xuu400 (compare xuu5001 xuu401)",fontsize=16,color="magenta"];292 -> 376[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 293[label="GT",fontsize=16,color="green",shape="box"];294[label="LT",fontsize=16,color="green",shape="box"];295[label="EQ",fontsize=16,color="green",shape="box"];296[label="EQ",fontsize=16,color="green",shape="box"];297[label="primCmpDouble (Double xuu5000 (Pos xuu50010)) xuu40",fontsize=16,color="burlywood",shape="box"];3223[label="xuu40/Double xuu400 xuu401",fontsize=10,color="white",style="solid",shape="box"];297 -> 3223[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3223 -> 377[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 298[label="primCmpDouble (Double xuu5000 (Neg xuu50010)) xuu40",fontsize=16,color="burlywood",shape="box"];3224[label="xuu40/Double xuu400 xuu401",fontsize=10,color="white",style="solid",shape="box"];298 -> 3224[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3224 -> 378[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 299[label="primCmpFloat (Float xuu5000 (Pos xuu50010)) xuu40",fontsize=16,color="burlywood",shape="box"];3225[label="xuu40/Float xuu400 xuu401",fontsize=10,color="white",style="solid",shape="box"];299 -> 3225[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3225 -> 379[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 300[label="primCmpFloat (Float xuu5000 (Neg xuu50010)) xuu40",fontsize=16,color="burlywood",shape="box"];3226[label="xuu40/Float xuu400 xuu401",fontsize=10,color="white",style="solid",shape="box"];300 -> 3226[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3226 -> 380[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 301[label="compare2 (Left xuu5000) xuu40 (Left xuu5000 == xuu40)",fontsize=16,color="burlywood",shape="box"];3227[label="xuu40/Left xuu400",fontsize=10,color="white",style="solid",shape="box"];301 -> 3227[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3227 -> 381[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3228[label="xuu40/Right xuu400",fontsize=10,color="white",style="solid",shape="box"];301 -> 3228[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3228 -> 382[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 302[label="compare2 (Right xuu5000) xuu40 (Right xuu5000 == xuu40)",fontsize=16,color="burlywood",shape="box"];3229[label="xuu40/Left xuu400",fontsize=10,color="white",style="solid",shape="box"];302 -> 3229[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3229 -> 383[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3230[label="xuu40/Right xuu400",fontsize=10,color="white",style="solid",shape="box"];302 -> 3230[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3230 -> 384[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 234 -> 178[label="",style="dashed", color="red", weight=0]; 33.50/15.02 234[label="compare xuu22 xuu17",fontsize=16,color="magenta"];234 -> 303[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 234 -> 304[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 233[label="xuu48 == GT",fontsize=16,color="burlywood",shape="triangle"];3231[label="xuu48/LT",fontsize=10,color="white",style="solid",shape="box"];233 -> 3231[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3231 -> 305[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3232[label="xuu48/EQ",fontsize=10,color="white",style="solid",shape="box"];233 -> 3232[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3232 -> 306[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3233[label="xuu48/GT",fontsize=10,color="white",style="solid",shape="box"];233 -> 3233[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3233 -> 307[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 235 -> 179[label="",style="dashed", color="red", weight=0]; 33.50/15.02 235[label="compare xuu22 xuu17",fontsize=16,color="magenta"];235 -> 308[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 235 -> 309[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 236 -> 180[label="",style="dashed", color="red", weight=0]; 33.50/15.02 236[label="compare xuu22 xuu17",fontsize=16,color="magenta"];236 -> 310[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 236 -> 311[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 237 -> 181[label="",style="dashed", color="red", weight=0]; 33.50/15.02 237[label="compare xuu22 xuu17",fontsize=16,color="magenta"];237 -> 312[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 237 -> 313[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 238 -> 182[label="",style="dashed", color="red", weight=0]; 33.50/15.02 238[label="compare xuu22 xuu17",fontsize=16,color="magenta"];238 -> 314[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 238 -> 315[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 239 -> 183[label="",style="dashed", color="red", weight=0]; 33.50/15.02 239[label="compare xuu22 xuu17",fontsize=16,color="magenta"];239 -> 316[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 239 -> 317[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 240 -> 184[label="",style="dashed", color="red", weight=0]; 33.50/15.02 240[label="compare xuu22 xuu17",fontsize=16,color="magenta"];240 -> 318[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 240 -> 319[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 241 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.02 241[label="compare xuu22 xuu17",fontsize=16,color="magenta"];241 -> 320[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 241 -> 321[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 242 -> 186[label="",style="dashed", color="red", weight=0]; 33.50/15.02 242[label="compare xuu22 xuu17",fontsize=16,color="magenta"];242 -> 322[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 242 -> 323[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 243 -> 187[label="",style="dashed", color="red", weight=0]; 33.50/15.02 243[label="compare xuu22 xuu17",fontsize=16,color="magenta"];243 -> 324[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 243 -> 325[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 244 -> 188[label="",style="dashed", color="red", weight=0]; 33.50/15.02 244[label="compare xuu22 xuu17",fontsize=16,color="magenta"];244 -> 326[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 244 -> 327[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 245 -> 189[label="",style="dashed", color="red", weight=0]; 33.50/15.02 245[label="compare xuu22 xuu17",fontsize=16,color="magenta"];245 -> 328[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 245 -> 329[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 246 -> 190[label="",style="dashed", color="red", weight=0]; 33.50/15.02 246[label="compare xuu22 xuu17",fontsize=16,color="magenta"];246 -> 330[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 246 -> 331[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 247 -> 191[label="",style="dashed", color="red", weight=0]; 33.50/15.02 247[label="compare xuu22 xuu17",fontsize=16,color="magenta"];247 -> 332[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 247 -> 333[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 269[label="FiniteMap.addToFM_C0 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 True",fontsize=16,color="black",shape="box"];269 -> 334[label="",style="solid", color="black", weight=3]; 33.50/15.02 270[label="xuu36",fontsize=16,color="green",shape="box"];271[label="xuu37",fontsize=16,color="green",shape="box"];272[label="xuu39",fontsize=16,color="green",shape="box"];273 -> 14[label="",style="dashed", color="red", weight=0]; 33.50/15.02 273[label="FiniteMap.addToFM_C xuu35 xuu40 xuu41 xuu42",fontsize=16,color="magenta"];273 -> 335[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 273 -> 336[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 273 -> 337[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 273 -> 338[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 275 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.02 275[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 + FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];275 -> 339[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 275 -> 340[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 274[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 xuu49",fontsize=16,color="burlywood",shape="triangle"];3234[label="xuu49/False",fontsize=10,color="white",style="solid",shape="box"];274 -> 3234[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3234 -> 341[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3235[label="xuu49/True",fontsize=10,color="white",style="solid",shape="box"];274 -> 3235[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3235 -> 342[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 343 -> 182[label="",style="dashed", color="red", weight=0]; 33.50/15.02 343[label="compare (xuu5000 * xuu401) (xuu400 * xuu5001)",fontsize=16,color="magenta"];343 -> 385[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 343 -> 386[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 344 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.02 344[label="compare (xuu5000 * xuu401) (xuu400 * xuu5001)",fontsize=16,color="magenta"];344 -> 387[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 344 -> 388[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 345[label="compare2 (xuu5000,xuu5001) (xuu400,xuu401) ((xuu5000,xuu5001) == (xuu400,xuu401))",fontsize=16,color="black",shape="box"];345 -> 389[label="",style="solid", color="black", weight=3]; 33.50/15.02 346[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];346 -> 390[label="",style="solid", color="black", weight=3]; 33.50/15.02 347[label="compare2 Nothing (Just xuu400) (Nothing == Just xuu400)",fontsize=16,color="black",shape="box"];347 -> 391[label="",style="solid", color="black", weight=3]; 33.50/15.02 348[label="compare2 (Just xuu5000) Nothing (Just xuu5000 == Nothing)",fontsize=16,color="black",shape="box"];348 -> 392[label="",style="solid", color="black", weight=3]; 33.50/15.02 349[label="compare2 (Just xuu5000) (Just xuu400) (Just xuu5000 == Just xuu400)",fontsize=16,color="black",shape="box"];349 -> 393[label="",style="solid", color="black", weight=3]; 33.50/15.02 350[label="compare2 (xuu5000,xuu5001,xuu5002) (xuu400,xuu401,xuu402) ((xuu5000,xuu5001,xuu5002) == (xuu400,xuu401,xuu402))",fontsize=16,color="black",shape="box"];350 -> 394[label="",style="solid", color="black", weight=3]; 33.50/15.02 351[label="xuu400",fontsize=16,color="green",shape="box"];352[label="xuu5000",fontsize=16,color="green",shape="box"];353[label="primCmpNat xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3236[label="xuu5000/Succ xuu50000",fontsize=10,color="white",style="solid",shape="box"];353 -> 3236[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3236 -> 395[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3237[label="xuu5000/Zero",fontsize=10,color="white",style="solid",shape="box"];353 -> 3237[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3237 -> 396[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 354[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];354 -> 397[label="",style="solid", color="black", weight=3]; 33.50/15.02 355[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];355 -> 398[label="",style="solid", color="black", weight=3]; 33.50/15.02 356[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];356 -> 399[label="",style="solid", color="black", weight=3]; 33.50/15.02 357[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];357 -> 400[label="",style="solid", color="black", weight=3]; 33.50/15.02 358[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];358 -> 401[label="",style="solid", color="black", weight=3]; 33.50/15.02 359[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];359 -> 402[label="",style="solid", color="black", weight=3]; 33.50/15.02 360[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];360 -> 403[label="",style="solid", color="black", weight=3]; 33.50/15.02 361[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];361 -> 404[label="",style="solid", color="black", weight=3]; 33.50/15.02 362[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];362 -> 405[label="",style="solid", color="black", weight=3]; 33.50/15.02 363[label="primCmpInt (Pos (Succ xuu50000)) (Pos xuu400)",fontsize=16,color="black",shape="box"];363 -> 406[label="",style="solid", color="black", weight=3]; 33.50/15.02 364[label="primCmpInt (Pos (Succ xuu50000)) (Neg xuu400)",fontsize=16,color="black",shape="box"];364 -> 407[label="",style="solid", color="black", weight=3]; 33.50/15.02 365[label="primCmpInt (Pos Zero) (Pos xuu400)",fontsize=16,color="burlywood",shape="box"];3238[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];365 -> 3238[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3238 -> 408[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3239[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];365 -> 3239[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3239 -> 409[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 366[label="primCmpInt (Pos Zero) (Neg xuu400)",fontsize=16,color="burlywood",shape="box"];3240[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];366 -> 3240[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3240 -> 410[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3241[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];366 -> 3241[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3241 -> 411[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 367[label="primCmpInt (Neg (Succ xuu50000)) (Pos xuu400)",fontsize=16,color="black",shape="box"];367 -> 412[label="",style="solid", color="black", weight=3]; 33.50/15.02 368[label="primCmpInt (Neg (Succ xuu50000)) (Neg xuu400)",fontsize=16,color="black",shape="box"];368 -> 413[label="",style="solid", color="black", weight=3]; 33.50/15.02 369[label="primCmpInt (Neg Zero) (Pos xuu400)",fontsize=16,color="burlywood",shape="box"];3242[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];369 -> 3242[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3242 -> 414[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3243[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];369 -> 3243[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3243 -> 415[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 370[label="primCmpInt (Neg Zero) (Neg xuu400)",fontsize=16,color="burlywood",shape="box"];3244[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];370 -> 3244[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3244 -> 416[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3245[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];370 -> 3245[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3245 -> 417[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 371[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];371 -> 418[label="",style="solid", color="black", weight=3]; 33.50/15.02 372[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];372 -> 419[label="",style="solid", color="black", weight=3]; 33.50/15.02 373[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];373 -> 420[label="",style="solid", color="black", weight=3]; 33.50/15.02 374[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];374 -> 421[label="",style="solid", color="black", weight=3]; 33.50/15.02 376 -> 187[label="",style="dashed", color="red", weight=0]; 33.50/15.02 376[label="compare xuu5001 xuu401",fontsize=16,color="magenta"];376 -> 422[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 376 -> 423[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 375[label="primCompAux xuu5000 xuu400 xuu50",fontsize=16,color="black",shape="triangle"];375 -> 424[label="",style="solid", color="black", weight=3]; 33.50/15.02 377[label="primCmpDouble (Double xuu5000 (Pos xuu50010)) (Double xuu400 xuu401)",fontsize=16,color="burlywood",shape="box"];3246[label="xuu401/Pos xuu4010",fontsize=10,color="white",style="solid",shape="box"];377 -> 3246[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3246 -> 432[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3247[label="xuu401/Neg xuu4010",fontsize=10,color="white",style="solid",shape="box"];377 -> 3247[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3247 -> 433[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 378[label="primCmpDouble (Double xuu5000 (Neg xuu50010)) (Double xuu400 xuu401)",fontsize=16,color="burlywood",shape="box"];3248[label="xuu401/Pos xuu4010",fontsize=10,color="white",style="solid",shape="box"];378 -> 3248[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3248 -> 434[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3249[label="xuu401/Neg xuu4010",fontsize=10,color="white",style="solid",shape="box"];378 -> 3249[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3249 -> 435[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 379[label="primCmpFloat (Float xuu5000 (Pos xuu50010)) (Float xuu400 xuu401)",fontsize=16,color="burlywood",shape="box"];3250[label="xuu401/Pos xuu4010",fontsize=10,color="white",style="solid",shape="box"];379 -> 3250[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3250 -> 436[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3251[label="xuu401/Neg xuu4010",fontsize=10,color="white",style="solid",shape="box"];379 -> 3251[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3251 -> 437[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 380[label="primCmpFloat (Float xuu5000 (Neg xuu50010)) (Float xuu400 xuu401)",fontsize=16,color="burlywood",shape="box"];3252[label="xuu401/Pos xuu4010",fontsize=10,color="white",style="solid",shape="box"];380 -> 3252[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3252 -> 438[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3253[label="xuu401/Neg xuu4010",fontsize=10,color="white",style="solid",shape="box"];380 -> 3253[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3253 -> 439[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 381[label="compare2 (Left xuu5000) (Left xuu400) (Left xuu5000 == Left xuu400)",fontsize=16,color="black",shape="box"];381 -> 440[label="",style="solid", color="black", weight=3]; 33.50/15.02 382[label="compare2 (Left xuu5000) (Right xuu400) (Left xuu5000 == Right xuu400)",fontsize=16,color="black",shape="box"];382 -> 441[label="",style="solid", color="black", weight=3]; 33.50/15.02 383[label="compare2 (Right xuu5000) (Left xuu400) (Right xuu5000 == Left xuu400)",fontsize=16,color="black",shape="box"];383 -> 442[label="",style="solid", color="black", weight=3]; 33.50/15.02 384[label="compare2 (Right xuu5000) (Right xuu400) (Right xuu5000 == Right xuu400)",fontsize=16,color="black",shape="box"];384 -> 443[label="",style="solid", color="black", weight=3]; 33.50/15.02 303[label="xuu17",fontsize=16,color="green",shape="box"];304[label="xuu22",fontsize=16,color="green",shape="box"];305[label="LT == GT",fontsize=16,color="black",shape="box"];305 -> 425[label="",style="solid", color="black", weight=3]; 33.50/15.02 306[label="EQ == GT",fontsize=16,color="black",shape="box"];306 -> 426[label="",style="solid", color="black", weight=3]; 33.50/15.02 307[label="GT == GT",fontsize=16,color="black",shape="box"];307 -> 427[label="",style="solid", color="black", weight=3]; 33.50/15.02 308[label="xuu17",fontsize=16,color="green",shape="box"];309[label="xuu22",fontsize=16,color="green",shape="box"];310[label="xuu17",fontsize=16,color="green",shape="box"];311[label="xuu22",fontsize=16,color="green",shape="box"];312[label="xuu17",fontsize=16,color="green",shape="box"];313[label="xuu22",fontsize=16,color="green",shape="box"];314[label="xuu17",fontsize=16,color="green",shape="box"];315[label="xuu22",fontsize=16,color="green",shape="box"];316[label="xuu17",fontsize=16,color="green",shape="box"];317[label="xuu22",fontsize=16,color="green",shape="box"];318[label="xuu17",fontsize=16,color="green",shape="box"];319[label="xuu22",fontsize=16,color="green",shape="box"];320[label="xuu17",fontsize=16,color="green",shape="box"];321[label="xuu22",fontsize=16,color="green",shape="box"];322[label="xuu17",fontsize=16,color="green",shape="box"];323[label="xuu22",fontsize=16,color="green",shape="box"];324[label="xuu17",fontsize=16,color="green",shape="box"];325[label="xuu22",fontsize=16,color="green",shape="box"];326[label="xuu17",fontsize=16,color="green",shape="box"];327[label="xuu22",fontsize=16,color="green",shape="box"];328[label="xuu17",fontsize=16,color="green",shape="box"];329[label="xuu22",fontsize=16,color="green",shape="box"];330[label="xuu17",fontsize=16,color="green",shape="box"];331[label="xuu22",fontsize=16,color="green",shape="box"];332[label="xuu17",fontsize=16,color="green",shape="box"];333[label="xuu22",fontsize=16,color="green",shape="box"];334[label="FiniteMap.Branch xuu41 (xuu35 xuu37 xuu42) xuu38 xuu39 xuu40",fontsize=16,color="green",shape="box"];334 -> 428[label="",style="dashed", color="green", weight=3]; 33.50/15.02 335[label="xuu40",fontsize=16,color="green",shape="box"];336[label="xuu35",fontsize=16,color="green",shape="box"];337[label="xuu41",fontsize=16,color="green",shape="box"];338[label="xuu42",fontsize=16,color="green",shape="box"];339[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];340[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 + FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="box"];340 -> 429[label="",style="solid", color="black", weight=3]; 33.50/15.02 341[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 False",fontsize=16,color="black",shape="box"];341 -> 430[label="",style="solid", color="black", weight=3]; 33.50/15.02 342[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 True",fontsize=16,color="black",shape="box"];342 -> 431[label="",style="solid", color="black", weight=3]; 33.50/15.02 385[label="xuu400 * xuu5001",fontsize=16,color="burlywood",shape="triangle"];3254[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];385 -> 3254[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3254 -> 444[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 386 -> 385[label="",style="dashed", color="red", weight=0]; 33.50/15.02 386[label="xuu5000 * xuu401",fontsize=16,color="magenta"];386 -> 445[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 386 -> 446[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 387[label="xuu400 * xuu5001",fontsize=16,color="black",shape="triangle"];387 -> 447[label="",style="solid", color="black", weight=3]; 33.50/15.02 388 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.02 388[label="xuu5000 * xuu401",fontsize=16,color="magenta"];388 -> 448[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 388 -> 449[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 389 -> 943[label="",style="dashed", color="red", weight=0]; 33.50/15.02 389[label="compare2 (xuu5000,xuu5001) (xuu400,xuu401) (xuu5000 == xuu400 && xuu5001 == xuu401)",fontsize=16,color="magenta"];389 -> 944[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 389 -> 945[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 389 -> 946[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 389 -> 947[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 389 -> 948[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 390[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];390 -> 456[label="",style="solid", color="black", weight=3]; 33.50/15.02 391[label="compare2 Nothing (Just xuu400) False",fontsize=16,color="black",shape="box"];391 -> 457[label="",style="solid", color="black", weight=3]; 33.50/15.02 392[label="compare2 (Just xuu5000) Nothing False",fontsize=16,color="black",shape="box"];392 -> 458[label="",style="solid", color="black", weight=3]; 33.50/15.02 393 -> 459[label="",style="dashed", color="red", weight=0]; 33.50/15.02 393[label="compare2 (Just xuu5000) (Just xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];393 -> 460[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 393 -> 461[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 393 -> 462[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 394 -> 989[label="",style="dashed", color="red", weight=0]; 33.50/15.02 394[label="compare2 (xuu5000,xuu5001,xuu5002) (xuu400,xuu401,xuu402) (xuu5000 == xuu400 && xuu5001 == xuu401 && xuu5002 == xuu402)",fontsize=16,color="magenta"];394 -> 990[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 394 -> 991[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 394 -> 992[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 394 -> 993[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 394 -> 994[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 394 -> 995[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 394 -> 996[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 395[label="primCmpNat (Succ xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3255[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];395 -> 3255[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3255 -> 471[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3256[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];395 -> 3256[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3256 -> 472[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 396[label="primCmpNat Zero xuu400",fontsize=16,color="burlywood",shape="box"];3257[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];396 -> 3257[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3257 -> 473[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3258[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];396 -> 3258[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3258 -> 474[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 397[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];397 -> 475[label="",style="solid", color="black", weight=3]; 33.50/15.02 398[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];398 -> 476[label="",style="solid", color="black", weight=3]; 33.50/15.02 399[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];399 -> 477[label="",style="solid", color="black", weight=3]; 33.50/15.02 400[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];400 -> 478[label="",style="solid", color="black", weight=3]; 33.50/15.02 401[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];401 -> 479[label="",style="solid", color="black", weight=3]; 33.50/15.02 402[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];402 -> 480[label="",style="solid", color="black", weight=3]; 33.50/15.02 403[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];403 -> 481[label="",style="solid", color="black", weight=3]; 33.50/15.02 404[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];404 -> 482[label="",style="solid", color="black", weight=3]; 33.50/15.02 405[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];405 -> 483[label="",style="solid", color="black", weight=3]; 33.50/15.02 406 -> 353[label="",style="dashed", color="red", weight=0]; 33.50/15.02 406[label="primCmpNat (Succ xuu50000) xuu400",fontsize=16,color="magenta"];406 -> 484[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 406 -> 485[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 407[label="GT",fontsize=16,color="green",shape="box"];408[label="primCmpInt (Pos Zero) (Pos (Succ xuu4000))",fontsize=16,color="black",shape="box"];408 -> 486[label="",style="solid", color="black", weight=3]; 33.50/15.02 409[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];409 -> 487[label="",style="solid", color="black", weight=3]; 33.50/15.02 410[label="primCmpInt (Pos Zero) (Neg (Succ xuu4000))",fontsize=16,color="black",shape="box"];410 -> 488[label="",style="solid", color="black", weight=3]; 33.50/15.02 411[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];411 -> 489[label="",style="solid", color="black", weight=3]; 33.50/15.02 412[label="LT",fontsize=16,color="green",shape="box"];413 -> 353[label="",style="dashed", color="red", weight=0]; 33.50/15.02 413[label="primCmpNat xuu400 (Succ xuu50000)",fontsize=16,color="magenta"];413 -> 490[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 413 -> 491[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 414[label="primCmpInt (Neg Zero) (Pos (Succ xuu4000))",fontsize=16,color="black",shape="box"];414 -> 492[label="",style="solid", color="black", weight=3]; 33.50/15.02 415[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];415 -> 493[label="",style="solid", color="black", weight=3]; 33.50/15.02 416[label="primCmpInt (Neg Zero) (Neg (Succ xuu4000))",fontsize=16,color="black",shape="box"];416 -> 494[label="",style="solid", color="black", weight=3]; 33.50/15.02 417[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];417 -> 495[label="",style="solid", color="black", weight=3]; 33.50/15.02 418[label="compare2 False False True",fontsize=16,color="black",shape="box"];418 -> 496[label="",style="solid", color="black", weight=3]; 33.50/15.02 419[label="compare2 False True False",fontsize=16,color="black",shape="box"];419 -> 497[label="",style="solid", color="black", weight=3]; 33.50/15.02 420[label="compare2 True False False",fontsize=16,color="black",shape="box"];420 -> 498[label="",style="solid", color="black", weight=3]; 33.50/15.02 421[label="compare2 True True True",fontsize=16,color="black",shape="box"];421 -> 499[label="",style="solid", color="black", weight=3]; 33.50/15.02 422[label="xuu401",fontsize=16,color="green",shape="box"];423[label="xuu5001",fontsize=16,color="green",shape="box"];424 -> 500[label="",style="dashed", color="red", weight=0]; 33.50/15.02 424[label="primCompAux0 xuu50 (compare xuu5000 xuu400)",fontsize=16,color="magenta"];424 -> 501[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 424 -> 502[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 432[label="primCmpDouble (Double xuu5000 (Pos xuu50010)) (Double xuu400 (Pos xuu4010))",fontsize=16,color="black",shape="box"];432 -> 503[label="",style="solid", color="black", weight=3]; 33.50/15.02 433[label="primCmpDouble (Double xuu5000 (Pos xuu50010)) (Double xuu400 (Neg xuu4010))",fontsize=16,color="black",shape="box"];433 -> 504[label="",style="solid", color="black", weight=3]; 33.50/15.02 434[label="primCmpDouble (Double xuu5000 (Neg xuu50010)) (Double xuu400 (Pos xuu4010))",fontsize=16,color="black",shape="box"];434 -> 505[label="",style="solid", color="black", weight=3]; 33.50/15.02 435[label="primCmpDouble (Double xuu5000 (Neg xuu50010)) (Double xuu400 (Neg xuu4010))",fontsize=16,color="black",shape="box"];435 -> 506[label="",style="solid", color="black", weight=3]; 33.50/15.02 436[label="primCmpFloat (Float xuu5000 (Pos xuu50010)) (Float xuu400 (Pos xuu4010))",fontsize=16,color="black",shape="box"];436 -> 507[label="",style="solid", color="black", weight=3]; 33.50/15.02 437[label="primCmpFloat (Float xuu5000 (Pos xuu50010)) (Float xuu400 (Neg xuu4010))",fontsize=16,color="black",shape="box"];437 -> 508[label="",style="solid", color="black", weight=3]; 33.50/15.02 438[label="primCmpFloat (Float xuu5000 (Neg xuu50010)) (Float xuu400 (Pos xuu4010))",fontsize=16,color="black",shape="box"];438 -> 509[label="",style="solid", color="black", weight=3]; 33.50/15.02 439[label="primCmpFloat (Float xuu5000 (Neg xuu50010)) (Float xuu400 (Neg xuu4010))",fontsize=16,color="black",shape="box"];439 -> 510[label="",style="solid", color="black", weight=3]; 33.50/15.02 440 -> 511[label="",style="dashed", color="red", weight=0]; 33.50/15.02 440[label="compare2 (Left xuu5000) (Left xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];440 -> 512[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 440 -> 513[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 440 -> 514[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 441[label="compare2 (Left xuu5000) (Right xuu400) False",fontsize=16,color="black",shape="box"];441 -> 515[label="",style="solid", color="black", weight=3]; 33.50/15.02 442[label="compare2 (Right xuu5000) (Left xuu400) False",fontsize=16,color="black",shape="box"];442 -> 516[label="",style="solid", color="black", weight=3]; 33.50/15.02 443 -> 517[label="",style="dashed", color="red", weight=0]; 33.50/15.02 443[label="compare2 (Right xuu5000) (Right xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];443 -> 518[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 443 -> 519[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 443 -> 520[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 425[label="False",fontsize=16,color="green",shape="box"];426[label="False",fontsize=16,color="green",shape="box"];427[label="True",fontsize=16,color="green",shape="box"];428[label="xuu35 xuu37 xuu42",fontsize=16,color="green",shape="box"];428 -> 521[label="",style="dashed", color="green", weight=3]; 33.50/15.02 428 -> 522[label="",style="dashed", color="green", weight=3]; 33.50/15.02 429 -> 1177[label="",style="dashed", color="red", weight=0]; 33.50/15.02 429[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21) (FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21)",fontsize=16,color="magenta"];429 -> 1178[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 429 -> 1179[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 430 -> 524[label="",style="dashed", color="red", weight=0]; 33.50/15.02 430[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 (FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21)",fontsize=16,color="magenta"];430 -> 525[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 431[label="FiniteMap.mkBranch (Pos (Succ Zero)) xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="box"];431 -> 526[label="",style="solid", color="black", weight=3]; 33.50/15.02 444[label="Integer xuu4000 * xuu5001",fontsize=16,color="burlywood",shape="box"];3259[label="xuu5001/Integer xuu50010",fontsize=10,color="white",style="solid",shape="box"];444 -> 3259[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3259 -> 527[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 445[label="xuu5000",fontsize=16,color="green",shape="box"];446[label="xuu401",fontsize=16,color="green",shape="box"];447[label="primMulInt xuu400 xuu5001",fontsize=16,color="burlywood",shape="triangle"];3260[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];447 -> 3260[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3260 -> 528[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 3261[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];447 -> 3261[label="",style="solid", color="burlywood", weight=9]; 33.50/15.02 3261 -> 529[label="",style="solid", color="burlywood", weight=3]; 33.50/15.02 448[label="xuu5000",fontsize=16,color="green",shape="box"];449[label="xuu401",fontsize=16,color="green",shape="box"];944[label="xuu5001",fontsize=16,color="green",shape="box"];945[label="xuu5000",fontsize=16,color="green",shape="box"];946[label="xuu400",fontsize=16,color="green",shape="box"];947[label="xuu401",fontsize=16,color="green",shape="box"];948 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.02 948[label="xuu5000 == xuu400 && xuu5001 == xuu401",fontsize=16,color="magenta"];948 -> 1022[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 948 -> 1023[label="",style="dashed", color="magenta", weight=3]; 33.50/15.02 943[label="compare2 (xuu111,xuu112) (xuu113,xuu114) xuu115",fontsize=16,color="burlywood",shape="triangle"];3262[label="xuu115/False",fontsize=10,color="white",style="solid",shape="box"];943 -> 3262[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3262 -> 968[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3263[label="xuu115/True",fontsize=10,color="white",style="solid",shape="box"];943 -> 3263[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3263 -> 969[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 456[label="EQ",fontsize=16,color="green",shape="box"];457[label="compare1 Nothing (Just xuu400) (Nothing <= Just xuu400)",fontsize=16,color="black",shape="box"];457 -> 546[label="",style="solid", color="black", weight=3]; 33.50/15.03 458[label="compare1 (Just xuu5000) Nothing (Just xuu5000 <= Nothing)",fontsize=16,color="black",shape="box"];458 -> 547[label="",style="solid", color="black", weight=3]; 33.50/15.03 460[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3264[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3264[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3264 -> 548[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3265[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3265[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3265 -> 549[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3266[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3266[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3266 -> 550[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3267[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3267[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3267 -> 551[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3268[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3268[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3268 -> 552[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3269[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3269[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3269 -> 553[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3270[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3270[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3270 -> 554[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3271[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3271[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3271 -> 555[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3272[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3272[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3272 -> 556[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3273[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3273[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3273 -> 557[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3274[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3274[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3274 -> 558[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3275[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3275[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3275 -> 559[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3276[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3276[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3276 -> 560[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3277[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3277[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3277 -> 561[label="",style="solid", color="blue", weight=3]; 33.50/15.03 461[label="xuu5000",fontsize=16,color="green",shape="box"];462[label="xuu400",fontsize=16,color="green",shape="box"];459[label="compare2 (Just xuu66) (Just xuu67) xuu68",fontsize=16,color="burlywood",shape="triangle"];3278[label="xuu68/False",fontsize=10,color="white",style="solid",shape="box"];459 -> 3278[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3278 -> 562[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3279[label="xuu68/True",fontsize=10,color="white",style="solid",shape="box"];459 -> 3279[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3279 -> 563[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 990[label="xuu402",fontsize=16,color="green",shape="box"];991[label="xuu5002",fontsize=16,color="green",shape="box"];992[label="xuu400",fontsize=16,color="green",shape="box"];993[label="xuu401",fontsize=16,color="green",shape="box"];994[label="xuu5001",fontsize=16,color="green",shape="box"];995 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.03 995[label="xuu5000 == xuu400 && xuu5001 == xuu401 && xuu5002 == xuu402",fontsize=16,color="magenta"];995 -> 1024[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 995 -> 1025[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 996[label="xuu5000",fontsize=16,color="green",shape="box"];989[label="compare2 (xuu77,xuu78,xuu79) (xuu80,xuu81,xuu82) xuu123",fontsize=16,color="burlywood",shape="triangle"];3280[label="xuu123/False",fontsize=10,color="white",style="solid",shape="box"];989 -> 3280[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3280 -> 1005[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3281[label="xuu123/True",fontsize=10,color="white",style="solid",shape="box"];989 -> 3281[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3281 -> 1006[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 471[label="primCmpNat (Succ xuu50000) (Succ xuu4000)",fontsize=16,color="black",shape="box"];471 -> 580[label="",style="solid", color="black", weight=3]; 33.50/15.03 472[label="primCmpNat (Succ xuu50000) Zero",fontsize=16,color="black",shape="box"];472 -> 581[label="",style="solid", color="black", weight=3]; 33.50/15.03 473[label="primCmpNat Zero (Succ xuu4000)",fontsize=16,color="black",shape="box"];473 -> 582[label="",style="solid", color="black", weight=3]; 33.50/15.03 474[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];474 -> 583[label="",style="solid", color="black", weight=3]; 33.50/15.03 475[label="EQ",fontsize=16,color="green",shape="box"];476[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];476 -> 584[label="",style="solid", color="black", weight=3]; 33.50/15.03 477[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];477 -> 585[label="",style="solid", color="black", weight=3]; 33.50/15.03 478[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];478 -> 586[label="",style="solid", color="black", weight=3]; 33.50/15.03 479[label="EQ",fontsize=16,color="green",shape="box"];480[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];480 -> 587[label="",style="solid", color="black", weight=3]; 33.50/15.03 481[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];481 -> 588[label="",style="solid", color="black", weight=3]; 33.50/15.03 482[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];482 -> 589[label="",style="solid", color="black", weight=3]; 33.50/15.03 483[label="EQ",fontsize=16,color="green",shape="box"];484[label="xuu400",fontsize=16,color="green",shape="box"];485[label="Succ xuu50000",fontsize=16,color="green",shape="box"];486 -> 353[label="",style="dashed", color="red", weight=0]; 33.50/15.03 486[label="primCmpNat Zero (Succ xuu4000)",fontsize=16,color="magenta"];486 -> 590[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 486 -> 591[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 487[label="EQ",fontsize=16,color="green",shape="box"];488[label="GT",fontsize=16,color="green",shape="box"];489[label="EQ",fontsize=16,color="green",shape="box"];490[label="Succ xuu50000",fontsize=16,color="green",shape="box"];491[label="xuu400",fontsize=16,color="green",shape="box"];492[label="LT",fontsize=16,color="green",shape="box"];493[label="EQ",fontsize=16,color="green",shape="box"];494 -> 353[label="",style="dashed", color="red", weight=0]; 33.50/15.03 494[label="primCmpNat (Succ xuu4000) Zero",fontsize=16,color="magenta"];494 -> 592[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 494 -> 593[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 495[label="EQ",fontsize=16,color="green",shape="box"];496[label="EQ",fontsize=16,color="green",shape="box"];497[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];497 -> 594[label="",style="solid", color="black", weight=3]; 33.50/15.03 498[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];498 -> 595[label="",style="solid", color="black", weight=3]; 33.50/15.03 499[label="EQ",fontsize=16,color="green",shape="box"];501[label="compare xuu5000 xuu400",fontsize=16,color="blue",shape="box"];3282[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3282[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3282 -> 596[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3283[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3283[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3283 -> 597[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3284[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3284[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3284 -> 598[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3285[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3285[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3285 -> 599[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3286[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3286[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3286 -> 600[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3287[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3287[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3287 -> 601[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3288[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3288[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3288 -> 602[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3289[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3289[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3289 -> 603[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3290[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3290[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3290 -> 604[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3291[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3291[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3291 -> 605[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3292[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3292[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3292 -> 606[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3293[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3293[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3293 -> 607[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3294[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3294[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3294 -> 608[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3295[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];501 -> 3295[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3295 -> 609[label="",style="solid", color="blue", weight=3]; 33.50/15.03 502[label="xuu50",fontsize=16,color="green",shape="box"];500[label="primCompAux0 xuu87 xuu88",fontsize=16,color="burlywood",shape="triangle"];3296[label="xuu88/LT",fontsize=10,color="white",style="solid",shape="box"];500 -> 3296[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3296 -> 610[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3297[label="xuu88/EQ",fontsize=10,color="white",style="solid",shape="box"];500 -> 3297[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3297 -> 611[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3298[label="xuu88/GT",fontsize=10,color="white",style="solid",shape="box"];500 -> 3298[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3298 -> 612[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 503 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 503[label="compare (xuu5000 * Pos xuu4010) (Pos xuu50010 * xuu400)",fontsize=16,color="magenta"];503 -> 613[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 503 -> 614[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 504 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 504[label="compare (xuu5000 * Pos xuu4010) (Neg xuu50010 * xuu400)",fontsize=16,color="magenta"];504 -> 615[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 504 -> 616[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 505 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 505[label="compare (xuu5000 * Neg xuu4010) (Pos xuu50010 * xuu400)",fontsize=16,color="magenta"];505 -> 617[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 505 -> 618[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 506 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 506[label="compare (xuu5000 * Neg xuu4010) (Neg xuu50010 * xuu400)",fontsize=16,color="magenta"];506 -> 619[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 506 -> 620[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 507 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 507[label="compare (xuu5000 * Pos xuu4010) (Pos xuu50010 * xuu400)",fontsize=16,color="magenta"];507 -> 621[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 507 -> 622[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 508 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 508[label="compare (xuu5000 * Pos xuu4010) (Neg xuu50010 * xuu400)",fontsize=16,color="magenta"];508 -> 623[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 508 -> 624[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 509 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 509[label="compare (xuu5000 * Neg xuu4010) (Pos xuu50010 * xuu400)",fontsize=16,color="magenta"];509 -> 625[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 509 -> 626[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 510 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 510[label="compare (xuu5000 * Neg xuu4010) (Neg xuu50010 * xuu400)",fontsize=16,color="magenta"];510 -> 627[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 510 -> 628[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 512[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3299[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3299[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3299 -> 629[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3300[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3300[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3300 -> 630[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3301[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3301[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3301 -> 631[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3302[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3302[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3302 -> 632[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3303[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3303[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3303 -> 633[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3304[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3304[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3304 -> 634[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3305[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3305[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3305 -> 635[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3306[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3306[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3306 -> 636[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3307[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3307[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3307 -> 637[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3308[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3308[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3308 -> 638[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3309[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3309[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3309 -> 639[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3310[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3310[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3310 -> 640[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3311[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3311[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3311 -> 641[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3312[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3312[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3312 -> 642[label="",style="solid", color="blue", weight=3]; 33.50/15.03 513[label="xuu5000",fontsize=16,color="green",shape="box"];514[label="xuu400",fontsize=16,color="green",shape="box"];511[label="compare2 (Left xuu93) (Left xuu94) xuu95",fontsize=16,color="burlywood",shape="triangle"];3313[label="xuu95/False",fontsize=10,color="white",style="solid",shape="box"];511 -> 3313[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3313 -> 643[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3314[label="xuu95/True",fontsize=10,color="white",style="solid",shape="box"];511 -> 3314[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3314 -> 644[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 515[label="compare1 (Left xuu5000) (Right xuu400) (Left xuu5000 <= Right xuu400)",fontsize=16,color="black",shape="box"];515 -> 645[label="",style="solid", color="black", weight=3]; 33.50/15.03 516[label="compare1 (Right xuu5000) (Left xuu400) (Right xuu5000 <= Left xuu400)",fontsize=16,color="black",shape="box"];516 -> 646[label="",style="solid", color="black", weight=3]; 33.50/15.03 518[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3315[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3315[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3315 -> 647[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3316[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3316[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3316 -> 648[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3317[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3317[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3317 -> 649[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3318[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3318[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3318 -> 650[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3319[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3319[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3319 -> 651[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3320[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3320[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3320 -> 652[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3321[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3321[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3321 -> 653[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3322[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3322[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3322 -> 654[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3323[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3323[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3323 -> 655[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3324[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3324[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3324 -> 656[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3325[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3325[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3325 -> 657[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3326[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3326[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3326 -> 658[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3327[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3327[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3327 -> 659[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3328[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 3328[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3328 -> 660[label="",style="solid", color="blue", weight=3]; 33.50/15.03 519[label="xuu5000",fontsize=16,color="green",shape="box"];520[label="xuu400",fontsize=16,color="green",shape="box"];517[label="compare2 (Right xuu100) (Right xuu101) xuu102",fontsize=16,color="burlywood",shape="triangle"];3329[label="xuu102/False",fontsize=10,color="white",style="solid",shape="box"];517 -> 3329[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3329 -> 661[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3330[label="xuu102/True",fontsize=10,color="white",style="solid",shape="box"];517 -> 3330[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3330 -> 662[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 521[label="xuu37",fontsize=16,color="green",shape="box"];522[label="xuu42",fontsize=16,color="green",shape="box"];1178 -> 666[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1178[label="FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1179[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="triangle"];1179 -> 1187[label="",style="solid", color="black", weight=3]; 33.50/15.03 1177[label="primPlusInt xuu442 xuu131",fontsize=16,color="burlywood",shape="triangle"];3331[label="xuu442/Pos xuu4420",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3331[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3331 -> 1188[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3332[label="xuu442/Neg xuu4420",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3332[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3332 -> 1189[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 525 -> 119[label="",style="dashed", color="red", weight=0]; 33.50/15.03 525[label="FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];525 -> 665[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 525 -> 666[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 524[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 xuu103",fontsize=16,color="burlywood",shape="triangle"];3333[label="xuu103/False",fontsize=10,color="white",style="solid",shape="box"];524 -> 3333[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3333 -> 667[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3334[label="xuu103/True",fontsize=10,color="white",style="solid",shape="box"];524 -> 3334[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3334 -> 668[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 526[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="triangle"];526 -> 669[label="",style="solid", color="black", weight=3]; 33.50/15.03 527[label="Integer xuu4000 * Integer xuu50010",fontsize=16,color="black",shape="box"];527 -> 670[label="",style="solid", color="black", weight=3]; 33.50/15.03 528[label="primMulInt (Pos xuu4000) xuu5001",fontsize=16,color="burlywood",shape="box"];3335[label="xuu5001/Pos xuu50010",fontsize=10,color="white",style="solid",shape="box"];528 -> 3335[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3335 -> 671[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3336[label="xuu5001/Neg xuu50010",fontsize=10,color="white",style="solid",shape="box"];528 -> 3336[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3336 -> 672[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 529[label="primMulInt (Neg xuu4000) xuu5001",fontsize=16,color="burlywood",shape="box"];3337[label="xuu5001/Pos xuu50010",fontsize=10,color="white",style="solid",shape="box"];529 -> 3337[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3337 -> 673[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3338[label="xuu5001/Neg xuu50010",fontsize=10,color="white",style="solid",shape="box"];529 -> 3338[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3338 -> 674[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1022[label="xuu5001 == xuu401",fontsize=16,color="blue",shape="box"];3339[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3339[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3339 -> 1030[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3340[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3340[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3340 -> 1031[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3341[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3341[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3341 -> 1032[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3342[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3342[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3342 -> 1033[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3343[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3343[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3343 -> 1034[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3344[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3344[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3344 -> 1035[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3345[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3345[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3345 -> 1036[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3346[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3346[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3346 -> 1037[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3347[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3347[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3347 -> 1038[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3348[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3348[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3348 -> 1039[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3349[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3349[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3349 -> 1040[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3350[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3350[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3350 -> 1041[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3351[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3351[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3351 -> 1042[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3352[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3352[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3352 -> 1043[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1023[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3353[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3353[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3353 -> 1044[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3354[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3354[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3354 -> 1045[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3355[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3355[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3355 -> 1046[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3356[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3356[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3356 -> 1047[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3357[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3357[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3357 -> 1048[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3358[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3358[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3358 -> 1049[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3359[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3359[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3359 -> 1050[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3360[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3360[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3360 -> 1051[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3361[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3361[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3361 -> 1052[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3362[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3362[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3362 -> 1053[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3363[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3363[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3363 -> 1054[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3364[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3364[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3364 -> 1055[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3365[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3365[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3365 -> 1056[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3366[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3366[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3366 -> 1057[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1021[label="xuu128 && xuu129",fontsize=16,color="burlywood",shape="triangle"];3367[label="xuu128/False",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3367[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3367 -> 1058[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3368[label="xuu128/True",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3368[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3368 -> 1059[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 968[label="compare2 (xuu111,xuu112) (xuu113,xuu114) False",fontsize=16,color="black",shape="box"];968 -> 1060[label="",style="solid", color="black", weight=3]; 33.50/15.03 969[label="compare2 (xuu111,xuu112) (xuu113,xuu114) True",fontsize=16,color="black",shape="box"];969 -> 1061[label="",style="solid", color="black", weight=3]; 33.50/15.03 546[label="compare1 Nothing (Just xuu400) True",fontsize=16,color="black",shape="box"];546 -> 697[label="",style="solid", color="black", weight=3]; 33.50/15.03 547[label="compare1 (Just xuu5000) Nothing False",fontsize=16,color="black",shape="box"];547 -> 698[label="",style="solid", color="black", weight=3]; 33.50/15.03 548 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.03 548[label="xuu5000 == xuu400",fontsize=16,color="magenta"];548 -> 699[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 548 -> 700[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 549 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.03 549[label="xuu5000 == xuu400",fontsize=16,color="magenta"];549 -> 701[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 549 -> 702[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 550 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.03 550[label="xuu5000 == xuu400",fontsize=16,color="magenta"];550 -> 703[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 550 -> 704[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 551 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.03 551[label="xuu5000 == xuu400",fontsize=16,color="magenta"];551 -> 705[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 551 -> 706[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 552 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.03 552[label="xuu5000 == xuu400",fontsize=16,color="magenta"];552 -> 707[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 552 -> 708[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 553 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.03 553[label="xuu5000 == xuu400",fontsize=16,color="magenta"];553 -> 709[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 553 -> 710[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 554 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.03 554[label="xuu5000 == xuu400",fontsize=16,color="magenta"];554 -> 711[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 554 -> 712[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 555 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.03 555[label="xuu5000 == xuu400",fontsize=16,color="magenta"];555 -> 713[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 555 -> 714[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 556 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.03 556[label="xuu5000 == xuu400",fontsize=16,color="magenta"];556 -> 715[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 556 -> 716[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 557 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.03 557[label="xuu5000 == xuu400",fontsize=16,color="magenta"];557 -> 717[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 557 -> 718[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 558 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.03 558[label="xuu5000 == xuu400",fontsize=16,color="magenta"];558 -> 719[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 558 -> 720[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 559 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.03 559[label="xuu5000 == xuu400",fontsize=16,color="magenta"];559 -> 721[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 559 -> 722[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 560 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.03 560[label="xuu5000 == xuu400",fontsize=16,color="magenta"];560 -> 723[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 560 -> 724[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 561 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.03 561[label="xuu5000 == xuu400",fontsize=16,color="magenta"];561 -> 725[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 561 -> 726[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 562[label="compare2 (Just xuu66) (Just xuu67) False",fontsize=16,color="black",shape="box"];562 -> 727[label="",style="solid", color="black", weight=3]; 33.50/15.03 563[label="compare2 (Just xuu66) (Just xuu67) True",fontsize=16,color="black",shape="box"];563 -> 728[label="",style="solid", color="black", weight=3]; 33.50/15.03 1024 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1024[label="xuu5001 == xuu401 && xuu5002 == xuu402",fontsize=16,color="magenta"];1024 -> 1062[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1024 -> 1063[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1025[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3369[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3369[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3369 -> 1064[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3370[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3370[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3370 -> 1065[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3371[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3371[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3371 -> 1066[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3372[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3372[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3372 -> 1067[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3373[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3373[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3373 -> 1068[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3374[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3374[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3374 -> 1069[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3375[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3375[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3375 -> 1070[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3376[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3376[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3376 -> 1071[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3377[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3377[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3377 -> 1072[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3378[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3378[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3378 -> 1073[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3379[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3379[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3379 -> 1074[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3380[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3380[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3380 -> 1075[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3381[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3381[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3381 -> 1076[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3382[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1025 -> 3382[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3382 -> 1077[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1005[label="compare2 (xuu77,xuu78,xuu79) (xuu80,xuu81,xuu82) False",fontsize=16,color="black",shape="box"];1005 -> 1078[label="",style="solid", color="black", weight=3]; 33.50/15.03 1006[label="compare2 (xuu77,xuu78,xuu79) (xuu80,xuu81,xuu82) True",fontsize=16,color="black",shape="box"];1006 -> 1079[label="",style="solid", color="black", weight=3]; 33.50/15.03 580 -> 353[label="",style="dashed", color="red", weight=0]; 33.50/15.03 580[label="primCmpNat xuu50000 xuu4000",fontsize=16,color="magenta"];580 -> 759[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 580 -> 760[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 581[label="GT",fontsize=16,color="green",shape="box"];582[label="LT",fontsize=16,color="green",shape="box"];583[label="EQ",fontsize=16,color="green",shape="box"];584[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];584 -> 761[label="",style="solid", color="black", weight=3]; 33.50/15.03 585[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];585 -> 762[label="",style="solid", color="black", weight=3]; 33.50/15.03 586[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];586 -> 763[label="",style="solid", color="black", weight=3]; 33.50/15.03 587[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];587 -> 764[label="",style="solid", color="black", weight=3]; 33.50/15.03 588[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];588 -> 765[label="",style="solid", color="black", weight=3]; 33.50/15.03 589[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];589 -> 766[label="",style="solid", color="black", weight=3]; 33.50/15.03 590[label="Succ xuu4000",fontsize=16,color="green",shape="box"];591[label="Zero",fontsize=16,color="green",shape="box"];592[label="Zero",fontsize=16,color="green",shape="box"];593[label="Succ xuu4000",fontsize=16,color="green",shape="box"];594[label="compare1 False True True",fontsize=16,color="black",shape="box"];594 -> 767[label="",style="solid", color="black", weight=3]; 33.50/15.03 595[label="compare1 True False False",fontsize=16,color="black",shape="box"];595 -> 768[label="",style="solid", color="black", weight=3]; 33.50/15.03 596 -> 178[label="",style="dashed", color="red", weight=0]; 33.50/15.03 596[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];596 -> 769[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 596 -> 770[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 597 -> 179[label="",style="dashed", color="red", weight=0]; 33.50/15.03 597[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];597 -> 771[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 597 -> 772[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 598 -> 180[label="",style="dashed", color="red", weight=0]; 33.50/15.03 598[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];598 -> 773[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 598 -> 774[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 599 -> 181[label="",style="dashed", color="red", weight=0]; 33.50/15.03 599[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];599 -> 775[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 599 -> 776[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 600 -> 182[label="",style="dashed", color="red", weight=0]; 33.50/15.03 600[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];600 -> 777[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 600 -> 778[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 601 -> 183[label="",style="dashed", color="red", weight=0]; 33.50/15.03 601[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];601 -> 779[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 601 -> 780[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 602 -> 184[label="",style="dashed", color="red", weight=0]; 33.50/15.03 602[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];602 -> 781[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 602 -> 782[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 603 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.03 603[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];603 -> 783[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 603 -> 784[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 604 -> 186[label="",style="dashed", color="red", weight=0]; 33.50/15.03 604[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];604 -> 785[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 604 -> 786[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 605 -> 187[label="",style="dashed", color="red", weight=0]; 33.50/15.03 605[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];605 -> 787[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 605 -> 788[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 606 -> 188[label="",style="dashed", color="red", weight=0]; 33.50/15.03 606[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];606 -> 789[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 606 -> 790[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 607 -> 189[label="",style="dashed", color="red", weight=0]; 33.50/15.03 607[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];607 -> 791[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 607 -> 792[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 608 -> 190[label="",style="dashed", color="red", weight=0]; 33.50/15.03 608[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];608 -> 793[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 608 -> 794[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 609 -> 191[label="",style="dashed", color="red", weight=0]; 33.50/15.03 609[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];609 -> 795[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 609 -> 796[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 610[label="primCompAux0 xuu87 LT",fontsize=16,color="black",shape="box"];610 -> 797[label="",style="solid", color="black", weight=3]; 33.50/15.03 611[label="primCompAux0 xuu87 EQ",fontsize=16,color="black",shape="box"];611 -> 798[label="",style="solid", color="black", weight=3]; 33.50/15.03 612[label="primCompAux0 xuu87 GT",fontsize=16,color="black",shape="box"];612 -> 799[label="",style="solid", color="black", weight=3]; 33.50/15.03 613 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 613[label="Pos xuu50010 * xuu400",fontsize=16,color="magenta"];613 -> 800[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 613 -> 801[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 614 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 614[label="xuu5000 * Pos xuu4010",fontsize=16,color="magenta"];614 -> 802[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 614 -> 803[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 615 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 615[label="Neg xuu50010 * xuu400",fontsize=16,color="magenta"];615 -> 804[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 615 -> 805[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 616 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 616[label="xuu5000 * Pos xuu4010",fontsize=16,color="magenta"];616 -> 806[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 616 -> 807[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 617 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 617[label="Pos xuu50010 * xuu400",fontsize=16,color="magenta"];617 -> 808[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 617 -> 809[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 618 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 618[label="xuu5000 * Neg xuu4010",fontsize=16,color="magenta"];618 -> 810[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 618 -> 811[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 619 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 619[label="Neg xuu50010 * xuu400",fontsize=16,color="magenta"];619 -> 812[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 619 -> 813[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 620 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 620[label="xuu5000 * Neg xuu4010",fontsize=16,color="magenta"];620 -> 814[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 620 -> 815[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 621 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 621[label="Pos xuu50010 * xuu400",fontsize=16,color="magenta"];621 -> 816[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 621 -> 817[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 622 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 622[label="xuu5000 * Pos xuu4010",fontsize=16,color="magenta"];622 -> 818[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 622 -> 819[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 623 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 623[label="Neg xuu50010 * xuu400",fontsize=16,color="magenta"];623 -> 820[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 623 -> 821[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 624 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 624[label="xuu5000 * Pos xuu4010",fontsize=16,color="magenta"];624 -> 822[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 624 -> 823[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 625 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 625[label="Pos xuu50010 * xuu400",fontsize=16,color="magenta"];625 -> 824[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 625 -> 825[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 626 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 626[label="xuu5000 * Neg xuu4010",fontsize=16,color="magenta"];626 -> 826[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 626 -> 827[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 627 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 627[label="Neg xuu50010 * xuu400",fontsize=16,color="magenta"];627 -> 828[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 627 -> 829[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 628 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 628[label="xuu5000 * Neg xuu4010",fontsize=16,color="magenta"];628 -> 830[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 628 -> 831[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 629 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.03 629[label="xuu5000 == xuu400",fontsize=16,color="magenta"];629 -> 832[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 629 -> 833[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 630 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.03 630[label="xuu5000 == xuu400",fontsize=16,color="magenta"];630 -> 834[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 630 -> 835[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 631 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.03 631[label="xuu5000 == xuu400",fontsize=16,color="magenta"];631 -> 836[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 631 -> 837[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 632 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.03 632[label="xuu5000 == xuu400",fontsize=16,color="magenta"];632 -> 838[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 632 -> 839[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 633 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.03 633[label="xuu5000 == xuu400",fontsize=16,color="magenta"];633 -> 840[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 633 -> 841[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 634 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.03 634[label="xuu5000 == xuu400",fontsize=16,color="magenta"];634 -> 842[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 634 -> 843[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 635 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.03 635[label="xuu5000 == xuu400",fontsize=16,color="magenta"];635 -> 844[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 635 -> 845[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 636 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.03 636[label="xuu5000 == xuu400",fontsize=16,color="magenta"];636 -> 846[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 636 -> 847[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 637 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.03 637[label="xuu5000 == xuu400",fontsize=16,color="magenta"];637 -> 848[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 637 -> 849[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 638 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.03 638[label="xuu5000 == xuu400",fontsize=16,color="magenta"];638 -> 850[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 638 -> 851[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 639 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.03 639[label="xuu5000 == xuu400",fontsize=16,color="magenta"];639 -> 852[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 639 -> 853[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 640 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.03 640[label="xuu5000 == xuu400",fontsize=16,color="magenta"];640 -> 854[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 640 -> 855[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 641 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.03 641[label="xuu5000 == xuu400",fontsize=16,color="magenta"];641 -> 856[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 641 -> 857[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 642 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.03 642[label="xuu5000 == xuu400",fontsize=16,color="magenta"];642 -> 858[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 642 -> 859[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 643[label="compare2 (Left xuu93) (Left xuu94) False",fontsize=16,color="black",shape="box"];643 -> 860[label="",style="solid", color="black", weight=3]; 33.50/15.03 644[label="compare2 (Left xuu93) (Left xuu94) True",fontsize=16,color="black",shape="box"];644 -> 861[label="",style="solid", color="black", weight=3]; 33.50/15.03 645[label="compare1 (Left xuu5000) (Right xuu400) True",fontsize=16,color="black",shape="box"];645 -> 862[label="",style="solid", color="black", weight=3]; 33.50/15.03 646[label="compare1 (Right xuu5000) (Left xuu400) False",fontsize=16,color="black",shape="box"];646 -> 863[label="",style="solid", color="black", weight=3]; 33.50/15.03 647 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.03 647[label="xuu5000 == xuu400",fontsize=16,color="magenta"];647 -> 864[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 647 -> 865[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 648 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.03 648[label="xuu5000 == xuu400",fontsize=16,color="magenta"];648 -> 866[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 648 -> 867[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 649 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.03 649[label="xuu5000 == xuu400",fontsize=16,color="magenta"];649 -> 868[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 649 -> 869[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 650 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.03 650[label="xuu5000 == xuu400",fontsize=16,color="magenta"];650 -> 870[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 650 -> 871[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 651 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.03 651[label="xuu5000 == xuu400",fontsize=16,color="magenta"];651 -> 872[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 651 -> 873[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 652 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.03 652[label="xuu5000 == xuu400",fontsize=16,color="magenta"];652 -> 874[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 652 -> 875[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 653 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.03 653[label="xuu5000 == xuu400",fontsize=16,color="magenta"];653 -> 876[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 653 -> 877[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 654 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.03 654[label="xuu5000 == xuu400",fontsize=16,color="magenta"];654 -> 878[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 654 -> 879[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 655 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.03 655[label="xuu5000 == xuu400",fontsize=16,color="magenta"];655 -> 880[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 655 -> 881[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 656 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.03 656[label="xuu5000 == xuu400",fontsize=16,color="magenta"];656 -> 882[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 656 -> 883[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 657 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.03 657[label="xuu5000 == xuu400",fontsize=16,color="magenta"];657 -> 884[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 657 -> 885[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 658 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.03 658[label="xuu5000 == xuu400",fontsize=16,color="magenta"];658 -> 886[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 658 -> 887[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 659 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.03 659[label="xuu5000 == xuu400",fontsize=16,color="magenta"];659 -> 888[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 659 -> 889[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 660 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.03 660[label="xuu5000 == xuu400",fontsize=16,color="magenta"];660 -> 890[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 660 -> 891[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 661[label="compare2 (Right xuu100) (Right xuu101) False",fontsize=16,color="black",shape="box"];661 -> 892[label="",style="solid", color="black", weight=3]; 33.50/15.03 662[label="compare2 (Right xuu100) (Right xuu101) True",fontsize=16,color="black",shape="box"];662 -> 893[label="",style="solid", color="black", weight=3]; 33.50/15.03 666[label="FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="triangle"];666 -> 898[label="",style="solid", color="black", weight=3]; 33.50/15.03 1187 -> 898[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1187[label="FiniteMap.sizeFM xuu44",fontsize=16,color="magenta"];1187 -> 1195[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1188[label="primPlusInt (Pos xuu4420) xuu131",fontsize=16,color="burlywood",shape="box"];3383[label="xuu131/Pos xuu1310",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3383[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3383 -> 1196[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3384[label="xuu131/Neg xuu1310",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3384[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3384 -> 1197[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1189[label="primPlusInt (Neg xuu4420) xuu131",fontsize=16,color="burlywood",shape="box"];3385[label="xuu131/Pos xuu1310",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3385[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3385 -> 1198[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3386[label="xuu131/Neg xuu1310",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3386[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3386 -> 1199[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 665 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 665[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];665 -> 896[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 665 -> 897[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 667[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 False",fontsize=16,color="black",shape="box"];667 -> 899[label="",style="solid", color="black", weight=3]; 33.50/15.03 668[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 True",fontsize=16,color="black",shape="box"];668 -> 900[label="",style="solid", color="black", weight=3]; 33.50/15.03 669[label="FiniteMap.Branch xuu17 xuu18 (FiniteMap.mkBranchUnbox xuu44 xuu17 xuu21 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21 + FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21)) xuu44 xuu21",fontsize=16,color="green",shape="box"];669 -> 901[label="",style="dashed", color="green", weight=3]; 33.50/15.03 670[label="Integer (primMulInt xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];670 -> 902[label="",style="dashed", color="green", weight=3]; 33.50/15.03 671[label="primMulInt (Pos xuu4000) (Pos xuu50010)",fontsize=16,color="black",shape="box"];671 -> 903[label="",style="solid", color="black", weight=3]; 33.50/15.03 672[label="primMulInt (Pos xuu4000) (Neg xuu50010)",fontsize=16,color="black",shape="box"];672 -> 904[label="",style="solid", color="black", weight=3]; 33.50/15.03 673[label="primMulInt (Neg xuu4000) (Pos xuu50010)",fontsize=16,color="black",shape="box"];673 -> 905[label="",style="solid", color="black", weight=3]; 33.50/15.03 674[label="primMulInt (Neg xuu4000) (Neg xuu50010)",fontsize=16,color="black",shape="box"];674 -> 906[label="",style="solid", color="black", weight=3]; 33.50/15.03 1030 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1030[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1030 -> 1089[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1030 -> 1090[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1031 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1031[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1031 -> 1091[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1031 -> 1092[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1032 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1032[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1032 -> 1093[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1032 -> 1094[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1033 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1033[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1033 -> 1095[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1033 -> 1096[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1034 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1034[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1034 -> 1097[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1034 -> 1098[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1035 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1035[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1035 -> 1099[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1035 -> 1100[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1036 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1036[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1036 -> 1101[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1036 -> 1102[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1037 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1037[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1037 -> 1103[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1037 -> 1104[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1038 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1038[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1038 -> 1105[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1038 -> 1106[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1039 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1039[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1039 -> 1107[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1039 -> 1108[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1040 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1040[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1040 -> 1109[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1040 -> 1110[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1041 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1041[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1041 -> 1111[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1041 -> 1112[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1042 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1042[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1042 -> 1113[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1042 -> 1114[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1043 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1043[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1043 -> 1115[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1043 -> 1116[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1044 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1044[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1045 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1045[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1046 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1046[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1047 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1047[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1048 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1048[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1049 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1049[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1050 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1050[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1051 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1051[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1052 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1052[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1053 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1053[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1054 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1054[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1055 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1055[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1056 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1056[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1057 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1057[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1058[label="False && xuu129",fontsize=16,color="black",shape="box"];1058 -> 1117[label="",style="solid", color="black", weight=3]; 33.50/15.03 1059[label="True && xuu129",fontsize=16,color="black",shape="box"];1059 -> 1118[label="",style="solid", color="black", weight=3]; 33.50/15.03 1060[label="compare1 (xuu111,xuu112) (xuu113,xuu114) ((xuu111,xuu112) <= (xuu113,xuu114))",fontsize=16,color="black",shape="box"];1060 -> 1119[label="",style="solid", color="black", weight=3]; 33.50/15.03 1061[label="EQ",fontsize=16,color="green",shape="box"];697[label="LT",fontsize=16,color="green",shape="box"];698[label="compare0 (Just xuu5000) Nothing otherwise",fontsize=16,color="black",shape="box"];698 -> 986[label="",style="solid", color="black", weight=3]; 33.50/15.03 699[label="xuu5000",fontsize=16,color="green",shape="box"];700[label="xuu400",fontsize=16,color="green",shape="box"];530[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];530 -> 675[label="",style="solid", color="black", weight=3]; 33.50/15.03 701[label="xuu5000",fontsize=16,color="green",shape="box"];702[label="xuu400",fontsize=16,color="green",shape="box"];531[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3387[label="xuu5000/Left xuu50000",fontsize=10,color="white",style="solid",shape="box"];531 -> 3387[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3387 -> 676[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3388[label="xuu5000/Right xuu50000",fontsize=10,color="white",style="solid",shape="box"];531 -> 3388[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3388 -> 677[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 703[label="xuu5000",fontsize=16,color="green",shape="box"];704[label="xuu400",fontsize=16,color="green",shape="box"];532[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];532 -> 678[label="",style="solid", color="black", weight=3]; 33.50/15.03 705[label="xuu5000",fontsize=16,color="green",shape="box"];706[label="xuu400",fontsize=16,color="green",shape="box"];533[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3389[label="xuu5000/(xuu50000,xuu50001)",fontsize=10,color="white",style="solid",shape="box"];533 -> 3389[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3389 -> 679[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 707[label="xuu5000",fontsize=16,color="green",shape="box"];708[label="xuu400",fontsize=16,color="green",shape="box"];534[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];534 -> 680[label="",style="solid", color="black", weight=3]; 33.50/15.03 709[label="xuu5000",fontsize=16,color="green",shape="box"];710[label="xuu400",fontsize=16,color="green",shape="box"];535[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3390[label="xuu5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];535 -> 3390[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3390 -> 681[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3391[label="xuu5000/Just xuu50000",fontsize=10,color="white",style="solid",shape="box"];535 -> 3391[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3391 -> 682[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 711[label="xuu5000",fontsize=16,color="green",shape="box"];712[label="xuu400",fontsize=16,color="green",shape="box"];536[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3392[label="xuu5000/Integer xuu50000",fontsize=10,color="white",style="solid",shape="box"];536 -> 3392[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3392 -> 683[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 713[label="xuu5000",fontsize=16,color="green",shape="box"];714[label="xuu400",fontsize=16,color="green",shape="box"];537[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3393[label="xuu5000/LT",fontsize=10,color="white",style="solid",shape="box"];537 -> 3393[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3393 -> 684[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3394[label="xuu5000/EQ",fontsize=10,color="white",style="solid",shape="box"];537 -> 3394[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3394 -> 685[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3395[label="xuu5000/GT",fontsize=10,color="white",style="solid",shape="box"];537 -> 3395[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3395 -> 686[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 715[label="xuu5000",fontsize=16,color="green",shape="box"];716[label="xuu400",fontsize=16,color="green",shape="box"];538[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3396[label="xuu5000/xuu50000 : xuu50001",fontsize=10,color="white",style="solid",shape="box"];538 -> 3396[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3396 -> 687[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3397[label="xuu5000/[]",fontsize=10,color="white",style="solid",shape="box"];538 -> 3397[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3397 -> 688[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 717[label="xuu5000",fontsize=16,color="green",shape="box"];718[label="xuu400",fontsize=16,color="green",shape="box"];539[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3398[label="xuu5000/False",fontsize=10,color="white",style="solid",shape="box"];539 -> 3398[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3398 -> 689[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3399[label="xuu5000/True",fontsize=10,color="white",style="solid",shape="box"];539 -> 3399[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3399 -> 690[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 719[label="xuu5000",fontsize=16,color="green",shape="box"];720[label="xuu400",fontsize=16,color="green",shape="box"];540[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3400[label="xuu5000/xuu50000 :% xuu50001",fontsize=10,color="white",style="solid",shape="box"];540 -> 3400[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3400 -> 691[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 721[label="xuu5000",fontsize=16,color="green",shape="box"];722[label="xuu400",fontsize=16,color="green",shape="box"];541[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3401[label="xuu5000/(xuu50000,xuu50001,xuu50002)",fontsize=10,color="white",style="solid",shape="box"];541 -> 3401[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3401 -> 692[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 723[label="xuu5000",fontsize=16,color="green",shape="box"];724[label="xuu400",fontsize=16,color="green",shape="box"];542[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3402[label="xuu5000/()",fontsize=10,color="white",style="solid",shape="box"];542 -> 3402[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3402 -> 693[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 725[label="xuu5000",fontsize=16,color="green",shape="box"];726[label="xuu400",fontsize=16,color="green",shape="box"];543[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];543 -> 694[label="",style="solid", color="black", weight=3]; 33.50/15.03 727 -> 1216[label="",style="dashed", color="red", weight=0]; 33.50/15.03 727[label="compare1 (Just xuu66) (Just xuu67) (Just xuu66 <= Just xuu67)",fontsize=16,color="magenta"];727 -> 1217[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 727 -> 1218[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 727 -> 1219[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 728[label="EQ",fontsize=16,color="green",shape="box"];1062[label="xuu5002 == xuu402",fontsize=16,color="blue",shape="box"];3403[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3403[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3403 -> 1120[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3404[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3404[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3404 -> 1121[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3405[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3405[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3405 -> 1122[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3406[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3406[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3406 -> 1123[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3407[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3407[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3407 -> 1124[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3408[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3408[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3408 -> 1125[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3409[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3409[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3409 -> 1126[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3410[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3410[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3410 -> 1127[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3411[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3411[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3411 -> 1128[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3412[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3412[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3412 -> 1129[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3413[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3413[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3413 -> 1130[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3414[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3414[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3414 -> 1131[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3415[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3415[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3415 -> 1132[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3416[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1062 -> 3416[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3416 -> 1133[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1063[label="xuu5001 == xuu401",fontsize=16,color="blue",shape="box"];3417[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3417[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3417 -> 1134[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3418[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3418[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3418 -> 1135[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3419[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3419[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3419 -> 1136[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3420[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3420[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3420 -> 1137[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3421[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3421[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3421 -> 1138[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3422[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3422[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3422 -> 1139[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3423[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3423[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3423 -> 1140[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3424[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3424[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3424 -> 1141[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3425[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3425[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3425 -> 1142[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3426[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3426[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3426 -> 1143[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3427[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3427[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3427 -> 1144[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3428[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3428[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3428 -> 1145[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3429[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3429[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3429 -> 1146[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3430[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3430[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3430 -> 1147[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1064 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1064[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1064 -> 1148[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1064 -> 1149[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1065 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1065[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1065 -> 1150[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1065 -> 1151[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1066 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1066[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1066 -> 1152[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1066 -> 1153[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1067 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1067[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1067 -> 1154[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1067 -> 1155[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1068 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1068[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1068 -> 1156[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1068 -> 1157[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1069 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1069[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1069 -> 1158[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1069 -> 1159[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1070 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1070[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1070 -> 1160[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1070 -> 1161[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1071 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1071[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1071 -> 1162[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1071 -> 1163[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1072 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1072[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1072 -> 1164[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1072 -> 1165[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1073 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1073[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1073 -> 1166[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1073 -> 1167[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1074 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1074[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1074 -> 1168[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1074 -> 1169[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1075 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1075[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1075 -> 1170[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1075 -> 1171[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1076 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1076[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1076 -> 1172[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1076 -> 1173[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1077 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1077[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1077 -> 1174[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1077 -> 1175[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1078[label="compare1 (xuu77,xuu78,xuu79) (xuu80,xuu81,xuu82) ((xuu77,xuu78,xuu79) <= (xuu80,xuu81,xuu82))",fontsize=16,color="black",shape="box"];1078 -> 1176[label="",style="solid", color="black", weight=3]; 33.50/15.03 1079[label="EQ",fontsize=16,color="green",shape="box"];759[label="xuu4000",fontsize=16,color="green",shape="box"];760[label="xuu50000",fontsize=16,color="green",shape="box"];761[label="LT",fontsize=16,color="green",shape="box"];762[label="LT",fontsize=16,color="green",shape="box"];763[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];763 -> 1080[label="",style="solid", color="black", weight=3]; 33.50/15.03 764[label="LT",fontsize=16,color="green",shape="box"];765[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];765 -> 1081[label="",style="solid", color="black", weight=3]; 33.50/15.03 766[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];766 -> 1082[label="",style="solid", color="black", weight=3]; 33.50/15.03 767[label="LT",fontsize=16,color="green",shape="box"];768[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];768 -> 1083[label="",style="solid", color="black", weight=3]; 33.50/15.03 769[label="xuu400",fontsize=16,color="green",shape="box"];770[label="xuu5000",fontsize=16,color="green",shape="box"];771[label="xuu400",fontsize=16,color="green",shape="box"];772[label="xuu5000",fontsize=16,color="green",shape="box"];773[label="xuu400",fontsize=16,color="green",shape="box"];774[label="xuu5000",fontsize=16,color="green",shape="box"];775[label="xuu400",fontsize=16,color="green",shape="box"];776[label="xuu5000",fontsize=16,color="green",shape="box"];777[label="xuu400",fontsize=16,color="green",shape="box"];778[label="xuu5000",fontsize=16,color="green",shape="box"];779[label="xuu400",fontsize=16,color="green",shape="box"];780[label="xuu5000",fontsize=16,color="green",shape="box"];781[label="xuu400",fontsize=16,color="green",shape="box"];782[label="xuu5000",fontsize=16,color="green",shape="box"];783[label="xuu400",fontsize=16,color="green",shape="box"];784[label="xuu5000",fontsize=16,color="green",shape="box"];785[label="xuu400",fontsize=16,color="green",shape="box"];786[label="xuu5000",fontsize=16,color="green",shape="box"];787[label="xuu400",fontsize=16,color="green",shape="box"];788[label="xuu5000",fontsize=16,color="green",shape="box"];789[label="xuu400",fontsize=16,color="green",shape="box"];790[label="xuu5000",fontsize=16,color="green",shape="box"];791[label="xuu400",fontsize=16,color="green",shape="box"];792[label="xuu5000",fontsize=16,color="green",shape="box"];793[label="xuu400",fontsize=16,color="green",shape="box"];794[label="xuu5000",fontsize=16,color="green",shape="box"];795[label="xuu400",fontsize=16,color="green",shape="box"];796[label="xuu5000",fontsize=16,color="green",shape="box"];797[label="LT",fontsize=16,color="green",shape="box"];798[label="xuu87",fontsize=16,color="green",shape="box"];799[label="GT",fontsize=16,color="green",shape="box"];800[label="Pos xuu50010",fontsize=16,color="green",shape="box"];801[label="xuu400",fontsize=16,color="green",shape="box"];802[label="xuu5000",fontsize=16,color="green",shape="box"];803[label="Pos xuu4010",fontsize=16,color="green",shape="box"];804[label="Neg xuu50010",fontsize=16,color="green",shape="box"];805[label="xuu400",fontsize=16,color="green",shape="box"];806[label="xuu5000",fontsize=16,color="green",shape="box"];807[label="Pos xuu4010",fontsize=16,color="green",shape="box"];808[label="Pos xuu50010",fontsize=16,color="green",shape="box"];809[label="xuu400",fontsize=16,color="green",shape="box"];810[label="xuu5000",fontsize=16,color="green",shape="box"];811[label="Neg xuu4010",fontsize=16,color="green",shape="box"];812[label="Neg xuu50010",fontsize=16,color="green",shape="box"];813[label="xuu400",fontsize=16,color="green",shape="box"];814[label="xuu5000",fontsize=16,color="green",shape="box"];815[label="Neg xuu4010",fontsize=16,color="green",shape="box"];816[label="Pos xuu50010",fontsize=16,color="green",shape="box"];817[label="xuu400",fontsize=16,color="green",shape="box"];818[label="xuu5000",fontsize=16,color="green",shape="box"];819[label="Pos xuu4010",fontsize=16,color="green",shape="box"];820[label="Neg xuu50010",fontsize=16,color="green",shape="box"];821[label="xuu400",fontsize=16,color="green",shape="box"];822[label="xuu5000",fontsize=16,color="green",shape="box"];823[label="Pos xuu4010",fontsize=16,color="green",shape="box"];824[label="Pos xuu50010",fontsize=16,color="green",shape="box"];825[label="xuu400",fontsize=16,color="green",shape="box"];826[label="xuu5000",fontsize=16,color="green",shape="box"];827[label="Neg xuu4010",fontsize=16,color="green",shape="box"];828[label="Neg xuu50010",fontsize=16,color="green",shape="box"];829[label="xuu400",fontsize=16,color="green",shape="box"];830[label="xuu5000",fontsize=16,color="green",shape="box"];831[label="Neg xuu4010",fontsize=16,color="green",shape="box"];832[label="xuu5000",fontsize=16,color="green",shape="box"];833[label="xuu400",fontsize=16,color="green",shape="box"];834[label="xuu5000",fontsize=16,color="green",shape="box"];835[label="xuu400",fontsize=16,color="green",shape="box"];836[label="xuu5000",fontsize=16,color="green",shape="box"];837[label="xuu400",fontsize=16,color="green",shape="box"];838[label="xuu5000",fontsize=16,color="green",shape="box"];839[label="xuu400",fontsize=16,color="green",shape="box"];840[label="xuu5000",fontsize=16,color="green",shape="box"];841[label="xuu400",fontsize=16,color="green",shape="box"];842[label="xuu5000",fontsize=16,color="green",shape="box"];843[label="xuu400",fontsize=16,color="green",shape="box"];844[label="xuu5000",fontsize=16,color="green",shape="box"];845[label="xuu400",fontsize=16,color="green",shape="box"];846[label="xuu5000",fontsize=16,color="green",shape="box"];847[label="xuu400",fontsize=16,color="green",shape="box"];848[label="xuu5000",fontsize=16,color="green",shape="box"];849[label="xuu400",fontsize=16,color="green",shape="box"];850[label="xuu5000",fontsize=16,color="green",shape="box"];851[label="xuu400",fontsize=16,color="green",shape="box"];852[label="xuu5000",fontsize=16,color="green",shape="box"];853[label="xuu400",fontsize=16,color="green",shape="box"];854[label="xuu5000",fontsize=16,color="green",shape="box"];855[label="xuu400",fontsize=16,color="green",shape="box"];856[label="xuu5000",fontsize=16,color="green",shape="box"];857[label="xuu400",fontsize=16,color="green",shape="box"];858[label="xuu5000",fontsize=16,color="green",shape="box"];859[label="xuu400",fontsize=16,color="green",shape="box"];860 -> 1288[label="",style="dashed", color="red", weight=0]; 33.50/15.03 860[label="compare1 (Left xuu93) (Left xuu94) (Left xuu93 <= Left xuu94)",fontsize=16,color="magenta"];860 -> 1289[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 860 -> 1290[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 860 -> 1291[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 861[label="EQ",fontsize=16,color="green",shape="box"];862[label="LT",fontsize=16,color="green",shape="box"];863[label="compare0 (Right xuu5000) (Left xuu400) otherwise",fontsize=16,color="black",shape="box"];863 -> 1085[label="",style="solid", color="black", weight=3]; 33.50/15.03 864[label="xuu5000",fontsize=16,color="green",shape="box"];865[label="xuu400",fontsize=16,color="green",shape="box"];866[label="xuu5000",fontsize=16,color="green",shape="box"];867[label="xuu400",fontsize=16,color="green",shape="box"];868[label="xuu5000",fontsize=16,color="green",shape="box"];869[label="xuu400",fontsize=16,color="green",shape="box"];870[label="xuu5000",fontsize=16,color="green",shape="box"];871[label="xuu400",fontsize=16,color="green",shape="box"];872[label="xuu5000",fontsize=16,color="green",shape="box"];873[label="xuu400",fontsize=16,color="green",shape="box"];874[label="xuu5000",fontsize=16,color="green",shape="box"];875[label="xuu400",fontsize=16,color="green",shape="box"];876[label="xuu5000",fontsize=16,color="green",shape="box"];877[label="xuu400",fontsize=16,color="green",shape="box"];878[label="xuu5000",fontsize=16,color="green",shape="box"];879[label="xuu400",fontsize=16,color="green",shape="box"];880[label="xuu5000",fontsize=16,color="green",shape="box"];881[label="xuu400",fontsize=16,color="green",shape="box"];882[label="xuu5000",fontsize=16,color="green",shape="box"];883[label="xuu400",fontsize=16,color="green",shape="box"];884[label="xuu5000",fontsize=16,color="green",shape="box"];885[label="xuu400",fontsize=16,color="green",shape="box"];886[label="xuu5000",fontsize=16,color="green",shape="box"];887[label="xuu400",fontsize=16,color="green",shape="box"];888[label="xuu5000",fontsize=16,color="green",shape="box"];889[label="xuu400",fontsize=16,color="green",shape="box"];890[label="xuu5000",fontsize=16,color="green",shape="box"];891[label="xuu400",fontsize=16,color="green",shape="box"];892 -> 1299[label="",style="dashed", color="red", weight=0]; 33.50/15.03 892[label="compare1 (Right xuu100) (Right xuu101) (Right xuu100 <= Right xuu101)",fontsize=16,color="magenta"];892 -> 1300[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 892 -> 1301[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 892 -> 1302[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 893[label="EQ",fontsize=16,color="green",shape="box"];898[label="FiniteMap.sizeFM xuu21",fontsize=16,color="burlywood",shape="triangle"];3431[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];898 -> 3431[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3431 -> 1191[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3432[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];898 -> 3432[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3432 -> 1192[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1195[label="xuu44",fontsize=16,color="green",shape="box"];1196[label="primPlusInt (Pos xuu4420) (Pos xuu1310)",fontsize=16,color="black",shape="box"];1196 -> 1211[label="",style="solid", color="black", weight=3]; 33.50/15.03 1197[label="primPlusInt (Pos xuu4420) (Neg xuu1310)",fontsize=16,color="black",shape="box"];1197 -> 1212[label="",style="solid", color="black", weight=3]; 33.50/15.03 1198[label="primPlusInt (Neg xuu4420) (Pos xuu1310)",fontsize=16,color="black",shape="box"];1198 -> 1213[label="",style="solid", color="black", weight=3]; 33.50/15.03 1199[label="primPlusInt (Neg xuu4420) (Neg xuu1310)",fontsize=16,color="black",shape="box"];1199 -> 1214[label="",style="solid", color="black", weight=3]; 33.50/15.03 896[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];896 -> 1190[label="",style="solid", color="black", weight=3]; 33.50/15.03 897 -> 1179[label="",style="dashed", color="red", weight=0]; 33.50/15.03 897[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];899 -> 1193[label="",style="dashed", color="red", weight=0]; 33.50/15.03 899[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 (FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21)",fontsize=16,color="magenta"];899 -> 1194[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 900[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu17 xuu18 xuu44 xuu21 xuu44 xuu21 xuu21",fontsize=16,color="burlywood",shape="box"];3433[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];900 -> 3433[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3433 -> 1200[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3434[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];900 -> 3434[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3434 -> 1201[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 901[label="FiniteMap.mkBranchUnbox xuu44 xuu17 xuu21 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21 + FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21)",fontsize=16,color="black",shape="box"];901 -> 1202[label="",style="solid", color="black", weight=3]; 33.50/15.03 902 -> 447[label="",style="dashed", color="red", weight=0]; 33.50/15.03 902[label="primMulInt xuu4000 xuu50010",fontsize=16,color="magenta"];902 -> 1203[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 902 -> 1204[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 903[label="Pos (primMulNat xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];903 -> 1205[label="",style="dashed", color="green", weight=3]; 33.50/15.03 904[label="Neg (primMulNat xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];904 -> 1206[label="",style="dashed", color="green", weight=3]; 33.50/15.03 905[label="Neg (primMulNat xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];905 -> 1207[label="",style="dashed", color="green", weight=3]; 33.50/15.03 906[label="Pos (primMulNat xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];906 -> 1208[label="",style="dashed", color="green", weight=3]; 33.50/15.03 1089[label="xuu5001",fontsize=16,color="green",shape="box"];1090[label="xuu401",fontsize=16,color="green",shape="box"];1091[label="xuu5001",fontsize=16,color="green",shape="box"];1092[label="xuu401",fontsize=16,color="green",shape="box"];1093[label="xuu5001",fontsize=16,color="green",shape="box"];1094[label="xuu401",fontsize=16,color="green",shape="box"];1095[label="xuu5001",fontsize=16,color="green",shape="box"];1096[label="xuu401",fontsize=16,color="green",shape="box"];1097[label="xuu5001",fontsize=16,color="green",shape="box"];1098[label="xuu401",fontsize=16,color="green",shape="box"];1099[label="xuu5001",fontsize=16,color="green",shape="box"];1100[label="xuu401",fontsize=16,color="green",shape="box"];1101[label="xuu5001",fontsize=16,color="green",shape="box"];1102[label="xuu401",fontsize=16,color="green",shape="box"];1103[label="xuu5001",fontsize=16,color="green",shape="box"];1104[label="xuu401",fontsize=16,color="green",shape="box"];1105[label="xuu5001",fontsize=16,color="green",shape="box"];1106[label="xuu401",fontsize=16,color="green",shape="box"];1107[label="xuu5001",fontsize=16,color="green",shape="box"];1108[label="xuu401",fontsize=16,color="green",shape="box"];1109[label="xuu5001",fontsize=16,color="green",shape="box"];1110[label="xuu401",fontsize=16,color="green",shape="box"];1111[label="xuu5001",fontsize=16,color="green",shape="box"];1112[label="xuu401",fontsize=16,color="green",shape="box"];1113[label="xuu5001",fontsize=16,color="green",shape="box"];1114[label="xuu401",fontsize=16,color="green",shape="box"];1115[label="xuu5001",fontsize=16,color="green",shape="box"];1116[label="xuu401",fontsize=16,color="green",shape="box"];1117[label="False",fontsize=16,color="green",shape="box"];1118[label="xuu129",fontsize=16,color="green",shape="box"];1119 -> 1332[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1119[label="compare1 (xuu111,xuu112) (xuu113,xuu114) (xuu111 < xuu113 || xuu111 == xuu113 && xuu112 <= xuu114)",fontsize=16,color="magenta"];1119 -> 1333[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1119 -> 1334[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1119 -> 1335[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1119 -> 1336[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1119 -> 1337[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1119 -> 1338[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 986[label="compare0 (Just xuu5000) Nothing True",fontsize=16,color="black",shape="box"];986 -> 1215[label="",style="solid", color="black", weight=3]; 33.50/15.03 675[label="primEqChar xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3435[label="xuu5000/Char xuu50000",fontsize=10,color="white",style="solid",shape="box"];675 -> 3435[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3435 -> 907[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 676[label="Left xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];3436[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];676 -> 3436[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3436 -> 908[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3437[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];676 -> 3437[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3437 -> 909[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 677[label="Right xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];3438[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];677 -> 3438[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3438 -> 910[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3439[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];677 -> 3439[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3439 -> 911[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 678[label="primEqDouble xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3440[label="xuu5000/Double xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];678 -> 3440[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3440 -> 912[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 679[label="(xuu50000,xuu50001) == xuu400",fontsize=16,color="burlywood",shape="box"];3441[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];679 -> 3441[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3441 -> 913[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 680[label="primEqFloat xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3442[label="xuu5000/Float xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];680 -> 3442[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3442 -> 914[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 681[label="Nothing == xuu400",fontsize=16,color="burlywood",shape="box"];3443[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];681 -> 3443[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3443 -> 915[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3444[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];681 -> 3444[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3444 -> 916[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 682[label="Just xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];3445[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];682 -> 3445[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3445 -> 917[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3446[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];682 -> 3446[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3446 -> 918[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 683[label="Integer xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];3447[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];683 -> 3447[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3447 -> 919[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 684[label="LT == xuu400",fontsize=16,color="burlywood",shape="box"];3448[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];684 -> 3448[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3448 -> 920[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3449[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];684 -> 3449[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3449 -> 921[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3450[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];684 -> 3450[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3450 -> 922[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 685[label="EQ == xuu400",fontsize=16,color="burlywood",shape="box"];3451[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];685 -> 3451[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3451 -> 923[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3452[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];685 -> 3452[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3452 -> 924[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3453[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];685 -> 3453[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3453 -> 925[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 686[label="GT == xuu400",fontsize=16,color="burlywood",shape="box"];3454[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];686 -> 3454[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3454 -> 926[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3455[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];686 -> 3455[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3455 -> 927[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3456[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];686 -> 3456[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3456 -> 928[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 687[label="xuu50000 : xuu50001 == xuu400",fontsize=16,color="burlywood",shape="box"];3457[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];687 -> 3457[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3457 -> 929[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3458[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];687 -> 3458[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3458 -> 930[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 688[label="[] == xuu400",fontsize=16,color="burlywood",shape="box"];3459[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];688 -> 3459[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3459 -> 931[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3460[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];688 -> 3460[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3460 -> 932[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 689[label="False == xuu400",fontsize=16,color="burlywood",shape="box"];3461[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];689 -> 3461[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3461 -> 933[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3462[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];689 -> 3462[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3462 -> 934[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 690[label="True == xuu400",fontsize=16,color="burlywood",shape="box"];3463[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];690 -> 3463[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3463 -> 935[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3464[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];690 -> 3464[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3464 -> 936[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 691[label="xuu50000 :% xuu50001 == xuu400",fontsize=16,color="burlywood",shape="box"];3465[label="xuu400/xuu4000 :% xuu4001",fontsize=10,color="white",style="solid",shape="box"];691 -> 3465[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3465 -> 937[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 692[label="(xuu50000,xuu50001,xuu50002) == xuu400",fontsize=16,color="burlywood",shape="box"];3466[label="xuu400/(xuu4000,xuu4001,xuu4002)",fontsize=10,color="white",style="solid",shape="box"];692 -> 3466[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3466 -> 938[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 693[label="() == xuu400",fontsize=16,color="burlywood",shape="box"];3467[label="xuu400/()",fontsize=10,color="white",style="solid",shape="box"];693 -> 3467[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3467 -> 939[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 694[label="primEqInt xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3468[label="xuu5000/Pos xuu50000",fontsize=10,color="white",style="solid",shape="box"];694 -> 3468[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3468 -> 940[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3469[label="xuu5000/Neg xuu50000",fontsize=10,color="white",style="solid",shape="box"];694 -> 3469[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3469 -> 941[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1217[label="Just xuu66 <= Just xuu67",fontsize=16,color="black",shape="box"];1217 -> 1223[label="",style="solid", color="black", weight=3]; 33.50/15.03 1218[label="xuu67",fontsize=16,color="green",shape="box"];1219[label="xuu66",fontsize=16,color="green",shape="box"];1216[label="compare1 (Just xuu142) (Just xuu143) xuu144",fontsize=16,color="burlywood",shape="triangle"];3470[label="xuu144/False",fontsize=10,color="white",style="solid",shape="box"];1216 -> 3470[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3470 -> 1224[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3471[label="xuu144/True",fontsize=10,color="white",style="solid",shape="box"];1216 -> 3471[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3471 -> 1225[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1120 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1120[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1120 -> 1226[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1120 -> 1227[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1121 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1121[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1121 -> 1228[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1121 -> 1229[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1122 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1122[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1122 -> 1230[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1122 -> 1231[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1123 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1123[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1123 -> 1232[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1123 -> 1233[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1124 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1124[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1124 -> 1234[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1124 -> 1235[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1125 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1125[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1125 -> 1236[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1125 -> 1237[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1126 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1126[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1126 -> 1238[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1126 -> 1239[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1127 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1127[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1127 -> 1240[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1127 -> 1241[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1128 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1128[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1128 -> 1242[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1128 -> 1243[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1129 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1129[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1129 -> 1244[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1129 -> 1245[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1130 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1130[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1130 -> 1246[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1130 -> 1247[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1131 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1131[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1131 -> 1248[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1131 -> 1249[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1132 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1132[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1132 -> 1250[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1132 -> 1251[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1133 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1133[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1133 -> 1252[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1133 -> 1253[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1134 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1134[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1134 -> 1254[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1134 -> 1255[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1135 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1135[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1135 -> 1256[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1135 -> 1257[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1136 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1136[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1136 -> 1258[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1136 -> 1259[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1137 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1137[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1137 -> 1260[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1137 -> 1261[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1138 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1138[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1138 -> 1262[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1138 -> 1263[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1139 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1139[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1139 -> 1264[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1139 -> 1265[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1140 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1140[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1140 -> 1266[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1140 -> 1267[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1141 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1141[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1141 -> 1268[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1141 -> 1269[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1142 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1142[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1142 -> 1270[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1142 -> 1271[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1143 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1143[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1143 -> 1272[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1143 -> 1273[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1144 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1144[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1144 -> 1274[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1144 -> 1275[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1145 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1145[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1145 -> 1276[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1145 -> 1277[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1146 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1146[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1146 -> 1278[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1146 -> 1279[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1147 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1147[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1147 -> 1280[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1147 -> 1281[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1148[label="xuu5000",fontsize=16,color="green",shape="box"];1149[label="xuu400",fontsize=16,color="green",shape="box"];1150[label="xuu5000",fontsize=16,color="green",shape="box"];1151[label="xuu400",fontsize=16,color="green",shape="box"];1152[label="xuu5000",fontsize=16,color="green",shape="box"];1153[label="xuu400",fontsize=16,color="green",shape="box"];1154[label="xuu5000",fontsize=16,color="green",shape="box"];1155[label="xuu400",fontsize=16,color="green",shape="box"];1156[label="xuu5000",fontsize=16,color="green",shape="box"];1157[label="xuu400",fontsize=16,color="green",shape="box"];1158[label="xuu5000",fontsize=16,color="green",shape="box"];1159[label="xuu400",fontsize=16,color="green",shape="box"];1160[label="xuu5000",fontsize=16,color="green",shape="box"];1161[label="xuu400",fontsize=16,color="green",shape="box"];1162[label="xuu5000",fontsize=16,color="green",shape="box"];1163[label="xuu400",fontsize=16,color="green",shape="box"];1164[label="xuu5000",fontsize=16,color="green",shape="box"];1165[label="xuu400",fontsize=16,color="green",shape="box"];1166[label="xuu5000",fontsize=16,color="green",shape="box"];1167[label="xuu400",fontsize=16,color="green",shape="box"];1168[label="xuu5000",fontsize=16,color="green",shape="box"];1169[label="xuu400",fontsize=16,color="green",shape="box"];1170[label="xuu5000",fontsize=16,color="green",shape="box"];1171[label="xuu400",fontsize=16,color="green",shape="box"];1172[label="xuu5000",fontsize=16,color="green",shape="box"];1173[label="xuu400",fontsize=16,color="green",shape="box"];1174[label="xuu5000",fontsize=16,color="green",shape="box"];1175[label="xuu400",fontsize=16,color="green",shape="box"];1176 -> 1418[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1176[label="compare1 (xuu77,xuu78,xuu79) (xuu80,xuu81,xuu82) (xuu77 < xuu80 || xuu77 == xuu80 && (xuu78 < xuu81 || xuu78 == xuu81 && xuu79 <= xuu82))",fontsize=16,color="magenta"];1176 -> 1419[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1176 -> 1420[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1176 -> 1421[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1176 -> 1422[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1176 -> 1423[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1176 -> 1424[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1176 -> 1425[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1176 -> 1426[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1080[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1080 -> 1284[label="",style="solid", color="black", weight=3]; 33.50/15.03 1081[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1081 -> 1285[label="",style="solid", color="black", weight=3]; 33.50/15.03 1082[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1082 -> 1286[label="",style="solid", color="black", weight=3]; 33.50/15.03 1083[label="compare0 True False True",fontsize=16,color="black",shape="box"];1083 -> 1287[label="",style="solid", color="black", weight=3]; 33.50/15.03 1289[label="xuu93",fontsize=16,color="green",shape="box"];1290[label="xuu94",fontsize=16,color="green",shape="box"];1291[label="Left xuu93 <= Left xuu94",fontsize=16,color="black",shape="box"];1291 -> 1295[label="",style="solid", color="black", weight=3]; 33.50/15.03 1288[label="compare1 (Left xuu151) (Left xuu152) xuu153",fontsize=16,color="burlywood",shape="triangle"];3472[label="xuu153/False",fontsize=10,color="white",style="solid",shape="box"];1288 -> 3472[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3472 -> 1296[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3473[label="xuu153/True",fontsize=10,color="white",style="solid",shape="box"];1288 -> 3473[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3473 -> 1297[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1085[label="compare0 (Right xuu5000) (Left xuu400) True",fontsize=16,color="black",shape="box"];1085 -> 1298[label="",style="solid", color="black", weight=3]; 33.50/15.03 1300[label="xuu100",fontsize=16,color="green",shape="box"];1301[label="xuu101",fontsize=16,color="green",shape="box"];1302[label="Right xuu100 <= Right xuu101",fontsize=16,color="black",shape="box"];1302 -> 1306[label="",style="solid", color="black", weight=3]; 33.50/15.03 1299[label="compare1 (Right xuu158) (Right xuu159) xuu160",fontsize=16,color="burlywood",shape="triangle"];3474[label="xuu160/False",fontsize=10,color="white",style="solid",shape="box"];1299 -> 3474[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3474 -> 1307[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3475[label="xuu160/True",fontsize=10,color="white",style="solid",shape="box"];1299 -> 3475[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3475 -> 1308[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1191[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1191 -> 1309[label="",style="solid", color="black", weight=3]; 33.50/15.03 1192[label="FiniteMap.sizeFM (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1192 -> 1310[label="",style="solid", color="black", weight=3]; 33.50/15.03 1211[label="Pos (primPlusNat xuu4420 xuu1310)",fontsize=16,color="green",shape="box"];1211 -> 1311[label="",style="dashed", color="green", weight=3]; 33.50/15.03 1212[label="primMinusNat xuu4420 xuu1310",fontsize=16,color="burlywood",shape="triangle"];3476[label="xuu4420/Succ xuu44200",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3476[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3476 -> 1312[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3477[label="xuu4420/Zero",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3477[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3477 -> 1313[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1213 -> 1212[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1213[label="primMinusNat xuu1310 xuu4420",fontsize=16,color="magenta"];1213 -> 1314[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1213 -> 1315[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1214[label="Neg (primPlusNat xuu4420 xuu1310)",fontsize=16,color="green",shape="box"];1214 -> 1316[label="",style="dashed", color="green", weight=3]; 33.50/15.03 1190[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1194 -> 119[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1194[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1194 -> 1317[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1194 -> 1318[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1193[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 xuu132",fontsize=16,color="burlywood",shape="triangle"];3478[label="xuu132/False",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3478[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3478 -> 1319[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3479[label="xuu132/True",fontsize=10,color="white",style="solid",shape="box"];1193 -> 3479[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3479 -> 1320[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1200[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu17 xuu18 xuu44 FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1200 -> 1321[label="",style="solid", color="black", weight=3]; 33.50/15.03 1201[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1201 -> 1322[label="",style="solid", color="black", weight=3]; 33.50/15.03 1202[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21 + FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21",fontsize=16,color="black",shape="box"];1202 -> 1323[label="",style="solid", color="black", weight=3]; 33.50/15.03 1203[label="xuu4000",fontsize=16,color="green",shape="box"];1204[label="xuu50010",fontsize=16,color="green",shape="box"];1205[label="primMulNat xuu4000 xuu50010",fontsize=16,color="burlywood",shape="triangle"];3480[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1205 -> 3480[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3480 -> 1324[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3481[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1205 -> 3481[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3481 -> 1325[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1206 -> 1205[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1206[label="primMulNat xuu4000 xuu50010",fontsize=16,color="magenta"];1206 -> 1326[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1207 -> 1205[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1207[label="primMulNat xuu4000 xuu50010",fontsize=16,color="magenta"];1207 -> 1327[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1208 -> 1205[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1208[label="primMulNat xuu4000 xuu50010",fontsize=16,color="magenta"];1208 -> 1328[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1208 -> 1329[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1333[label="xuu112",fontsize=16,color="green",shape="box"];1334[label="xuu114",fontsize=16,color="green",shape="box"];1335[label="xuu111 < xuu113",fontsize=16,color="blue",shape="box"];3482[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3482[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3482 -> 1345[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3483[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3483[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3483 -> 1346[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3484[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3484[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3484 -> 1347[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3485[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3485[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3485 -> 1348[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3486[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3486[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3486 -> 1349[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3487[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3487[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3487 -> 1350[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3488[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3488[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3488 -> 1351[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3489[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3489[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3489 -> 1352[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3490[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3490[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3490 -> 1353[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3491[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3491[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3491 -> 1354[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3492[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3492[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3492 -> 1355[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3493[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3493[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3493 -> 1356[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3494[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3494[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3494 -> 1357[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3495[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3495[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3495 -> 1358[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1336[label="xuu113",fontsize=16,color="green",shape="box"];1337[label="xuu111",fontsize=16,color="green",shape="box"];1338 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1338[label="xuu111 == xuu113 && xuu112 <= xuu114",fontsize=16,color="magenta"];1338 -> 1359[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1338 -> 1360[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1332[label="compare1 (xuu168,xuu169) (xuu170,xuu171) (xuu172 || xuu173)",fontsize=16,color="burlywood",shape="triangle"];3496[label="xuu172/False",fontsize=10,color="white",style="solid",shape="box"];1332 -> 3496[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3496 -> 1361[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3497[label="xuu172/True",fontsize=10,color="white",style="solid",shape="box"];1332 -> 3497[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3497 -> 1362[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1215[label="GT",fontsize=16,color="green",shape="box"];907[label="primEqChar (Char xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3498[label="xuu400/Char xuu4000",fontsize=10,color="white",style="solid",shape="box"];907 -> 3498[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3498 -> 1363[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 908[label="Left xuu50000 == Left xuu4000",fontsize=16,color="black",shape="box"];908 -> 1364[label="",style="solid", color="black", weight=3]; 33.50/15.03 909[label="Left xuu50000 == Right xuu4000",fontsize=16,color="black",shape="box"];909 -> 1365[label="",style="solid", color="black", weight=3]; 33.50/15.03 910[label="Right xuu50000 == Left xuu4000",fontsize=16,color="black",shape="box"];910 -> 1366[label="",style="solid", color="black", weight=3]; 33.50/15.03 911[label="Right xuu50000 == Right xuu4000",fontsize=16,color="black",shape="box"];911 -> 1367[label="",style="solid", color="black", weight=3]; 33.50/15.03 912[label="primEqDouble (Double xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3499[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];912 -> 3499[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3499 -> 1368[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 913[label="(xuu50000,xuu50001) == (xuu4000,xuu4001)",fontsize=16,color="black",shape="box"];913 -> 1369[label="",style="solid", color="black", weight=3]; 33.50/15.03 914[label="primEqFloat (Float xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3500[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];914 -> 3500[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3500 -> 1370[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 915[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];915 -> 1371[label="",style="solid", color="black", weight=3]; 33.50/15.03 916[label="Nothing == Just xuu4000",fontsize=16,color="black",shape="box"];916 -> 1372[label="",style="solid", color="black", weight=3]; 33.50/15.03 917[label="Just xuu50000 == Nothing",fontsize=16,color="black",shape="box"];917 -> 1373[label="",style="solid", color="black", weight=3]; 33.50/15.03 918[label="Just xuu50000 == Just xuu4000",fontsize=16,color="black",shape="box"];918 -> 1374[label="",style="solid", color="black", weight=3]; 33.50/15.03 919[label="Integer xuu50000 == Integer xuu4000",fontsize=16,color="black",shape="box"];919 -> 1375[label="",style="solid", color="black", weight=3]; 33.50/15.03 920[label="LT == LT",fontsize=16,color="black",shape="box"];920 -> 1376[label="",style="solid", color="black", weight=3]; 33.50/15.03 921[label="LT == EQ",fontsize=16,color="black",shape="box"];921 -> 1377[label="",style="solid", color="black", weight=3]; 33.50/15.03 922[label="LT == GT",fontsize=16,color="black",shape="box"];922 -> 1378[label="",style="solid", color="black", weight=3]; 33.50/15.03 923[label="EQ == LT",fontsize=16,color="black",shape="box"];923 -> 1379[label="",style="solid", color="black", weight=3]; 33.50/15.03 924[label="EQ == EQ",fontsize=16,color="black",shape="box"];924 -> 1380[label="",style="solid", color="black", weight=3]; 33.50/15.03 925[label="EQ == GT",fontsize=16,color="black",shape="box"];925 -> 1381[label="",style="solid", color="black", weight=3]; 33.50/15.03 926[label="GT == LT",fontsize=16,color="black",shape="box"];926 -> 1382[label="",style="solid", color="black", weight=3]; 33.50/15.03 927[label="GT == EQ",fontsize=16,color="black",shape="box"];927 -> 1383[label="",style="solid", color="black", weight=3]; 33.50/15.03 928[label="GT == GT",fontsize=16,color="black",shape="box"];928 -> 1384[label="",style="solid", color="black", weight=3]; 33.50/15.03 929[label="xuu50000 : xuu50001 == xuu4000 : xuu4001",fontsize=16,color="black",shape="box"];929 -> 1385[label="",style="solid", color="black", weight=3]; 33.50/15.03 930[label="xuu50000 : xuu50001 == []",fontsize=16,color="black",shape="box"];930 -> 1386[label="",style="solid", color="black", weight=3]; 33.50/15.03 931[label="[] == xuu4000 : xuu4001",fontsize=16,color="black",shape="box"];931 -> 1387[label="",style="solid", color="black", weight=3]; 33.50/15.03 932[label="[] == []",fontsize=16,color="black",shape="box"];932 -> 1388[label="",style="solid", color="black", weight=3]; 33.50/15.03 933[label="False == False",fontsize=16,color="black",shape="box"];933 -> 1389[label="",style="solid", color="black", weight=3]; 33.50/15.03 934[label="False == True",fontsize=16,color="black",shape="box"];934 -> 1390[label="",style="solid", color="black", weight=3]; 33.50/15.03 935[label="True == False",fontsize=16,color="black",shape="box"];935 -> 1391[label="",style="solid", color="black", weight=3]; 33.50/15.03 936[label="True == True",fontsize=16,color="black",shape="box"];936 -> 1392[label="",style="solid", color="black", weight=3]; 33.50/15.03 937[label="xuu50000 :% xuu50001 == xuu4000 :% xuu4001",fontsize=16,color="black",shape="box"];937 -> 1393[label="",style="solid", color="black", weight=3]; 33.50/15.03 938[label="(xuu50000,xuu50001,xuu50002) == (xuu4000,xuu4001,xuu4002)",fontsize=16,color="black",shape="box"];938 -> 1394[label="",style="solid", color="black", weight=3]; 33.50/15.03 939[label="() == ()",fontsize=16,color="black",shape="box"];939 -> 1395[label="",style="solid", color="black", weight=3]; 33.50/15.03 940[label="primEqInt (Pos xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3501[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];940 -> 3501[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3501 -> 1396[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3502[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];940 -> 3502[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3502 -> 1397[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 941[label="primEqInt (Neg xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3503[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];941 -> 3503[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3503 -> 1398[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3504[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];941 -> 3504[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3504 -> 1399[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1223[label="xuu66 <= xuu67",fontsize=16,color="blue",shape="box"];3505[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3505[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3505 -> 1400[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3506[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3506[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3506 -> 1401[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3507[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3507[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3507 -> 1402[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3508[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3508[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3508 -> 1403[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3509[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3509[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3509 -> 1404[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3510[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3510[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3510 -> 1405[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3511[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3511[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3511 -> 1406[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3512[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3512[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3512 -> 1407[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3513[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3513[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3513 -> 1408[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3514[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3514[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3514 -> 1409[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3515[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3515[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3515 -> 1410[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3516[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3516[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3516 -> 1411[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3517[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3517[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3517 -> 1412[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3518[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3518[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3518 -> 1413[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1224[label="compare1 (Just xuu142) (Just xuu143) False",fontsize=16,color="black",shape="box"];1224 -> 1414[label="",style="solid", color="black", weight=3]; 33.50/15.03 1225[label="compare1 (Just xuu142) (Just xuu143) True",fontsize=16,color="black",shape="box"];1225 -> 1415[label="",style="solid", color="black", weight=3]; 33.50/15.03 1226[label="xuu5002",fontsize=16,color="green",shape="box"];1227[label="xuu402",fontsize=16,color="green",shape="box"];1228[label="xuu5002",fontsize=16,color="green",shape="box"];1229[label="xuu402",fontsize=16,color="green",shape="box"];1230[label="xuu5002",fontsize=16,color="green",shape="box"];1231[label="xuu402",fontsize=16,color="green",shape="box"];1232[label="xuu5002",fontsize=16,color="green",shape="box"];1233[label="xuu402",fontsize=16,color="green",shape="box"];1234[label="xuu5002",fontsize=16,color="green",shape="box"];1235[label="xuu402",fontsize=16,color="green",shape="box"];1236[label="xuu5002",fontsize=16,color="green",shape="box"];1237[label="xuu402",fontsize=16,color="green",shape="box"];1238[label="xuu5002",fontsize=16,color="green",shape="box"];1239[label="xuu402",fontsize=16,color="green",shape="box"];1240[label="xuu5002",fontsize=16,color="green",shape="box"];1241[label="xuu402",fontsize=16,color="green",shape="box"];1242[label="xuu5002",fontsize=16,color="green",shape="box"];1243[label="xuu402",fontsize=16,color="green",shape="box"];1244[label="xuu5002",fontsize=16,color="green",shape="box"];1245[label="xuu402",fontsize=16,color="green",shape="box"];1246[label="xuu5002",fontsize=16,color="green",shape="box"];1247[label="xuu402",fontsize=16,color="green",shape="box"];1248[label="xuu5002",fontsize=16,color="green",shape="box"];1249[label="xuu402",fontsize=16,color="green",shape="box"];1250[label="xuu5002",fontsize=16,color="green",shape="box"];1251[label="xuu402",fontsize=16,color="green",shape="box"];1252[label="xuu5002",fontsize=16,color="green",shape="box"];1253[label="xuu402",fontsize=16,color="green",shape="box"];1254[label="xuu5001",fontsize=16,color="green",shape="box"];1255[label="xuu401",fontsize=16,color="green",shape="box"];1256[label="xuu5001",fontsize=16,color="green",shape="box"];1257[label="xuu401",fontsize=16,color="green",shape="box"];1258[label="xuu5001",fontsize=16,color="green",shape="box"];1259[label="xuu401",fontsize=16,color="green",shape="box"];1260[label="xuu5001",fontsize=16,color="green",shape="box"];1261[label="xuu401",fontsize=16,color="green",shape="box"];1262[label="xuu5001",fontsize=16,color="green",shape="box"];1263[label="xuu401",fontsize=16,color="green",shape="box"];1264[label="xuu5001",fontsize=16,color="green",shape="box"];1265[label="xuu401",fontsize=16,color="green",shape="box"];1266[label="xuu5001",fontsize=16,color="green",shape="box"];1267[label="xuu401",fontsize=16,color="green",shape="box"];1268[label="xuu5001",fontsize=16,color="green",shape="box"];1269[label="xuu401",fontsize=16,color="green",shape="box"];1270[label="xuu5001",fontsize=16,color="green",shape="box"];1271[label="xuu401",fontsize=16,color="green",shape="box"];1272[label="xuu5001",fontsize=16,color="green",shape="box"];1273[label="xuu401",fontsize=16,color="green",shape="box"];1274[label="xuu5001",fontsize=16,color="green",shape="box"];1275[label="xuu401",fontsize=16,color="green",shape="box"];1276[label="xuu5001",fontsize=16,color="green",shape="box"];1277[label="xuu401",fontsize=16,color="green",shape="box"];1278[label="xuu5001",fontsize=16,color="green",shape="box"];1279[label="xuu401",fontsize=16,color="green",shape="box"];1280[label="xuu5001",fontsize=16,color="green",shape="box"];1281[label="xuu401",fontsize=16,color="green",shape="box"];1419[label="xuu82",fontsize=16,color="green",shape="box"];1420 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1420[label="xuu77 == xuu80 && (xuu78 < xuu81 || xuu78 == xuu81 && xuu79 <= xuu82)",fontsize=16,color="magenta"];1420 -> 1435[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1420 -> 1436[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1421[label="xuu77 < xuu80",fontsize=16,color="blue",shape="box"];3519[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3519[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3519 -> 1437[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3520[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3520[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3520 -> 1438[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3521[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3521[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3521 -> 1439[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3522[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3522[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3522 -> 1440[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3523[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3523[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3523 -> 1441[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3524[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3524[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3524 -> 1442[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3525[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3525[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3525 -> 1443[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3526[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3526[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3526 -> 1444[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3527[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3527[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3527 -> 1445[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3528[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3528[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3528 -> 1446[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3529[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3529[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3529 -> 1447[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3530[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3530[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3530 -> 1448[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3531[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3531[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3531 -> 1449[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3532[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3532[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3532 -> 1450[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1422[label="xuu81",fontsize=16,color="green",shape="box"];1423[label="xuu80",fontsize=16,color="green",shape="box"];1424[label="xuu79",fontsize=16,color="green",shape="box"];1425[label="xuu77",fontsize=16,color="green",shape="box"];1426[label="xuu78",fontsize=16,color="green",shape="box"];1418[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) (xuu189 || xuu190)",fontsize=16,color="burlywood",shape="triangle"];3533[label="xuu189/False",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3533[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3533 -> 1451[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3534[label="xuu189/True",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3534[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3534 -> 1452[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1284[label="GT",fontsize=16,color="green",shape="box"];1285[label="GT",fontsize=16,color="green",shape="box"];1286[label="GT",fontsize=16,color="green",shape="box"];1287[label="GT",fontsize=16,color="green",shape="box"];1295[label="xuu93 <= xuu94",fontsize=16,color="blue",shape="box"];3535[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3535[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3535 -> 1453[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3536[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3536[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3536 -> 1454[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3537[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3537[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3537 -> 1455[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3538[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3538[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3538 -> 1456[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3539[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3539[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3539 -> 1457[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3540[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3540[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3540 -> 1458[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3541[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3541[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3541 -> 1459[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3542[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3542[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3542 -> 1460[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3543[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3543[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3543 -> 1461[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3544[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3544[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3544 -> 1462[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3545[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3545[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3545 -> 1463[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3546[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3546[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3546 -> 1464[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3547[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3547[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3547 -> 1465[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3548[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3548[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3548 -> 1466[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1296[label="compare1 (Left xuu151) (Left xuu152) False",fontsize=16,color="black",shape="box"];1296 -> 1467[label="",style="solid", color="black", weight=3]; 33.50/15.03 1297[label="compare1 (Left xuu151) (Left xuu152) True",fontsize=16,color="black",shape="box"];1297 -> 1468[label="",style="solid", color="black", weight=3]; 33.50/15.03 1298[label="GT",fontsize=16,color="green",shape="box"];1306[label="xuu100 <= xuu101",fontsize=16,color="blue",shape="box"];3549[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3549[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3549 -> 1469[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3550[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3550[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3550 -> 1470[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3551[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3551[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3551 -> 1471[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3552[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3552[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3552 -> 1472[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3553[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3553[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3553 -> 1473[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3554[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3554[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3554 -> 1474[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3555[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3555[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3555 -> 1475[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3556[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3556[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3556 -> 1476[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3557[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3557[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3557 -> 1477[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3558[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3558[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3558 -> 1478[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3559[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3559[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3559 -> 1479[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3560[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3560[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3560 -> 1480[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3561[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3561[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3561 -> 1481[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3562[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3562[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3562 -> 1482[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1307[label="compare1 (Right xuu158) (Right xuu159) False",fontsize=16,color="black",shape="box"];1307 -> 1483[label="",style="solid", color="black", weight=3]; 33.50/15.03 1308[label="compare1 (Right xuu158) (Right xuu159) True",fontsize=16,color="black",shape="box"];1308 -> 1484[label="",style="solid", color="black", weight=3]; 33.50/15.03 1309[label="Pos Zero",fontsize=16,color="green",shape="box"];1310[label="xuu212",fontsize=16,color="green",shape="box"];1311[label="primPlusNat xuu4420 xuu1310",fontsize=16,color="burlywood",shape="triangle"];3563[label="xuu4420/Succ xuu44200",fontsize=10,color="white",style="solid",shape="box"];1311 -> 3563[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3563 -> 1485[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3564[label="xuu4420/Zero",fontsize=10,color="white",style="solid",shape="box"];1311 -> 3564[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3564 -> 1486[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1312[label="primMinusNat (Succ xuu44200) xuu1310",fontsize=16,color="burlywood",shape="box"];3565[label="xuu1310/Succ xuu13100",fontsize=10,color="white",style="solid",shape="box"];1312 -> 3565[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3565 -> 1487[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3566[label="xuu1310/Zero",fontsize=10,color="white",style="solid",shape="box"];1312 -> 3566[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3566 -> 1488[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1313[label="primMinusNat Zero xuu1310",fontsize=16,color="burlywood",shape="box"];3567[label="xuu1310/Succ xuu13100",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3567[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3567 -> 1489[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3568[label="xuu1310/Zero",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3568[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3568 -> 1490[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1314[label="xuu4420",fontsize=16,color="green",shape="box"];1315[label="xuu1310",fontsize=16,color="green",shape="box"];1316 -> 1311[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1316[label="primPlusNat xuu4420 xuu1310",fontsize=16,color="magenta"];1316 -> 1491[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1316 -> 1492[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1317 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1317[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1317 -> 1493[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1317 -> 1494[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1318 -> 1179[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1318[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1319[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 False",fontsize=16,color="black",shape="box"];1319 -> 1495[label="",style="solid", color="black", weight=3]; 33.50/15.03 1320[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 True",fontsize=16,color="black",shape="box"];1320 -> 1496[label="",style="solid", color="black", weight=3]; 33.50/15.03 1321[label="error []",fontsize=16,color="red",shape="box"];1322[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1322 -> 1497[label="",style="solid", color="black", weight=3]; 33.50/15.03 1323 -> 1177[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1323[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21) (FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21)",fontsize=16,color="magenta"];1323 -> 1498[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1323 -> 1499[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1324[label="primMulNat (Succ xuu40000) xuu50010",fontsize=16,color="burlywood",shape="box"];3569[label="xuu50010/Succ xuu500100",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3569[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3569 -> 1500[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3570[label="xuu50010/Zero",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3570[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3570 -> 1501[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1325[label="primMulNat Zero xuu50010",fontsize=16,color="burlywood",shape="box"];3571[label="xuu50010/Succ xuu500100",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3571[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3571 -> 1502[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3572[label="xuu50010/Zero",fontsize=10,color="white",style="solid",shape="box"];1325 -> 3572[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3572 -> 1503[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1326[label="xuu50010",fontsize=16,color="green",shape="box"];1327[label="xuu4000",fontsize=16,color="green",shape="box"];1328[label="xuu50010",fontsize=16,color="green",shape="box"];1329[label="xuu4000",fontsize=16,color="green",shape="box"];1345 -> 34[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1345[label="xuu111 < xuu113",fontsize=16,color="magenta"];1345 -> 1504[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1345 -> 1505[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1346 -> 35[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1346[label="xuu111 < xuu113",fontsize=16,color="magenta"];1346 -> 1506[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1346 -> 1507[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1347 -> 36[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1347[label="xuu111 < xuu113",fontsize=16,color="magenta"];1347 -> 1508[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1347 -> 1509[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1348 -> 37[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1348[label="xuu111 < xuu113",fontsize=16,color="magenta"];1348 -> 1510[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1348 -> 1511[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1349 -> 38[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1349[label="xuu111 < xuu113",fontsize=16,color="magenta"];1349 -> 1512[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1349 -> 1513[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1350 -> 39[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1350[label="xuu111 < xuu113",fontsize=16,color="magenta"];1350 -> 1514[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1350 -> 1515[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1351 -> 40[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1351[label="xuu111 < xuu113",fontsize=16,color="magenta"];1351 -> 1516[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1351 -> 1517[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1352 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1352[label="xuu111 < xuu113",fontsize=16,color="magenta"];1352 -> 1518[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1352 -> 1519[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1353 -> 42[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1353[label="xuu111 < xuu113",fontsize=16,color="magenta"];1353 -> 1520[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1353 -> 1521[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1354 -> 43[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1354[label="xuu111 < xuu113",fontsize=16,color="magenta"];1354 -> 1522[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1354 -> 1523[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1355 -> 44[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1355[label="xuu111 < xuu113",fontsize=16,color="magenta"];1355 -> 1524[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1355 -> 1525[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1356 -> 45[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1356[label="xuu111 < xuu113",fontsize=16,color="magenta"];1356 -> 1526[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1356 -> 1527[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1357 -> 46[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1357[label="xuu111 < xuu113",fontsize=16,color="magenta"];1357 -> 1528[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1357 -> 1529[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1358 -> 47[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1358[label="xuu111 < xuu113",fontsize=16,color="magenta"];1358 -> 1530[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1358 -> 1531[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1359[label="xuu112 <= xuu114",fontsize=16,color="blue",shape="box"];3573[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3573[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3573 -> 1532[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3574[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3574[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3574 -> 1533[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3575[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3575[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3575 -> 1534[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3576[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3576[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3576 -> 1535[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3577[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3577[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3577 -> 1536[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3578[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3578[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3578 -> 1537[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3579[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3579[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3579 -> 1538[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3580[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3580[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3580 -> 1539[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3581[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3581[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3581 -> 1540[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3582[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3582[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3582 -> 1541[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3583[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3583[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3583 -> 1542[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3584[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3584[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3584 -> 1543[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3585[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3585[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3585 -> 1544[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3586[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3586[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3586 -> 1545[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1360[label="xuu111 == xuu113",fontsize=16,color="blue",shape="box"];3587[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3587[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3587 -> 1546[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3588[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3588[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3588 -> 1547[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3589[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3589[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3589 -> 1548[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3590[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3590[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3590 -> 1549[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3591[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3591[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3591 -> 1550[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3592[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3592[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3592 -> 1551[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3593[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3593[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3593 -> 1552[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3594[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3594[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3594 -> 1553[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3595[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3595[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3595 -> 1554[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3596[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3596[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3596 -> 1555[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3597[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3597[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3597 -> 1556[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3598[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3598[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3598 -> 1557[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3599[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3599[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3599 -> 1558[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3600[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3600[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3600 -> 1559[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1361[label="compare1 (xuu168,xuu169) (xuu170,xuu171) (False || xuu173)",fontsize=16,color="black",shape="box"];1361 -> 1560[label="",style="solid", color="black", weight=3]; 33.50/15.03 1362[label="compare1 (xuu168,xuu169) (xuu170,xuu171) (True || xuu173)",fontsize=16,color="black",shape="box"];1362 -> 1561[label="",style="solid", color="black", weight=3]; 33.50/15.03 1363[label="primEqChar (Char xuu50000) (Char xuu4000)",fontsize=16,color="black",shape="box"];1363 -> 1562[label="",style="solid", color="black", weight=3]; 33.50/15.03 1364[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3601[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3601[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3601 -> 1563[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3602[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3602[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3602 -> 1564[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3603[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3603[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3603 -> 1565[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3604[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3604[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3604 -> 1566[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3605[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3605[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3605 -> 1567[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3606[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3606[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3606 -> 1568[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3607[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3607[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3607 -> 1569[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3608[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3608[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3608 -> 1570[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3609[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3609[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3609 -> 1571[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3610[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3610[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3610 -> 1572[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3611[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3611[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3611 -> 1573[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3612[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3612[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3612 -> 1574[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3613[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3613[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3613 -> 1575[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3614[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3614[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3614 -> 1576[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1365[label="False",fontsize=16,color="green",shape="box"];1366[label="False",fontsize=16,color="green",shape="box"];1367[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3615[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3615[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3615 -> 1577[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3616[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3616[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3616 -> 1578[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3617[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3617[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3617 -> 1579[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3618[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3618[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3618 -> 1580[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3619[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3619[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3619 -> 1581[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3620[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3620[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3620 -> 1582[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3621[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3621[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3621 -> 1583[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3622[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3622[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3622 -> 1584[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3623[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3623[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3623 -> 1585[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3624[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3624[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3624 -> 1586[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3625[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3625[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3625 -> 1587[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3626[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3626[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3626 -> 1588[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3627[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3627[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3627 -> 1589[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3628[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3628[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3628 -> 1590[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1368[label="primEqDouble (Double xuu50000 xuu50001) (Double xuu4000 xuu4001)",fontsize=16,color="black",shape="box"];1368 -> 1591[label="",style="solid", color="black", weight=3]; 33.50/15.03 1369 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1369[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];1369 -> 1592[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1369 -> 1593[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1370[label="primEqFloat (Float xuu50000 xuu50001) (Float xuu4000 xuu4001)",fontsize=16,color="black",shape="box"];1370 -> 1594[label="",style="solid", color="black", weight=3]; 33.50/15.03 1371[label="True",fontsize=16,color="green",shape="box"];1372[label="False",fontsize=16,color="green",shape="box"];1373[label="False",fontsize=16,color="green",shape="box"];1374[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3629[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3629[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3629 -> 1595[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3630[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3630[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3630 -> 1596[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3631[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3631[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3631 -> 1597[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3632[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3632[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3632 -> 1598[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3633[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3633[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3633 -> 1599[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3634[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3634[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3634 -> 1600[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3635[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3635[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3635 -> 1601[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3636[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3636[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3636 -> 1602[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3637[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3637[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3637 -> 1603[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3638[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3638[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3638 -> 1604[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3639[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3639[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3639 -> 1605[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3640[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3640[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3640 -> 1606[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3641[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3641[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3641 -> 1607[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3642[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1374 -> 3642[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3642 -> 1608[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1375 -> 694[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1375[label="primEqInt xuu50000 xuu4000",fontsize=16,color="magenta"];1375 -> 1609[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1375 -> 1610[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1376[label="True",fontsize=16,color="green",shape="box"];1377[label="False",fontsize=16,color="green",shape="box"];1378[label="False",fontsize=16,color="green",shape="box"];1379[label="False",fontsize=16,color="green",shape="box"];1380[label="True",fontsize=16,color="green",shape="box"];1381[label="False",fontsize=16,color="green",shape="box"];1382[label="False",fontsize=16,color="green",shape="box"];1383[label="False",fontsize=16,color="green",shape="box"];1384[label="True",fontsize=16,color="green",shape="box"];1385 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1385[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];1385 -> 1611[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1385 -> 1612[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1386[label="False",fontsize=16,color="green",shape="box"];1387[label="False",fontsize=16,color="green",shape="box"];1388[label="True",fontsize=16,color="green",shape="box"];1389[label="True",fontsize=16,color="green",shape="box"];1390[label="False",fontsize=16,color="green",shape="box"];1391[label="False",fontsize=16,color="green",shape="box"];1392[label="True",fontsize=16,color="green",shape="box"];1393 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1393[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];1393 -> 1613[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1393 -> 1614[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1394 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1394[label="xuu50000 == xuu4000 && xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];1394 -> 1615[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1394 -> 1616[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1395[label="True",fontsize=16,color="green",shape="box"];1396[label="primEqInt (Pos (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];3643[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];1396 -> 3643[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3643 -> 1617[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3644[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];1396 -> 3644[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3644 -> 1618[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1397[label="primEqInt (Pos Zero) xuu400",fontsize=16,color="burlywood",shape="box"];3645[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];1397 -> 3645[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3645 -> 1619[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3646[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];1397 -> 3646[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3646 -> 1620[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1398[label="primEqInt (Neg (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];3647[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3647[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3647 -> 1621[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3648[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3648[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3648 -> 1622[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1399[label="primEqInt (Neg Zero) xuu400",fontsize=16,color="burlywood",shape="box"];3649[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3649[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3649 -> 1623[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3650[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3650[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3650 -> 1624[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1400[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1400 -> 1625[label="",style="solid", color="black", weight=3]; 33.50/15.03 1401[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3651[label="xuu66/(xuu660,xuu661)",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3651[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3651 -> 1626[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1402[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3652[label="xuu66/Nothing",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3652[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3652 -> 1627[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3653[label="xuu66/Just xuu660",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3653[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3653 -> 1628[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1403[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3654[label="xuu66/(xuu660,xuu661,xuu662)",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3654[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3654 -> 1629[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1404[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1404 -> 1630[label="",style="solid", color="black", weight=3]; 33.50/15.03 1405[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1405 -> 1631[label="",style="solid", color="black", weight=3]; 33.50/15.03 1406[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3655[label="xuu66/LT",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3655[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3655 -> 1632[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3656[label="xuu66/EQ",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3656[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3656 -> 1633[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3657[label="xuu66/GT",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3657[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3657 -> 1634[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1407[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1407 -> 1635[label="",style="solid", color="black", weight=3]; 33.50/15.03 1408[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3658[label="xuu66/False",fontsize=10,color="white",style="solid",shape="box"];1408 -> 3658[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3658 -> 1636[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3659[label="xuu66/True",fontsize=10,color="white",style="solid",shape="box"];1408 -> 3659[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3659 -> 1637[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1409[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1409 -> 1638[label="",style="solid", color="black", weight=3]; 33.50/15.03 1410[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1410 -> 1639[label="",style="solid", color="black", weight=3]; 33.50/15.03 1411[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1411 -> 1640[label="",style="solid", color="black", weight=3]; 33.50/15.03 1412[label="xuu66 <= xuu67",fontsize=16,color="black",shape="triangle"];1412 -> 1641[label="",style="solid", color="black", weight=3]; 33.50/15.03 1413[label="xuu66 <= xuu67",fontsize=16,color="burlywood",shape="triangle"];3660[label="xuu66/Left xuu660",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3660[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3660 -> 1642[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 3661[label="xuu66/Right xuu660",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3661[label="",style="solid", color="burlywood", weight=9]; 33.50/15.03 3661 -> 1643[label="",style="solid", color="burlywood", weight=3]; 33.50/15.03 1414[label="compare0 (Just xuu142) (Just xuu143) otherwise",fontsize=16,color="black",shape="box"];1414 -> 1644[label="",style="solid", color="black", weight=3]; 33.50/15.03 1415[label="LT",fontsize=16,color="green",shape="box"];1435 -> 2030[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1435[label="xuu78 < xuu81 || xuu78 == xuu81 && xuu79 <= xuu82",fontsize=16,color="magenta"];1435 -> 2031[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1435 -> 2032[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1436[label="xuu77 == xuu80",fontsize=16,color="blue",shape="box"];3662[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3662[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3662 -> 1647[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3663[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3663[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3663 -> 1648[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3664[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3664[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3664 -> 1649[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3665[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3665[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3665 -> 1650[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3666[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3666[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3666 -> 1651[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3667[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3667[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3667 -> 1652[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3668[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3668[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3668 -> 1653[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3669[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3669[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3669 -> 1654[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3670[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3670[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3670 -> 1655[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3671[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3671[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3671 -> 1656[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3672[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3672[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3672 -> 1657[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3673[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3673[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3673 -> 1658[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3674[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3674[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3674 -> 1659[label="",style="solid", color="blue", weight=3]; 33.50/15.03 3675[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3675[label="",style="solid", color="blue", weight=9]; 33.50/15.03 3675 -> 1660[label="",style="solid", color="blue", weight=3]; 33.50/15.03 1437 -> 34[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1437[label="xuu77 < xuu80",fontsize=16,color="magenta"];1437 -> 1661[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1437 -> 1662[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1438 -> 35[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1438[label="xuu77 < xuu80",fontsize=16,color="magenta"];1438 -> 1663[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1438 -> 1664[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1439 -> 36[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1439[label="xuu77 < xuu80",fontsize=16,color="magenta"];1439 -> 1665[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1439 -> 1666[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1440 -> 37[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1440[label="xuu77 < xuu80",fontsize=16,color="magenta"];1440 -> 1667[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1440 -> 1668[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1441 -> 38[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1441[label="xuu77 < xuu80",fontsize=16,color="magenta"];1441 -> 1669[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1441 -> 1670[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1442 -> 39[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1442[label="xuu77 < xuu80",fontsize=16,color="magenta"];1442 -> 1671[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1442 -> 1672[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1443 -> 40[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1443[label="xuu77 < xuu80",fontsize=16,color="magenta"];1443 -> 1673[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1443 -> 1674[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1444 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1444[label="xuu77 < xuu80",fontsize=16,color="magenta"];1444 -> 1675[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1444 -> 1676[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1445 -> 42[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1445[label="xuu77 < xuu80",fontsize=16,color="magenta"];1445 -> 1677[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1445 -> 1678[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1446 -> 43[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1446[label="xuu77 < xuu80",fontsize=16,color="magenta"];1446 -> 1679[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1446 -> 1680[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1447 -> 44[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1447[label="xuu77 < xuu80",fontsize=16,color="magenta"];1447 -> 1681[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1447 -> 1682[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1448 -> 45[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1448[label="xuu77 < xuu80",fontsize=16,color="magenta"];1448 -> 1683[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1448 -> 1684[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1449 -> 46[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1449[label="xuu77 < xuu80",fontsize=16,color="magenta"];1449 -> 1685[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1449 -> 1686[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1450 -> 47[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1450[label="xuu77 < xuu80",fontsize=16,color="magenta"];1450 -> 1687[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1450 -> 1688[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1451[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) (False || xuu190)",fontsize=16,color="black",shape="box"];1451 -> 1689[label="",style="solid", color="black", weight=3]; 33.50/15.03 1452[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) (True || xuu190)",fontsize=16,color="black",shape="box"];1452 -> 1690[label="",style="solid", color="black", weight=3]; 33.50/15.03 1453 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1453[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1453 -> 1691[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1453 -> 1692[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1454 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1454[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1454 -> 1693[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1454 -> 1694[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1455 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1455[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1455 -> 1695[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1455 -> 1696[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1456 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1456[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1456 -> 1697[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1456 -> 1698[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1457 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1457[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1457 -> 1699[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1457 -> 1700[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1458 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1458[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1458 -> 1701[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1458 -> 1702[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1459 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1459[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1459 -> 1703[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1459 -> 1704[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1460 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1460[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1460 -> 1705[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1460 -> 1706[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1461 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1461[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1461 -> 1707[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1461 -> 1708[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1462 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1462[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1462 -> 1709[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1462 -> 1710[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1463 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1463[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1463 -> 1711[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1463 -> 1712[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1464 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1464[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1464 -> 1713[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1464 -> 1714[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1465 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1465[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1465 -> 1715[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1465 -> 1716[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1466 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1466[label="xuu93 <= xuu94",fontsize=16,color="magenta"];1466 -> 1717[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1466 -> 1718[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1467[label="compare0 (Left xuu151) (Left xuu152) otherwise",fontsize=16,color="black",shape="box"];1467 -> 1719[label="",style="solid", color="black", weight=3]; 33.50/15.03 1468[label="LT",fontsize=16,color="green",shape="box"];1469 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1469[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1469 -> 1720[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1469 -> 1721[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1470 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1470[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1470 -> 1722[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1470 -> 1723[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1471 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1471[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1471 -> 1724[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1471 -> 1725[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1472 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.03 1472[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1472 -> 1726[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1472 -> 1727[label="",style="dashed", color="magenta", weight=3]; 33.50/15.03 1473 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1473[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1473 -> 1728[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1473 -> 1729[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1474 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1474[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1474 -> 1730[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1474 -> 1731[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1475 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1475[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1475 -> 1732[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1475 -> 1733[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1476 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1476[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1476 -> 1734[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1476 -> 1735[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1477 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1477[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1477 -> 1736[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1477 -> 1737[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1478 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1478[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1478 -> 1738[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1478 -> 1739[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1479 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1479[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1479 -> 1740[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1479 -> 1741[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1480 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1480[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1480 -> 1742[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1480 -> 1743[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1481 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1481[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1481 -> 1744[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1481 -> 1745[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1482 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1482[label="xuu100 <= xuu101",fontsize=16,color="magenta"];1482 -> 1746[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1482 -> 1747[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1483[label="compare0 (Right xuu158) (Right xuu159) otherwise",fontsize=16,color="black",shape="box"];1483 -> 1748[label="",style="solid", color="black", weight=3]; 33.50/15.04 1484[label="LT",fontsize=16,color="green",shape="box"];1485[label="primPlusNat (Succ xuu44200) xuu1310",fontsize=16,color="burlywood",shape="box"];3676[label="xuu1310/Succ xuu13100",fontsize=10,color="white",style="solid",shape="box"];1485 -> 3676[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3676 -> 1749[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3677[label="xuu1310/Zero",fontsize=10,color="white",style="solid",shape="box"];1485 -> 3677[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3677 -> 1750[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1486[label="primPlusNat Zero xuu1310",fontsize=16,color="burlywood",shape="box"];3678[label="xuu1310/Succ xuu13100",fontsize=10,color="white",style="solid",shape="box"];1486 -> 3678[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3678 -> 1751[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3679[label="xuu1310/Zero",fontsize=10,color="white",style="solid",shape="box"];1486 -> 3679[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3679 -> 1752[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1487[label="primMinusNat (Succ xuu44200) (Succ xuu13100)",fontsize=16,color="black",shape="box"];1487 -> 1753[label="",style="solid", color="black", weight=3]; 33.50/15.04 1488[label="primMinusNat (Succ xuu44200) Zero",fontsize=16,color="black",shape="box"];1488 -> 1754[label="",style="solid", color="black", weight=3]; 33.50/15.04 1489[label="primMinusNat Zero (Succ xuu13100)",fontsize=16,color="black",shape="box"];1489 -> 1755[label="",style="solid", color="black", weight=3]; 33.50/15.04 1490[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1490 -> 1756[label="",style="solid", color="black", weight=3]; 33.50/15.04 1491[label="xuu4420",fontsize=16,color="green",shape="box"];1492[label="xuu1310",fontsize=16,color="green",shape="box"];1493 -> 896[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1493[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1494 -> 666[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1494[label="FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1495[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 otherwise",fontsize=16,color="black",shape="box"];1495 -> 1757[label="",style="solid", color="black", weight=3]; 33.50/15.04 1496[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu17 xuu18 xuu44 xuu21 xuu44 xuu21 xuu44",fontsize=16,color="burlywood",shape="box"];3680[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3680[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3680 -> 1758[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3681[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3681[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3681 -> 1759[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1497 -> 1760[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1497[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 (FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214)",fontsize=16,color="magenta"];1497 -> 1761[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1498[label="FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21",fontsize=16,color="black",shape="box"];1498 -> 1762[label="",style="solid", color="black", weight=3]; 33.50/15.04 1499[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21",fontsize=16,color="black",shape="box"];1499 -> 1763[label="",style="solid", color="black", weight=3]; 33.50/15.04 1500[label="primMulNat (Succ xuu40000) (Succ xuu500100)",fontsize=16,color="black",shape="box"];1500 -> 1764[label="",style="solid", color="black", weight=3]; 33.50/15.04 1501[label="primMulNat (Succ xuu40000) Zero",fontsize=16,color="black",shape="box"];1501 -> 1765[label="",style="solid", color="black", weight=3]; 33.50/15.04 1502[label="primMulNat Zero (Succ xuu500100)",fontsize=16,color="black",shape="box"];1502 -> 1766[label="",style="solid", color="black", weight=3]; 33.50/15.04 1503[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1503 -> 1767[label="",style="solid", color="black", weight=3]; 33.50/15.04 1504[label="xuu113",fontsize=16,color="green",shape="box"];1505[label="xuu111",fontsize=16,color="green",shape="box"];1506[label="xuu113",fontsize=16,color="green",shape="box"];1507[label="xuu111",fontsize=16,color="green",shape="box"];1508[label="xuu113",fontsize=16,color="green",shape="box"];1509[label="xuu111",fontsize=16,color="green",shape="box"];1510[label="xuu113",fontsize=16,color="green",shape="box"];1511[label="xuu111",fontsize=16,color="green",shape="box"];1512[label="xuu113",fontsize=16,color="green",shape="box"];1513[label="xuu111",fontsize=16,color="green",shape="box"];1514[label="xuu113",fontsize=16,color="green",shape="box"];1515[label="xuu111",fontsize=16,color="green",shape="box"];1516[label="xuu113",fontsize=16,color="green",shape="box"];1517[label="xuu111",fontsize=16,color="green",shape="box"];1518[label="xuu113",fontsize=16,color="green",shape="box"];1519[label="xuu111",fontsize=16,color="green",shape="box"];1520[label="xuu113",fontsize=16,color="green",shape="box"];1521[label="xuu111",fontsize=16,color="green",shape="box"];1522[label="xuu113",fontsize=16,color="green",shape="box"];1523[label="xuu111",fontsize=16,color="green",shape="box"];1524[label="xuu113",fontsize=16,color="green",shape="box"];1525[label="xuu111",fontsize=16,color="green",shape="box"];1526[label="xuu113",fontsize=16,color="green",shape="box"];1527[label="xuu111",fontsize=16,color="green",shape="box"];1528[label="xuu113",fontsize=16,color="green",shape="box"];1529[label="xuu111",fontsize=16,color="green",shape="box"];1530[label="xuu113",fontsize=16,color="green",shape="box"];1531[label="xuu111",fontsize=16,color="green",shape="box"];1532 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1532[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1532 -> 1768[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1532 -> 1769[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1533 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1533[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1533 -> 1770[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1533 -> 1771[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1534 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1534[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1534 -> 1772[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1534 -> 1773[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1535 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1535[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1535 -> 1774[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1535 -> 1775[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1536 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1536[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1536 -> 1776[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1536 -> 1777[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1537 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1537[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1537 -> 1778[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1537 -> 1779[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1538 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1538[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1538 -> 1780[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1538 -> 1781[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1539 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1539[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1539 -> 1782[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1539 -> 1783[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1540 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1540[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1540 -> 1784[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1540 -> 1785[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1541 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1541[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1541 -> 1786[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1541 -> 1787[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1542 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1542[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1542 -> 1788[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1542 -> 1789[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1543 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1543[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1543 -> 1790[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1543 -> 1791[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1544 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1544[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1544 -> 1792[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1544 -> 1793[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1545 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1545[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1545 -> 1794[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1545 -> 1795[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1546 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1546[label="xuu111 == xuu113",fontsize=16,color="magenta"];1546 -> 1796[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1546 -> 1797[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1547 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1547[label="xuu111 == xuu113",fontsize=16,color="magenta"];1547 -> 1798[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1547 -> 1799[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1548 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1548[label="xuu111 == xuu113",fontsize=16,color="magenta"];1548 -> 1800[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1548 -> 1801[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1549 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1549[label="xuu111 == xuu113",fontsize=16,color="magenta"];1549 -> 1802[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1549 -> 1803[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1550 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1550[label="xuu111 == xuu113",fontsize=16,color="magenta"];1550 -> 1804[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1550 -> 1805[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1551 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1551[label="xuu111 == xuu113",fontsize=16,color="magenta"];1551 -> 1806[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1551 -> 1807[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1552 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1552[label="xuu111 == xuu113",fontsize=16,color="magenta"];1552 -> 1808[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1552 -> 1809[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1553 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1553[label="xuu111 == xuu113",fontsize=16,color="magenta"];1553 -> 1810[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1553 -> 1811[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1554 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1554[label="xuu111 == xuu113",fontsize=16,color="magenta"];1554 -> 1812[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1554 -> 1813[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1555 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1555[label="xuu111 == xuu113",fontsize=16,color="magenta"];1555 -> 1814[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1555 -> 1815[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1556 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1556[label="xuu111 == xuu113",fontsize=16,color="magenta"];1556 -> 1816[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1556 -> 1817[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1557 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1557[label="xuu111 == xuu113",fontsize=16,color="magenta"];1557 -> 1818[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1557 -> 1819[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1558 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1558[label="xuu111 == xuu113",fontsize=16,color="magenta"];1558 -> 1820[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1558 -> 1821[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1559 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1559[label="xuu111 == xuu113",fontsize=16,color="magenta"];1559 -> 1822[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1559 -> 1823[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1560[label="compare1 (xuu168,xuu169) (xuu170,xuu171) xuu173",fontsize=16,color="burlywood",shape="triangle"];3682[label="xuu173/False",fontsize=10,color="white",style="solid",shape="box"];1560 -> 3682[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3682 -> 1824[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3683[label="xuu173/True",fontsize=10,color="white",style="solid",shape="box"];1560 -> 3683[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3683 -> 1825[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1561 -> 1560[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1561[label="compare1 (xuu168,xuu169) (xuu170,xuu171) True",fontsize=16,color="magenta"];1561 -> 1826[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1562[label="primEqNat xuu50000 xuu4000",fontsize=16,color="burlywood",shape="triangle"];3684[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];1562 -> 3684[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3684 -> 1827[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3685[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];1562 -> 3685[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3685 -> 1828[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1563 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1563[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1563 -> 1829[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1563 -> 1830[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1564 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1564[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1564 -> 1831[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1564 -> 1832[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1565 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1565[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1565 -> 1833[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1565 -> 1834[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1566 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1566[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1566 -> 1835[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1566 -> 1836[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1567 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1567[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1567 -> 1837[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1567 -> 1838[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1568 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1568[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1568 -> 1839[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1568 -> 1840[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1569 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1569[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1569 -> 1841[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1569 -> 1842[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1570 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1570[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1570 -> 1843[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1570 -> 1844[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1571 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1571[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1571 -> 1845[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1571 -> 1846[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1572 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1572[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1572 -> 1847[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1572 -> 1848[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1573 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1573[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1573 -> 1849[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1573 -> 1850[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1574 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1574[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1574 -> 1851[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1574 -> 1852[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1575 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1575[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1575 -> 1853[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1575 -> 1854[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1576 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1576[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1576 -> 1855[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1576 -> 1856[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1577 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1577[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1577 -> 1857[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1577 -> 1858[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1578 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1578[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1578 -> 1859[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1578 -> 1860[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1579 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1579[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1579 -> 1861[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1579 -> 1862[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1580 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1580[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1580 -> 1863[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1580 -> 1864[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1581 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1581[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1581 -> 1865[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1581 -> 1866[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1582 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1582[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1582 -> 1867[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1582 -> 1868[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1583 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1583[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1583 -> 1869[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1583 -> 1870[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1584 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1584[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1584 -> 1871[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1584 -> 1872[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1585 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1585[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1585 -> 1873[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1585 -> 1874[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1586 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1586[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1586 -> 1875[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1586 -> 1876[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1587 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1587[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1587 -> 1877[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1587 -> 1878[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1588 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1588[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1588 -> 1879[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1588 -> 1880[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1589 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1589[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1589 -> 1881[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1589 -> 1882[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1590 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1590[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1590 -> 1883[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1590 -> 1884[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1591 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1591[label="xuu50000 * xuu4001 == xuu50001 * xuu4000",fontsize=16,color="magenta"];1591 -> 1885[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1591 -> 1886[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1592[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3686[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3686[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3686 -> 1887[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3687[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3687[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3687 -> 1888[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3688[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3688[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3688 -> 1889[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3689[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3689[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3689 -> 1890[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3690[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3690[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3690 -> 1891[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3691[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3691[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3691 -> 1892[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3692[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3692[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3692 -> 1893[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3693[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3693[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3693 -> 1894[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3694[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3694[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3694 -> 1895[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3695[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3695[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3695 -> 1896[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3696[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3696[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3696 -> 1897[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3697[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3697[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3697 -> 1898[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3698[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3698[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3698 -> 1899[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3699[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1592 -> 3699[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3699 -> 1900[label="",style="solid", color="blue", weight=3]; 33.50/15.04 1593[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3700[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3700[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3700 -> 1901[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3701[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3701[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3701 -> 1902[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3702[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3702[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3702 -> 1903[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3703[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3703[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3703 -> 1904[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3704[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3704[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3704 -> 1905[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3705[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3705[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3705 -> 1906[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3706[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3706[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3706 -> 1907[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3707[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3707[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3707 -> 1908[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3708[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3708[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3708 -> 1909[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3709[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3709[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3709 -> 1910[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3710[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3710[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3710 -> 1911[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3711[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3711[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3711 -> 1912[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3712[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3712[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3712 -> 1913[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3713[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1593 -> 3713[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3713 -> 1914[label="",style="solid", color="blue", weight=3]; 33.50/15.04 1594 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1594[label="xuu50000 * xuu4001 == xuu50001 * xuu4000",fontsize=16,color="magenta"];1594 -> 1915[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1594 -> 1916[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1595 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1595[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1595 -> 1917[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1595 -> 1918[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1596 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1596[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1596 -> 1919[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1596 -> 1920[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1597 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1597[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1597 -> 1921[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1597 -> 1922[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1598 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1598[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1598 -> 1923[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1598 -> 1924[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1599 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1599[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1599 -> 1925[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1599 -> 1926[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1600 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1600[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1600 -> 1927[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1600 -> 1928[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1601 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1601[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1601 -> 1929[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1601 -> 1930[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1602 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1602[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1602 -> 1931[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1602 -> 1932[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1603 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1603[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1603 -> 1933[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1603 -> 1934[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1604 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1604[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1604 -> 1935[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1604 -> 1936[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1605 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1605[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1605 -> 1937[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1605 -> 1938[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1606 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1606[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1606 -> 1939[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1606 -> 1940[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1607 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1607[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1607 -> 1941[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1607 -> 1942[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1608 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1608[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1608 -> 1943[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1608 -> 1944[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1609[label="xuu50000",fontsize=16,color="green",shape="box"];1610[label="xuu4000",fontsize=16,color="green",shape="box"];1611 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1611[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1611 -> 1945[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1611 -> 1946[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1612[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3714[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3714[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3714 -> 1947[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3715[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3715[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3715 -> 1948[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3716[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3716[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3716 -> 1949[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3717[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3717[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3717 -> 1950[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3718[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3718[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3718 -> 1951[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3719[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3719[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3719 -> 1952[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3720[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3720[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3720 -> 1953[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3721[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3721[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3721 -> 1954[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3722[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3722[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3722 -> 1955[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3723[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3723[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3723 -> 1956[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3724[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3724[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3724 -> 1957[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3725[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3725[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3725 -> 1958[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3726[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3726[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3726 -> 1959[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3727[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3727[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3727 -> 1960[label="",style="solid", color="blue", weight=3]; 33.50/15.04 1613[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3728[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3728[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3728 -> 1961[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3729[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3729[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3729 -> 1962[label="",style="solid", color="blue", weight=3]; 33.50/15.04 1614[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3730[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3730[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3730 -> 1963[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3731[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3731[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3731 -> 1964[label="",style="solid", color="blue", weight=3]; 33.50/15.04 1615 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1615[label="xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];1615 -> 1965[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1615 -> 1966[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1616[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3732[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3732[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3732 -> 1967[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3733[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3733[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3733 -> 1968[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3734[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3734[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3734 -> 1969[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3735[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3735[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3735 -> 1970[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3736[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3736[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3736 -> 1971[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3737[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3737[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3737 -> 1972[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3738[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3738[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3738 -> 1973[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3739[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3739[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3739 -> 1974[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3740[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3740[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3740 -> 1975[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3741[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3741[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3741 -> 1976[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3742[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3742[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3742 -> 1977[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3743[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3743[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3743 -> 1978[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3744[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3744[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3744 -> 1979[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3745[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1616 -> 3745[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3745 -> 1980[label="",style="solid", color="blue", weight=3]; 33.50/15.04 1617[label="primEqInt (Pos (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3746[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3746[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3746 -> 1981[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3747[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1617 -> 3747[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3747 -> 1982[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1618[label="primEqInt (Pos (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="black",shape="box"];1618 -> 1983[label="",style="solid", color="black", weight=3]; 33.50/15.04 1619[label="primEqInt (Pos Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3748[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1619 -> 3748[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3748 -> 1984[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3749[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1619 -> 3749[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3749 -> 1985[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1620[label="primEqInt (Pos Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3750[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3750[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3750 -> 1986[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3751[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3751[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3751 -> 1987[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1621[label="primEqInt (Neg (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="black",shape="box"];1621 -> 1988[label="",style="solid", color="black", weight=3]; 33.50/15.04 1622[label="primEqInt (Neg (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3752[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3752[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3752 -> 1989[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3753[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3753[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3753 -> 1990[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1623[label="primEqInt (Neg Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3754[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3754[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3754 -> 1991[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3755[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3755[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3755 -> 1992[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1624[label="primEqInt (Neg Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3756[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1624 -> 3756[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3756 -> 1993[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3757[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1624 -> 3757[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3757 -> 1994[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1625 -> 1995[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1625[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1625 -> 1996[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1626[label="(xuu660,xuu661) <= xuu67",fontsize=16,color="burlywood",shape="box"];3758[label="xuu67/(xuu670,xuu671)",fontsize=10,color="white",style="solid",shape="box"];1626 -> 3758[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3758 -> 2004[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1627[label="Nothing <= xuu67",fontsize=16,color="burlywood",shape="box"];3759[label="xuu67/Nothing",fontsize=10,color="white",style="solid",shape="box"];1627 -> 3759[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3759 -> 2005[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3760[label="xuu67/Just xuu670",fontsize=10,color="white",style="solid",shape="box"];1627 -> 3760[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3760 -> 2006[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1628[label="Just xuu660 <= xuu67",fontsize=16,color="burlywood",shape="box"];3761[label="xuu67/Nothing",fontsize=10,color="white",style="solid",shape="box"];1628 -> 3761[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3761 -> 2007[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3762[label="xuu67/Just xuu670",fontsize=10,color="white",style="solid",shape="box"];1628 -> 3762[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3762 -> 2008[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1629[label="(xuu660,xuu661,xuu662) <= xuu67",fontsize=16,color="burlywood",shape="box"];3763[label="xuu67/(xuu670,xuu671,xuu672)",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3763[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3763 -> 2009[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1630 -> 1995[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1630[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1630 -> 1997[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1631 -> 1995[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1631[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1631 -> 1998[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1632[label="LT <= xuu67",fontsize=16,color="burlywood",shape="box"];3764[label="xuu67/LT",fontsize=10,color="white",style="solid",shape="box"];1632 -> 3764[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3764 -> 2010[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3765[label="xuu67/EQ",fontsize=10,color="white",style="solid",shape="box"];1632 -> 3765[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3765 -> 2011[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3766[label="xuu67/GT",fontsize=10,color="white",style="solid",shape="box"];1632 -> 3766[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3766 -> 2012[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1633[label="EQ <= xuu67",fontsize=16,color="burlywood",shape="box"];3767[label="xuu67/LT",fontsize=10,color="white",style="solid",shape="box"];1633 -> 3767[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3767 -> 2013[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3768[label="xuu67/EQ",fontsize=10,color="white",style="solid",shape="box"];1633 -> 3768[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3768 -> 2014[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3769[label="xuu67/GT",fontsize=10,color="white",style="solid",shape="box"];1633 -> 3769[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3769 -> 2015[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1634[label="GT <= xuu67",fontsize=16,color="burlywood",shape="box"];3770[label="xuu67/LT",fontsize=10,color="white",style="solid",shape="box"];1634 -> 3770[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3770 -> 2016[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3771[label="xuu67/EQ",fontsize=10,color="white",style="solid",shape="box"];1634 -> 3771[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3771 -> 2017[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3772[label="xuu67/GT",fontsize=10,color="white",style="solid",shape="box"];1634 -> 3772[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3772 -> 2018[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1635 -> 1995[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1635[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1635 -> 1999[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1636[label="False <= xuu67",fontsize=16,color="burlywood",shape="box"];3773[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3773[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3773 -> 2019[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3774[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3774[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3774 -> 2020[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1637[label="True <= xuu67",fontsize=16,color="burlywood",shape="box"];3775[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3775[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3775 -> 2021[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3776[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3776[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3776 -> 2022[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1638 -> 1995[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1638[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1638 -> 2000[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1639 -> 1995[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1639[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1639 -> 2001[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1640 -> 1995[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1640[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1640 -> 2002[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1641 -> 1995[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1641[label="compare xuu66 xuu67 /= GT",fontsize=16,color="magenta"];1641 -> 2003[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1642[label="Left xuu660 <= xuu67",fontsize=16,color="burlywood",shape="box"];3777[label="xuu67/Left xuu670",fontsize=10,color="white",style="solid",shape="box"];1642 -> 3777[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3777 -> 2023[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3778[label="xuu67/Right xuu670",fontsize=10,color="white",style="solid",shape="box"];1642 -> 3778[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3778 -> 2024[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1643[label="Right xuu660 <= xuu67",fontsize=16,color="burlywood",shape="box"];3779[label="xuu67/Left xuu670",fontsize=10,color="white",style="solid",shape="box"];1643 -> 3779[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3779 -> 2025[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3780[label="xuu67/Right xuu670",fontsize=10,color="white",style="solid",shape="box"];1643 -> 3780[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3780 -> 2026[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1644[label="compare0 (Just xuu142) (Just xuu143) True",fontsize=16,color="black",shape="box"];1644 -> 2027[label="",style="solid", color="black", weight=3]; 33.50/15.04 2031 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2031[label="xuu78 == xuu81 && xuu79 <= xuu82",fontsize=16,color="magenta"];2031 -> 2035[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2031 -> 2036[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2032[label="xuu78 < xuu81",fontsize=16,color="blue",shape="box"];3781[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3781[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3781 -> 2037[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3782[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3782[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3782 -> 2038[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3783[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3783[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3783 -> 2039[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3784[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3784[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3784 -> 2040[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3785[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3785[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3785 -> 2041[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3786[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3786[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3786 -> 2042[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3787[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3787[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3787 -> 2043[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3788[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3788[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3788 -> 2044[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3789[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3789[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3789 -> 2045[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3790[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3790[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3790 -> 2046[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3791[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3791[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3791 -> 2047[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3792[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3792[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3792 -> 2048[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3793[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3793[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3793 -> 2049[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3794[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3794[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3794 -> 2050[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2030[label="xuu200 || xuu201",fontsize=16,color="burlywood",shape="triangle"];3795[label="xuu200/False",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3795[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3795 -> 2051[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3796[label="xuu200/True",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3796[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3796 -> 2052[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1647 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1647[label="xuu77 == xuu80",fontsize=16,color="magenta"];1647 -> 2053[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1647 -> 2054[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1648 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1648[label="xuu77 == xuu80",fontsize=16,color="magenta"];1648 -> 2055[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1648 -> 2056[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1649 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1649[label="xuu77 == xuu80",fontsize=16,color="magenta"];1649 -> 2057[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1649 -> 2058[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1650 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1650[label="xuu77 == xuu80",fontsize=16,color="magenta"];1650 -> 2059[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1650 -> 2060[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1651 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1651[label="xuu77 == xuu80",fontsize=16,color="magenta"];1651 -> 2061[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1651 -> 2062[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1652 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1652[label="xuu77 == xuu80",fontsize=16,color="magenta"];1652 -> 2063[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1652 -> 2064[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1653 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1653[label="xuu77 == xuu80",fontsize=16,color="magenta"];1653 -> 2065[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1653 -> 2066[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1654 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1654[label="xuu77 == xuu80",fontsize=16,color="magenta"];1654 -> 2067[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1654 -> 2068[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1655 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1655[label="xuu77 == xuu80",fontsize=16,color="magenta"];1655 -> 2069[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1655 -> 2070[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1656 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1656[label="xuu77 == xuu80",fontsize=16,color="magenta"];1656 -> 2071[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1656 -> 2072[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1657 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1657[label="xuu77 == xuu80",fontsize=16,color="magenta"];1657 -> 2073[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1657 -> 2074[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1658 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1658[label="xuu77 == xuu80",fontsize=16,color="magenta"];1658 -> 2075[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1658 -> 2076[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1659 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1659[label="xuu77 == xuu80",fontsize=16,color="magenta"];1659 -> 2077[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1659 -> 2078[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1660 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1660[label="xuu77 == xuu80",fontsize=16,color="magenta"];1660 -> 2079[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1660 -> 2080[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1661[label="xuu80",fontsize=16,color="green",shape="box"];1662[label="xuu77",fontsize=16,color="green",shape="box"];1663[label="xuu80",fontsize=16,color="green",shape="box"];1664[label="xuu77",fontsize=16,color="green",shape="box"];1665[label="xuu80",fontsize=16,color="green",shape="box"];1666[label="xuu77",fontsize=16,color="green",shape="box"];1667[label="xuu80",fontsize=16,color="green",shape="box"];1668[label="xuu77",fontsize=16,color="green",shape="box"];1669[label="xuu80",fontsize=16,color="green",shape="box"];1670[label="xuu77",fontsize=16,color="green",shape="box"];1671[label="xuu80",fontsize=16,color="green",shape="box"];1672[label="xuu77",fontsize=16,color="green",shape="box"];1673[label="xuu80",fontsize=16,color="green",shape="box"];1674[label="xuu77",fontsize=16,color="green",shape="box"];1675[label="xuu80",fontsize=16,color="green",shape="box"];1676[label="xuu77",fontsize=16,color="green",shape="box"];1677[label="xuu80",fontsize=16,color="green",shape="box"];1678[label="xuu77",fontsize=16,color="green",shape="box"];1679[label="xuu80",fontsize=16,color="green",shape="box"];1680[label="xuu77",fontsize=16,color="green",shape="box"];1681[label="xuu80",fontsize=16,color="green",shape="box"];1682[label="xuu77",fontsize=16,color="green",shape="box"];1683[label="xuu80",fontsize=16,color="green",shape="box"];1684[label="xuu77",fontsize=16,color="green",shape="box"];1685[label="xuu80",fontsize=16,color="green",shape="box"];1686[label="xuu77",fontsize=16,color="green",shape="box"];1687[label="xuu80",fontsize=16,color="green",shape="box"];1688[label="xuu77",fontsize=16,color="green",shape="box"];1689[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) xuu190",fontsize=16,color="burlywood",shape="triangle"];3797[label="xuu190/False",fontsize=10,color="white",style="solid",shape="box"];1689 -> 3797[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3797 -> 2081[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3798[label="xuu190/True",fontsize=10,color="white",style="solid",shape="box"];1689 -> 3798[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3798 -> 2082[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1690 -> 1689[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1690[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) True",fontsize=16,color="magenta"];1690 -> 2083[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1691[label="xuu93",fontsize=16,color="green",shape="box"];1692[label="xuu94",fontsize=16,color="green",shape="box"];1693[label="xuu93",fontsize=16,color="green",shape="box"];1694[label="xuu94",fontsize=16,color="green",shape="box"];1695[label="xuu93",fontsize=16,color="green",shape="box"];1696[label="xuu94",fontsize=16,color="green",shape="box"];1697[label="xuu93",fontsize=16,color="green",shape="box"];1698[label="xuu94",fontsize=16,color="green",shape="box"];1699[label="xuu93",fontsize=16,color="green",shape="box"];1700[label="xuu94",fontsize=16,color="green",shape="box"];1701[label="xuu93",fontsize=16,color="green",shape="box"];1702[label="xuu94",fontsize=16,color="green",shape="box"];1703[label="xuu93",fontsize=16,color="green",shape="box"];1704[label="xuu94",fontsize=16,color="green",shape="box"];1705[label="xuu93",fontsize=16,color="green",shape="box"];1706[label="xuu94",fontsize=16,color="green",shape="box"];1707[label="xuu93",fontsize=16,color="green",shape="box"];1708[label="xuu94",fontsize=16,color="green",shape="box"];1709[label="xuu93",fontsize=16,color="green",shape="box"];1710[label="xuu94",fontsize=16,color="green",shape="box"];1711[label="xuu93",fontsize=16,color="green",shape="box"];1712[label="xuu94",fontsize=16,color="green",shape="box"];1713[label="xuu93",fontsize=16,color="green",shape="box"];1714[label="xuu94",fontsize=16,color="green",shape="box"];1715[label="xuu93",fontsize=16,color="green",shape="box"];1716[label="xuu94",fontsize=16,color="green",shape="box"];1717[label="xuu93",fontsize=16,color="green",shape="box"];1718[label="xuu94",fontsize=16,color="green",shape="box"];1719[label="compare0 (Left xuu151) (Left xuu152) True",fontsize=16,color="black",shape="box"];1719 -> 2084[label="",style="solid", color="black", weight=3]; 33.50/15.04 1720[label="xuu100",fontsize=16,color="green",shape="box"];1721[label="xuu101",fontsize=16,color="green",shape="box"];1722[label="xuu100",fontsize=16,color="green",shape="box"];1723[label="xuu101",fontsize=16,color="green",shape="box"];1724[label="xuu100",fontsize=16,color="green",shape="box"];1725[label="xuu101",fontsize=16,color="green",shape="box"];1726[label="xuu100",fontsize=16,color="green",shape="box"];1727[label="xuu101",fontsize=16,color="green",shape="box"];1728[label="xuu100",fontsize=16,color="green",shape="box"];1729[label="xuu101",fontsize=16,color="green",shape="box"];1730[label="xuu100",fontsize=16,color="green",shape="box"];1731[label="xuu101",fontsize=16,color="green",shape="box"];1732[label="xuu100",fontsize=16,color="green",shape="box"];1733[label="xuu101",fontsize=16,color="green",shape="box"];1734[label="xuu100",fontsize=16,color="green",shape="box"];1735[label="xuu101",fontsize=16,color="green",shape="box"];1736[label="xuu100",fontsize=16,color="green",shape="box"];1737[label="xuu101",fontsize=16,color="green",shape="box"];1738[label="xuu100",fontsize=16,color="green",shape="box"];1739[label="xuu101",fontsize=16,color="green",shape="box"];1740[label="xuu100",fontsize=16,color="green",shape="box"];1741[label="xuu101",fontsize=16,color="green",shape="box"];1742[label="xuu100",fontsize=16,color="green",shape="box"];1743[label="xuu101",fontsize=16,color="green",shape="box"];1744[label="xuu100",fontsize=16,color="green",shape="box"];1745[label="xuu101",fontsize=16,color="green",shape="box"];1746[label="xuu100",fontsize=16,color="green",shape="box"];1747[label="xuu101",fontsize=16,color="green",shape="box"];1748[label="compare0 (Right xuu158) (Right xuu159) True",fontsize=16,color="black",shape="box"];1748 -> 2085[label="",style="solid", color="black", weight=3]; 33.50/15.04 1749[label="primPlusNat (Succ xuu44200) (Succ xuu13100)",fontsize=16,color="black",shape="box"];1749 -> 2086[label="",style="solid", color="black", weight=3]; 33.50/15.04 1750[label="primPlusNat (Succ xuu44200) Zero",fontsize=16,color="black",shape="box"];1750 -> 2087[label="",style="solid", color="black", weight=3]; 33.50/15.04 1751[label="primPlusNat Zero (Succ xuu13100)",fontsize=16,color="black",shape="box"];1751 -> 2088[label="",style="solid", color="black", weight=3]; 33.50/15.04 1752[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1752 -> 2089[label="",style="solid", color="black", weight=3]; 33.50/15.04 1753 -> 1212[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1753[label="primMinusNat xuu44200 xuu13100",fontsize=16,color="magenta"];1753 -> 2090[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1753 -> 2091[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1754[label="Pos (Succ xuu44200)",fontsize=16,color="green",shape="box"];1755[label="Neg (Succ xuu13100)",fontsize=16,color="green",shape="box"];1756[label="Pos Zero",fontsize=16,color="green",shape="box"];1757[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 True",fontsize=16,color="black",shape="box"];1757 -> 2092[label="",style="solid", color="black", weight=3]; 33.50/15.04 1758[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu17 xuu18 FiniteMap.EmptyFM xuu21 FiniteMap.EmptyFM xuu21 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1758 -> 2093[label="",style="solid", color="black", weight=3]; 33.50/15.04 1759[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1759 -> 2094[label="",style="solid", color="black", weight=3]; 33.50/15.04 1761 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1761[label="FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];1761 -> 2095[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1761 -> 2096[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1760[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 xuu192",fontsize=16,color="burlywood",shape="triangle"];3799[label="xuu192/False",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3799[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3799 -> 2097[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3800[label="xuu192/True",fontsize=10,color="white",style="solid",shape="box"];1760 -> 3800[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3800 -> 2098[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1762 -> 898[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1762[label="FiniteMap.sizeFM xuu21",fontsize=16,color="magenta"];1763 -> 1177[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1763[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21)",fontsize=16,color="magenta"];1763 -> 2099[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1763 -> 2100[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1764 -> 1311[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1764[label="primPlusNat (primMulNat xuu40000 (Succ xuu500100)) (Succ xuu500100)",fontsize=16,color="magenta"];1764 -> 2101[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1764 -> 2102[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1765[label="Zero",fontsize=16,color="green",shape="box"];1766[label="Zero",fontsize=16,color="green",shape="box"];1767[label="Zero",fontsize=16,color="green",shape="box"];1768[label="xuu112",fontsize=16,color="green",shape="box"];1769[label="xuu114",fontsize=16,color="green",shape="box"];1770[label="xuu112",fontsize=16,color="green",shape="box"];1771[label="xuu114",fontsize=16,color="green",shape="box"];1772[label="xuu112",fontsize=16,color="green",shape="box"];1773[label="xuu114",fontsize=16,color="green",shape="box"];1774[label="xuu112",fontsize=16,color="green",shape="box"];1775[label="xuu114",fontsize=16,color="green",shape="box"];1776[label="xuu112",fontsize=16,color="green",shape="box"];1777[label="xuu114",fontsize=16,color="green",shape="box"];1778[label="xuu112",fontsize=16,color="green",shape="box"];1779[label="xuu114",fontsize=16,color="green",shape="box"];1780[label="xuu112",fontsize=16,color="green",shape="box"];1781[label="xuu114",fontsize=16,color="green",shape="box"];1782[label="xuu112",fontsize=16,color="green",shape="box"];1783[label="xuu114",fontsize=16,color="green",shape="box"];1784[label="xuu112",fontsize=16,color="green",shape="box"];1785[label="xuu114",fontsize=16,color="green",shape="box"];1786[label="xuu112",fontsize=16,color="green",shape="box"];1787[label="xuu114",fontsize=16,color="green",shape="box"];1788[label="xuu112",fontsize=16,color="green",shape="box"];1789[label="xuu114",fontsize=16,color="green",shape="box"];1790[label="xuu112",fontsize=16,color="green",shape="box"];1791[label="xuu114",fontsize=16,color="green",shape="box"];1792[label="xuu112",fontsize=16,color="green",shape="box"];1793[label="xuu114",fontsize=16,color="green",shape="box"];1794[label="xuu112",fontsize=16,color="green",shape="box"];1795[label="xuu114",fontsize=16,color="green",shape="box"];1796[label="xuu111",fontsize=16,color="green",shape="box"];1797[label="xuu113",fontsize=16,color="green",shape="box"];1798[label="xuu111",fontsize=16,color="green",shape="box"];1799[label="xuu113",fontsize=16,color="green",shape="box"];1800[label="xuu111",fontsize=16,color="green",shape="box"];1801[label="xuu113",fontsize=16,color="green",shape="box"];1802[label="xuu111",fontsize=16,color="green",shape="box"];1803[label="xuu113",fontsize=16,color="green",shape="box"];1804[label="xuu111",fontsize=16,color="green",shape="box"];1805[label="xuu113",fontsize=16,color="green",shape="box"];1806[label="xuu111",fontsize=16,color="green",shape="box"];1807[label="xuu113",fontsize=16,color="green",shape="box"];1808[label="xuu111",fontsize=16,color="green",shape="box"];1809[label="xuu113",fontsize=16,color="green",shape="box"];1810[label="xuu111",fontsize=16,color="green",shape="box"];1811[label="xuu113",fontsize=16,color="green",shape="box"];1812[label="xuu111",fontsize=16,color="green",shape="box"];1813[label="xuu113",fontsize=16,color="green",shape="box"];1814[label="xuu111",fontsize=16,color="green",shape="box"];1815[label="xuu113",fontsize=16,color="green",shape="box"];1816[label="xuu111",fontsize=16,color="green",shape="box"];1817[label="xuu113",fontsize=16,color="green",shape="box"];1818[label="xuu111",fontsize=16,color="green",shape="box"];1819[label="xuu113",fontsize=16,color="green",shape="box"];1820[label="xuu111",fontsize=16,color="green",shape="box"];1821[label="xuu113",fontsize=16,color="green",shape="box"];1822[label="xuu111",fontsize=16,color="green",shape="box"];1823[label="xuu113",fontsize=16,color="green",shape="box"];1824[label="compare1 (xuu168,xuu169) (xuu170,xuu171) False",fontsize=16,color="black",shape="box"];1824 -> 2103[label="",style="solid", color="black", weight=3]; 33.50/15.04 1825[label="compare1 (xuu168,xuu169) (xuu170,xuu171) True",fontsize=16,color="black",shape="box"];1825 -> 2104[label="",style="solid", color="black", weight=3]; 33.50/15.04 1826[label="True",fontsize=16,color="green",shape="box"];1827[label="primEqNat (Succ xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];3801[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1827 -> 3801[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3801 -> 2105[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3802[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1827 -> 3802[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3802 -> 2106[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1828[label="primEqNat Zero xuu4000",fontsize=16,color="burlywood",shape="box"];3803[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3803[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3803 -> 2107[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3804[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3804[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3804 -> 2108[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 1829[label="xuu50000",fontsize=16,color="green",shape="box"];1830[label="xuu4000",fontsize=16,color="green",shape="box"];1831[label="xuu50000",fontsize=16,color="green",shape="box"];1832[label="xuu4000",fontsize=16,color="green",shape="box"];1833[label="xuu50000",fontsize=16,color="green",shape="box"];1834[label="xuu4000",fontsize=16,color="green",shape="box"];1835[label="xuu50000",fontsize=16,color="green",shape="box"];1836[label="xuu4000",fontsize=16,color="green",shape="box"];1837[label="xuu50000",fontsize=16,color="green",shape="box"];1838[label="xuu4000",fontsize=16,color="green",shape="box"];1839[label="xuu50000",fontsize=16,color="green",shape="box"];1840[label="xuu4000",fontsize=16,color="green",shape="box"];1841[label="xuu50000",fontsize=16,color="green",shape="box"];1842[label="xuu4000",fontsize=16,color="green",shape="box"];1843[label="xuu50000",fontsize=16,color="green",shape="box"];1844[label="xuu4000",fontsize=16,color="green",shape="box"];1845[label="xuu50000",fontsize=16,color="green",shape="box"];1846[label="xuu4000",fontsize=16,color="green",shape="box"];1847[label="xuu50000",fontsize=16,color="green",shape="box"];1848[label="xuu4000",fontsize=16,color="green",shape="box"];1849[label="xuu50000",fontsize=16,color="green",shape="box"];1850[label="xuu4000",fontsize=16,color="green",shape="box"];1851[label="xuu50000",fontsize=16,color="green",shape="box"];1852[label="xuu4000",fontsize=16,color="green",shape="box"];1853[label="xuu50000",fontsize=16,color="green",shape="box"];1854[label="xuu4000",fontsize=16,color="green",shape="box"];1855[label="xuu50000",fontsize=16,color="green",shape="box"];1856[label="xuu4000",fontsize=16,color="green",shape="box"];1857[label="xuu50000",fontsize=16,color="green",shape="box"];1858[label="xuu4000",fontsize=16,color="green",shape="box"];1859[label="xuu50000",fontsize=16,color="green",shape="box"];1860[label="xuu4000",fontsize=16,color="green",shape="box"];1861[label="xuu50000",fontsize=16,color="green",shape="box"];1862[label="xuu4000",fontsize=16,color="green",shape="box"];1863[label="xuu50000",fontsize=16,color="green",shape="box"];1864[label="xuu4000",fontsize=16,color="green",shape="box"];1865[label="xuu50000",fontsize=16,color="green",shape="box"];1866[label="xuu4000",fontsize=16,color="green",shape="box"];1867[label="xuu50000",fontsize=16,color="green",shape="box"];1868[label="xuu4000",fontsize=16,color="green",shape="box"];1869[label="xuu50000",fontsize=16,color="green",shape="box"];1870[label="xuu4000",fontsize=16,color="green",shape="box"];1871[label="xuu50000",fontsize=16,color="green",shape="box"];1872[label="xuu4000",fontsize=16,color="green",shape="box"];1873[label="xuu50000",fontsize=16,color="green",shape="box"];1874[label="xuu4000",fontsize=16,color="green",shape="box"];1875[label="xuu50000",fontsize=16,color="green",shape="box"];1876[label="xuu4000",fontsize=16,color="green",shape="box"];1877[label="xuu50000",fontsize=16,color="green",shape="box"];1878[label="xuu4000",fontsize=16,color="green",shape="box"];1879[label="xuu50000",fontsize=16,color="green",shape="box"];1880[label="xuu4000",fontsize=16,color="green",shape="box"];1881[label="xuu50000",fontsize=16,color="green",shape="box"];1882[label="xuu4000",fontsize=16,color="green",shape="box"];1883[label="xuu50000",fontsize=16,color="green",shape="box"];1884[label="xuu4000",fontsize=16,color="green",shape="box"];1885 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1885[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];1885 -> 2109[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1885 -> 2110[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1886 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1886[label="xuu50001 * xuu4000",fontsize=16,color="magenta"];1886 -> 2111[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1886 -> 2112[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1887 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1887[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1887 -> 2113[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1887 -> 2114[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1888 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1888[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1888 -> 2115[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1888 -> 2116[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1889 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1889[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1889 -> 2117[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1889 -> 2118[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1890 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1890[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1890 -> 2119[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1890 -> 2120[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1891 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1891[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1891 -> 2121[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1891 -> 2122[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1892 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1892[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1892 -> 2123[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1892 -> 2124[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1893 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1893[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1893 -> 2125[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1893 -> 2126[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1894 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1894[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1894 -> 2127[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1894 -> 2128[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1895 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1895[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1895 -> 2129[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1895 -> 2130[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1896 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1896[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1896 -> 2131[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1896 -> 2132[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1897 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1897[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1897 -> 2133[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1897 -> 2134[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1898 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1898[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1898 -> 2135[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1898 -> 2136[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1899 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1899[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1899 -> 2137[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1899 -> 2138[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1900 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1900[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1900 -> 2139[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1900 -> 2140[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1901 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1901[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1901 -> 2141[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1901 -> 2142[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1902 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1902[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1902 -> 2143[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1902 -> 2144[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1903 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1903[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1903 -> 2145[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1903 -> 2146[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1904 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1904[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1904 -> 2147[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1904 -> 2148[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1905 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1905[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1905 -> 2149[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1905 -> 2150[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1906 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1906[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1906 -> 2151[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1906 -> 2152[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1907 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1907[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1907 -> 2153[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1907 -> 2154[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1908 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1908[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1908 -> 2155[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1908 -> 2156[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1909 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1909[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1909 -> 2157[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1909 -> 2158[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1910 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1910[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1910 -> 2159[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1910 -> 2160[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1911 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1911[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1911 -> 2161[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1911 -> 2162[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1912 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1912[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1912 -> 2163[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1912 -> 2164[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1913 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1913[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1913 -> 2165[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1913 -> 2166[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1914 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1914[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1914 -> 2167[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1914 -> 2168[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1915 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1915[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];1915 -> 2169[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1915 -> 2170[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1916 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1916[label="xuu50001 * xuu4000",fontsize=16,color="magenta"];1916 -> 2171[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1916 -> 2172[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1917[label="xuu50000",fontsize=16,color="green",shape="box"];1918[label="xuu4000",fontsize=16,color="green",shape="box"];1919[label="xuu50000",fontsize=16,color="green",shape="box"];1920[label="xuu4000",fontsize=16,color="green",shape="box"];1921[label="xuu50000",fontsize=16,color="green",shape="box"];1922[label="xuu4000",fontsize=16,color="green",shape="box"];1923[label="xuu50000",fontsize=16,color="green",shape="box"];1924[label="xuu4000",fontsize=16,color="green",shape="box"];1925[label="xuu50000",fontsize=16,color="green",shape="box"];1926[label="xuu4000",fontsize=16,color="green",shape="box"];1927[label="xuu50000",fontsize=16,color="green",shape="box"];1928[label="xuu4000",fontsize=16,color="green",shape="box"];1929[label="xuu50000",fontsize=16,color="green",shape="box"];1930[label="xuu4000",fontsize=16,color="green",shape="box"];1931[label="xuu50000",fontsize=16,color="green",shape="box"];1932[label="xuu4000",fontsize=16,color="green",shape="box"];1933[label="xuu50000",fontsize=16,color="green",shape="box"];1934[label="xuu4000",fontsize=16,color="green",shape="box"];1935[label="xuu50000",fontsize=16,color="green",shape="box"];1936[label="xuu4000",fontsize=16,color="green",shape="box"];1937[label="xuu50000",fontsize=16,color="green",shape="box"];1938[label="xuu4000",fontsize=16,color="green",shape="box"];1939[label="xuu50000",fontsize=16,color="green",shape="box"];1940[label="xuu4000",fontsize=16,color="green",shape="box"];1941[label="xuu50000",fontsize=16,color="green",shape="box"];1942[label="xuu4000",fontsize=16,color="green",shape="box"];1943[label="xuu50000",fontsize=16,color="green",shape="box"];1944[label="xuu4000",fontsize=16,color="green",shape="box"];1945[label="xuu50001",fontsize=16,color="green",shape="box"];1946[label="xuu4001",fontsize=16,color="green",shape="box"];1947 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1947[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1947 -> 2173[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1947 -> 2174[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1948 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1948[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1948 -> 2175[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1948 -> 2176[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1949 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1949[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1949 -> 2177[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1949 -> 2178[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1950 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1950[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1950 -> 2179[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1950 -> 2180[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1951 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1951[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1951 -> 2181[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1951 -> 2182[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1952 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1952[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1952 -> 2183[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1952 -> 2184[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1953 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1953[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1953 -> 2185[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1953 -> 2186[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1954 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1954[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1954 -> 2187[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1954 -> 2188[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1955 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1955[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1955 -> 2189[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1955 -> 2190[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1956 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1956[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1956 -> 2191[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1956 -> 2192[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1957 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1957[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1957 -> 2193[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1957 -> 2194[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1958 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1958[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1958 -> 2195[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1958 -> 2196[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1959 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1959[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1959 -> 2197[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1959 -> 2198[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1960 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1960[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1960 -> 2199[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1960 -> 2200[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1961 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1961[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1961 -> 2201[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1961 -> 2202[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1962 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1962[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1962 -> 2203[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1962 -> 2204[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1963 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1963[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1963 -> 2205[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1963 -> 2206[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1964 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1964[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1964 -> 2207[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1964 -> 2208[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1965[label="xuu50002 == xuu4002",fontsize=16,color="blue",shape="box"];3805[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3805[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3805 -> 2209[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3806[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3806[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3806 -> 2210[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3807[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3807[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3807 -> 2211[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3808[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3808[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3808 -> 2212[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3809[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3809[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3809 -> 2213[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3810[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3810[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3810 -> 2214[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3811[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3811[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3811 -> 2215[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3812[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3812[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3812 -> 2216[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3813[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3813[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3813 -> 2217[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3814[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3814[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3814 -> 2218[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3815[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3815[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3815 -> 2219[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3816[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3816[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3816 -> 2220[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3817[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3817[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3817 -> 2221[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3818[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3818[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3818 -> 2222[label="",style="solid", color="blue", weight=3]; 33.50/15.04 1966[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3819[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3819[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3819 -> 2223[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3820[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3820[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3820 -> 2224[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3821[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3821[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3821 -> 2225[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3822[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3822[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3822 -> 2226[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3823[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3823[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3823 -> 2227[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3824[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3824[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3824 -> 2228[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3825[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3825[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3825 -> 2229[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3826[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3826[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3826 -> 2230[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3827[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3827[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3827 -> 2231[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3828[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3828[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3828 -> 2232[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3829[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3829[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3829 -> 2233[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3830[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3830[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3830 -> 2234[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3831[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3831[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3831 -> 2235[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3832[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3832[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3832 -> 2236[label="",style="solid", color="blue", weight=3]; 33.50/15.04 1967 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1967[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1967 -> 2237[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1967 -> 2238[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1968 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1968[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1968 -> 2239[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1968 -> 2240[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1969 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1969[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1969 -> 2241[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1969 -> 2242[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1970 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1970[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1970 -> 2243[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1970 -> 2244[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1971 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1971[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1971 -> 2245[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1971 -> 2246[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1972 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1972[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1972 -> 2247[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1972 -> 2248[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1973 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1973[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1973 -> 2249[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1973 -> 2250[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1974 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1974[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1974 -> 2251[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1974 -> 2252[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1975 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1975[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1975 -> 2253[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1975 -> 2254[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1976 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1976[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1976 -> 2255[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1976 -> 2256[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1977 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1977[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1977 -> 2257[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1977 -> 2258[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1978 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1978[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1978 -> 2259[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1978 -> 2260[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1979 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1979[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1979 -> 2261[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1979 -> 2262[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1980 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1980[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1980 -> 2263[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1980 -> 2264[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1981[label="primEqInt (Pos (Succ xuu500000)) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];1981 -> 2265[label="",style="solid", color="black", weight=3]; 33.50/15.04 1982[label="primEqInt (Pos (Succ xuu500000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1982 -> 2266[label="",style="solid", color="black", weight=3]; 33.50/15.04 1983[label="False",fontsize=16,color="green",shape="box"];1984[label="primEqInt (Pos Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];1984 -> 2267[label="",style="solid", color="black", weight=3]; 33.50/15.04 1985[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1985 -> 2268[label="",style="solid", color="black", weight=3]; 33.50/15.04 1986[label="primEqInt (Pos Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];1986 -> 2269[label="",style="solid", color="black", weight=3]; 33.50/15.04 1987[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1987 -> 2270[label="",style="solid", color="black", weight=3]; 33.50/15.04 1988[label="False",fontsize=16,color="green",shape="box"];1989[label="primEqInt (Neg (Succ xuu500000)) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];1989 -> 2271[label="",style="solid", color="black", weight=3]; 33.50/15.04 1990[label="primEqInt (Neg (Succ xuu500000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1990 -> 2272[label="",style="solid", color="black", weight=3]; 33.50/15.04 1991[label="primEqInt (Neg Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];1991 -> 2273[label="",style="solid", color="black", weight=3]; 33.50/15.04 1992[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1992 -> 2274[label="",style="solid", color="black", weight=3]; 33.50/15.04 1993[label="primEqInt (Neg Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];1993 -> 2275[label="",style="solid", color="black", weight=3]; 33.50/15.04 1994[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1994 -> 2276[label="",style="solid", color="black", weight=3]; 33.50/15.04 1996 -> 178[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1996[label="compare xuu66 xuu67",fontsize=16,color="magenta"];1996 -> 2277[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1996 -> 2278[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1995[label="xuu196 /= GT",fontsize=16,color="black",shape="triangle"];1995 -> 2279[label="",style="solid", color="black", weight=3]; 33.50/15.04 2004[label="(xuu660,xuu661) <= (xuu670,xuu671)",fontsize=16,color="black",shape="box"];2004 -> 2280[label="",style="solid", color="black", weight=3]; 33.50/15.04 2005[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2005 -> 2281[label="",style="solid", color="black", weight=3]; 33.50/15.04 2006[label="Nothing <= Just xuu670",fontsize=16,color="black",shape="box"];2006 -> 2282[label="",style="solid", color="black", weight=3]; 33.50/15.04 2007[label="Just xuu660 <= Nothing",fontsize=16,color="black",shape="box"];2007 -> 2283[label="",style="solid", color="black", weight=3]; 33.50/15.04 2008[label="Just xuu660 <= Just xuu670",fontsize=16,color="black",shape="box"];2008 -> 2284[label="",style="solid", color="black", weight=3]; 33.50/15.04 2009[label="(xuu660,xuu661,xuu662) <= (xuu670,xuu671,xuu672)",fontsize=16,color="black",shape="box"];2009 -> 2285[label="",style="solid", color="black", weight=3]; 33.50/15.04 1997 -> 182[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1997[label="compare xuu66 xuu67",fontsize=16,color="magenta"];1997 -> 2286[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1997 -> 2287[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1998 -> 183[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1998[label="compare xuu66 xuu67",fontsize=16,color="magenta"];1998 -> 2288[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1998 -> 2289[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2010[label="LT <= LT",fontsize=16,color="black",shape="box"];2010 -> 2290[label="",style="solid", color="black", weight=3]; 33.50/15.04 2011[label="LT <= EQ",fontsize=16,color="black",shape="box"];2011 -> 2291[label="",style="solid", color="black", weight=3]; 33.50/15.04 2012[label="LT <= GT",fontsize=16,color="black",shape="box"];2012 -> 2292[label="",style="solid", color="black", weight=3]; 33.50/15.04 2013[label="EQ <= LT",fontsize=16,color="black",shape="box"];2013 -> 2293[label="",style="solid", color="black", weight=3]; 33.50/15.04 2014[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2014 -> 2294[label="",style="solid", color="black", weight=3]; 33.50/15.04 2015[label="EQ <= GT",fontsize=16,color="black",shape="box"];2015 -> 2295[label="",style="solid", color="black", weight=3]; 33.50/15.04 2016[label="GT <= LT",fontsize=16,color="black",shape="box"];2016 -> 2296[label="",style="solid", color="black", weight=3]; 33.50/15.04 2017[label="GT <= EQ",fontsize=16,color="black",shape="box"];2017 -> 2297[label="",style="solid", color="black", weight=3]; 33.50/15.04 2018[label="GT <= GT",fontsize=16,color="black",shape="box"];2018 -> 2298[label="",style="solid", color="black", weight=3]; 33.50/15.04 1999 -> 185[label="",style="dashed", color="red", weight=0]; 33.50/15.04 1999[label="compare xuu66 xuu67",fontsize=16,color="magenta"];1999 -> 2299[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 1999 -> 2300[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2019[label="False <= False",fontsize=16,color="black",shape="box"];2019 -> 2301[label="",style="solid", color="black", weight=3]; 33.50/15.04 2020[label="False <= True",fontsize=16,color="black",shape="box"];2020 -> 2302[label="",style="solid", color="black", weight=3]; 33.50/15.04 2021[label="True <= False",fontsize=16,color="black",shape="box"];2021 -> 2303[label="",style="solid", color="black", weight=3]; 33.50/15.04 2022[label="True <= True",fontsize=16,color="black",shape="box"];2022 -> 2304[label="",style="solid", color="black", weight=3]; 33.50/15.04 2000 -> 187[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2000[label="compare xuu66 xuu67",fontsize=16,color="magenta"];2000 -> 2305[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2000 -> 2306[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2001 -> 188[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2001[label="compare xuu66 xuu67",fontsize=16,color="magenta"];2001 -> 2307[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2001 -> 2308[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2002 -> 189[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2002[label="compare xuu66 xuu67",fontsize=16,color="magenta"];2002 -> 2309[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2002 -> 2310[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2003 -> 190[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2003[label="compare xuu66 xuu67",fontsize=16,color="magenta"];2003 -> 2311[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2003 -> 2312[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2023[label="Left xuu660 <= Left xuu670",fontsize=16,color="black",shape="box"];2023 -> 2313[label="",style="solid", color="black", weight=3]; 33.50/15.04 2024[label="Left xuu660 <= Right xuu670",fontsize=16,color="black",shape="box"];2024 -> 2314[label="",style="solid", color="black", weight=3]; 33.50/15.04 2025[label="Right xuu660 <= Left xuu670",fontsize=16,color="black",shape="box"];2025 -> 2315[label="",style="solid", color="black", weight=3]; 33.50/15.04 2026[label="Right xuu660 <= Right xuu670",fontsize=16,color="black",shape="box"];2026 -> 2316[label="",style="solid", color="black", weight=3]; 33.50/15.04 2027[label="GT",fontsize=16,color="green",shape="box"];2035[label="xuu79 <= xuu82",fontsize=16,color="blue",shape="box"];3833[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3833[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3833 -> 2317[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3834[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3834[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3834 -> 2318[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3835[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3835[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3835 -> 2319[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3836[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3836[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3836 -> 2320[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3837[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3837[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3837 -> 2321[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3838[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3838[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3838 -> 2322[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3839[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3839[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3839 -> 2323[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3840[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3840[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3840 -> 2324[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3841[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3841[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3841 -> 2325[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3842[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3842[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3842 -> 2326[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3843[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3843[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3843 -> 2327[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3844[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3844[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3844 -> 2328[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3845[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3845[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3845 -> 2329[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3846[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3846[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3846 -> 2330[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2036[label="xuu78 == xuu81",fontsize=16,color="blue",shape="box"];3847[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3847[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3847 -> 2331[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3848[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3848[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3848 -> 2332[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3849[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3849[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3849 -> 2333[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3850[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3850[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3850 -> 2334[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3851[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3851[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3851 -> 2335[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3852[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3852[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3852 -> 2336[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3853[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3853[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3853 -> 2337[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3854[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3854[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3854 -> 2338[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3855[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3855[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3855 -> 2339[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3856[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3856[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3856 -> 2340[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3857[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3857[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3857 -> 2341[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3858[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3858[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3858 -> 2342[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3859[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3859[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3859 -> 2343[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3860[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3860[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3860 -> 2344[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2037 -> 34[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2037[label="xuu78 < xuu81",fontsize=16,color="magenta"];2037 -> 2345[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2037 -> 2346[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2038 -> 35[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2038[label="xuu78 < xuu81",fontsize=16,color="magenta"];2038 -> 2347[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2038 -> 2348[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2039 -> 36[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2039[label="xuu78 < xuu81",fontsize=16,color="magenta"];2039 -> 2349[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2039 -> 2350[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2040 -> 37[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2040[label="xuu78 < xuu81",fontsize=16,color="magenta"];2040 -> 2351[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2040 -> 2352[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2041 -> 38[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2041[label="xuu78 < xuu81",fontsize=16,color="magenta"];2041 -> 2353[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2041 -> 2354[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2042 -> 39[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2042[label="xuu78 < xuu81",fontsize=16,color="magenta"];2042 -> 2355[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2042 -> 2356[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2043 -> 40[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2043[label="xuu78 < xuu81",fontsize=16,color="magenta"];2043 -> 2357[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2043 -> 2358[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2044 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2044[label="xuu78 < xuu81",fontsize=16,color="magenta"];2044 -> 2359[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2044 -> 2360[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2045 -> 42[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2045[label="xuu78 < xuu81",fontsize=16,color="magenta"];2045 -> 2361[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2045 -> 2362[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2046 -> 43[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2046[label="xuu78 < xuu81",fontsize=16,color="magenta"];2046 -> 2363[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2046 -> 2364[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2047 -> 44[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2047[label="xuu78 < xuu81",fontsize=16,color="magenta"];2047 -> 2365[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2047 -> 2366[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2048 -> 45[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2048[label="xuu78 < xuu81",fontsize=16,color="magenta"];2048 -> 2367[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2048 -> 2368[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2049 -> 46[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2049[label="xuu78 < xuu81",fontsize=16,color="magenta"];2049 -> 2369[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2049 -> 2370[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2050 -> 47[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2050[label="xuu78 < xuu81",fontsize=16,color="magenta"];2050 -> 2371[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2050 -> 2372[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2051[label="False || xuu201",fontsize=16,color="black",shape="box"];2051 -> 2373[label="",style="solid", color="black", weight=3]; 33.50/15.04 2052[label="True || xuu201",fontsize=16,color="black",shape="box"];2052 -> 2374[label="",style="solid", color="black", weight=3]; 33.50/15.04 2053[label="xuu77",fontsize=16,color="green",shape="box"];2054[label="xuu80",fontsize=16,color="green",shape="box"];2055[label="xuu77",fontsize=16,color="green",shape="box"];2056[label="xuu80",fontsize=16,color="green",shape="box"];2057[label="xuu77",fontsize=16,color="green",shape="box"];2058[label="xuu80",fontsize=16,color="green",shape="box"];2059[label="xuu77",fontsize=16,color="green",shape="box"];2060[label="xuu80",fontsize=16,color="green",shape="box"];2061[label="xuu77",fontsize=16,color="green",shape="box"];2062[label="xuu80",fontsize=16,color="green",shape="box"];2063[label="xuu77",fontsize=16,color="green",shape="box"];2064[label="xuu80",fontsize=16,color="green",shape="box"];2065[label="xuu77",fontsize=16,color="green",shape="box"];2066[label="xuu80",fontsize=16,color="green",shape="box"];2067[label="xuu77",fontsize=16,color="green",shape="box"];2068[label="xuu80",fontsize=16,color="green",shape="box"];2069[label="xuu77",fontsize=16,color="green",shape="box"];2070[label="xuu80",fontsize=16,color="green",shape="box"];2071[label="xuu77",fontsize=16,color="green",shape="box"];2072[label="xuu80",fontsize=16,color="green",shape="box"];2073[label="xuu77",fontsize=16,color="green",shape="box"];2074[label="xuu80",fontsize=16,color="green",shape="box"];2075[label="xuu77",fontsize=16,color="green",shape="box"];2076[label="xuu80",fontsize=16,color="green",shape="box"];2077[label="xuu77",fontsize=16,color="green",shape="box"];2078[label="xuu80",fontsize=16,color="green",shape="box"];2079[label="xuu77",fontsize=16,color="green",shape="box"];2080[label="xuu80",fontsize=16,color="green",shape="box"];2081[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) False",fontsize=16,color="black",shape="box"];2081 -> 2375[label="",style="solid", color="black", weight=3]; 33.50/15.04 2082[label="compare1 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) True",fontsize=16,color="black",shape="box"];2082 -> 2376[label="",style="solid", color="black", weight=3]; 33.50/15.04 2083[label="True",fontsize=16,color="green",shape="box"];2084[label="GT",fontsize=16,color="green",shape="box"];2085[label="GT",fontsize=16,color="green",shape="box"];2086[label="Succ (Succ (primPlusNat xuu44200 xuu13100))",fontsize=16,color="green",shape="box"];2086 -> 2377[label="",style="dashed", color="green", weight=3]; 33.50/15.04 2087[label="Succ xuu44200",fontsize=16,color="green",shape="box"];2088[label="Succ xuu13100",fontsize=16,color="green",shape="box"];2089[label="Zero",fontsize=16,color="green",shape="box"];2090[label="xuu13100",fontsize=16,color="green",shape="box"];2091[label="xuu44200",fontsize=16,color="green",shape="box"];2092[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="box"];2092 -> 2378[label="",style="solid", color="black", weight=3]; 33.50/15.04 2093[label="error []",fontsize=16,color="red",shape="box"];2094[label="FiniteMap.mkBalBranch6MkBalBranch12 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];2094 -> 2379[label="",style="solid", color="black", weight=3]; 33.50/15.04 2095 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2095[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2095 -> 2380[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2095 -> 2381[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2096 -> 898[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2096[label="FiniteMap.sizeFM xuu213",fontsize=16,color="magenta"];2096 -> 2382[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2097[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 False",fontsize=16,color="black",shape="box"];2097 -> 2383[label="",style="solid", color="black", weight=3]; 33.50/15.04 2098[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];2098 -> 2384[label="",style="solid", color="black", weight=3]; 33.50/15.04 2099[label="FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21",fontsize=16,color="black",shape="box"];2099 -> 2385[label="",style="solid", color="black", weight=3]; 33.50/15.04 2100[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2101 -> 1205[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2101[label="primMulNat xuu40000 (Succ xuu500100)",fontsize=16,color="magenta"];2101 -> 2386[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2101 -> 2387[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2102[label="Succ xuu500100",fontsize=16,color="green",shape="box"];2103[label="compare0 (xuu168,xuu169) (xuu170,xuu171) otherwise",fontsize=16,color="black",shape="box"];2103 -> 2388[label="",style="solid", color="black", weight=3]; 33.50/15.04 2104[label="LT",fontsize=16,color="green",shape="box"];2105[label="primEqNat (Succ xuu500000) (Succ xuu40000)",fontsize=16,color="black",shape="box"];2105 -> 2389[label="",style="solid", color="black", weight=3]; 33.50/15.04 2106[label="primEqNat (Succ xuu500000) Zero",fontsize=16,color="black",shape="box"];2106 -> 2390[label="",style="solid", color="black", weight=3]; 33.50/15.04 2107[label="primEqNat Zero (Succ xuu40000)",fontsize=16,color="black",shape="box"];2107 -> 2391[label="",style="solid", color="black", weight=3]; 33.50/15.04 2108[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2108 -> 2392[label="",style="solid", color="black", weight=3]; 33.50/15.04 2109[label="xuu50000",fontsize=16,color="green",shape="box"];2110[label="xuu4001",fontsize=16,color="green",shape="box"];2111[label="xuu50001",fontsize=16,color="green",shape="box"];2112[label="xuu4000",fontsize=16,color="green",shape="box"];2113[label="xuu50001",fontsize=16,color="green",shape="box"];2114[label="xuu4001",fontsize=16,color="green",shape="box"];2115[label="xuu50001",fontsize=16,color="green",shape="box"];2116[label="xuu4001",fontsize=16,color="green",shape="box"];2117[label="xuu50001",fontsize=16,color="green",shape="box"];2118[label="xuu4001",fontsize=16,color="green",shape="box"];2119[label="xuu50001",fontsize=16,color="green",shape="box"];2120[label="xuu4001",fontsize=16,color="green",shape="box"];2121[label="xuu50001",fontsize=16,color="green",shape="box"];2122[label="xuu4001",fontsize=16,color="green",shape="box"];2123[label="xuu50001",fontsize=16,color="green",shape="box"];2124[label="xuu4001",fontsize=16,color="green",shape="box"];2125[label="xuu50001",fontsize=16,color="green",shape="box"];2126[label="xuu4001",fontsize=16,color="green",shape="box"];2127[label="xuu50001",fontsize=16,color="green",shape="box"];2128[label="xuu4001",fontsize=16,color="green",shape="box"];2129[label="xuu50001",fontsize=16,color="green",shape="box"];2130[label="xuu4001",fontsize=16,color="green",shape="box"];2131[label="xuu50001",fontsize=16,color="green",shape="box"];2132[label="xuu4001",fontsize=16,color="green",shape="box"];2133[label="xuu50001",fontsize=16,color="green",shape="box"];2134[label="xuu4001",fontsize=16,color="green",shape="box"];2135[label="xuu50001",fontsize=16,color="green",shape="box"];2136[label="xuu4001",fontsize=16,color="green",shape="box"];2137[label="xuu50001",fontsize=16,color="green",shape="box"];2138[label="xuu4001",fontsize=16,color="green",shape="box"];2139[label="xuu50001",fontsize=16,color="green",shape="box"];2140[label="xuu4001",fontsize=16,color="green",shape="box"];2141[label="xuu50000",fontsize=16,color="green",shape="box"];2142[label="xuu4000",fontsize=16,color="green",shape="box"];2143[label="xuu50000",fontsize=16,color="green",shape="box"];2144[label="xuu4000",fontsize=16,color="green",shape="box"];2145[label="xuu50000",fontsize=16,color="green",shape="box"];2146[label="xuu4000",fontsize=16,color="green",shape="box"];2147[label="xuu50000",fontsize=16,color="green",shape="box"];2148[label="xuu4000",fontsize=16,color="green",shape="box"];2149[label="xuu50000",fontsize=16,color="green",shape="box"];2150[label="xuu4000",fontsize=16,color="green",shape="box"];2151[label="xuu50000",fontsize=16,color="green",shape="box"];2152[label="xuu4000",fontsize=16,color="green",shape="box"];2153[label="xuu50000",fontsize=16,color="green",shape="box"];2154[label="xuu4000",fontsize=16,color="green",shape="box"];2155[label="xuu50000",fontsize=16,color="green",shape="box"];2156[label="xuu4000",fontsize=16,color="green",shape="box"];2157[label="xuu50000",fontsize=16,color="green",shape="box"];2158[label="xuu4000",fontsize=16,color="green",shape="box"];2159[label="xuu50000",fontsize=16,color="green",shape="box"];2160[label="xuu4000",fontsize=16,color="green",shape="box"];2161[label="xuu50000",fontsize=16,color="green",shape="box"];2162[label="xuu4000",fontsize=16,color="green",shape="box"];2163[label="xuu50000",fontsize=16,color="green",shape="box"];2164[label="xuu4000",fontsize=16,color="green",shape="box"];2165[label="xuu50000",fontsize=16,color="green",shape="box"];2166[label="xuu4000",fontsize=16,color="green",shape="box"];2167[label="xuu50000",fontsize=16,color="green",shape="box"];2168[label="xuu4000",fontsize=16,color="green",shape="box"];2169[label="xuu50000",fontsize=16,color="green",shape="box"];2170[label="xuu4001",fontsize=16,color="green",shape="box"];2171[label="xuu50001",fontsize=16,color="green",shape="box"];2172[label="xuu4000",fontsize=16,color="green",shape="box"];2173[label="xuu50000",fontsize=16,color="green",shape="box"];2174[label="xuu4000",fontsize=16,color="green",shape="box"];2175[label="xuu50000",fontsize=16,color="green",shape="box"];2176[label="xuu4000",fontsize=16,color="green",shape="box"];2177[label="xuu50000",fontsize=16,color="green",shape="box"];2178[label="xuu4000",fontsize=16,color="green",shape="box"];2179[label="xuu50000",fontsize=16,color="green",shape="box"];2180[label="xuu4000",fontsize=16,color="green",shape="box"];2181[label="xuu50000",fontsize=16,color="green",shape="box"];2182[label="xuu4000",fontsize=16,color="green",shape="box"];2183[label="xuu50000",fontsize=16,color="green",shape="box"];2184[label="xuu4000",fontsize=16,color="green",shape="box"];2185[label="xuu50000",fontsize=16,color="green",shape="box"];2186[label="xuu4000",fontsize=16,color="green",shape="box"];2187[label="xuu50000",fontsize=16,color="green",shape="box"];2188[label="xuu4000",fontsize=16,color="green",shape="box"];2189[label="xuu50000",fontsize=16,color="green",shape="box"];2190[label="xuu4000",fontsize=16,color="green",shape="box"];2191[label="xuu50000",fontsize=16,color="green",shape="box"];2192[label="xuu4000",fontsize=16,color="green",shape="box"];2193[label="xuu50000",fontsize=16,color="green",shape="box"];2194[label="xuu4000",fontsize=16,color="green",shape="box"];2195[label="xuu50000",fontsize=16,color="green",shape="box"];2196[label="xuu4000",fontsize=16,color="green",shape="box"];2197[label="xuu50000",fontsize=16,color="green",shape="box"];2198[label="xuu4000",fontsize=16,color="green",shape="box"];2199[label="xuu50000",fontsize=16,color="green",shape="box"];2200[label="xuu4000",fontsize=16,color="green",shape="box"];2201[label="xuu50001",fontsize=16,color="green",shape="box"];2202[label="xuu4001",fontsize=16,color="green",shape="box"];2203[label="xuu50001",fontsize=16,color="green",shape="box"];2204[label="xuu4001",fontsize=16,color="green",shape="box"];2205[label="xuu50000",fontsize=16,color="green",shape="box"];2206[label="xuu4000",fontsize=16,color="green",shape="box"];2207[label="xuu50000",fontsize=16,color="green",shape="box"];2208[label="xuu4000",fontsize=16,color="green",shape="box"];2209 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2209[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2209 -> 2393[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2209 -> 2394[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2210 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2210[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2210 -> 2395[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2210 -> 2396[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2211 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2211[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2211 -> 2397[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2211 -> 2398[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2212 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2212[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2212 -> 2399[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2212 -> 2400[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2213 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2213[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2213 -> 2401[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2213 -> 2402[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2214 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2214[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2214 -> 2403[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2214 -> 2404[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2215 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2215[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2215 -> 2405[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2215 -> 2406[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2216 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2216[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2216 -> 2407[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2216 -> 2408[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2217 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2217[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2217 -> 2409[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2217 -> 2410[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2218 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2218[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2218 -> 2411[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2218 -> 2412[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2219 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2219[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2219 -> 2413[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2219 -> 2414[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2220 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2220[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2220 -> 2415[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2220 -> 2416[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2221 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2221[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2221 -> 2417[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2221 -> 2418[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2222 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2222[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2222 -> 2419[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2222 -> 2420[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2223 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2223[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2223 -> 2421[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2223 -> 2422[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2224 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2224[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2224 -> 2423[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2224 -> 2424[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2225 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2225[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2225 -> 2425[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2225 -> 2426[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2226 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2226[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2226 -> 2427[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2226 -> 2428[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2227 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2227[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2227 -> 2429[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2227 -> 2430[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2228 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2228[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2228 -> 2431[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2228 -> 2432[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2229 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2229[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2229 -> 2433[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2229 -> 2434[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2230 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2230[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2230 -> 2435[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2230 -> 2436[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2231 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2231[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2231 -> 2437[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2231 -> 2438[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2232 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2232[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2232 -> 2439[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2232 -> 2440[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2233 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2233[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2233 -> 2441[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2233 -> 2442[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2234 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2234[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2234 -> 2443[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2234 -> 2444[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2235 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2235[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2235 -> 2445[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2235 -> 2446[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2236 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2236[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2236 -> 2447[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2236 -> 2448[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2237[label="xuu50000",fontsize=16,color="green",shape="box"];2238[label="xuu4000",fontsize=16,color="green",shape="box"];2239[label="xuu50000",fontsize=16,color="green",shape="box"];2240[label="xuu4000",fontsize=16,color="green",shape="box"];2241[label="xuu50000",fontsize=16,color="green",shape="box"];2242[label="xuu4000",fontsize=16,color="green",shape="box"];2243[label="xuu50000",fontsize=16,color="green",shape="box"];2244[label="xuu4000",fontsize=16,color="green",shape="box"];2245[label="xuu50000",fontsize=16,color="green",shape="box"];2246[label="xuu4000",fontsize=16,color="green",shape="box"];2247[label="xuu50000",fontsize=16,color="green",shape="box"];2248[label="xuu4000",fontsize=16,color="green",shape="box"];2249[label="xuu50000",fontsize=16,color="green",shape="box"];2250[label="xuu4000",fontsize=16,color="green",shape="box"];2251[label="xuu50000",fontsize=16,color="green",shape="box"];2252[label="xuu4000",fontsize=16,color="green",shape="box"];2253[label="xuu50000",fontsize=16,color="green",shape="box"];2254[label="xuu4000",fontsize=16,color="green",shape="box"];2255[label="xuu50000",fontsize=16,color="green",shape="box"];2256[label="xuu4000",fontsize=16,color="green",shape="box"];2257[label="xuu50000",fontsize=16,color="green",shape="box"];2258[label="xuu4000",fontsize=16,color="green",shape="box"];2259[label="xuu50000",fontsize=16,color="green",shape="box"];2260[label="xuu4000",fontsize=16,color="green",shape="box"];2261[label="xuu50000",fontsize=16,color="green",shape="box"];2262[label="xuu4000",fontsize=16,color="green",shape="box"];2263[label="xuu50000",fontsize=16,color="green",shape="box"];2264[label="xuu4000",fontsize=16,color="green",shape="box"];2265 -> 1562[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2265[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2265 -> 2449[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2265 -> 2450[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2266[label="False",fontsize=16,color="green",shape="box"];2267[label="False",fontsize=16,color="green",shape="box"];2268[label="True",fontsize=16,color="green",shape="box"];2269[label="False",fontsize=16,color="green",shape="box"];2270[label="True",fontsize=16,color="green",shape="box"];2271 -> 1562[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2271[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2271 -> 2451[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2271 -> 2452[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2272[label="False",fontsize=16,color="green",shape="box"];2273[label="False",fontsize=16,color="green",shape="box"];2274[label="True",fontsize=16,color="green",shape="box"];2275[label="False",fontsize=16,color="green",shape="box"];2276[label="True",fontsize=16,color="green",shape="box"];2277[label="xuu67",fontsize=16,color="green",shape="box"];2278[label="xuu66",fontsize=16,color="green",shape="box"];2279 -> 2453[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2279[label="not (xuu196 == GT)",fontsize=16,color="magenta"];2279 -> 2454[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2280 -> 2030[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2280[label="xuu660 < xuu670 || xuu660 == xuu670 && xuu661 <= xuu671",fontsize=16,color="magenta"];2280 -> 2455[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2280 -> 2456[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2281[label="True",fontsize=16,color="green",shape="box"];2282[label="True",fontsize=16,color="green",shape="box"];2283[label="False",fontsize=16,color="green",shape="box"];2284[label="xuu660 <= xuu670",fontsize=16,color="blue",shape="box"];3861[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3861[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3861 -> 2457[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3862[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3862[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3862 -> 2458[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3863[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3863[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3863 -> 2459[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3864[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3864[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3864 -> 2460[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3865[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3865[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3865 -> 2461[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3866[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3866[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3866 -> 2462[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3867[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3867[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3867 -> 2463[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3868[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3868[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3868 -> 2464[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3869[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3869[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3869 -> 2465[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3870[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3870[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3870 -> 2466[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3871[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3871[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3871 -> 2467[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3872[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3872[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3872 -> 2468[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3873[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3873[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3873 -> 2469[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3874[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2284 -> 3874[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3874 -> 2470[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2285 -> 2030[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2285[label="xuu660 < xuu670 || xuu660 == xuu670 && (xuu661 < xuu671 || xuu661 == xuu671 && xuu662 <= xuu672)",fontsize=16,color="magenta"];2285 -> 2471[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2285 -> 2472[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2286[label="xuu67",fontsize=16,color="green",shape="box"];2287[label="xuu66",fontsize=16,color="green",shape="box"];2288[label="xuu67",fontsize=16,color="green",shape="box"];2289[label="xuu66",fontsize=16,color="green",shape="box"];2290[label="True",fontsize=16,color="green",shape="box"];2291[label="True",fontsize=16,color="green",shape="box"];2292[label="True",fontsize=16,color="green",shape="box"];2293[label="False",fontsize=16,color="green",shape="box"];2294[label="True",fontsize=16,color="green",shape="box"];2295[label="True",fontsize=16,color="green",shape="box"];2296[label="False",fontsize=16,color="green",shape="box"];2297[label="False",fontsize=16,color="green",shape="box"];2298[label="True",fontsize=16,color="green",shape="box"];2299[label="xuu67",fontsize=16,color="green",shape="box"];2300[label="xuu66",fontsize=16,color="green",shape="box"];2301[label="True",fontsize=16,color="green",shape="box"];2302[label="True",fontsize=16,color="green",shape="box"];2303[label="False",fontsize=16,color="green",shape="box"];2304[label="True",fontsize=16,color="green",shape="box"];2305[label="xuu67",fontsize=16,color="green",shape="box"];2306[label="xuu66",fontsize=16,color="green",shape="box"];2307[label="xuu67",fontsize=16,color="green",shape="box"];2308[label="xuu66",fontsize=16,color="green",shape="box"];2309[label="xuu67",fontsize=16,color="green",shape="box"];2310[label="xuu66",fontsize=16,color="green",shape="box"];2311[label="xuu67",fontsize=16,color="green",shape="box"];2312[label="xuu66",fontsize=16,color="green",shape="box"];2313[label="xuu660 <= xuu670",fontsize=16,color="blue",shape="box"];3875[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3875[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3875 -> 2473[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3876[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3876[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3876 -> 2474[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3877[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3877[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3877 -> 2475[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3878[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3878[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3878 -> 2476[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3879[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3879[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3879 -> 2477[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3880[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3880[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3880 -> 2478[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3881[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3881[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3881 -> 2479[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3882[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3882[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3882 -> 2480[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3883[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3883[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3883 -> 2481[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3884[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3884[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3884 -> 2482[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3885[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3885[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3885 -> 2483[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3886[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3886[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3886 -> 2484[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3887[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3887[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3887 -> 2485[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3888[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3888[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3888 -> 2486[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2314[label="True",fontsize=16,color="green",shape="box"];2315[label="False",fontsize=16,color="green",shape="box"];2316[label="xuu660 <= xuu670",fontsize=16,color="blue",shape="box"];3889[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3889[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3889 -> 2487[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3890[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3890[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3890 -> 2488[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3891[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3891[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3891 -> 2489[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3892[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3892[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3892 -> 2490[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3893[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3893[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3893 -> 2491[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3894[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3894[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3894 -> 2492[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3895[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3895[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3895 -> 2493[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3896[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3896[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3896 -> 2494[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3897[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3897[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3897 -> 2495[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3898[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3898[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3898 -> 2496[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3899[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3899[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3899 -> 2497[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3900[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3900[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3900 -> 2498[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3901[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3901[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3901 -> 2499[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3902[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3902[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3902 -> 2500[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2317 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2317[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2317 -> 2501[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2317 -> 2502[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2318 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2318[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2318 -> 2503[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2318 -> 2504[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2319 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2319[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2319 -> 2505[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2319 -> 2506[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2320 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2320[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2320 -> 2507[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2320 -> 2508[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2321 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2321[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2321 -> 2509[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2321 -> 2510[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2322 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2322[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2322 -> 2511[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2322 -> 2512[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2323 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2323[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2323 -> 2513[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2323 -> 2514[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2324 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2324[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2324 -> 2515[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2324 -> 2516[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2325 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2325[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2325 -> 2517[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2325 -> 2518[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2326 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2326[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2326 -> 2519[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2326 -> 2520[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2327 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2327[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2327 -> 2521[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2327 -> 2522[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2328 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2328[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2328 -> 2523[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2328 -> 2524[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2329 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2329[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2329 -> 2525[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2329 -> 2526[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2330 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2330[label="xuu79 <= xuu82",fontsize=16,color="magenta"];2330 -> 2527[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2330 -> 2528[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2331 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2331[label="xuu78 == xuu81",fontsize=16,color="magenta"];2331 -> 2529[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2331 -> 2530[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2332 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2332[label="xuu78 == xuu81",fontsize=16,color="magenta"];2332 -> 2531[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2332 -> 2532[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2333 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2333[label="xuu78 == xuu81",fontsize=16,color="magenta"];2333 -> 2533[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2333 -> 2534[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2334 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2334[label="xuu78 == xuu81",fontsize=16,color="magenta"];2334 -> 2535[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2334 -> 2536[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2335 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2335[label="xuu78 == xuu81",fontsize=16,color="magenta"];2335 -> 2537[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2335 -> 2538[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2336 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2336[label="xuu78 == xuu81",fontsize=16,color="magenta"];2336 -> 2539[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2336 -> 2540[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2337 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2337[label="xuu78 == xuu81",fontsize=16,color="magenta"];2337 -> 2541[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2337 -> 2542[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2338 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2338[label="xuu78 == xuu81",fontsize=16,color="magenta"];2338 -> 2543[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2338 -> 2544[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2339 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2339[label="xuu78 == xuu81",fontsize=16,color="magenta"];2339 -> 2545[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2339 -> 2546[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2340 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2340[label="xuu78 == xuu81",fontsize=16,color="magenta"];2340 -> 2547[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2340 -> 2548[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2341 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2341[label="xuu78 == xuu81",fontsize=16,color="magenta"];2341 -> 2549[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2341 -> 2550[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2342 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2342[label="xuu78 == xuu81",fontsize=16,color="magenta"];2342 -> 2551[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2342 -> 2552[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2343 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2343[label="xuu78 == xuu81",fontsize=16,color="magenta"];2343 -> 2553[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2343 -> 2554[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2344 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2344[label="xuu78 == xuu81",fontsize=16,color="magenta"];2344 -> 2555[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2344 -> 2556[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2345[label="xuu81",fontsize=16,color="green",shape="box"];2346[label="xuu78",fontsize=16,color="green",shape="box"];2347[label="xuu81",fontsize=16,color="green",shape="box"];2348[label="xuu78",fontsize=16,color="green",shape="box"];2349[label="xuu81",fontsize=16,color="green",shape="box"];2350[label="xuu78",fontsize=16,color="green",shape="box"];2351[label="xuu81",fontsize=16,color="green",shape="box"];2352[label="xuu78",fontsize=16,color="green",shape="box"];2353[label="xuu81",fontsize=16,color="green",shape="box"];2354[label="xuu78",fontsize=16,color="green",shape="box"];2355[label="xuu81",fontsize=16,color="green",shape="box"];2356[label="xuu78",fontsize=16,color="green",shape="box"];2357[label="xuu81",fontsize=16,color="green",shape="box"];2358[label="xuu78",fontsize=16,color="green",shape="box"];2359[label="xuu81",fontsize=16,color="green",shape="box"];2360[label="xuu78",fontsize=16,color="green",shape="box"];2361[label="xuu81",fontsize=16,color="green",shape="box"];2362[label="xuu78",fontsize=16,color="green",shape="box"];2363[label="xuu81",fontsize=16,color="green",shape="box"];2364[label="xuu78",fontsize=16,color="green",shape="box"];2365[label="xuu81",fontsize=16,color="green",shape="box"];2366[label="xuu78",fontsize=16,color="green",shape="box"];2367[label="xuu81",fontsize=16,color="green",shape="box"];2368[label="xuu78",fontsize=16,color="green",shape="box"];2369[label="xuu81",fontsize=16,color="green",shape="box"];2370[label="xuu78",fontsize=16,color="green",shape="box"];2371[label="xuu81",fontsize=16,color="green",shape="box"];2372[label="xuu78",fontsize=16,color="green",shape="box"];2373[label="xuu201",fontsize=16,color="green",shape="box"];2374[label="True",fontsize=16,color="green",shape="box"];2375[label="compare0 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) otherwise",fontsize=16,color="black",shape="box"];2375 -> 2557[label="",style="solid", color="black", weight=3]; 33.50/15.04 2376[label="LT",fontsize=16,color="green",shape="box"];2377 -> 1311[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2377[label="primPlusNat xuu44200 xuu13100",fontsize=16,color="magenta"];2377 -> 2558[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2377 -> 2559[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2378 -> 526[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2378[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];2379 -> 2560[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2379[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 (FiniteMap.sizeFM xuu444 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu443)",fontsize=16,color="magenta"];2379 -> 2561[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2380[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2381 -> 898[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2381[label="FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2381 -> 2562[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2382[label="xuu213",fontsize=16,color="green",shape="box"];2383[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 otherwise",fontsize=16,color="black",shape="box"];2383 -> 2563[label="",style="solid", color="black", weight=3]; 33.50/15.04 2384[label="FiniteMap.mkBalBranch6Single_L xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];2384 -> 2564[label="",style="solid", color="black", weight=3]; 33.50/15.04 2385 -> 898[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2385[label="FiniteMap.sizeFM xuu44",fontsize=16,color="magenta"];2385 -> 2565[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2386[label="Succ xuu500100",fontsize=16,color="green",shape="box"];2387[label="xuu40000",fontsize=16,color="green",shape="box"];2388[label="compare0 (xuu168,xuu169) (xuu170,xuu171) True",fontsize=16,color="black",shape="box"];2388 -> 2566[label="",style="solid", color="black", weight=3]; 33.50/15.04 2389 -> 1562[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2389[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2389 -> 2567[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2389 -> 2568[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2390[label="False",fontsize=16,color="green",shape="box"];2391[label="False",fontsize=16,color="green",shape="box"];2392[label="True",fontsize=16,color="green",shape="box"];2393[label="xuu50002",fontsize=16,color="green",shape="box"];2394[label="xuu4002",fontsize=16,color="green",shape="box"];2395[label="xuu50002",fontsize=16,color="green",shape="box"];2396[label="xuu4002",fontsize=16,color="green",shape="box"];2397[label="xuu50002",fontsize=16,color="green",shape="box"];2398[label="xuu4002",fontsize=16,color="green",shape="box"];2399[label="xuu50002",fontsize=16,color="green",shape="box"];2400[label="xuu4002",fontsize=16,color="green",shape="box"];2401[label="xuu50002",fontsize=16,color="green",shape="box"];2402[label="xuu4002",fontsize=16,color="green",shape="box"];2403[label="xuu50002",fontsize=16,color="green",shape="box"];2404[label="xuu4002",fontsize=16,color="green",shape="box"];2405[label="xuu50002",fontsize=16,color="green",shape="box"];2406[label="xuu4002",fontsize=16,color="green",shape="box"];2407[label="xuu50002",fontsize=16,color="green",shape="box"];2408[label="xuu4002",fontsize=16,color="green",shape="box"];2409[label="xuu50002",fontsize=16,color="green",shape="box"];2410[label="xuu4002",fontsize=16,color="green",shape="box"];2411[label="xuu50002",fontsize=16,color="green",shape="box"];2412[label="xuu4002",fontsize=16,color="green",shape="box"];2413[label="xuu50002",fontsize=16,color="green",shape="box"];2414[label="xuu4002",fontsize=16,color="green",shape="box"];2415[label="xuu50002",fontsize=16,color="green",shape="box"];2416[label="xuu4002",fontsize=16,color="green",shape="box"];2417[label="xuu50002",fontsize=16,color="green",shape="box"];2418[label="xuu4002",fontsize=16,color="green",shape="box"];2419[label="xuu50002",fontsize=16,color="green",shape="box"];2420[label="xuu4002",fontsize=16,color="green",shape="box"];2421[label="xuu50001",fontsize=16,color="green",shape="box"];2422[label="xuu4001",fontsize=16,color="green",shape="box"];2423[label="xuu50001",fontsize=16,color="green",shape="box"];2424[label="xuu4001",fontsize=16,color="green",shape="box"];2425[label="xuu50001",fontsize=16,color="green",shape="box"];2426[label="xuu4001",fontsize=16,color="green",shape="box"];2427[label="xuu50001",fontsize=16,color="green",shape="box"];2428[label="xuu4001",fontsize=16,color="green",shape="box"];2429[label="xuu50001",fontsize=16,color="green",shape="box"];2430[label="xuu4001",fontsize=16,color="green",shape="box"];2431[label="xuu50001",fontsize=16,color="green",shape="box"];2432[label="xuu4001",fontsize=16,color="green",shape="box"];2433[label="xuu50001",fontsize=16,color="green",shape="box"];2434[label="xuu4001",fontsize=16,color="green",shape="box"];2435[label="xuu50001",fontsize=16,color="green",shape="box"];2436[label="xuu4001",fontsize=16,color="green",shape="box"];2437[label="xuu50001",fontsize=16,color="green",shape="box"];2438[label="xuu4001",fontsize=16,color="green",shape="box"];2439[label="xuu50001",fontsize=16,color="green",shape="box"];2440[label="xuu4001",fontsize=16,color="green",shape="box"];2441[label="xuu50001",fontsize=16,color="green",shape="box"];2442[label="xuu4001",fontsize=16,color="green",shape="box"];2443[label="xuu50001",fontsize=16,color="green",shape="box"];2444[label="xuu4001",fontsize=16,color="green",shape="box"];2445[label="xuu50001",fontsize=16,color="green",shape="box"];2446[label="xuu4001",fontsize=16,color="green",shape="box"];2447[label="xuu50001",fontsize=16,color="green",shape="box"];2448[label="xuu4001",fontsize=16,color="green",shape="box"];2449[label="xuu500000",fontsize=16,color="green",shape="box"];2450[label="xuu40000",fontsize=16,color="green",shape="box"];2451[label="xuu500000",fontsize=16,color="green",shape="box"];2452[label="xuu40000",fontsize=16,color="green",shape="box"];2454 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2454[label="xuu196 == GT",fontsize=16,color="magenta"];2454 -> 2569[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2454 -> 2570[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2453[label="not xuu202",fontsize=16,color="burlywood",shape="triangle"];3903[label="xuu202/False",fontsize=10,color="white",style="solid",shape="box"];2453 -> 3903[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3903 -> 2571[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3904[label="xuu202/True",fontsize=10,color="white",style="solid",shape="box"];2453 -> 3904[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3904 -> 2572[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 2455 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2455[label="xuu660 == xuu670 && xuu661 <= xuu671",fontsize=16,color="magenta"];2455 -> 2573[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2455 -> 2574[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2456[label="xuu660 < xuu670",fontsize=16,color="blue",shape="box"];3905[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3905[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3905 -> 2575[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3906[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3906[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3906 -> 2576[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3907[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3907[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3907 -> 2577[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3908[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3908[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3908 -> 2578[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3909[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3909[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3909 -> 2579[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3910[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3910[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3910 -> 2580[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3911[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3911[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3911 -> 2581[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3912[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3912[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3912 -> 2582[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3913[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3913[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3913 -> 2583[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3914[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3914[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3914 -> 2584[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3915[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3915[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3915 -> 2585[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3916[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3916[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3916 -> 2586[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3917[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3917[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3917 -> 2587[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3918[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3918[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3918 -> 2588[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2457 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2457[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2457 -> 2589[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2457 -> 2590[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2458 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2458[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2458 -> 2591[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2458 -> 2592[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2459 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2459[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2459 -> 2593[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2459 -> 2594[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2460 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2460[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2460 -> 2595[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2460 -> 2596[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2461 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2461[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2461 -> 2597[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2461 -> 2598[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2462 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2462[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2462 -> 2599[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2462 -> 2600[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2463 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2463[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2463 -> 2601[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2463 -> 2602[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2464 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2464[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2464 -> 2603[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2464 -> 2604[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2465 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2465[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2465 -> 2605[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2465 -> 2606[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2466 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2466[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2466 -> 2607[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2466 -> 2608[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2467 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2467[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2467 -> 2609[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2467 -> 2610[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2468 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2468[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2468 -> 2611[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2468 -> 2612[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2469 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2469[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2469 -> 2613[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2469 -> 2614[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2470 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2470[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2470 -> 2615[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2470 -> 2616[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2471 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2471[label="xuu660 == xuu670 && (xuu661 < xuu671 || xuu661 == xuu671 && xuu662 <= xuu672)",fontsize=16,color="magenta"];2471 -> 2617[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2471 -> 2618[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2472[label="xuu660 < xuu670",fontsize=16,color="blue",shape="box"];3919[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3919[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3919 -> 2619[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3920[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3920[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3920 -> 2620[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3921[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3921[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3921 -> 2621[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3922[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3922[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3922 -> 2622[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3923[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3923[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3923 -> 2623[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3924[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3924[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3924 -> 2624[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3925[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3925[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3925 -> 2625[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3926[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3926[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3926 -> 2626[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3927[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3927[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3927 -> 2627[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3928[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3928[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3928 -> 2628[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3929[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3929[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3929 -> 2629[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3930[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3930[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3930 -> 2630[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3931[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3931[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3931 -> 2631[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3932[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2472 -> 3932[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3932 -> 2632[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2473 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2473[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2473 -> 2633[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2473 -> 2634[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2474 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2474[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2474 -> 2635[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2474 -> 2636[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2475 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2475[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2475 -> 2637[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2475 -> 2638[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2476 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2476[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2476 -> 2639[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2476 -> 2640[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2477 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2477[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2477 -> 2641[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2477 -> 2642[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2478 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2478[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2478 -> 2643[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2478 -> 2644[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2479 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2479[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2479 -> 2645[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2479 -> 2646[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2480 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2480[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2480 -> 2647[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2480 -> 2648[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2481 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2481[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2481 -> 2649[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2481 -> 2650[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2482 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2482[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2482 -> 2651[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2482 -> 2652[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2483 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2483[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2483 -> 2653[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2483 -> 2654[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2484 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2484[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2484 -> 2655[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2484 -> 2656[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2485 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2485[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2485 -> 2657[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2485 -> 2658[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2486 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2486[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2486 -> 2659[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2486 -> 2660[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2487 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2487[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2487 -> 2661[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2487 -> 2662[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2488 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2488[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2488 -> 2663[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2488 -> 2664[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2489 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2489[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2489 -> 2665[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2489 -> 2666[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2490 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2490[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2490 -> 2667[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2490 -> 2668[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2491 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2491[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2491 -> 2669[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2491 -> 2670[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2492 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2492[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2492 -> 2671[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2492 -> 2672[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2493 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2493[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2493 -> 2673[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2493 -> 2674[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2494 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2494[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2494 -> 2675[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2494 -> 2676[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2495 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2495[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2495 -> 2677[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2495 -> 2678[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2496 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2496[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2496 -> 2679[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2496 -> 2680[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2497 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2497[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2497 -> 2681[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2497 -> 2682[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2498 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2498[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2498 -> 2683[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2498 -> 2684[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2499 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2499[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2499 -> 2685[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2499 -> 2686[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2500 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2500[label="xuu660 <= xuu670",fontsize=16,color="magenta"];2500 -> 2687[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2500 -> 2688[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2501[label="xuu79",fontsize=16,color="green",shape="box"];2502[label="xuu82",fontsize=16,color="green",shape="box"];2503[label="xuu79",fontsize=16,color="green",shape="box"];2504[label="xuu82",fontsize=16,color="green",shape="box"];2505[label="xuu79",fontsize=16,color="green",shape="box"];2506[label="xuu82",fontsize=16,color="green",shape="box"];2507[label="xuu79",fontsize=16,color="green",shape="box"];2508[label="xuu82",fontsize=16,color="green",shape="box"];2509[label="xuu79",fontsize=16,color="green",shape="box"];2510[label="xuu82",fontsize=16,color="green",shape="box"];2511[label="xuu79",fontsize=16,color="green",shape="box"];2512[label="xuu82",fontsize=16,color="green",shape="box"];2513[label="xuu79",fontsize=16,color="green",shape="box"];2514[label="xuu82",fontsize=16,color="green",shape="box"];2515[label="xuu79",fontsize=16,color="green",shape="box"];2516[label="xuu82",fontsize=16,color="green",shape="box"];2517[label="xuu79",fontsize=16,color="green",shape="box"];2518[label="xuu82",fontsize=16,color="green",shape="box"];2519[label="xuu79",fontsize=16,color="green",shape="box"];2520[label="xuu82",fontsize=16,color="green",shape="box"];2521[label="xuu79",fontsize=16,color="green",shape="box"];2522[label="xuu82",fontsize=16,color="green",shape="box"];2523[label="xuu79",fontsize=16,color="green",shape="box"];2524[label="xuu82",fontsize=16,color="green",shape="box"];2525[label="xuu79",fontsize=16,color="green",shape="box"];2526[label="xuu82",fontsize=16,color="green",shape="box"];2527[label="xuu79",fontsize=16,color="green",shape="box"];2528[label="xuu82",fontsize=16,color="green",shape="box"];2529[label="xuu78",fontsize=16,color="green",shape="box"];2530[label="xuu81",fontsize=16,color="green",shape="box"];2531[label="xuu78",fontsize=16,color="green",shape="box"];2532[label="xuu81",fontsize=16,color="green",shape="box"];2533[label="xuu78",fontsize=16,color="green",shape="box"];2534[label="xuu81",fontsize=16,color="green",shape="box"];2535[label="xuu78",fontsize=16,color="green",shape="box"];2536[label="xuu81",fontsize=16,color="green",shape="box"];2537[label="xuu78",fontsize=16,color="green",shape="box"];2538[label="xuu81",fontsize=16,color="green",shape="box"];2539[label="xuu78",fontsize=16,color="green",shape="box"];2540[label="xuu81",fontsize=16,color="green",shape="box"];2541[label="xuu78",fontsize=16,color="green",shape="box"];2542[label="xuu81",fontsize=16,color="green",shape="box"];2543[label="xuu78",fontsize=16,color="green",shape="box"];2544[label="xuu81",fontsize=16,color="green",shape="box"];2545[label="xuu78",fontsize=16,color="green",shape="box"];2546[label="xuu81",fontsize=16,color="green",shape="box"];2547[label="xuu78",fontsize=16,color="green",shape="box"];2548[label="xuu81",fontsize=16,color="green",shape="box"];2549[label="xuu78",fontsize=16,color="green",shape="box"];2550[label="xuu81",fontsize=16,color="green",shape="box"];2551[label="xuu78",fontsize=16,color="green",shape="box"];2552[label="xuu81",fontsize=16,color="green",shape="box"];2553[label="xuu78",fontsize=16,color="green",shape="box"];2554[label="xuu81",fontsize=16,color="green",shape="box"];2555[label="xuu78",fontsize=16,color="green",shape="box"];2556[label="xuu81",fontsize=16,color="green",shape="box"];2557[label="compare0 (xuu183,xuu184,xuu185) (xuu186,xuu187,xuu188) True",fontsize=16,color="black",shape="box"];2557 -> 2689[label="",style="solid", color="black", weight=3]; 33.50/15.04 2558[label="xuu44200",fontsize=16,color="green",shape="box"];2559[label="xuu13100",fontsize=16,color="green",shape="box"];2561 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2561[label="FiniteMap.sizeFM xuu444 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2561 -> 2690[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2561 -> 2691[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2560[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 xuu203",fontsize=16,color="burlywood",shape="triangle"];3933[label="xuu203/False",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3933[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3933 -> 2692[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3934[label="xuu203/True",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3934[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3934 -> 2693[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 2562[label="xuu214",fontsize=16,color="green",shape="box"];2563[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];2563 -> 2694[label="",style="solid", color="black", weight=3]; 33.50/15.04 2564[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu210 xuu211 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu44 xuu213) xuu214",fontsize=16,color="black",shape="box"];2564 -> 2695[label="",style="solid", color="black", weight=3]; 33.50/15.04 2565[label="xuu44",fontsize=16,color="green",shape="box"];2566[label="GT",fontsize=16,color="green",shape="box"];2567[label="xuu500000",fontsize=16,color="green",shape="box"];2568[label="xuu40000",fontsize=16,color="green",shape="box"];2569[label="xuu196",fontsize=16,color="green",shape="box"];2570[label="GT",fontsize=16,color="green",shape="box"];2571[label="not False",fontsize=16,color="black",shape="box"];2571 -> 2696[label="",style="solid", color="black", weight=3]; 33.50/15.04 2572[label="not True",fontsize=16,color="black",shape="box"];2572 -> 2697[label="",style="solid", color="black", weight=3]; 33.50/15.04 2573[label="xuu661 <= xuu671",fontsize=16,color="blue",shape="box"];3935[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3935[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3935 -> 2698[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3936[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3936[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3936 -> 2699[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3937[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3937[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3937 -> 2700[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3938[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3938[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3938 -> 2701[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3939[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3939[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3939 -> 2702[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3940[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3940[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3940 -> 2703[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3941[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3941[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3941 -> 2704[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3942[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3942[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3942 -> 2705[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3943[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3943[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3943 -> 2706[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3944[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3944[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3944 -> 2707[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3945[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3945[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3945 -> 2708[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3946[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3946[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3946 -> 2709[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3947[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3947[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3947 -> 2710[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3948[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2573 -> 3948[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3948 -> 2711[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2574[label="xuu660 == xuu670",fontsize=16,color="blue",shape="box"];3949[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3949[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3949 -> 2712[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3950[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3950[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3950 -> 2713[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3951[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3951[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3951 -> 2714[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3952[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3952[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3952 -> 2715[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3953[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3953[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3953 -> 2716[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3954[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3954[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3954 -> 2717[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3955[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3955[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3955 -> 2718[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3956[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3956[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3956 -> 2719[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3957[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3957[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3957 -> 2720[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3958[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3958[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3958 -> 2721[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3959[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3959[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3959 -> 2722[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3960[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3960[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3960 -> 2723[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3961[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3961[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3961 -> 2724[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3962[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2574 -> 3962[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3962 -> 2725[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2575 -> 34[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2575[label="xuu660 < xuu670",fontsize=16,color="magenta"];2575 -> 2726[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2575 -> 2727[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2576 -> 35[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2576[label="xuu660 < xuu670",fontsize=16,color="magenta"];2576 -> 2728[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2576 -> 2729[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2577 -> 36[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2577[label="xuu660 < xuu670",fontsize=16,color="magenta"];2577 -> 2730[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2577 -> 2731[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2578 -> 37[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2578[label="xuu660 < xuu670",fontsize=16,color="magenta"];2578 -> 2732[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2578 -> 2733[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2579 -> 38[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2579[label="xuu660 < xuu670",fontsize=16,color="magenta"];2579 -> 2734[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2579 -> 2735[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2580 -> 39[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2580[label="xuu660 < xuu670",fontsize=16,color="magenta"];2580 -> 2736[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2580 -> 2737[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2581 -> 40[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2581[label="xuu660 < xuu670",fontsize=16,color="magenta"];2581 -> 2738[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2581 -> 2739[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2582 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2582[label="xuu660 < xuu670",fontsize=16,color="magenta"];2582 -> 2740[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2582 -> 2741[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2583 -> 42[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2583[label="xuu660 < xuu670",fontsize=16,color="magenta"];2583 -> 2742[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2583 -> 2743[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2584 -> 43[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2584[label="xuu660 < xuu670",fontsize=16,color="magenta"];2584 -> 2744[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2584 -> 2745[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2585 -> 44[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2585[label="xuu660 < xuu670",fontsize=16,color="magenta"];2585 -> 2746[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2585 -> 2747[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2586 -> 45[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2586[label="xuu660 < xuu670",fontsize=16,color="magenta"];2586 -> 2748[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2586 -> 2749[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2587 -> 46[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2587[label="xuu660 < xuu670",fontsize=16,color="magenta"];2587 -> 2750[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2587 -> 2751[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2588 -> 47[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2588[label="xuu660 < xuu670",fontsize=16,color="magenta"];2588 -> 2752[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2588 -> 2753[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2589[label="xuu660",fontsize=16,color="green",shape="box"];2590[label="xuu670",fontsize=16,color="green",shape="box"];2591[label="xuu660",fontsize=16,color="green",shape="box"];2592[label="xuu670",fontsize=16,color="green",shape="box"];2593[label="xuu660",fontsize=16,color="green",shape="box"];2594[label="xuu670",fontsize=16,color="green",shape="box"];2595[label="xuu660",fontsize=16,color="green",shape="box"];2596[label="xuu670",fontsize=16,color="green",shape="box"];2597[label="xuu660",fontsize=16,color="green",shape="box"];2598[label="xuu670",fontsize=16,color="green",shape="box"];2599[label="xuu660",fontsize=16,color="green",shape="box"];2600[label="xuu670",fontsize=16,color="green",shape="box"];2601[label="xuu660",fontsize=16,color="green",shape="box"];2602[label="xuu670",fontsize=16,color="green",shape="box"];2603[label="xuu660",fontsize=16,color="green",shape="box"];2604[label="xuu670",fontsize=16,color="green",shape="box"];2605[label="xuu660",fontsize=16,color="green",shape="box"];2606[label="xuu670",fontsize=16,color="green",shape="box"];2607[label="xuu660",fontsize=16,color="green",shape="box"];2608[label="xuu670",fontsize=16,color="green",shape="box"];2609[label="xuu660",fontsize=16,color="green",shape="box"];2610[label="xuu670",fontsize=16,color="green",shape="box"];2611[label="xuu660",fontsize=16,color="green",shape="box"];2612[label="xuu670",fontsize=16,color="green",shape="box"];2613[label="xuu660",fontsize=16,color="green",shape="box"];2614[label="xuu670",fontsize=16,color="green",shape="box"];2615[label="xuu660",fontsize=16,color="green",shape="box"];2616[label="xuu670",fontsize=16,color="green",shape="box"];2617 -> 2030[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2617[label="xuu661 < xuu671 || xuu661 == xuu671 && xuu662 <= xuu672",fontsize=16,color="magenta"];2617 -> 2754[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2617 -> 2755[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2618[label="xuu660 == xuu670",fontsize=16,color="blue",shape="box"];3963[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3963[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3963 -> 2756[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3964[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3964[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3964 -> 2757[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3965[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3965[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3965 -> 2758[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3966[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3966[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3966 -> 2759[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3967[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3967[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3967 -> 2760[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3968[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3968[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3968 -> 2761[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3969[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3969[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3969 -> 2762[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3970[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3970[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3970 -> 2763[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3971[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3971[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3971 -> 2764[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3972[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3972[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3972 -> 2765[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3973[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3973[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3973 -> 2766[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3974[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3974[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3974 -> 2767[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3975[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3975[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3975 -> 2768[label="",style="solid", color="blue", weight=3]; 33.50/15.04 3976[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3976[label="",style="solid", color="blue", weight=9]; 33.50/15.04 3976 -> 2769[label="",style="solid", color="blue", weight=3]; 33.50/15.04 2619 -> 34[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2619[label="xuu660 < xuu670",fontsize=16,color="magenta"];2619 -> 2770[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2619 -> 2771[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2620 -> 35[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2620[label="xuu660 < xuu670",fontsize=16,color="magenta"];2620 -> 2772[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2620 -> 2773[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2621 -> 36[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2621[label="xuu660 < xuu670",fontsize=16,color="magenta"];2621 -> 2774[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2621 -> 2775[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2622 -> 37[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2622[label="xuu660 < xuu670",fontsize=16,color="magenta"];2622 -> 2776[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2622 -> 2777[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2623 -> 38[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2623[label="xuu660 < xuu670",fontsize=16,color="magenta"];2623 -> 2778[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2623 -> 2779[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2624 -> 39[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2624[label="xuu660 < xuu670",fontsize=16,color="magenta"];2624 -> 2780[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2624 -> 2781[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2625 -> 40[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2625[label="xuu660 < xuu670",fontsize=16,color="magenta"];2625 -> 2782[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2625 -> 2783[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2626 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2626[label="xuu660 < xuu670",fontsize=16,color="magenta"];2626 -> 2784[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2626 -> 2785[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2627 -> 42[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2627[label="xuu660 < xuu670",fontsize=16,color="magenta"];2627 -> 2786[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2627 -> 2787[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2628 -> 43[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2628[label="xuu660 < xuu670",fontsize=16,color="magenta"];2628 -> 2788[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2628 -> 2789[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2629 -> 44[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2629[label="xuu660 < xuu670",fontsize=16,color="magenta"];2629 -> 2790[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2629 -> 2791[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2630 -> 45[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2630[label="xuu660 < xuu670",fontsize=16,color="magenta"];2630 -> 2792[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2630 -> 2793[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2631 -> 46[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2631[label="xuu660 < xuu670",fontsize=16,color="magenta"];2631 -> 2794[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2631 -> 2795[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2632 -> 47[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2632[label="xuu660 < xuu670",fontsize=16,color="magenta"];2632 -> 2796[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2632 -> 2797[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2633[label="xuu660",fontsize=16,color="green",shape="box"];2634[label="xuu670",fontsize=16,color="green",shape="box"];2635[label="xuu660",fontsize=16,color="green",shape="box"];2636[label="xuu670",fontsize=16,color="green",shape="box"];2637[label="xuu660",fontsize=16,color="green",shape="box"];2638[label="xuu670",fontsize=16,color="green",shape="box"];2639[label="xuu660",fontsize=16,color="green",shape="box"];2640[label="xuu670",fontsize=16,color="green",shape="box"];2641[label="xuu660",fontsize=16,color="green",shape="box"];2642[label="xuu670",fontsize=16,color="green",shape="box"];2643[label="xuu660",fontsize=16,color="green",shape="box"];2644[label="xuu670",fontsize=16,color="green",shape="box"];2645[label="xuu660",fontsize=16,color="green",shape="box"];2646[label="xuu670",fontsize=16,color="green",shape="box"];2647[label="xuu660",fontsize=16,color="green",shape="box"];2648[label="xuu670",fontsize=16,color="green",shape="box"];2649[label="xuu660",fontsize=16,color="green",shape="box"];2650[label="xuu670",fontsize=16,color="green",shape="box"];2651[label="xuu660",fontsize=16,color="green",shape="box"];2652[label="xuu670",fontsize=16,color="green",shape="box"];2653[label="xuu660",fontsize=16,color="green",shape="box"];2654[label="xuu670",fontsize=16,color="green",shape="box"];2655[label="xuu660",fontsize=16,color="green",shape="box"];2656[label="xuu670",fontsize=16,color="green",shape="box"];2657[label="xuu660",fontsize=16,color="green",shape="box"];2658[label="xuu670",fontsize=16,color="green",shape="box"];2659[label="xuu660",fontsize=16,color="green",shape="box"];2660[label="xuu670",fontsize=16,color="green",shape="box"];2661[label="xuu660",fontsize=16,color="green",shape="box"];2662[label="xuu670",fontsize=16,color="green",shape="box"];2663[label="xuu660",fontsize=16,color="green",shape="box"];2664[label="xuu670",fontsize=16,color="green",shape="box"];2665[label="xuu660",fontsize=16,color="green",shape="box"];2666[label="xuu670",fontsize=16,color="green",shape="box"];2667[label="xuu660",fontsize=16,color="green",shape="box"];2668[label="xuu670",fontsize=16,color="green",shape="box"];2669[label="xuu660",fontsize=16,color="green",shape="box"];2670[label="xuu670",fontsize=16,color="green",shape="box"];2671[label="xuu660",fontsize=16,color="green",shape="box"];2672[label="xuu670",fontsize=16,color="green",shape="box"];2673[label="xuu660",fontsize=16,color="green",shape="box"];2674[label="xuu670",fontsize=16,color="green",shape="box"];2675[label="xuu660",fontsize=16,color="green",shape="box"];2676[label="xuu670",fontsize=16,color="green",shape="box"];2677[label="xuu660",fontsize=16,color="green",shape="box"];2678[label="xuu670",fontsize=16,color="green",shape="box"];2679[label="xuu660",fontsize=16,color="green",shape="box"];2680[label="xuu670",fontsize=16,color="green",shape="box"];2681[label="xuu660",fontsize=16,color="green",shape="box"];2682[label="xuu670",fontsize=16,color="green",shape="box"];2683[label="xuu660",fontsize=16,color="green",shape="box"];2684[label="xuu670",fontsize=16,color="green",shape="box"];2685[label="xuu660",fontsize=16,color="green",shape="box"];2686[label="xuu670",fontsize=16,color="green",shape="box"];2687[label="xuu660",fontsize=16,color="green",shape="box"];2688[label="xuu670",fontsize=16,color="green",shape="box"];2689[label="GT",fontsize=16,color="green",shape="box"];2690 -> 387[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2690[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2690 -> 2798[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2690 -> 2799[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2691 -> 898[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2691[label="FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2691 -> 2800[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2692[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 False",fontsize=16,color="black",shape="box"];2692 -> 2801[label="",style="solid", color="black", weight=3]; 33.50/15.04 2693[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2693 -> 2802[label="",style="solid", color="black", weight=3]; 33.50/15.04 2694[label="FiniteMap.mkBalBranch6Double_L xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="burlywood",shape="box"];3977[label="xuu213/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2694 -> 3977[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3977 -> 2803[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 3978[label="xuu213/FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134",fontsize=10,color="white",style="solid",shape="box"];2694 -> 3978[label="",style="solid", color="burlywood", weight=9]; 33.50/15.04 3978 -> 2804[label="",style="solid", color="burlywood", weight=3]; 33.50/15.04 2695 -> 526[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2695[label="FiniteMap.mkBranchResult xuu210 xuu211 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu44 xuu213) xuu214",fontsize=16,color="magenta"];2695 -> 2805[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2695 -> 2806[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2695 -> 2807[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2695 -> 2808[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2696[label="True",fontsize=16,color="green",shape="box"];2697[label="False",fontsize=16,color="green",shape="box"];2698 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2698[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2698 -> 2809[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2698 -> 2810[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2699 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2699[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2699 -> 2811[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2699 -> 2812[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2700 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2700[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2700 -> 2813[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2700 -> 2814[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2701 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2701[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2701 -> 2815[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2701 -> 2816[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2702 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2702[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2702 -> 2817[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2702 -> 2818[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2703 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2703[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2703 -> 2819[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2703 -> 2820[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2704 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2704[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2704 -> 2821[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2704 -> 2822[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2705 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2705[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2705 -> 2823[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2705 -> 2824[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2706 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2706[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2706 -> 2825[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2706 -> 2826[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2707 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2707[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2707 -> 2827[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2707 -> 2828[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2708 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2708[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2708 -> 2829[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2708 -> 2830[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2709 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2709[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2709 -> 2831[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2709 -> 2832[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2710 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2710[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2710 -> 2833[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2710 -> 2834[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2711 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2711[label="xuu661 <= xuu671",fontsize=16,color="magenta"];2711 -> 2835[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2711 -> 2836[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2712 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2712[label="xuu660 == xuu670",fontsize=16,color="magenta"];2712 -> 2837[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2712 -> 2838[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2713 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2713[label="xuu660 == xuu670",fontsize=16,color="magenta"];2713 -> 2839[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2713 -> 2840[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2714 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2714[label="xuu660 == xuu670",fontsize=16,color="magenta"];2714 -> 2841[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2714 -> 2842[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2715 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2715[label="xuu660 == xuu670",fontsize=16,color="magenta"];2715 -> 2843[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2715 -> 2844[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2716 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2716[label="xuu660 == xuu670",fontsize=16,color="magenta"];2716 -> 2845[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2716 -> 2846[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2717 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2717[label="xuu660 == xuu670",fontsize=16,color="magenta"];2717 -> 2847[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2717 -> 2848[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2718 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2718[label="xuu660 == xuu670",fontsize=16,color="magenta"];2718 -> 2849[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2718 -> 2850[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2719 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2719[label="xuu660 == xuu670",fontsize=16,color="magenta"];2719 -> 2851[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2719 -> 2852[label="",style="dashed", color="magenta", weight=3]; 33.50/15.04 2720 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.04 2720[label="xuu660 == xuu670",fontsize=16,color="magenta"];2720 -> 2853[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2720 -> 2854[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2721 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2721[label="xuu660 == xuu670",fontsize=16,color="magenta"];2721 -> 2855[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2721 -> 2856[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2722 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2722[label="xuu660 == xuu670",fontsize=16,color="magenta"];2722 -> 2857[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2722 -> 2858[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2723 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2723[label="xuu660 == xuu670",fontsize=16,color="magenta"];2723 -> 2859[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2723 -> 2860[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2724 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2724[label="xuu660 == xuu670",fontsize=16,color="magenta"];2724 -> 2861[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2724 -> 2862[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2725 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2725[label="xuu660 == xuu670",fontsize=16,color="magenta"];2725 -> 2863[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2725 -> 2864[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2726[label="xuu670",fontsize=16,color="green",shape="box"];2727[label="xuu660",fontsize=16,color="green",shape="box"];2728[label="xuu670",fontsize=16,color="green",shape="box"];2729[label="xuu660",fontsize=16,color="green",shape="box"];2730[label="xuu670",fontsize=16,color="green",shape="box"];2731[label="xuu660",fontsize=16,color="green",shape="box"];2732[label="xuu670",fontsize=16,color="green",shape="box"];2733[label="xuu660",fontsize=16,color="green",shape="box"];2734[label="xuu670",fontsize=16,color="green",shape="box"];2735[label="xuu660",fontsize=16,color="green",shape="box"];2736[label="xuu670",fontsize=16,color="green",shape="box"];2737[label="xuu660",fontsize=16,color="green",shape="box"];2738[label="xuu670",fontsize=16,color="green",shape="box"];2739[label="xuu660",fontsize=16,color="green",shape="box"];2740[label="xuu670",fontsize=16,color="green",shape="box"];2741[label="xuu660",fontsize=16,color="green",shape="box"];2742[label="xuu670",fontsize=16,color="green",shape="box"];2743[label="xuu660",fontsize=16,color="green",shape="box"];2744[label="xuu670",fontsize=16,color="green",shape="box"];2745[label="xuu660",fontsize=16,color="green",shape="box"];2746[label="xuu670",fontsize=16,color="green",shape="box"];2747[label="xuu660",fontsize=16,color="green",shape="box"];2748[label="xuu670",fontsize=16,color="green",shape="box"];2749[label="xuu660",fontsize=16,color="green",shape="box"];2750[label="xuu670",fontsize=16,color="green",shape="box"];2751[label="xuu660",fontsize=16,color="green",shape="box"];2752[label="xuu670",fontsize=16,color="green",shape="box"];2753[label="xuu660",fontsize=16,color="green",shape="box"];2754 -> 1021[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2754[label="xuu661 == xuu671 && xuu662 <= xuu672",fontsize=16,color="magenta"];2754 -> 2865[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2754 -> 2866[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2755[label="xuu661 < xuu671",fontsize=16,color="blue",shape="box"];3979[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3979[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3979 -> 2867[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3980[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3980[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3980 -> 2868[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3981[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3981[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3981 -> 2869[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3982[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3982[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3982 -> 2870[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3983[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3983[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3983 -> 2871[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3984[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3984[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3984 -> 2872[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3985[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3985[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3985 -> 2873[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3986[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3986[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3986 -> 2874[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3987[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3987[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3987 -> 2875[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3988[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3988[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3988 -> 2876[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3989[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3989[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3989 -> 2877[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3990[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3990[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3990 -> 2878[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3991[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3991[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3991 -> 2879[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3992[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2755 -> 3992[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3992 -> 2880[label="",style="solid", color="blue", weight=3]; 33.50/15.05 2756 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2756[label="xuu660 == xuu670",fontsize=16,color="magenta"];2756 -> 2881[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2756 -> 2882[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2757 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2757[label="xuu660 == xuu670",fontsize=16,color="magenta"];2757 -> 2883[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2757 -> 2884[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2758 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2758[label="xuu660 == xuu670",fontsize=16,color="magenta"];2758 -> 2885[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2758 -> 2886[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2759 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2759[label="xuu660 == xuu670",fontsize=16,color="magenta"];2759 -> 2887[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2759 -> 2888[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2760 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2760[label="xuu660 == xuu670",fontsize=16,color="magenta"];2760 -> 2889[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2760 -> 2890[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2761 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2761[label="xuu660 == xuu670",fontsize=16,color="magenta"];2761 -> 2891[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2761 -> 2892[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2762 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2762[label="xuu660 == xuu670",fontsize=16,color="magenta"];2762 -> 2893[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2762 -> 2894[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2763 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2763[label="xuu660 == xuu670",fontsize=16,color="magenta"];2763 -> 2895[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2763 -> 2896[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2764 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2764[label="xuu660 == xuu670",fontsize=16,color="magenta"];2764 -> 2897[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2764 -> 2898[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2765 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2765[label="xuu660 == xuu670",fontsize=16,color="magenta"];2765 -> 2899[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2765 -> 2900[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2766 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2766[label="xuu660 == xuu670",fontsize=16,color="magenta"];2766 -> 2901[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2766 -> 2902[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2767 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2767[label="xuu660 == xuu670",fontsize=16,color="magenta"];2767 -> 2903[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2767 -> 2904[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2768 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2768[label="xuu660 == xuu670",fontsize=16,color="magenta"];2768 -> 2905[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2768 -> 2906[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2769 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2769[label="xuu660 == xuu670",fontsize=16,color="magenta"];2769 -> 2907[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2769 -> 2908[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2770[label="xuu670",fontsize=16,color="green",shape="box"];2771[label="xuu660",fontsize=16,color="green",shape="box"];2772[label="xuu670",fontsize=16,color="green",shape="box"];2773[label="xuu660",fontsize=16,color="green",shape="box"];2774[label="xuu670",fontsize=16,color="green",shape="box"];2775[label="xuu660",fontsize=16,color="green",shape="box"];2776[label="xuu670",fontsize=16,color="green",shape="box"];2777[label="xuu660",fontsize=16,color="green",shape="box"];2778[label="xuu670",fontsize=16,color="green",shape="box"];2779[label="xuu660",fontsize=16,color="green",shape="box"];2780[label="xuu670",fontsize=16,color="green",shape="box"];2781[label="xuu660",fontsize=16,color="green",shape="box"];2782[label="xuu670",fontsize=16,color="green",shape="box"];2783[label="xuu660",fontsize=16,color="green",shape="box"];2784[label="xuu670",fontsize=16,color="green",shape="box"];2785[label="xuu660",fontsize=16,color="green",shape="box"];2786[label="xuu670",fontsize=16,color="green",shape="box"];2787[label="xuu660",fontsize=16,color="green",shape="box"];2788[label="xuu670",fontsize=16,color="green",shape="box"];2789[label="xuu660",fontsize=16,color="green",shape="box"];2790[label="xuu670",fontsize=16,color="green",shape="box"];2791[label="xuu660",fontsize=16,color="green",shape="box"];2792[label="xuu670",fontsize=16,color="green",shape="box"];2793[label="xuu660",fontsize=16,color="green",shape="box"];2794[label="xuu670",fontsize=16,color="green",shape="box"];2795[label="xuu660",fontsize=16,color="green",shape="box"];2796[label="xuu670",fontsize=16,color="green",shape="box"];2797[label="xuu660",fontsize=16,color="green",shape="box"];2798[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2799 -> 898[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2799[label="FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2799 -> 2909[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2800[label="xuu444",fontsize=16,color="green",shape="box"];2801[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 otherwise",fontsize=16,color="black",shape="box"];2801 -> 2910[label="",style="solid", color="black", weight=3]; 33.50/15.05 2802[label="FiniteMap.mkBalBranch6Single_R xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21",fontsize=16,color="black",shape="box"];2802 -> 2911[label="",style="solid", color="black", weight=3]; 33.50/15.05 2803[label="FiniteMap.mkBalBranch6Double_L xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214)",fontsize=16,color="black",shape="box"];2803 -> 2912[label="",style="solid", color="black", weight=3]; 33.50/15.05 2804[label="FiniteMap.mkBalBranch6Double_L xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214)",fontsize=16,color="black",shape="box"];2804 -> 2913[label="",style="solid", color="black", weight=3]; 33.50/15.05 2805[label="xuu210",fontsize=16,color="green",shape="box"];2806[label="xuu211",fontsize=16,color="green",shape="box"];2807[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu44 xuu213",fontsize=16,color="black",shape="box"];2807 -> 2914[label="",style="solid", color="black", weight=3]; 33.50/15.05 2808[label="xuu214",fontsize=16,color="green",shape="box"];2809[label="xuu661",fontsize=16,color="green",shape="box"];2810[label="xuu671",fontsize=16,color="green",shape="box"];2811[label="xuu661",fontsize=16,color="green",shape="box"];2812[label="xuu671",fontsize=16,color="green",shape="box"];2813[label="xuu661",fontsize=16,color="green",shape="box"];2814[label="xuu671",fontsize=16,color="green",shape="box"];2815[label="xuu661",fontsize=16,color="green",shape="box"];2816[label="xuu671",fontsize=16,color="green",shape="box"];2817[label="xuu661",fontsize=16,color="green",shape="box"];2818[label="xuu671",fontsize=16,color="green",shape="box"];2819[label="xuu661",fontsize=16,color="green",shape="box"];2820[label="xuu671",fontsize=16,color="green",shape="box"];2821[label="xuu661",fontsize=16,color="green",shape="box"];2822[label="xuu671",fontsize=16,color="green",shape="box"];2823[label="xuu661",fontsize=16,color="green",shape="box"];2824[label="xuu671",fontsize=16,color="green",shape="box"];2825[label="xuu661",fontsize=16,color="green",shape="box"];2826[label="xuu671",fontsize=16,color="green",shape="box"];2827[label="xuu661",fontsize=16,color="green",shape="box"];2828[label="xuu671",fontsize=16,color="green",shape="box"];2829[label="xuu661",fontsize=16,color="green",shape="box"];2830[label="xuu671",fontsize=16,color="green",shape="box"];2831[label="xuu661",fontsize=16,color="green",shape="box"];2832[label="xuu671",fontsize=16,color="green",shape="box"];2833[label="xuu661",fontsize=16,color="green",shape="box"];2834[label="xuu671",fontsize=16,color="green",shape="box"];2835[label="xuu661",fontsize=16,color="green",shape="box"];2836[label="xuu671",fontsize=16,color="green",shape="box"];2837[label="xuu660",fontsize=16,color="green",shape="box"];2838[label="xuu670",fontsize=16,color="green",shape="box"];2839[label="xuu660",fontsize=16,color="green",shape="box"];2840[label="xuu670",fontsize=16,color="green",shape="box"];2841[label="xuu660",fontsize=16,color="green",shape="box"];2842[label="xuu670",fontsize=16,color="green",shape="box"];2843[label="xuu660",fontsize=16,color="green",shape="box"];2844[label="xuu670",fontsize=16,color="green",shape="box"];2845[label="xuu660",fontsize=16,color="green",shape="box"];2846[label="xuu670",fontsize=16,color="green",shape="box"];2847[label="xuu660",fontsize=16,color="green",shape="box"];2848[label="xuu670",fontsize=16,color="green",shape="box"];2849[label="xuu660",fontsize=16,color="green",shape="box"];2850[label="xuu670",fontsize=16,color="green",shape="box"];2851[label="xuu660",fontsize=16,color="green",shape="box"];2852[label="xuu670",fontsize=16,color="green",shape="box"];2853[label="xuu660",fontsize=16,color="green",shape="box"];2854[label="xuu670",fontsize=16,color="green",shape="box"];2855[label="xuu660",fontsize=16,color="green",shape="box"];2856[label="xuu670",fontsize=16,color="green",shape="box"];2857[label="xuu660",fontsize=16,color="green",shape="box"];2858[label="xuu670",fontsize=16,color="green",shape="box"];2859[label="xuu660",fontsize=16,color="green",shape="box"];2860[label="xuu670",fontsize=16,color="green",shape="box"];2861[label="xuu660",fontsize=16,color="green",shape="box"];2862[label="xuu670",fontsize=16,color="green",shape="box"];2863[label="xuu660",fontsize=16,color="green",shape="box"];2864[label="xuu670",fontsize=16,color="green",shape="box"];2865[label="xuu662 <= xuu672",fontsize=16,color="blue",shape="box"];3993[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3993[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3993 -> 2915[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3994[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3994[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3994 -> 2916[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3995[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3995[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3995 -> 2917[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3996[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3996[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3996 -> 2918[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3997[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3997[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3997 -> 2919[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3998[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3998[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3998 -> 2920[label="",style="solid", color="blue", weight=3]; 33.50/15.05 3999[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 3999[label="",style="solid", color="blue", weight=9]; 33.50/15.05 3999 -> 2921[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4000[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4000[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4000 -> 2922[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4001[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4001[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4001 -> 2923[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4002[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4002[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4002 -> 2924[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4003[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4003[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4003 -> 2925[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4004[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4004[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4004 -> 2926[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4005[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4005[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4005 -> 2927[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4006[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4006[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4006 -> 2928[label="",style="solid", color="blue", weight=3]; 33.50/15.05 2866[label="xuu661 == xuu671",fontsize=16,color="blue",shape="box"];4007[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4007[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4007 -> 2929[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4008[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4008[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4008 -> 2930[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4009[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4009[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4009 -> 2931[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4010[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4010[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4010 -> 2932[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4011[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4011[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4011 -> 2933[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4012[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4012[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4012 -> 2934[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4013[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4013[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4013 -> 2935[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4014[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4014[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4014 -> 2936[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4015[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4015[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4015 -> 2937[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4016[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4016[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4016 -> 2938[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4017[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4017[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4017 -> 2939[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4018[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4018[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4018 -> 2940[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4019[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4019[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4019 -> 2941[label="",style="solid", color="blue", weight=3]; 33.50/15.05 4020[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4020[label="",style="solid", color="blue", weight=9]; 33.50/15.05 4020 -> 2942[label="",style="solid", color="blue", weight=3]; 33.50/15.05 2867 -> 34[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2867[label="xuu661 < xuu671",fontsize=16,color="magenta"];2867 -> 2943[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2867 -> 2944[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2868 -> 35[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2868[label="xuu661 < xuu671",fontsize=16,color="magenta"];2868 -> 2945[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2868 -> 2946[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2869 -> 36[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2869[label="xuu661 < xuu671",fontsize=16,color="magenta"];2869 -> 2947[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2869 -> 2948[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2870 -> 37[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2870[label="xuu661 < xuu671",fontsize=16,color="magenta"];2870 -> 2949[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2870 -> 2950[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2871 -> 38[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2871[label="xuu661 < xuu671",fontsize=16,color="magenta"];2871 -> 2951[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2871 -> 2952[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2872 -> 39[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2872[label="xuu661 < xuu671",fontsize=16,color="magenta"];2872 -> 2953[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2872 -> 2954[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2873 -> 40[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2873[label="xuu661 < xuu671",fontsize=16,color="magenta"];2873 -> 2955[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2873 -> 2956[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2874 -> 41[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2874[label="xuu661 < xuu671",fontsize=16,color="magenta"];2874 -> 2957[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2874 -> 2958[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2875 -> 42[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2875[label="xuu661 < xuu671",fontsize=16,color="magenta"];2875 -> 2959[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2875 -> 2960[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2876 -> 43[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2876[label="xuu661 < xuu671",fontsize=16,color="magenta"];2876 -> 2961[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2876 -> 2962[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2877 -> 44[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2877[label="xuu661 < xuu671",fontsize=16,color="magenta"];2877 -> 2963[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2877 -> 2964[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2878 -> 45[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2878[label="xuu661 < xuu671",fontsize=16,color="magenta"];2878 -> 2965[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2878 -> 2966[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2879 -> 46[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2879[label="xuu661 < xuu671",fontsize=16,color="magenta"];2879 -> 2967[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2879 -> 2968[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2880 -> 47[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2880[label="xuu661 < xuu671",fontsize=16,color="magenta"];2880 -> 2969[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2880 -> 2970[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2881[label="xuu660",fontsize=16,color="green",shape="box"];2882[label="xuu670",fontsize=16,color="green",shape="box"];2883[label="xuu660",fontsize=16,color="green",shape="box"];2884[label="xuu670",fontsize=16,color="green",shape="box"];2885[label="xuu660",fontsize=16,color="green",shape="box"];2886[label="xuu670",fontsize=16,color="green",shape="box"];2887[label="xuu660",fontsize=16,color="green",shape="box"];2888[label="xuu670",fontsize=16,color="green",shape="box"];2889[label="xuu660",fontsize=16,color="green",shape="box"];2890[label="xuu670",fontsize=16,color="green",shape="box"];2891[label="xuu660",fontsize=16,color="green",shape="box"];2892[label="xuu670",fontsize=16,color="green",shape="box"];2893[label="xuu660",fontsize=16,color="green",shape="box"];2894[label="xuu670",fontsize=16,color="green",shape="box"];2895[label="xuu660",fontsize=16,color="green",shape="box"];2896[label="xuu670",fontsize=16,color="green",shape="box"];2897[label="xuu660",fontsize=16,color="green",shape="box"];2898[label="xuu670",fontsize=16,color="green",shape="box"];2899[label="xuu660",fontsize=16,color="green",shape="box"];2900[label="xuu670",fontsize=16,color="green",shape="box"];2901[label="xuu660",fontsize=16,color="green",shape="box"];2902[label="xuu670",fontsize=16,color="green",shape="box"];2903[label="xuu660",fontsize=16,color="green",shape="box"];2904[label="xuu670",fontsize=16,color="green",shape="box"];2905[label="xuu660",fontsize=16,color="green",shape="box"];2906[label="xuu670",fontsize=16,color="green",shape="box"];2907[label="xuu660",fontsize=16,color="green",shape="box"];2908[label="xuu670",fontsize=16,color="green",shape="box"];2909[label="xuu443",fontsize=16,color="green",shape="box"];2910[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2910 -> 2971[label="",style="solid", color="black", weight=3]; 33.50/15.05 2911 -> 3052[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2911[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu440 xuu441 xuu443 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xuu17 xuu18 xuu444 xuu21)",fontsize=16,color="magenta"];2911 -> 3053[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2911 -> 3054[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2911 -> 3055[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2911 -> 3056[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2911 -> 3057[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2911 -> 3058[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2911 -> 3059[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2911 -> 3060[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2911 -> 3061[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2912[label="error []",fontsize=16,color="red",shape="box"];2913 -> 3052[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2913[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu2130 xuu2131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu17 xuu18 xuu44 xuu2133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu210 xuu211 xuu2134 xuu214)",fontsize=16,color="magenta"];2913 -> 3062[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2913 -> 3063[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2913 -> 3064[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2913 -> 3065[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2913 -> 3066[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2913 -> 3067[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2913 -> 3068[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2913 -> 3069[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2913 -> 3070[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2914 -> 526[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2914[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu44 xuu213",fontsize=16,color="magenta"];2914 -> 2993[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2915 -> 1400[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2915[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2915 -> 2994[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2915 -> 2995[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2916 -> 1401[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2916[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2916 -> 2996[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2916 -> 2997[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2917 -> 1402[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2917[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2917 -> 2998[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2917 -> 2999[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2918 -> 1403[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2918[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2918 -> 3000[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2918 -> 3001[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2919 -> 1404[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2919[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2919 -> 3002[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2919 -> 3003[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2920 -> 1405[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2920[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2920 -> 3004[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2920 -> 3005[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2921 -> 1406[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2921[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2921 -> 3006[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2921 -> 3007[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2922 -> 1407[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2922[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2922 -> 3008[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2922 -> 3009[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2923 -> 1408[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2923[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2923 -> 3010[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2923 -> 3011[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2924 -> 1409[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2924[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2924 -> 3012[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2924 -> 3013[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2925 -> 1410[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2925[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2925 -> 3014[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2925 -> 3015[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2926 -> 1411[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2926[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2926 -> 3016[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2926 -> 3017[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2927 -> 1412[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2927[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2927 -> 3018[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2927 -> 3019[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2928 -> 1413[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2928[label="xuu662 <= xuu672",fontsize=16,color="magenta"];2928 -> 3020[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2928 -> 3021[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2929 -> 540[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2929[label="xuu661 == xuu671",fontsize=16,color="magenta"];2929 -> 3022[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2929 -> 3023[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2930 -> 533[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2930[label="xuu661 == xuu671",fontsize=16,color="magenta"];2930 -> 3024[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2930 -> 3025[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2931 -> 535[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2931[label="xuu661 == xuu671",fontsize=16,color="magenta"];2931 -> 3026[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2931 -> 3027[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2932 -> 541[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2932[label="xuu661 == xuu671",fontsize=16,color="magenta"];2932 -> 3028[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2932 -> 3029[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2933 -> 536[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2933[label="xuu661 == xuu671",fontsize=16,color="magenta"];2933 -> 3030[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2933 -> 3031[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2934 -> 530[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2934[label="xuu661 == xuu671",fontsize=16,color="magenta"];2934 -> 3032[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2934 -> 3033[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2935 -> 537[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2935[label="xuu661 == xuu671",fontsize=16,color="magenta"];2935 -> 3034[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2935 -> 3035[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2936 -> 543[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2936[label="xuu661 == xuu671",fontsize=16,color="magenta"];2936 -> 3036[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2936 -> 3037[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2937 -> 539[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2937[label="xuu661 == xuu671",fontsize=16,color="magenta"];2937 -> 3038[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2937 -> 3039[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2938 -> 538[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2938[label="xuu661 == xuu671",fontsize=16,color="magenta"];2938 -> 3040[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2938 -> 3041[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2939 -> 542[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2939[label="xuu661 == xuu671",fontsize=16,color="magenta"];2939 -> 3042[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2939 -> 3043[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2940 -> 532[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2940[label="xuu661 == xuu671",fontsize=16,color="magenta"];2940 -> 3044[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2940 -> 3045[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2941 -> 534[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2941[label="xuu661 == xuu671",fontsize=16,color="magenta"];2941 -> 3046[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2941 -> 3047[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2942 -> 531[label="",style="dashed", color="red", weight=0]; 33.50/15.05 2942[label="xuu661 == xuu671",fontsize=16,color="magenta"];2942 -> 3048[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2942 -> 3049[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 2943[label="xuu671",fontsize=16,color="green",shape="box"];2944[label="xuu661",fontsize=16,color="green",shape="box"];2945[label="xuu671",fontsize=16,color="green",shape="box"];2946[label="xuu661",fontsize=16,color="green",shape="box"];2947[label="xuu671",fontsize=16,color="green",shape="box"];2948[label="xuu661",fontsize=16,color="green",shape="box"];2949[label="xuu671",fontsize=16,color="green",shape="box"];2950[label="xuu661",fontsize=16,color="green",shape="box"];2951[label="xuu671",fontsize=16,color="green",shape="box"];2952[label="xuu661",fontsize=16,color="green",shape="box"];2953[label="xuu671",fontsize=16,color="green",shape="box"];2954[label="xuu661",fontsize=16,color="green",shape="box"];2955[label="xuu671",fontsize=16,color="green",shape="box"];2956[label="xuu661",fontsize=16,color="green",shape="box"];2957[label="xuu671",fontsize=16,color="green",shape="box"];2958[label="xuu661",fontsize=16,color="green",shape="box"];2959[label="xuu671",fontsize=16,color="green",shape="box"];2960[label="xuu661",fontsize=16,color="green",shape="box"];2961[label="xuu671",fontsize=16,color="green",shape="box"];2962[label="xuu661",fontsize=16,color="green",shape="box"];2963[label="xuu671",fontsize=16,color="green",shape="box"];2964[label="xuu661",fontsize=16,color="green",shape="box"];2965[label="xuu671",fontsize=16,color="green",shape="box"];2966[label="xuu661",fontsize=16,color="green",shape="box"];2967[label="xuu671",fontsize=16,color="green",shape="box"];2968[label="xuu661",fontsize=16,color="green",shape="box"];2969[label="xuu671",fontsize=16,color="green",shape="box"];2970[label="xuu661",fontsize=16,color="green",shape="box"];2971[label="FiniteMap.mkBalBranch6Double_R xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21",fontsize=16,color="burlywood",shape="box"];4021[label="xuu444/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4021[label="",style="solid", color="burlywood", weight=9]; 33.50/15.05 4021 -> 3050[label="",style="solid", color="burlywood", weight=3]; 33.50/15.05 4022[label="xuu444/FiniteMap.Branch xuu4440 xuu4441 xuu4442 xuu4443 xuu4444",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4022[label="",style="solid", color="burlywood", weight=9]; 33.50/15.05 4022 -> 3051[label="",style="solid", color="burlywood", weight=3]; 33.50/15.05 3053[label="xuu441",fontsize=16,color="green",shape="box"];3054[label="xuu444",fontsize=16,color="green",shape="box"];3055[label="xuu440",fontsize=16,color="green",shape="box"];3056[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3057[label="xuu443",fontsize=16,color="green",shape="box"];3058[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3059[label="xuu21",fontsize=16,color="green",shape="box"];3060[label="xuu17",fontsize=16,color="green",shape="box"];3061[label="xuu18",fontsize=16,color="green",shape="box"];3052[label="FiniteMap.mkBranch (Pos (Succ xuu229)) xuu230 xuu231 xuu232 (FiniteMap.mkBranch (Pos (Succ xuu233)) xuu234 xuu235 xuu236 xuu237)",fontsize=16,color="black",shape="triangle"];3052 -> 3089[label="",style="solid", color="black", weight=3]; 33.50/15.05 3062[label="xuu2131",fontsize=16,color="green",shape="box"];3063[label="xuu2134",fontsize=16,color="green",shape="box"];3064[label="xuu2130",fontsize=16,color="green",shape="box"];3065[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3066[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu17 xuu18 xuu44 xuu2133",fontsize=16,color="black",shape="box"];3066 -> 3090[label="",style="solid", color="black", weight=3]; 33.50/15.05 3067[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3068[label="xuu214",fontsize=16,color="green",shape="box"];3069[label="xuu210",fontsize=16,color="green",shape="box"];3070[label="xuu211",fontsize=16,color="green",shape="box"];2993[label="xuu213",fontsize=16,color="green",shape="box"];2994[label="xuu662",fontsize=16,color="green",shape="box"];2995[label="xuu672",fontsize=16,color="green",shape="box"];2996[label="xuu662",fontsize=16,color="green",shape="box"];2997[label="xuu672",fontsize=16,color="green",shape="box"];2998[label="xuu662",fontsize=16,color="green",shape="box"];2999[label="xuu672",fontsize=16,color="green",shape="box"];3000[label="xuu662",fontsize=16,color="green",shape="box"];3001[label="xuu672",fontsize=16,color="green",shape="box"];3002[label="xuu662",fontsize=16,color="green",shape="box"];3003[label="xuu672",fontsize=16,color="green",shape="box"];3004[label="xuu662",fontsize=16,color="green",shape="box"];3005[label="xuu672",fontsize=16,color="green",shape="box"];3006[label="xuu662",fontsize=16,color="green",shape="box"];3007[label="xuu672",fontsize=16,color="green",shape="box"];3008[label="xuu662",fontsize=16,color="green",shape="box"];3009[label="xuu672",fontsize=16,color="green",shape="box"];3010[label="xuu662",fontsize=16,color="green",shape="box"];3011[label="xuu672",fontsize=16,color="green",shape="box"];3012[label="xuu662",fontsize=16,color="green",shape="box"];3013[label="xuu672",fontsize=16,color="green",shape="box"];3014[label="xuu662",fontsize=16,color="green",shape="box"];3015[label="xuu672",fontsize=16,color="green",shape="box"];3016[label="xuu662",fontsize=16,color="green",shape="box"];3017[label="xuu672",fontsize=16,color="green",shape="box"];3018[label="xuu662",fontsize=16,color="green",shape="box"];3019[label="xuu672",fontsize=16,color="green",shape="box"];3020[label="xuu662",fontsize=16,color="green",shape="box"];3021[label="xuu672",fontsize=16,color="green",shape="box"];3022[label="xuu661",fontsize=16,color="green",shape="box"];3023[label="xuu671",fontsize=16,color="green",shape="box"];3024[label="xuu661",fontsize=16,color="green",shape="box"];3025[label="xuu671",fontsize=16,color="green",shape="box"];3026[label="xuu661",fontsize=16,color="green",shape="box"];3027[label="xuu671",fontsize=16,color="green",shape="box"];3028[label="xuu661",fontsize=16,color="green",shape="box"];3029[label="xuu671",fontsize=16,color="green",shape="box"];3030[label="xuu661",fontsize=16,color="green",shape="box"];3031[label="xuu671",fontsize=16,color="green",shape="box"];3032[label="xuu661",fontsize=16,color="green",shape="box"];3033[label="xuu671",fontsize=16,color="green",shape="box"];3034[label="xuu661",fontsize=16,color="green",shape="box"];3035[label="xuu671",fontsize=16,color="green",shape="box"];3036[label="xuu661",fontsize=16,color="green",shape="box"];3037[label="xuu671",fontsize=16,color="green",shape="box"];3038[label="xuu661",fontsize=16,color="green",shape="box"];3039[label="xuu671",fontsize=16,color="green",shape="box"];3040[label="xuu661",fontsize=16,color="green",shape="box"];3041[label="xuu671",fontsize=16,color="green",shape="box"];3042[label="xuu661",fontsize=16,color="green",shape="box"];3043[label="xuu671",fontsize=16,color="green",shape="box"];3044[label="xuu661",fontsize=16,color="green",shape="box"];3045[label="xuu671",fontsize=16,color="green",shape="box"];3046[label="xuu661",fontsize=16,color="green",shape="box"];3047[label="xuu671",fontsize=16,color="green",shape="box"];3048[label="xuu661",fontsize=16,color="green",shape="box"];3049[label="xuu671",fontsize=16,color="green",shape="box"];3050[label="FiniteMap.mkBalBranch6Double_R xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 FiniteMap.EmptyFM) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 FiniteMap.EmptyFM) xuu21",fontsize=16,color="black",shape="box"];3050 -> 3091[label="",style="solid", color="black", weight=3]; 33.50/15.05 3051[label="FiniteMap.mkBalBranch6Double_R xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 (FiniteMap.Branch xuu4440 xuu4441 xuu4442 xuu4443 xuu4444)) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 (FiniteMap.Branch xuu4440 xuu4441 xuu4442 xuu4443 xuu4444)) xuu21",fontsize=16,color="black",shape="box"];3051 -> 3092[label="",style="solid", color="black", weight=3]; 33.50/15.05 3089 -> 526[label="",style="dashed", color="red", weight=0]; 33.50/15.05 3089[label="FiniteMap.mkBranchResult xuu230 xuu231 xuu232 (FiniteMap.mkBranch (Pos (Succ xuu233)) xuu234 xuu235 xuu236 xuu237)",fontsize=16,color="magenta"];3089 -> 3093[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3089 -> 3094[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3089 -> 3095[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3089 -> 3096[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3090 -> 526[label="",style="dashed", color="red", weight=0]; 33.50/15.05 3090[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu44 xuu2133",fontsize=16,color="magenta"];3090 -> 3097[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3091[label="error []",fontsize=16,color="red",shape="box"];3092 -> 3052[label="",style="dashed", color="red", weight=0]; 33.50/15.05 3092[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4440 xuu4441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu440 xuu441 xuu443 xuu4443) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xuu17 xuu18 xuu4444 xuu21)",fontsize=16,color="magenta"];3092 -> 3098[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3092 -> 3099[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3092 -> 3100[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3092 -> 3101[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3092 -> 3102[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3092 -> 3103[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3092 -> 3104[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3092 -> 3105[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3092 -> 3106[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3093[label="xuu230",fontsize=16,color="green",shape="box"];3094[label="xuu231",fontsize=16,color="green",shape="box"];3095[label="xuu232",fontsize=16,color="green",shape="box"];3096[label="FiniteMap.mkBranch (Pos (Succ xuu233)) xuu234 xuu235 xuu236 xuu237",fontsize=16,color="black",shape="triangle"];3096 -> 3107[label="",style="solid", color="black", weight=3]; 33.50/15.05 3097[label="xuu2133",fontsize=16,color="green",shape="box"];3098[label="xuu4441",fontsize=16,color="green",shape="box"];3099[label="xuu4444",fontsize=16,color="green",shape="box"];3100[label="xuu4440",fontsize=16,color="green",shape="box"];3101[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3102 -> 3096[label="",style="dashed", color="red", weight=0]; 33.50/15.05 3102[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu440 xuu441 xuu443 xuu4443",fontsize=16,color="magenta"];3102 -> 3108[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3102 -> 3109[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3102 -> 3110[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3102 -> 3111[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3102 -> 3112[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3103[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3104[label="xuu21",fontsize=16,color="green",shape="box"];3105[label="xuu17",fontsize=16,color="green",shape="box"];3106[label="xuu18",fontsize=16,color="green",shape="box"];3107 -> 526[label="",style="dashed", color="red", weight=0]; 33.50/15.05 3107[label="FiniteMap.mkBranchResult xuu234 xuu235 xuu236 xuu237",fontsize=16,color="magenta"];3107 -> 3113[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3107 -> 3114[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3107 -> 3115[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3107 -> 3116[label="",style="dashed", color="magenta", weight=3]; 33.50/15.05 3108[label="xuu443",fontsize=16,color="green",shape="box"];3109[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3110[label="xuu4443",fontsize=16,color="green",shape="box"];3111[label="xuu440",fontsize=16,color="green",shape="box"];3112[label="xuu441",fontsize=16,color="green",shape="box"];3113[label="xuu234",fontsize=16,color="green",shape="box"];3114[label="xuu235",fontsize=16,color="green",shape="box"];3115[label="xuu236",fontsize=16,color="green",shape="box"];3116[label="xuu237",fontsize=16,color="green",shape="box"];} 33.50/15.05 33.50/15.05 ---------------------------------------- 33.50/15.05 33.50/15.05 (16) 33.50/15.05 Complex Obligation (AND) 33.50/15.05 33.50/15.05 ---------------------------------------- 33.50/15.05 33.50/15.05 (17) 33.50/15.05 Obligation: 33.50/15.05 Q DP problem: 33.50/15.05 The TRS P consists of the following rules: 33.50/15.05 33.50/15.05 new_primCmpNat(Succ(xuu50000), Succ(xuu4000)) -> new_primCmpNat(xuu50000, xuu4000) 33.50/15.05 33.50/15.05 R is empty. 33.50/15.05 Q is empty. 33.50/15.05 We have to consider all minimal (P,Q,R)-chains. 33.50/15.05 ---------------------------------------- 33.50/15.05 33.50/15.05 (18) QDPSizeChangeProof (EQUIVALENT) 33.50/15.05 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. 33.50/15.05 33.50/15.05 From the DPs we obtained the following set of size-change graphs: 33.50/15.05 *new_primCmpNat(Succ(xuu50000), Succ(xuu4000)) -> new_primCmpNat(xuu50000, xuu4000) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2 33.50/15.05 33.50/15.05 33.50/15.05 ---------------------------------------- 33.50/15.05 33.50/15.05 (19) 33.50/15.05 YES 33.50/15.05 33.50/15.05 ---------------------------------------- 33.50/15.05 33.50/15.05 (20) 33.50/15.05 Obligation: 33.50/15.05 Q DP problem: 33.50/15.05 The TRS P consists of the following rules: 33.50/15.05 33.50/15.05 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(xuu50000, xuu4000, ce, cf) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_Maybe, fd), fa) -> new_esEs1(xuu50000, xuu4000, fd) 33.50/15.05 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), hc) -> new_esEs2(xuu50001, xuu4001, hc) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(ty_Maybe, eb)) -> new_esEs1(xuu50001, xuu4001, eb) 33.50/15.05 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_@2, hf), hg)) -> new_esEs0(xuu50000, xuu4000, hf, hg) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(ty_Either, df), dg)) -> new_esEs(xuu50001, xuu4001, df, dg) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(xuu50000, xuu4000, bdh, bea, beb) 33.50/15.05 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(xuu50000, xuu4000, db, dc, dd) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(xuu50002, xuu4002, bag, bah) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(xuu50001, xuu4001, dh, ea) 33.50/15.05 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_Either, gb), gc)) -> new_esEs(xuu50000, xuu4000, gb, gc) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_[], bdg), baf, bcb) -> new_esEs2(xuu50000, xuu4000, bdg) 33.50/15.05 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_Either, hd), he)) -> new_esEs(xuu50000, xuu4000, hd, he) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu50002, xuu4002, bbe, bbf, bbg) 33.50/15.05 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(ty_Maybe, cg)) -> new_esEs1(xuu50000, xuu4000, cg) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(xuu50000, xuu4000, fg, fh, ga) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu50001, xuu4001, ed, ee, ef) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_Either, eg), eh), fa) -> new_esEs(xuu50000, xuu4000, eg, eh) 33.50/15.05 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(xuu50000, xuu4000, cc, cd) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu50001, xuu4001, bcc, bcd) 33.50/15.05 new_esEs(Right(xuu50000), Right(xuu4000), cb, app(ty_[], da)) -> new_esEs2(xuu50000, xuu4000, da) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(ty_[], bcf), bcb) -> new_esEs2(xuu50001, xuu4001, bcf) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(xuu50000, xuu4000, bdd, bde) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_[], ff), fa) -> new_esEs2(xuu50000, xuu4000, ff) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(xuu50001, xuu4001, bcg, bch, bda) 33.50/15.05 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(xuu50000, xuu4000, gh, ha, hb) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(ty_[], bbd)) -> new_esEs2(xuu50002, xuu4002, bbd) 33.50/15.05 new_esEs(Left(xuu50000), Left(xuu4000), app(app(ty_Either, h), ba), bb) -> new_esEs(xuu50000, xuu4000, h, ba) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(ty_[], ec)) -> new_esEs2(xuu50001, xuu4001, ec) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(xuu50002, xuu4002, bba, bbb) 33.50/15.05 new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_[], gg)) -> new_esEs2(xuu50000, xuu4000, gg) 33.50/15.05 new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_@2, gd), ge)) -> new_esEs0(xuu50000, xuu4000, gd, ge) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(xuu50000, xuu4000, bdf) 33.50/15.05 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_[], baa)) -> new_esEs2(xuu50000, xuu4000, baa) 33.50/15.05 new_esEs(Left(xuu50000), Left(xuu4000), app(ty_[], bf), bb) -> new_esEs2(xuu50000, xuu4000, bf) 33.50/15.05 new_esEs(Left(xuu50000), Left(xuu4000), app(ty_Maybe, be), bb) -> new_esEs1(xuu50000, xuu4000, be) 33.50/15.05 new_esEs(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(xuu50000, xuu4000, bg, bh, ca) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(xuu50001, xuu4001, bce) 33.50/15.05 new_esEs(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(xuu50000, xuu4000, bc, bd) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(xuu50000, xuu4000, bdb, bdc) 33.50/15.05 new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_Maybe, gf)) -> new_esEs1(xuu50000, xuu4000, gf) 33.50/15.05 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu50000, xuu4000, bab, bac, bad) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(xuu50002, xuu4002, bbc) 33.50/15.05 new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(xuu50000, xuu4000, fb, fc) 33.50/15.05 new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(xuu50001, xuu4001, bbh, bca) 33.50/15.05 new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_Maybe, hh)) -> new_esEs1(xuu50000, xuu4000, hh) 33.50/15.05 33.50/15.05 R is empty. 33.50/15.05 Q is empty. 33.50/15.05 We have to consider all minimal (P,Q,R)-chains. 33.50/15.05 ---------------------------------------- 33.50/15.05 33.50/15.05 (21) QDPSizeChangeProof (EQUIVALENT) 33.50/15.05 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. 33.50/15.05 33.50/15.05 From the DPs we obtained the following set of size-change graphs: 33.50/15.05 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_Either, gb), gc)) -> new_esEs(xuu50000, xuu4000, gb, gc) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_@2, gd), ge)) -> new_esEs0(xuu50000, xuu4000, gd, ge) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_Either, hd), he)) -> new_esEs(xuu50000, xuu4000, hd, he) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_[], gg)) -> new_esEs2(xuu50000, xuu4000, gg) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_@2, hf), hg)) -> new_esEs0(xuu50000, xuu4000, hf, hg) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(xuu50000, xuu4000, gh, ha, hb) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_Maybe, gf)) -> new_esEs1(xuu50000, xuu4000, gf) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu50000, xuu4000, bab, bac, bad) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_Maybe, hh)) -> new_esEs1(xuu50000, xuu4000, hh) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(ty_Either, df), dg)) -> new_esEs(xuu50001, xuu4001, df, dg) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_Either, eg), eh), fa) -> new_esEs(xuu50000, xuu4000, eg, eh) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(xuu50001, xuu4001, dh, ea) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(xuu50000, xuu4000, fb, fc) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_[], ff), fa) -> new_esEs2(xuu50000, xuu4000, ff) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(ty_[], ec)) -> new_esEs2(xuu50001, xuu4001, ec) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(xuu50000, xuu4000, fg, fh, ga) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu50001, xuu4001, ed, ee, ef) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_Maybe, fd), fa) -> new_esEs1(xuu50000, xuu4000, fd) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), de, app(ty_Maybe, eb)) -> new_esEs1(xuu50001, xuu4001, eb) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(xuu50000, xuu4000, cc, cd) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Left(xuu50000), Left(xuu4000), app(app(ty_Either, h), ba), bb) -> new_esEs(xuu50000, xuu4000, h, ba) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(xuu50002, xuu4002, bag, bah) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(xuu50000, xuu4000, bdb, bdc) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(xuu50001, xuu4001, bbh, bca) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(xuu50000, xuu4000, ce, cf) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(xuu50000, xuu4000, bc, bd) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu50001, xuu4001, bcc, bcd) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(xuu50000, xuu4000, bdd, bde) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(xuu50002, xuu4002, bba, bbb) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), hc) -> new_esEs2(xuu50001, xuu4001, hc) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_[], baa)) -> new_esEs2(xuu50000, xuu4000, baa) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(ty_[], da)) -> new_esEs2(xuu50000, xuu4000, da) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Left(xuu50000), Left(xuu4000), app(ty_[], bf), bb) -> new_esEs2(xuu50000, xuu4000, bf) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_[], bdg), baf, bcb) -> new_esEs2(xuu50000, xuu4000, bdg) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(ty_[], bcf), bcb) -> new_esEs2(xuu50001, xuu4001, bcf) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(ty_[], bbd)) -> new_esEs2(xuu50002, xuu4002, bbd) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(xuu50000, xuu4000, db, dc, dd) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(xuu50000, xuu4000, bg, bh, ca) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Right(xuu50000), Right(xuu4000), cb, app(ty_Maybe, cg)) -> new_esEs1(xuu50000, xuu4000, cg) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs(Left(xuu50000), Left(xuu4000), app(ty_Maybe, be), bb) -> new_esEs1(xuu50000, xuu4000, be) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(xuu50000, xuu4000, bdh, bea, beb) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu50002, xuu4002, bbe, bbf, bbg) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(xuu50001, xuu4001, bcg, bch, bda) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(xuu50000, xuu4000, bdf) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(xuu50001, xuu4001, bce) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.05 33.50/15.05 33.50/15.05 *new_esEs3(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(xuu50002, xuu4002, bbc) 33.50/15.05 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 33.50/15.05 33.50/15.05 33.50/15.05 ---------------------------------------- 33.50/15.05 33.50/15.05 (22) 33.50/15.05 YES 33.50/15.05 33.50/15.05 ---------------------------------------- 33.50/15.05 33.50/15.05 (23) 33.50/15.05 Obligation: 33.50/15.05 Q DP problem: 33.50/15.05 The TRS P consists of the following rules: 33.50/15.05 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(ty_[], caf)) -> new_ltEs2(xuu79, xuu82, caf) 33.50/15.05 new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(app(ty_@3, bea), beb), bec)), bdg)) -> new_ltEs1(xuu660, xuu670, bea, beb, bec) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(ty_[], gb)), fd)) -> new_lt2(xuu660, xuu670, gb) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(ty_[], cbh), cbc) -> new_lt2(xuu78, xuu81, cbh) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(ty_Either, bdb), bdc)), hg), bbc)) -> new_lt3(xuu660, xuu670, bdb, bdc) 33.50/15.05 new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(ty_[], bed)), bdg)) -> new_ltEs2(xuu660, xuu670, bed) 33.50/15.05 new_ltEs0(Just(xuu660), Just(xuu670), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(xuu660, xuu670, gh, ha, hb) 33.50/15.05 new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(ty_Maybe, gg))) -> new_ltEs0(xuu660, xuu670, gg) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(app(app(ty_@3, bbe), bbf), bbg), bbc) -> new_lt1(xuu661, xuu671, bbe, bbf, bbg) 33.50/15.05 new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(ty_Either, bee), bef)), bdg)) -> new_ltEs3(xuu660, xuu670, bee, bef) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(app(app(ty_@3, bbe), bbf), bbg)), bbc)) -> new_lt1(xuu661, xuu671, bbe, bbf, bbg) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(ty_Maybe, cab)) -> new_ltEs0(xuu79, xuu82, cab) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_@2, bb), bc), bd) -> new_lt(xuu111, xuu113, bb, bc) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(app(ty_Either, eh), fa)) -> new_ltEs3(xuu661, xuu671, eh, fa) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(ty_[], bbh), bbc) -> new_lt2(xuu661, xuu671, bbh) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(app(ty_@3, bcf), bcg), bch)), hg), bbc)) -> new_lt1(xuu660, xuu670, bcf, bcg, bch) 33.50/15.05 new_lt3(Left(xuu5000), Left(xuu400), cdd, cde) -> new_compare22(xuu5000, xuu400, new_esEs10(xuu5000, xuu400, cdd), cdd, cde) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(ty_@2, bcc), bcd), hg, bbc) -> new_lt(xuu660, xuu670, bcc, bcd) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(ty_[], bda)), hg), bbc)) -> new_lt2(xuu660, xuu670, bda) 33.50/15.05 new_compare(@2(xuu5000, xuu5001), @2(xuu400, xuu401), h, ba) -> new_compare2(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs5(xuu5000, xuu400, h), new_esEs4(xuu5001, xuu401, ba)), h, ba) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(ty_Maybe, ec)) -> new_ltEs0(xuu661, xuu671, ec) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(app(app(ty_@3, ed), ee), ef))) -> new_ltEs1(xuu661, xuu671, ed, ee, ef) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(ty_[], eg))) -> new_ltEs2(xuu661, xuu671, eg) 33.50/15.05 new_primCompAux(xuu5000, xuu400, xuu50, app(ty_Maybe, bgd)) -> new_compare0(xuu5000, xuu400, bgd) 33.50/15.05 new_compare0(Just(xuu5000), Just(xuu400), dg) -> new_compare20(xuu5000, xuu400, new_esEs6(xuu5000, xuu400, dg), dg) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(ty_[], baf))) -> new_ltEs2(xuu662, xuu672, baf) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(ty_[], baf)) -> new_ltEs2(xuu662, xuu672, baf) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(app(app(ty_@3, bf), bg), bh), bd) -> new_lt1(xuu111, xuu113, bf, bg, bh) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_Either, cb), cc), bd) -> new_lt3(xuu111, xuu113, cb, cc) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs1(xuu661, xuu671, ed, ee, ef) 33.50/15.05 new_compare5(Left(xuu5000), Left(xuu400), cdd, cde) -> new_compare22(xuu5000, xuu400, new_esEs10(xuu5000, xuu400, cdd), cdd, cde) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(xuu112, xuu114, da, db, dc) 33.50/15.05 new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs1(xuu660, xuu670, gh, ha, hb) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(ty_[], bbh)), bbc)) -> new_lt2(xuu661, xuu671, bbh) 33.50/15.05 new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(app(ty_@2, beh), bfa))) -> new_ltEs(xuu660, xuu670, beh, bfa) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(app(ty_@3, fg), fh), ga)), fd)) -> new_lt1(xuu660, xuu670, fg, fh, ga) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs1(xuu79, xuu82, cac, cad, cae) 33.50/15.05 new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(ty_Maybe, bdh)), bdg)) -> new_ltEs0(xuu660, xuu670, bdh) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(ty_@2, fb), fc)), fd)) -> new_lt(xuu660, xuu670, fb, fc) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(app(ty_Either, bca), bcb), bbc) -> new_lt3(xuu661, xuu671, bca, bcb) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(ty_Maybe, cce), bhg, cbc) -> new_lt0(xuu77, xuu80, cce) 33.50/15.05 new_compare1(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_compare1(xuu5001, xuu401, bga) 33.50/15.05 new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(ty_Either, hd), he))) -> new_ltEs3(xuu660, xuu670, hd, he) 33.50/15.05 new_ltEs0(Just(xuu660), Just(xuu670), app(ty_Maybe, gg)) -> new_ltEs0(xuu660, xuu670, gg) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(app(ty_@2, cba), cbb), cbc) -> new_lt(xuu78, xuu81, cba, cbb) 33.50/15.05 new_ltEs3(Right(xuu660), Right(xuu670), beg, app(app(ty_@2, beh), bfa)) -> new_ltEs(xuu660, xuu670, beh, bfa) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(ty_[], ca), bd) -> new_lt2(xuu111, xuu113, ca) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(app(ty_@2, bhh), caa)) -> new_ltEs(xuu79, xuu82, bhh, caa) 33.50/15.05 new_lt1(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), bhc, bhd, bhe) -> new_compare21(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs9(xuu5000, xuu400, bhc), new_asAs(new_esEs8(xuu5001, xuu401, bhd), new_esEs7(xuu5002, xuu402, bhe))), bhc, bhd, bhe) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(app(ty_Either, bag), bah))) -> new_ltEs3(xuu662, xuu672, bag, bah) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(app(ty_@2, ea), eb)) -> new_ltEs(xuu661, xuu671, ea, eb) 33.50/15.05 new_compare4(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), bhc, bhd, bhe) -> new_compare21(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs9(xuu5000, xuu400, bhc), new_asAs(new_esEs8(xuu5001, xuu401, bhd), new_esEs7(xuu5002, xuu402, bhe))), bhc, bhd, bhe) 33.50/15.05 new_compare1(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_primCompAux(xuu5000, xuu400, new_compare3(xuu5001, xuu401, bga), bga) 33.50/15.05 new_lt(@2(xuu5000, xuu5001), @2(xuu400, xuu401), h, ba) -> new_compare2(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs5(xuu5000, xuu400, h), new_esEs4(xuu5001, xuu401, ba)), h, ba) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(app(ty_@3, bcf), bcg), bch), hg, bbc) -> new_lt1(xuu660, xuu670, bcf, bcg, bch) 33.50/15.05 new_primCompAux(xuu5000, xuu400, xuu50, app(app(ty_Either, bha), bhb)) -> new_compare5(xuu5000, xuu400, bha, bhb) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(app(ty_@2, ccc), ccd), bhg, cbc) -> new_lt(xuu77, xuu80, ccc, ccd) 33.50/15.05 new_compare23(xuu100, xuu101, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(xuu100, xuu101, cfa, cfb) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(app(app(ty_@3, ccf), ccg), cch), bhg, cbc) -> new_lt1(xuu77, xuu80, ccf, ccg, cch) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(app(ty_@2, hh), baa)) -> new_ltEs(xuu662, xuu672, hh, baa) 33.50/15.05 new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(ty_[], bff))) -> new_ltEs2(xuu660, xuu670, bff) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(ty_Either, bdb), bdc), hg, bbc) -> new_lt3(xuu660, xuu670, bdb, bdc) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(app(ty_@2, bba), bbb), bbc) -> new_lt(xuu661, xuu671, bba, bbb) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(ty_Maybe, bab))) -> new_ltEs0(xuu662, xuu672, bab) 33.50/15.05 new_ltEs3(Left(xuu660), Left(xuu670), app(app(ty_@2, bde), bdf), bdg) -> new_ltEs(xuu660, xuu670, bde, bdf) 33.50/15.05 new_ltEs3(Right(xuu660), Right(xuu670), beg, app(ty_[], bff)) -> new_ltEs2(xuu660, xuu670, bff) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(ty_Maybe, bce)), hg), bbc)) -> new_lt0(xuu660, xuu670, bce) 33.50/15.05 new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(ty_@2, bde), bdf)), bdg)) -> new_ltEs(xuu660, xuu670, bde, bdf) 33.50/15.05 new_ltEs3(Left(xuu660), Left(xuu670), app(app(ty_Either, bee), bef), bdg) -> new_ltEs3(xuu660, xuu670, bee, bef) 33.50/15.05 new_ltEs0(Just(xuu660), Just(xuu670), app(app(ty_@2, ge), gf)) -> new_ltEs(xuu660, xuu670, ge, gf) 33.50/15.05 new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(ty_Maybe, bfb))) -> new_ltEs0(xuu660, xuu670, bfb) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(app(ty_@2, hh), baa))) -> new_ltEs(xuu662, xuu672, hh, baa) 33.50/15.05 new_compare22(xuu93, xuu94, False, app(app(app(ty_@3, ceb), cec), ced), cdh) -> new_ltEs1(xuu93, xuu94, ceb, cec, ced) 33.50/15.05 new_ltEs0(Just(xuu660), Just(xuu670), app(app(ty_Either, hd), he)) -> new_ltEs3(xuu660, xuu670, hd, he) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(ty_[], dd)) -> new_ltEs2(xuu112, xuu114, dd) 33.50/15.05 new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(ty_[], hc))) -> new_ltEs2(xuu660, xuu670, hc) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(ty_[], cda), bhg, cbc) -> new_lt2(xuu77, xuu80, cda) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(app(ty_Either, cdb), cdc), bhg, cbc) -> new_lt3(xuu77, xuu80, cdb, cdc) 33.50/15.05 new_compare23(xuu100, xuu101, False, ceh, app(ty_Maybe, cfc)) -> new_ltEs0(xuu100, xuu101, cfc) 33.50/15.05 new_compare23(xuu100, xuu101, False, ceh, app(ty_[], cfg)) -> new_ltEs2(xuu100, xuu101, cfg) 33.50/15.05 new_compare23(xuu100, xuu101, False, ceh, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs1(xuu100, xuu101, cfd, cfe, cff) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(ty_@2, fb), fc), fd) -> new_lt(xuu660, xuu670, fb, fc) 33.50/15.05 new_compare20(xuu66, xuu67, False, app(ty_[], bdd)) -> new_compare1(xuu66, xuu67, bdd) 33.50/15.05 new_primCompAux(xuu5000, xuu400, xuu50, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare4(xuu5000, xuu400, bge, bgf, bgg) 33.50/15.05 new_compare22(xuu93, xuu94, False, app(ty_Maybe, cea), cdh) -> new_ltEs0(xuu93, xuu94, cea) 33.50/15.05 new_compare22(xuu93, xuu94, False, app(ty_[], cee), cdh) -> new_ltEs2(xuu93, xuu94, cee) 33.50/15.05 new_lt0(Just(xuu5000), Just(xuu400), dg) -> new_compare20(xuu5000, xuu400, new_esEs6(xuu5000, xuu400, dg), dg) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(app(ty_Either, bca), bcb)), bbc)) -> new_lt3(xuu661, xuu671, bca, bcb) 33.50/15.05 new_ltEs3(Right(xuu660), Right(xuu670), beg, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs1(xuu660, xuu670, bfc, bfd, bfe) 33.50/15.05 new_primCompAux(xuu5000, xuu400, xuu50, app(app(ty_@2, bgb), bgc)) -> new_compare(xuu5000, xuu400, bgb, bgc) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(xuu112, xuu114, ce, cf) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(app(ty_Either, cag), cah)) -> new_ltEs3(xuu79, xuu82, cag, cah) 33.50/15.05 new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(app(ty_Either, bfg), bfh))) -> new_ltEs3(xuu660, xuu670, bfg, bfh) 33.50/15.05 new_lt2(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_primCompAux(xuu5000, xuu400, new_compare3(xuu5001, xuu401, bga), bga) 33.50/15.05 new_compare22(xuu93, xuu94, False, app(app(ty_Either, cef), ceg), cdh) -> new_ltEs3(xuu93, xuu94, cef, ceg) 33.50/15.05 new_ltEs3(Right(xuu660), Right(xuu670), beg, app(app(ty_Either, bfg), bfh)) -> new_ltEs3(xuu660, xuu670, bfg, bfh) 33.50/15.05 new_compare23(xuu100, xuu101, False, ceh, app(app(ty_Either, cfh), cga)) -> new_ltEs3(xuu100, xuu101, cfh, cga) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(ty_Maybe, ec))) -> new_ltEs0(xuu661, xuu671, ec) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(app(ty_Either, bag), bah)) -> new_ltEs3(xuu662, xuu672, bag, bah) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(ty_Maybe, bbd)), bbc)) -> new_lt0(xuu661, xuu671, bbd) 33.50/15.05 new_primCompAux(xuu5000, xuu400, xuu50, app(ty_[], bgh)) -> new_compare1(xuu5000, xuu400, bgh) 33.50/15.05 new_ltEs3(Left(xuu660), Left(xuu670), app(app(app(ty_@3, bea), beb), bec), bdg) -> new_ltEs1(xuu660, xuu670, bea, beb, bec) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(app(ty_@3, fg), fh), ga), fd) -> new_lt1(xuu660, xuu670, fg, fh, ga) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(ty_Either, gc), gd), fd) -> new_lt3(xuu660, xuu670, gc, gd) 33.50/15.05 new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(ty_@2, ge), gf))) -> new_ltEs(xuu660, xuu670, ge, gf) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(ty_Maybe, ff), fd) -> new_lt0(xuu660, xuu670, ff) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(ty_Maybe, bce), hg, bbc) -> new_lt0(xuu660, xuu670, bce) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(app(ty_@2, ea), eb))) -> new_ltEs(xuu661, xuu671, ea, eb) 33.50/15.05 new_ltEs3(Left(xuu660), Left(xuu670), app(ty_Maybe, bdh), bdg) -> new_ltEs0(xuu660, xuu670, bdh) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(app(ty_Either, cca), ccb), cbc) -> new_lt3(xuu78, xuu81, cca, ccb) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), hg), bbc)) -> new_lt(xuu660, xuu670, bcc, bcd) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(ty_Maybe, cbd), cbc) -> new_lt0(xuu78, xuu81, cbd) 33.50/15.05 new_lt2(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_compare1(xuu5001, xuu401, bga) 33.50/15.05 new_lt3(Right(xuu5000), Right(xuu400), cdd, cde) -> new_compare23(xuu5000, xuu400, new_esEs11(xuu5000, xuu400, cde), cdd, cde) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(ty_Maybe, ff)), fd)) -> new_lt0(xuu660, xuu670, ff) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs1(xuu662, xuu672, bac, bad, bae) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(ty_Maybe, be), bd) -> new_lt0(xuu111, xuu113, be) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(app(app(ty_@3, bac), bad), bae))) -> new_ltEs1(xuu662, xuu672, bac, bad, bae) 33.50/15.05 new_ltEs0(Just(xuu660), Just(xuu670), app(ty_[], hc)) -> new_ltEs2(xuu660, xuu670, hc) 33.50/15.05 new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs1(xuu660, xuu670, bfc, bfd, bfe) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(app(ty_Either, eh), fa))) -> new_ltEs3(xuu661, xuu671, eh, fa) 33.50/15.05 new_compare5(Right(xuu5000), Right(xuu400), cdd, cde) -> new_compare23(xuu5000, xuu400, new_esEs11(xuu5000, xuu400, cde), cdd, cde) 33.50/15.05 new_ltEs3(Right(xuu660), Right(xuu670), beg, app(ty_Maybe, bfb)) -> new_ltEs0(xuu660, xuu670, bfb) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(ty_[], bda), hg, bbc) -> new_lt2(xuu660, xuu670, bda) 33.50/15.05 new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(ty_Either, gc), gd)), fd)) -> new_lt3(xuu660, xuu670, gc, gd) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(ty_[], gb), fd) -> new_lt2(xuu660, xuu670, gb) 33.50/15.05 new_ltEs3(Left(xuu660), Left(xuu670), app(ty_[], bed), bdg) -> new_ltEs2(xuu660, xuu670, bed) 33.50/15.05 new_ltEs2(xuu66, xuu67, bdd) -> new_compare1(xuu66, xuu67, bdd) 33.50/15.05 new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(app(ty_@2, bba), bbb)), bbc)) -> new_lt(xuu661, xuu671, bba, bbb) 33.50/15.05 new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(app(app(ty_@3, cbe), cbf), cbg), cbc) -> new_lt1(xuu78, xuu81, cbe, cbf, cbg) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(ty_Maybe, cg)) -> new_ltEs0(xuu112, xuu114, cg) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(ty_Maybe, bbd), bbc) -> new_lt0(xuu661, xuu671, bbd) 33.50/15.05 new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(ty_Maybe, bab)) -> new_ltEs0(xuu662, xuu672, bab) 33.50/15.05 new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(app(ty_Either, de), df)) -> new_ltEs3(xuu112, xuu114, de, df) 33.50/15.05 new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(ty_[], eg)) -> new_ltEs2(xuu661, xuu671, eg) 33.50/15.05 new_compare22(xuu93, xuu94, False, app(app(ty_@2, cdf), cdg), cdh) -> new_ltEs(xuu93, xuu94, cdf, cdg) 33.50/15.05 33.50/15.05 The TRS R consists of the following rules: 33.50/15.05 33.50/15.05 new_esEs29(EQ) -> False 33.50/15.05 new_lt23(xuu660, xuu670, ty_@0) -> new_lt18(xuu660, xuu670) 33.50/15.05 new_primCmpInt(Neg(Succ(xuu50000)), Pos(xuu400)) -> LT 33.50/15.05 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 33.50/15.05 new_esEs33(xuu78, xuu81, app(ty_Ratio, eed)) -> new_esEs23(xuu78, xuu81, eed) 33.50/15.05 new_lt22(xuu111, xuu113, ty_Integer) -> new_lt16(xuu111, xuu113) 33.50/15.05 new_esEs35(xuu661, xuu671, app(ty_[], bbh)) -> new_esEs22(xuu661, xuu671, bbh) 33.50/15.05 new_primPlusNat0(Zero, Zero) -> Zero 33.50/15.05 new_esEs39(xuu50001, xuu4001, app(app(ty_Either, feh), ffa)) -> new_esEs15(xuu50001, xuu4001, feh, ffa) 33.50/15.05 new_compare25(Left(xuu5000), Left(xuu400), cdd, cde) -> new_compare29(xuu5000, xuu400, new_esEs10(xuu5000, xuu400, cdd), cdd, cde) 33.50/15.05 new_pePe(True, xuu201) -> True 33.50/15.05 new_esEs8(xuu5001, xuu401, app(ty_[], cha)) -> new_esEs22(xuu5001, xuu401, cha) 33.50/15.05 new_esEs27(xuu50001, xuu4001, ty_Float) -> new_esEs18(xuu50001, xuu4001) 33.50/15.05 new_esEs10(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), ty_@0, bdg) -> new_ltEs17(xuu660, xuu670) 33.50/15.05 new_esEs38(xuu660, xuu670, ty_Double) -> new_esEs16(xuu660, xuu670) 33.50/15.05 new_esEs8(xuu5001, xuu401, ty_Char) -> new_esEs12(xuu5001, xuu401) 33.50/15.05 new_ltEs23(xuu100, xuu101, app(ty_[], cfg)) -> new_ltEs16(xuu100, xuu101, cfg) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), app(ty_Maybe, fbc), dhg) -> new_esEs19(xuu50000, xuu4000, fbc) 33.50/15.05 new_esEs15(Left(xuu50000), Right(xuu4000), dhf, dhg) -> False 33.50/15.05 new_esEs15(Right(xuu50000), Left(xuu4000), dhf, dhg) -> False 33.50/15.05 new_esEs35(xuu661, xuu671, ty_Char) -> new_esEs12(xuu661, xuu671) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), app(ty_Maybe, gg)) -> new_ltEs13(xuu660, xuu670, gg) 33.50/15.05 new_lt18(xuu500, xuu40) -> new_esEs29(new_compare19(xuu500, xuu40)) 33.50/15.05 new_esEs29(GT) -> False 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, ty_Int) -> new_ltEs7(xuu660, xuu670) 33.50/15.05 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 33.50/15.05 new_ltEs19(xuu662, xuu672, ty_Ordering) -> new_ltEs9(xuu662, xuu672) 33.50/15.05 new_primCmpInt(Pos(Zero), Neg(Succ(xuu4000))) -> GT 33.50/15.05 new_esEs33(xuu78, xuu81, ty_Float) -> new_esEs18(xuu78, xuu81) 33.50/15.05 new_esEs6(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.05 new_fsEs(xuu196) -> new_not(new_esEs21(xuu196, GT)) 33.50/15.05 new_ltEs19(xuu662, xuu672, app(app(ty_@2, hh), baa)) -> new_ltEs12(xuu662, xuu672, hh, baa) 33.50/15.05 new_ltEs19(xuu662, xuu672, ty_Integer) -> new_ltEs5(xuu662, xuu672) 33.50/15.05 new_primCmpInt(Neg(Succ(xuu50000)), Neg(xuu400)) -> new_primCmpNat0(xuu400, Succ(xuu50000)) 33.50/15.05 new_compare17(LT, GT) -> LT 33.50/15.05 new_esEs9(xuu5000, xuu400, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs24(xuu5000, xuu400, ecf, ecg, ech) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, ty_Bool) -> new_ltEs15(xuu660, xuu670) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), app(app(ty_@2, bde), bdf), bdg) -> new_ltEs12(xuu660, xuu670, bde, bdf) 33.50/15.05 new_ltEs18(xuu79, xuu82, app(ty_Ratio, eec)) -> new_ltEs8(xuu79, xuu82, eec) 33.50/15.05 new_lt13(xuu77, xuu80, app(ty_Maybe, cce)) -> new_lt15(xuu77, xuu80, cce) 33.50/15.05 new_ltEs20(xuu112, xuu114, ty_Ordering) -> new_ltEs9(xuu112, xuu114) 33.50/15.05 new_lt23(xuu660, xuu670, app(ty_Maybe, ff)) -> new_lt15(xuu660, xuu670, ff) 33.50/15.05 new_esEs36(xuu660, xuu670, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs24(xuu660, xuu670, bcf, bcg, bch) 33.50/15.05 new_ltEs9(LT, LT) -> True 33.50/15.05 new_ltEs24(xuu93, xuu94, app(ty_Ratio, feg)) -> new_ltEs8(xuu93, xuu94, feg) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, app(ty_Maybe, fce)) -> new_esEs19(xuu50000, xuu4000, fce) 33.50/15.05 new_lt23(xuu660, xuu670, ty_Int) -> new_lt8(xuu660, xuu670) 33.50/15.05 new_esEs37(xuu111, xuu113, ty_@0) -> new_esEs25(xuu111, xuu113) 33.50/15.05 new_esEs10(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), app(ty_[], dha)) -> new_esEs22(xuu50000, xuu4000, dha) 33.50/15.05 new_esEs26(xuu50002, xuu4002, ty_Ordering) -> new_esEs21(xuu50002, xuu4002) 33.50/15.05 new_compare19(@0, @0) -> EQ 33.50/15.05 new_ltEs24(xuu93, xuu94, ty_@0) -> new_ltEs17(xuu93, xuu94) 33.50/15.05 new_lt21(xuu660, xuu670, ty_Ordering) -> new_lt9(xuu660, xuu670) 33.50/15.05 new_esEs30(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) 33.50/15.05 new_esEs6(xuu5000, xuu400, app(app(ty_@2, ehg), ehh)) -> new_esEs17(xuu5000, xuu400, ehg, ehh) 33.50/15.05 new_lt20(xuu661, xuu671, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_lt4(xuu661, xuu671, bbe, bbf, bbg) 33.50/15.05 new_compare3([], [], bga) -> EQ 33.50/15.05 new_compare9(xuu5000, xuu400, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare15(xuu5000, xuu400, bge, bgf, bgg) 33.50/15.05 new_compare17(LT, EQ) -> LT 33.50/15.05 new_ltEs24(xuu93, xuu94, ty_Float) -> new_ltEs6(xuu93, xuu94) 33.50/15.05 new_compare17(GT, EQ) -> GT 33.50/15.05 new_compare24(Double(xuu5000, Neg(xuu50010)), Double(xuu400, Neg(xuu4010))) -> new_compare8(new_sr(xuu5000, Neg(xuu4010)), new_sr(Neg(xuu50010), xuu400)) 33.50/15.05 new_ltEs18(xuu79, xuu82, ty_Float) -> new_ltEs6(xuu79, xuu82) 33.50/15.05 new_esEs10(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.05 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 33.50/15.05 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 33.50/15.05 new_esEs37(xuu111, xuu113, ty_Ordering) -> new_esEs21(xuu111, xuu113) 33.50/15.05 new_lt12(xuu78, xuu81, app(ty_[], cbh)) -> new_lt17(xuu78, xuu81, cbh) 33.50/15.05 new_compare210(xuu100, xuu101, True, ceh, fed) -> EQ 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.05 new_esEs32(xuu50000, xuu4000, ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.05 new_esEs10(xuu5000, xuu400, app(ty_[], eff)) -> new_esEs22(xuu5000, xuu400, eff) 33.50/15.05 new_compare17(EQ, GT) -> LT 33.50/15.05 new_ltEs18(xuu79, xuu82, ty_@0) -> new_ltEs17(xuu79, xuu82) 33.50/15.05 new_lt8(xuu500, xuu40) -> new_esEs29(new_compare8(xuu500, xuu40)) 33.50/15.05 new_esEs5(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.05 new_esEs35(xuu661, xuu671, ty_Int) -> new_esEs13(xuu661, xuu671) 33.50/15.05 new_compare112(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, dfg, dfh, dga) -> GT 33.50/15.05 new_compare9(xuu5000, xuu400, app(app(ty_@2, bgb), bgc)) -> new_compare13(xuu5000, xuu400, bgb, bgc) 33.50/15.05 new_compare9(xuu5000, xuu400, ty_Char) -> new_compare6(xuu5000, xuu400) 33.50/15.05 new_esEs8(xuu5001, xuu401, ty_Int) -> new_esEs13(xuu5001, xuu401) 33.50/15.05 new_lt12(xuu78, xuu81, ty_Integer) -> new_lt16(xuu78, xuu81) 33.50/15.05 new_esEs37(xuu111, xuu113, app(ty_Ratio, fdc)) -> new_esEs23(xuu111, xuu113, fdc) 33.50/15.05 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 33.50/15.05 new_lt13(xuu77, xuu80, app(ty_Ratio, eee)) -> new_lt6(xuu77, xuu80, eee) 33.50/15.05 new_ltEs24(xuu93, xuu94, ty_Char) -> new_ltEs4(xuu93, xuu94) 33.50/15.05 new_lt13(xuu77, xuu80, ty_Char) -> new_lt11(xuu77, xuu80) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.05 new_ltEs18(xuu79, xuu82, ty_Char) -> new_ltEs4(xuu79, xuu82) 33.50/15.05 new_lt10(xuu500, xuu40) -> new_esEs29(new_compare7(xuu500, xuu40)) 33.50/15.05 new_not(True) -> False 33.50/15.05 new_esEs4(xuu5001, xuu401, ty_Bool) -> new_esEs14(xuu5001, xuu401) 33.50/15.05 new_lt19(xuu500, xuu40) -> new_esEs29(new_compare24(xuu500, xuu40)) 33.50/15.05 new_lt21(xuu660, xuu670, app(app(ty_@2, bcc), bcd)) -> new_lt14(xuu660, xuu670, bcc, bcd) 33.50/15.05 new_esEs28(xuu50000, xuu4000, app(app(ty_@2, dea), deb)) -> new_esEs17(xuu50000, xuu4000, dea, deb) 33.50/15.05 new_compare14(Nothing, Just(xuu400), dg) -> LT 33.50/15.05 new_esEs34(xuu77, xuu80, ty_Double) -> new_esEs16(xuu77, xuu80) 33.50/15.05 new_primCompAux00(xuu87, LT) -> LT 33.50/15.05 new_esEs4(xuu5001, xuu401, ty_Char) -> new_esEs12(xuu5001, xuu401) 33.50/15.05 new_primCmpNat0(Zero, Zero) -> EQ 33.50/15.05 new_ltEs20(xuu112, xuu114, ty_Integer) -> new_ltEs5(xuu112, xuu114) 33.50/15.05 new_esEs38(xuu660, xuu670, app(ty_Ratio, fdf)) -> new_esEs23(xuu660, xuu670, fdf) 33.50/15.05 new_esEs27(xuu50001, xuu4001, ty_Double) -> new_esEs16(xuu50001, xuu4001) 33.50/15.05 new_esEs9(xuu5000, xuu400, app(ty_Maybe, ecc)) -> new_esEs19(xuu5000, xuu400, ecc) 33.50/15.05 new_lt21(xuu660, xuu670, ty_Float) -> new_lt10(xuu660, xuu670) 33.50/15.05 new_esEs6(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), app(ty_[], hc)) -> new_ltEs16(xuu660, xuu670, hc) 33.50/15.05 new_ltEs16(xuu66, xuu67, bdd) -> new_fsEs(new_compare3(xuu66, xuu67, bdd)) 33.50/15.05 new_ltEs22(xuu66, xuu67, ty_Bool) -> new_ltEs15(xuu66, xuu67) 33.50/15.05 new_ltEs24(xuu93, xuu94, ty_Double) -> new_ltEs10(xuu93, xuu94) 33.50/15.05 new_lt21(xuu660, xuu670, ty_Bool) -> new_lt5(xuu660, xuu670) 33.50/15.05 new_compare7(Float(xuu5000, Pos(xuu50010)), Float(xuu400, Neg(xuu4010))) -> new_compare8(new_sr(xuu5000, Pos(xuu4010)), new_sr(Neg(xuu50010), xuu400)) 33.50/15.05 new_compare7(Float(xuu5000, Neg(xuu50010)), Float(xuu400, Pos(xuu4010))) -> new_compare8(new_sr(xuu5000, Neg(xuu4010)), new_sr(Pos(xuu50010), xuu400)) 33.50/15.05 new_esEs26(xuu50002, xuu4002, ty_@0) -> new_esEs25(xuu50002, xuu4002) 33.50/15.05 new_lt22(xuu111, xuu113, ty_Float) -> new_lt10(xuu111, xuu113) 33.50/15.05 new_esEs32(xuu50000, xuu4000, ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.05 new_esEs10(xuu5000, xuu400, app(app(app(ty_@3, efh), ega), egb)) -> new_esEs24(xuu5000, xuu400, efh, ega, egb) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs24(xuu50000, xuu4000, dhc, dhd, dhe) 33.50/15.05 new_esEs36(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) 33.50/15.05 new_esEs40(xuu50000, xuu4000, ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.05 new_compare9(xuu5000, xuu400, ty_Ordering) -> new_compare17(xuu5000, xuu400) 33.50/15.05 new_esEs7(xuu5002, xuu402, app(app(ty_Either, chf), chg)) -> new_esEs15(xuu5002, xuu402, chf, chg) 33.50/15.05 new_esEs28(xuu50000, xuu4000, ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), app(ty_[], bed), bdg) -> new_ltEs16(xuu660, xuu670, bed) 33.50/15.05 new_esEs34(xuu77, xuu80, app(app(ty_@2, ccc), ccd)) -> new_esEs17(xuu77, xuu80, ccc, ccd) 33.50/15.05 new_esEs38(xuu660, xuu670, ty_Float) -> new_esEs18(xuu660, xuu670) 33.50/15.05 new_esEs21(LT, EQ) -> False 33.50/15.05 new_esEs21(EQ, LT) -> False 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), app(app(ty_Either, fag), fah), dhg) -> new_esEs15(xuu50000, xuu4000, fag, fah) 33.50/15.05 new_esEs5(xuu5000, xuu400, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs24(xuu5000, xuu400, dah, dba, dbb) 33.50/15.05 new_esEs39(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 33.50/15.05 new_lt20(xuu661, xuu671, ty_Double) -> new_lt19(xuu661, xuu671) 33.50/15.05 new_esEs11(xuu5000, xuu400, app(ty_Maybe, ede)) -> new_esEs19(xuu5000, xuu400, ede) 33.50/15.05 new_esEs33(xuu78, xuu81, ty_Double) -> new_esEs16(xuu78, xuu81) 33.50/15.05 new_primEqNat0(Succ(xuu500000), Zero) -> False 33.50/15.05 new_primEqNat0(Zero, Succ(xuu40000)) -> False 33.50/15.05 new_ltEs21(xuu661, xuu671, ty_Bool) -> new_ltEs15(xuu661, xuu671) 33.50/15.05 new_ltEs21(xuu661, xuu671, app(app(ty_@2, ea), eb)) -> new_ltEs12(xuu661, xuu671, ea, eb) 33.50/15.05 new_compare8(xuu500, xuu40) -> new_primCmpInt(xuu500, xuu40) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, ty_Integer) -> new_ltEs5(xuu660, xuu670) 33.50/15.05 new_lt21(xuu660, xuu670, app(app(app(ty_@3, bcf), bcg), bch)) -> new_lt4(xuu660, xuu670, bcf, bcg, bch) 33.50/15.05 new_esEs23(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), dgb) -> new_asAs(new_esEs31(xuu50000, xuu4000, dgb), new_esEs30(xuu50001, xuu4001, dgb)) 33.50/15.05 new_lt20(xuu661, xuu671, app(app(ty_Either, bca), bcb)) -> new_lt7(xuu661, xuu671, bca, bcb) 33.50/15.05 new_esEs37(xuu111, xuu113, ty_Float) -> new_esEs18(xuu111, xuu113) 33.50/15.05 new_compare13(@2(xuu5000, xuu5001), @2(xuu400, xuu401), h, ba) -> new_compare27(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs5(xuu5000, xuu400, h), new_esEs4(xuu5001, xuu401, ba)), h, ba) 33.50/15.05 new_ltEs22(xuu66, xuu67, ty_Int) -> new_ltEs7(xuu66, xuu67) 33.50/15.05 new_esEs8(xuu5001, xuu401, app(app(ty_Either, cgd), cge)) -> new_esEs15(xuu5001, xuu401, cgd, cge) 33.50/15.05 new_ltEs20(xuu112, xuu114, app(ty_Ratio, fdd)) -> new_ltEs8(xuu112, xuu114, fdd) 33.50/15.05 new_esEs14(False, True) -> False 33.50/15.05 new_esEs14(True, False) -> False 33.50/15.05 new_primCompAux00(xuu87, GT) -> GT 33.50/15.05 new_compare28(xuu66, xuu67, True, fea) -> EQ 33.50/15.05 new_ltEs22(xuu66, xuu67, app(app(app(ty_@3, hf), hg), bbc)) -> new_ltEs14(xuu66, xuu67, hf, hg, bbc) 33.50/15.05 new_esEs32(xuu50000, xuu4000, ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.05 new_esEs40(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.05 new_compare28(xuu66, xuu67, False, fea) -> new_compare111(xuu66, xuu67, new_ltEs22(xuu66, xuu67, fea), fea) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), ty_Float) -> new_ltEs6(xuu660, xuu670) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), ty_Char) -> new_ltEs4(xuu660, xuu670) 33.50/15.05 new_primCmpInt(Pos(Succ(xuu50000)), Neg(xuu400)) -> GT 33.50/15.05 new_lt13(xuu77, xuu80, ty_@0) -> new_lt18(xuu77, xuu80) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Double, dhg) -> new_esEs16(xuu50000, xuu4000) 33.50/15.05 new_lt12(xuu78, xuu81, ty_Char) -> new_lt11(xuu78, xuu81) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), app(ty_Ratio, fbe), dhg) -> new_esEs23(xuu50000, xuu4000, fbe) 33.50/15.05 new_lt22(xuu111, xuu113, app(ty_[], ca)) -> new_lt17(xuu111, xuu113, ca) 33.50/15.05 new_ltEs21(xuu661, xuu671, ty_Ordering) -> new_ltEs9(xuu661, xuu671) 33.50/15.05 new_esEs4(xuu5001, xuu401, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs24(xuu5001, xuu401, ehb, ehc, ehd) 33.50/15.05 new_compare12(:%(xuu5000, xuu5001), :%(xuu400, xuu401), ty_Int) -> new_compare8(new_sr(xuu5000, xuu401), new_sr(xuu400, xuu5001)) 33.50/15.05 new_esEs6(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.05 new_lt23(xuu660, xuu670, app(ty_Ratio, fdf)) -> new_lt6(xuu660, xuu670, fdf) 33.50/15.05 new_ltEs11(Left(xuu660), Right(xuu670), beg, bdg) -> True 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.05 new_ltEs21(xuu661, xuu671, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs14(xuu661, xuu671, ed, ee, ef) 33.50/15.05 new_ltEs21(xuu661, xuu671, ty_Int) -> new_ltEs7(xuu661, xuu671) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, app(ty_[], bff)) -> new_ltEs16(xuu660, xuu670, bff) 33.50/15.05 new_compare110(xuu151, xuu152, True, dfb, dfc) -> LT 33.50/15.05 new_ltEs20(xuu112, xuu114, ty_Double) -> new_ltEs10(xuu112, xuu114) 33.50/15.05 new_compare11(xuu168, xuu169, xuu170, xuu171, True, cgb, cgc) -> LT 33.50/15.05 new_compare3(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_primCompAux0(xuu5000, xuu400, new_compare3(xuu5001, xuu401, bga), bga) 33.50/15.05 new_compare17(EQ, LT) -> GT 33.50/15.05 new_esEs27(xuu50001, xuu4001, app(ty_Ratio, ddc)) -> new_esEs23(xuu50001, xuu4001, ddc) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), ty_Char, bdg) -> new_ltEs4(xuu660, xuu670) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), ty_Float, bdg) -> new_ltEs6(xuu660, xuu670) 33.50/15.05 new_esEs5(xuu5000, xuu400, app(ty_Maybe, dgc)) -> new_esEs19(xuu5000, xuu400, dgc) 33.50/15.05 new_esEs35(xuu661, xuu671, ty_Bool) -> new_esEs14(xuu661, xuu671) 33.50/15.05 new_ltEs14(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, bbc) -> new_pePe(new_lt21(xuu660, xuu670, hf), new_asAs(new_esEs36(xuu660, xuu670, hf), new_pePe(new_lt20(xuu661, xuu671, hg), new_asAs(new_esEs35(xuu661, xuu671, hg), new_ltEs19(xuu662, xuu672, bbc))))) 33.50/15.05 new_esEs7(xuu5002, xuu402, app(ty_[], dac)) -> new_esEs22(xuu5002, xuu402, dac) 33.50/15.05 new_esEs26(xuu50002, xuu4002, ty_Float) -> new_esEs18(xuu50002, xuu4002) 33.50/15.05 new_esEs7(xuu5002, xuu402, ty_Integer) -> new_esEs20(xuu5002, xuu402) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs14(xuu660, xuu670, bfc, bfd, bfe) 33.50/15.05 new_primCmpNat0(Zero, Succ(xuu4000)) -> LT 33.50/15.05 new_esEs31(xuu50000, xuu4000, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.05 new_ltEs20(xuu112, xuu114, ty_@0) -> new_ltEs17(xuu112, xuu114) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.05 new_ltEs22(xuu66, xuu67, app(ty_[], bdd)) -> new_ltEs16(xuu66, xuu67, bdd) 33.50/15.05 new_esEs11(xuu5000, xuu400, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs24(xuu5000, xuu400, edh, eea, eeb) 33.50/15.05 new_lt6(xuu500, xuu40, dff) -> new_esEs29(new_compare12(xuu500, xuu40, dff)) 33.50/15.05 new_esEs28(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.05 new_ltEs19(xuu662, xuu672, ty_Double) -> new_ltEs10(xuu662, xuu672) 33.50/15.05 new_lt23(xuu660, xuu670, ty_Char) -> new_lt11(xuu660, xuu670) 33.50/15.05 new_esEs39(xuu50001, xuu4001, ty_Double) -> new_esEs16(xuu50001, xuu4001) 33.50/15.05 new_esEs36(xuu660, xuu670, ty_Ordering) -> new_esEs21(xuu660, xuu670) 33.50/15.05 new_esEs34(xuu77, xuu80, ty_Char) -> new_esEs12(xuu77, xuu80) 33.50/15.05 new_esEs26(xuu50002, xuu4002, app(ty_Ratio, dca)) -> new_esEs23(xuu50002, xuu4002, dca) 33.50/15.05 new_esEs4(xuu5001, xuu401, ty_Ordering) -> new_esEs21(xuu5001, xuu401) 33.50/15.05 new_primCmpNat0(Succ(xuu50000), Zero) -> GT 33.50/15.05 new_ltEs8(xuu66, xuu67, dfe) -> new_fsEs(new_compare12(xuu66, xuu67, dfe)) 33.50/15.05 new_esEs32(xuu50000, xuu4000, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.05 new_esEs34(xuu77, xuu80, ty_Float) -> new_esEs18(xuu77, xuu80) 33.50/15.05 new_compare3([], :(xuu400, xuu401), bga) -> LT 33.50/15.05 new_ltEs20(xuu112, xuu114, app(ty_Maybe, cg)) -> new_ltEs13(xuu112, xuu114, cg) 33.50/15.05 new_pePe(False, xuu201) -> xuu201 33.50/15.05 new_esEs28(xuu50000, xuu4000, app(ty_[], ded)) -> new_esEs22(xuu50000, xuu4000, ded) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), ty_@0, dhg) -> new_esEs25(xuu50000, xuu4000) 33.50/15.05 new_esEs21(EQ, EQ) -> True 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, app(ty_Maybe, bfb)) -> new_ltEs13(xuu660, xuu670, bfb) 33.50/15.05 new_compare9(xuu5000, xuu400, ty_Int) -> new_compare8(xuu5000, xuu400) 33.50/15.05 new_esEs38(xuu660, xuu670, app(app(ty_Either, gc), gd)) -> new_esEs15(xuu660, xuu670, gc, gd) 33.50/15.05 new_ltEs23(xuu100, xuu101, ty_Char) -> new_ltEs4(xuu100, xuu101) 33.50/15.05 new_lt20(xuu661, xuu671, ty_Char) -> new_lt11(xuu661, xuu671) 33.50/15.05 new_compare114(xuu158, xuu159, True, feb, fec) -> LT 33.50/15.05 new_primCompAux0(xuu5000, xuu400, xuu50, bga) -> new_primCompAux00(xuu50, new_compare9(xuu5000, xuu400, bga)) 33.50/15.05 new_ltEs19(xuu662, xuu672, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs14(xuu662, xuu672, bac, bad, bae) 33.50/15.05 new_lt22(xuu111, xuu113, app(ty_Maybe, be)) -> new_lt15(xuu111, xuu113, be) 33.50/15.05 new_esEs26(xuu50002, xuu4002, ty_Bool) -> new_esEs14(xuu50002, xuu4002) 33.50/15.05 new_esEs36(xuu660, xuu670, ty_@0) -> new_esEs25(xuu660, xuu670) 33.50/15.05 new_esEs11(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.05 new_lt22(xuu111, xuu113, ty_Char) -> new_lt11(xuu111, xuu113) 33.50/15.05 new_esEs34(xuu77, xuu80, app(ty_Ratio, eee)) -> new_esEs23(xuu77, xuu80, eee) 33.50/15.05 new_ltEs7(xuu66, xuu67) -> new_fsEs(new_compare8(xuu66, xuu67)) 33.50/15.05 new_ltEs21(xuu661, xuu671, ty_Float) -> new_ltEs6(xuu661, xuu671) 33.50/15.05 new_ltEs18(xuu79, xuu82, app(ty_[], caf)) -> new_ltEs16(xuu79, xuu82, caf) 33.50/15.05 new_esEs11(xuu5000, xuu400, app(ty_Ratio, edg)) -> new_esEs23(xuu5000, xuu400, edg) 33.50/15.05 new_ltEs12(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, fd) -> new_pePe(new_lt23(xuu660, xuu670, dh), new_asAs(new_esEs38(xuu660, xuu670, dh), new_ltEs21(xuu661, xuu671, fd))) 33.50/15.05 new_esEs26(xuu50002, xuu4002, app(ty_[], dbh)) -> new_esEs22(xuu50002, xuu4002, dbh) 33.50/15.05 new_esEs6(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), app(app(ty_Either, hd), he)) -> new_ltEs11(xuu660, xuu670, hd, he) 33.50/15.05 new_ltEs18(xuu79, xuu82, app(app(ty_@2, bhh), caa)) -> new_ltEs12(xuu79, xuu82, bhh, caa) 33.50/15.05 new_ltEs19(xuu662, xuu672, ty_Bool) -> new_ltEs15(xuu662, xuu672) 33.50/15.05 new_lt14(xuu500, xuu40, h, ba) -> new_esEs29(new_compare13(xuu500, xuu40, h, ba)) 33.50/15.05 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 33.50/15.05 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 33.50/15.05 new_esEs17(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), dhh, eaa) -> new_asAs(new_esEs40(xuu50000, xuu4000, dhh), new_esEs39(xuu50001, xuu4001, eaa)) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), ty_Double) -> new_ltEs10(xuu660, xuu670) 33.50/15.05 new_lt23(xuu660, xuu670, ty_Integer) -> new_lt16(xuu660, xuu670) 33.50/15.05 new_esEs4(xuu5001, xuu401, app(app(ty_Either, egc), egd)) -> new_esEs15(xuu5001, xuu401, egc, egd) 33.50/15.05 new_esEs36(xuu660, xuu670, ty_Char) -> new_esEs12(xuu660, xuu670) 33.50/15.05 new_esEs38(xuu660, xuu670, ty_Ordering) -> new_esEs21(xuu660, xuu670) 33.50/15.05 new_compare15(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), bhc, bhd, bhe) -> new_compare26(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs9(xuu5000, xuu400, bhc), new_asAs(new_esEs8(xuu5001, xuu401, bhd), new_esEs7(xuu5002, xuu402, bhe))), bhc, bhd, bhe) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), ty_Double, bdg) -> new_ltEs10(xuu660, xuu670) 33.50/15.05 new_ltEs20(xuu112, xuu114, ty_Bool) -> new_ltEs15(xuu112, xuu114) 33.50/15.05 new_esEs33(xuu78, xuu81, app(ty_Maybe, cbd)) -> new_esEs19(xuu78, xuu81, cbd) 33.50/15.05 new_compare17(LT, LT) -> EQ 33.50/15.05 new_ltEs20(xuu112, xuu114, app(app(app(ty_@3, da), db), dc)) -> new_ltEs14(xuu112, xuu114, da, db, dc) 33.50/15.05 new_esEs26(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 33.50/15.05 new_ltEs18(xuu79, xuu82, ty_Ordering) -> new_ltEs9(xuu79, xuu82) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Float, dhg) -> new_esEs18(xuu50000, xuu4000) 33.50/15.05 new_lt23(xuu660, xuu670, app(ty_[], gb)) -> new_lt17(xuu660, xuu670, gb) 33.50/15.05 new_esEs27(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) 33.50/15.05 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 33.50/15.05 new_esEs5(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.05 new_primCmpInt(Neg(Zero), Pos(Succ(xuu4000))) -> LT 33.50/15.05 new_compare114(xuu158, xuu159, False, feb, fec) -> GT 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, app(app(ty_@2, beh), bfa)) -> new_ltEs12(xuu660, xuu670, beh, bfa) 33.50/15.05 new_esEs36(xuu660, xuu670, ty_Bool) -> new_esEs14(xuu660, xuu670) 33.50/15.05 new_esEs32(xuu50000, xuu4000, ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.05 new_esEs10(xuu5000, xuu400, app(ty_Maybe, efe)) -> new_esEs19(xuu5000, xuu400, efe) 33.50/15.05 new_primMulInt(Pos(xuu4000), Pos(xuu50010)) -> Pos(new_primMulNat0(xuu4000, xuu50010)) 33.50/15.05 new_esEs36(xuu660, xuu670, ty_Float) -> new_esEs18(xuu660, xuu670) 33.50/15.05 new_esEs8(xuu5001, xuu401, app(app(app(ty_@3, chc), chd), che)) -> new_esEs24(xuu5001, xuu401, chc, chd, che) 33.50/15.05 new_esEs38(xuu660, xuu670, app(ty_[], gb)) -> new_esEs22(xuu660, xuu670, gb) 33.50/15.05 new_ltEs18(xuu79, xuu82, ty_Double) -> new_ltEs10(xuu79, xuu82) 33.50/15.05 new_compare18(True, True) -> EQ 33.50/15.05 new_esEs40(xuu50000, xuu4000, ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.05 new_lt22(xuu111, xuu113, ty_Int) -> new_lt8(xuu111, xuu113) 33.50/15.05 new_esEs28(xuu50000, xuu4000, ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), ty_Integer, bdg) -> new_ltEs5(xuu660, xuu670) 33.50/15.05 new_esEs9(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.05 new_lt11(xuu500, xuu40) -> new_esEs29(new_compare6(xuu500, xuu40)) 33.50/15.05 new_esEs8(xuu5001, xuu401, ty_Double) -> new_esEs16(xuu5001, xuu401) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, app(app(ty_@2, fcc), fcd)) -> new_esEs17(xuu50000, xuu4000, fcc, fcd) 33.50/15.05 new_primMulNat0(Succ(xuu40000), Zero) -> Zero 33.50/15.05 new_primMulNat0(Zero, Succ(xuu500100)) -> Zero 33.50/15.05 new_ltEs11(Right(xuu660), Left(xuu670), beg, bdg) -> False 33.50/15.05 new_ltEs9(GT, EQ) -> False 33.50/15.05 new_lt7(xuu500, xuu40, cdd, cde) -> new_esEs29(new_compare25(xuu500, xuu40, cdd, cde)) 33.50/15.05 new_esEs38(xuu660, xuu670, ty_Char) -> new_esEs12(xuu660, xuu670) 33.50/15.05 new_esEs6(xuu5000, xuu400, app(ty_Maybe, faa)) -> new_esEs19(xuu5000, xuu400, faa) 33.50/15.05 new_esEs24(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), dah, dba, dbb) -> new_asAs(new_esEs28(xuu50000, xuu4000, dah), new_asAs(new_esEs27(xuu50001, xuu4001, dba), new_esEs26(xuu50002, xuu4002, dbb))) 33.50/15.05 new_esEs6(xuu5000, xuu400, app(app(ty_Either, ehe), ehf)) -> new_esEs15(xuu5000, xuu400, ehe, ehf) 33.50/15.05 new_esEs38(xuu660, xuu670, ty_Integer) -> new_esEs20(xuu660, xuu670) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), app(ty_[], fbd), dhg) -> new_esEs22(xuu50000, xuu4000, fbd) 33.50/15.05 new_ltEs23(xuu100, xuu101, ty_Int) -> new_ltEs7(xuu100, xuu101) 33.50/15.05 new_esEs7(xuu5002, xuu402, ty_Double) -> new_esEs16(xuu5002, xuu402) 33.50/15.05 new_ltEs17(xuu66, xuu67) -> new_fsEs(new_compare19(xuu66, xuu67)) 33.50/15.05 new_esEs20(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 33.50/15.05 new_primPlusNat0(Succ(xuu44200), Zero) -> Succ(xuu44200) 33.50/15.05 new_primPlusNat0(Zero, Succ(xuu13100)) -> Succ(xuu13100) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), app(app(ty_@2, fba), fbb), dhg) -> new_esEs17(xuu50000, xuu4000, fba, fbb) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.05 new_ltEs18(xuu79, xuu82, app(ty_Maybe, cab)) -> new_ltEs13(xuu79, xuu82, cab) 33.50/15.05 new_esEs6(xuu5000, xuu400, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs24(xuu5000, xuu400, fad, fae, faf) 33.50/15.05 new_ltEs20(xuu112, xuu114, app(app(ty_@2, ce), cf)) -> new_ltEs12(xuu112, xuu114, ce, cf) 33.50/15.05 new_ltEs22(xuu66, xuu67, ty_@0) -> new_ltEs17(xuu66, xuu67) 33.50/15.05 new_esEs8(xuu5001, xuu401, app(app(ty_@2, cgf), cgg)) -> new_esEs17(xuu5001, xuu401, cgf, cgg) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), app(ty_Ratio, eac), bdg) -> new_ltEs8(xuu660, xuu670, eac) 33.50/15.05 new_compare26(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, cbc) -> new_compare113(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, new_lt13(xuu77, xuu80, bhf), new_asAs(new_esEs34(xuu77, xuu80, bhf), new_pePe(new_lt12(xuu78, xuu81, bhg), new_asAs(new_esEs33(xuu78, xuu81, bhg), new_ltEs18(xuu79, xuu82, cbc)))), bhf, bhg, cbc) 33.50/15.05 new_esEs39(xuu50001, xuu4001, ty_Bool) -> new_esEs14(xuu50001, xuu4001) 33.50/15.05 new_esEs9(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.05 new_lt12(xuu78, xuu81, ty_Int) -> new_lt8(xuu78, xuu81) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Int, dhg) -> new_esEs13(xuu50000, xuu4000) 33.50/15.05 new_esEs18(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs13(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 33.50/15.05 new_lt21(xuu660, xuu670, app(ty_Ratio, eeh)) -> new_lt6(xuu660, xuu670, eeh) 33.50/15.05 new_esEs4(xuu5001, xuu401, app(ty_[], egh)) -> new_esEs22(xuu5001, xuu401, egh) 33.50/15.05 new_esEs9(xuu5000, xuu400, app(app(ty_@2, eca), ecb)) -> new_esEs17(xuu5000, xuu400, eca, ecb) 33.50/15.05 new_esEs28(xuu50000, xuu4000, app(app(ty_Either, ddg), ddh)) -> new_esEs15(xuu50000, xuu4000, ddg, ddh) 33.50/15.05 new_esEs10(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.05 new_esEs40(xuu50000, xuu4000, app(app(ty_Either, fgb), fgc)) -> new_esEs15(xuu50000, xuu4000, fgb, fgc) 33.50/15.05 new_lt13(xuu77, xuu80, ty_Float) -> new_lt10(xuu77, xuu80) 33.50/15.05 new_esEs7(xuu5002, xuu402, app(app(ty_@2, chh), daa)) -> new_esEs17(xuu5002, xuu402, chh, daa) 33.50/15.05 new_ltEs23(xuu100, xuu101, ty_@0) -> new_ltEs17(xuu100, xuu101) 33.50/15.05 new_esEs16(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs13(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 33.50/15.05 new_ltEs20(xuu112, xuu114, app(ty_[], dd)) -> new_ltEs16(xuu112, xuu114, dd) 33.50/15.05 new_lt13(xuu77, xuu80, app(app(ty_@2, ccc), ccd)) -> new_lt14(xuu77, xuu80, ccc, ccd) 33.50/15.05 new_lt20(xuu661, xuu671, app(ty_Ratio, eeg)) -> new_lt6(xuu661, xuu671, eeg) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), app(app(ty_Either, bee), bef), bdg) -> new_ltEs11(xuu660, xuu670, bee, bef) 33.50/15.05 new_esEs6(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.05 new_esEs5(xuu5000, xuu400, app(ty_[], eab)) -> new_esEs22(xuu5000, xuu400, eab) 33.50/15.05 new_esEs37(xuu111, xuu113, ty_Bool) -> new_esEs14(xuu111, xuu113) 33.50/15.05 new_lt23(xuu660, xuu670, ty_Float) -> new_lt10(xuu660, xuu670) 33.50/15.05 new_esEs33(xuu78, xuu81, ty_@0) -> new_esEs25(xuu78, xuu81) 33.50/15.05 new_lt13(xuu77, xuu80, ty_Int) -> new_lt8(xuu77, xuu80) 33.50/15.05 new_esEs28(xuu50000, xuu4000, ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.05 new_ltEs19(xuu662, xuu672, ty_Float) -> new_ltEs6(xuu662, xuu672) 33.50/15.05 new_esEs8(xuu5001, xuu401, app(ty_Maybe, cgh)) -> new_esEs19(xuu5001, xuu401, cgh) 33.50/15.05 new_esEs22(:(xuu50000, xuu50001), [], eab) -> False 33.50/15.05 new_esEs22([], :(xuu4000, xuu4001), eab) -> False 33.50/15.05 new_esEs33(xuu78, xuu81, app(app(ty_@2, cba), cbb)) -> new_esEs17(xuu78, xuu81, cba, cbb) 33.50/15.05 new_ltEs4(xuu66, xuu67) -> new_fsEs(new_compare6(xuu66, xuu67)) 33.50/15.05 new_esEs10(xuu5000, xuu400, app(app(ty_@2, efc), efd)) -> new_esEs17(xuu5000, xuu400, efc, efd) 33.50/15.05 new_ltEs9(GT, GT) -> True 33.50/15.05 new_esEs39(xuu50001, xuu4001, app(ty_[], ffe)) -> new_esEs22(xuu50001, xuu4001, ffe) 33.50/15.05 new_esEs32(xuu50000, xuu4000, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_esEs24(xuu50000, xuu4000, ebd, ebe, ebf) 33.50/15.05 new_esEs34(xuu77, xuu80, ty_Int) -> new_esEs13(xuu77, xuu80) 33.50/15.05 new_compare18(True, False) -> GT 33.50/15.05 new_esEs5(xuu5000, xuu400, app(app(ty_Either, dhf), dhg)) -> new_esEs15(xuu5000, xuu400, dhf, dhg) 33.50/15.05 new_lt12(xuu78, xuu81, app(ty_Maybe, cbd)) -> new_lt15(xuu78, xuu81, cbd) 33.50/15.05 new_ltEs19(xuu662, xuu672, app(ty_[], baf)) -> new_ltEs16(xuu662, xuu672, baf) 33.50/15.05 new_ltEs20(xuu112, xuu114, ty_Float) -> new_ltEs6(xuu112, xuu114) 33.50/15.05 new_lt12(xuu78, xuu81, ty_Float) -> new_lt10(xuu78, xuu81) 33.50/15.05 new_compare112(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, dfg, dfh, dga) -> LT 33.50/15.05 new_ltEs18(xuu79, xuu82, ty_Bool) -> new_ltEs15(xuu79, xuu82) 33.50/15.05 new_lt13(xuu77, xuu80, ty_Integer) -> new_lt16(xuu77, xuu80) 33.50/15.05 new_primMulInt(Neg(xuu4000), Neg(xuu50010)) -> Pos(new_primMulNat0(xuu4000, xuu50010)) 33.50/15.05 new_primCmpInt(Pos(Zero), Pos(Succ(xuu4000))) -> new_primCmpNat0(Zero, Succ(xuu4000)) 33.50/15.05 new_esEs11(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.05 new_esEs36(xuu660, xuu670, app(ty_Ratio, eeh)) -> new_esEs23(xuu660, xuu670, eeh) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.05 new_esEs37(xuu111, xuu113, ty_Char) -> new_esEs12(xuu111, xuu113) 33.50/15.05 new_esEs14(True, True) -> True 33.50/15.05 new_esEs34(xuu77, xuu80, ty_@0) -> new_esEs25(xuu77, xuu80) 33.50/15.05 new_esEs32(xuu50000, xuu4000, app(app(ty_@2, eag), eah)) -> new_esEs17(xuu50000, xuu4000, eag, eah) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), ty_Ordering, bdg) -> new_ltEs9(xuu660, xuu670) 33.50/15.05 new_compare14(Just(xuu5000), Nothing, dg) -> GT 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.05 new_esEs40(xuu50000, xuu4000, app(ty_[], fgg)) -> new_esEs22(xuu50000, xuu4000, fgg) 33.50/15.05 new_esEs7(xuu5002, xuu402, app(ty_Maybe, dab)) -> new_esEs19(xuu5002, xuu402, dab) 33.50/15.05 new_compare11(xuu168, xuu169, xuu170, xuu171, False, cgb, cgc) -> GT 33.50/15.05 new_esEs11(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.05 new_esEs21(LT, LT) -> True 33.50/15.05 new_ltEs23(xuu100, xuu101, app(ty_Ratio, fee)) -> new_ltEs8(xuu100, xuu101, fee) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), ty_Ordering) -> new_ltEs9(xuu660, xuu670) 33.50/15.05 new_esEs39(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) 33.50/15.05 new_esEs39(xuu50001, xuu4001, ty_Ordering) -> new_esEs21(xuu50001, xuu4001) 33.50/15.05 new_esEs32(xuu50000, xuu4000, app(ty_Maybe, eba)) -> new_esEs19(xuu50000, xuu4000, eba) 33.50/15.05 new_esEs7(xuu5002, xuu402, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs24(xuu5002, xuu402, dae, daf, dag) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs24(xuu50000, xuu4000, fch, fda, fdb) 33.50/15.05 new_esEs27(xuu50001, xuu4001, ty_Ordering) -> new_esEs21(xuu50001, xuu4001) 33.50/15.05 new_esEs9(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.05 new_esEs38(xuu660, xuu670, ty_Bool) -> new_esEs14(xuu660, xuu670) 33.50/15.05 new_lt13(xuu77, xuu80, ty_Bool) -> new_lt5(xuu77, xuu80) 33.50/15.05 new_esEs4(xuu5001, xuu401, ty_Integer) -> new_esEs20(xuu5001, xuu401) 33.50/15.05 new_compare14(Nothing, Nothing, dg) -> EQ 33.50/15.05 new_esEs28(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.05 new_esEs35(xuu661, xuu671, ty_Float) -> new_esEs18(xuu661, xuu671) 33.50/15.05 new_lt13(xuu77, xuu80, app(ty_[], cda)) -> new_lt17(xuu77, xuu80, cda) 33.50/15.05 new_esEs40(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.05 new_ltEs18(xuu79, xuu82, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs14(xuu79, xuu82, cac, cad, cae) 33.50/15.05 new_ltEs24(xuu93, xuu94, ty_Int) -> new_ltEs7(xuu93, xuu94) 33.50/15.05 new_lt13(xuu77, xuu80, app(app(app(ty_@3, ccf), ccg), cch)) -> new_lt4(xuu77, xuu80, ccf, ccg, cch) 33.50/15.05 new_esEs27(xuu50001, xuu4001, ty_Bool) -> new_esEs14(xuu50001, xuu4001) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.05 new_esEs32(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.05 new_ltEs22(xuu66, xuu67, ty_Float) -> new_ltEs6(xuu66, xuu67) 33.50/15.05 new_ltEs22(xuu66, xuu67, ty_Char) -> new_ltEs4(xuu66, xuu67) 33.50/15.05 new_compare9(xuu5000, xuu400, app(ty_Maybe, bgd)) -> new_compare14(xuu5000, xuu400, bgd) 33.50/15.05 new_compare7(Float(xuu5000, Pos(xuu50010)), Float(xuu400, Pos(xuu4010))) -> new_compare8(new_sr(xuu5000, Pos(xuu4010)), new_sr(Pos(xuu50010), xuu400)) 33.50/15.05 new_ltEs6(xuu66, xuu67) -> new_fsEs(new_compare7(xuu66, xuu67)) 33.50/15.05 new_esEs8(xuu5001, xuu401, ty_Float) -> new_esEs18(xuu5001, xuu401) 33.50/15.05 new_primMulInt(Pos(xuu4000), Neg(xuu50010)) -> Neg(new_primMulNat0(xuu4000, xuu50010)) 33.50/15.05 new_primMulInt(Neg(xuu4000), Pos(xuu50010)) -> Neg(new_primMulNat0(xuu4000, xuu50010)) 33.50/15.05 new_esEs4(xuu5001, xuu401, app(app(ty_@2, ege), egf)) -> new_esEs17(xuu5001, xuu401, ege, egf) 33.50/15.05 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 33.50/15.05 new_esEs5(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.05 new_esEs10(xuu5000, xuu400, app(ty_Ratio, efg)) -> new_esEs23(xuu5000, xuu400, efg) 33.50/15.05 new_ltEs15(True, True) -> True 33.50/15.05 new_lt9(xuu500, xuu40) -> new_esEs29(new_compare17(xuu500, xuu40)) 33.50/15.05 new_ltEs21(xuu661, xuu671, app(ty_Maybe, ec)) -> new_ltEs13(xuu661, xuu671, ec) 33.50/15.05 new_lt20(xuu661, xuu671, app(ty_[], bbh)) -> new_lt17(xuu661, xuu671, bbh) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), app(app(app(ty_@3, bea), beb), bec), bdg) -> new_ltEs14(xuu660, xuu670, bea, beb, bec) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), ty_Int) -> new_ltEs7(xuu660, xuu670) 33.50/15.05 new_esEs27(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 33.50/15.05 new_esEs39(xuu50001, xuu4001, app(ty_Maybe, ffd)) -> new_esEs19(xuu50001, xuu4001, ffd) 33.50/15.05 new_esEs33(xuu78, xuu81, ty_Int) -> new_esEs13(xuu78, xuu81) 33.50/15.05 new_compare17(GT, GT) -> EQ 33.50/15.05 new_esEs33(xuu78, xuu81, ty_Bool) -> new_esEs14(xuu78, xuu81) 33.50/15.05 new_compare27(xuu111, xuu112, xuu113, xuu114, False, cd, bd) -> new_compare10(xuu111, xuu112, xuu113, xuu114, new_lt22(xuu111, xuu113, cd), new_asAs(new_esEs37(xuu111, xuu113, cd), new_ltEs20(xuu112, xuu114, bd)), cd, bd) 33.50/15.05 new_ltEs20(xuu112, xuu114, app(app(ty_Either, de), df)) -> new_ltEs11(xuu112, xuu114, de, df) 33.50/15.05 new_sr0(Integer(xuu4000), Integer(xuu50010)) -> Integer(new_primMulInt(xuu4000, xuu50010)) 33.50/15.05 new_esEs19(Nothing, Just(xuu4000), dgc) -> False 33.50/15.05 new_esEs19(Just(xuu50000), Nothing, dgc) -> False 33.50/15.05 new_esEs19(Nothing, Nothing, dgc) -> True 33.50/15.05 new_esEs26(xuu50002, xuu4002, ty_Integer) -> new_esEs20(xuu50002, xuu4002) 33.50/15.05 new_esEs6(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.05 new_esEs8(xuu5001, xuu401, app(ty_Ratio, chb)) -> new_esEs23(xuu5001, xuu401, chb) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), app(ty_Ratio, dhb)) -> new_esEs23(xuu50000, xuu4000, dhb) 33.50/15.05 new_compare18(False, False) -> EQ 33.50/15.05 new_esEs13(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 33.50/15.05 new_lt17(xuu500, xuu40, bga) -> new_esEs29(new_compare3(xuu500, xuu40, bga)) 33.50/15.05 new_esEs40(xuu50000, xuu4000, ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.05 new_esEs10(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.05 new_lt21(xuu660, xuu670, ty_Char) -> new_lt11(xuu660, xuu670) 33.50/15.05 new_esEs6(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.05 new_esEs4(xuu5001, xuu401, app(ty_Ratio, eha)) -> new_esEs23(xuu5001, xuu401, eha) 33.50/15.05 new_lt12(xuu78, xuu81, app(app(ty_Either, cca), ccb)) -> new_lt7(xuu78, xuu81, cca, ccb) 33.50/15.05 new_esEs6(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.05 new_esEs8(xuu5001, xuu401, ty_@0) -> new_esEs25(xuu5001, xuu401) 33.50/15.05 new_ltEs21(xuu661, xuu671, app(ty_[], eg)) -> new_ltEs16(xuu661, xuu671, eg) 33.50/15.05 new_asAs(True, xuu129) -> xuu129 33.50/15.05 new_lt12(xuu78, xuu81, ty_Bool) -> new_lt5(xuu78, xuu81) 33.50/15.05 new_esEs35(xuu661, xuu671, app(ty_Ratio, eeg)) -> new_esEs23(xuu661, xuu671, eeg) 33.50/15.05 new_lt12(xuu78, xuu81, app(app(ty_@2, cba), cbb)) -> new_lt14(xuu78, xuu81, cba, cbb) 33.50/15.05 new_esEs6(xuu5000, xuu400, app(ty_[], fab)) -> new_esEs22(xuu5000, xuu400, fab) 33.50/15.05 new_lt21(xuu660, xuu670, ty_@0) -> new_lt18(xuu660, xuu670) 33.50/15.05 new_ltEs5(xuu66, xuu67) -> new_fsEs(new_compare16(xuu66, xuu67)) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs14(xuu660, xuu670, gh, ha, hb) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), ty_Int, bdg) -> new_ltEs7(xuu660, xuu670) 33.50/15.05 new_lt12(xuu78, xuu81, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt4(xuu78, xuu81, cbe, cbf, cbg) 33.50/15.05 new_compare210(xuu100, xuu101, False, ceh, fed) -> new_compare114(xuu100, xuu101, new_ltEs23(xuu100, xuu101, fed), ceh, fed) 33.50/15.05 new_esEs38(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) 33.50/15.05 new_lt23(xuu660, xuu670, app(app(ty_Either, gc), gd)) -> new_lt7(xuu660, xuu670, gc, gd) 33.50/15.05 new_esEs33(xuu78, xuu81, ty_Char) -> new_esEs12(xuu78, xuu81) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), ty_Bool, bdg) -> new_ltEs15(xuu660, xuu670) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, ty_@0) -> new_ltEs17(xuu660, xuu670) 33.50/15.05 new_esEs4(xuu5001, xuu401, ty_Float) -> new_esEs18(xuu5001, xuu401) 33.50/15.05 new_lt22(xuu111, xuu113, ty_Double) -> new_lt19(xuu111, xuu113) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.05 new_lt23(xuu660, xuu670, app(app(app(ty_@3, fg), fh), ga)) -> new_lt4(xuu660, xuu670, fg, fh, ga) 33.50/15.05 new_compare24(Double(xuu5000, Pos(xuu50010)), Double(xuu400, Neg(xuu4010))) -> new_compare8(new_sr(xuu5000, Pos(xuu4010)), new_sr(Neg(xuu50010), xuu400)) 33.50/15.05 new_compare24(Double(xuu5000, Neg(xuu50010)), Double(xuu400, Pos(xuu4010))) -> new_compare8(new_sr(xuu5000, Neg(xuu4010)), new_sr(Pos(xuu50010), xuu400)) 33.50/15.05 new_lt23(xuu660, xuu670, ty_Bool) -> new_lt5(xuu660, xuu670) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, fbf), fbg), fbh), dhg) -> new_esEs24(xuu50000, xuu4000, fbf, fbg, fbh) 33.50/15.05 new_ltEs23(xuu100, xuu101, app(app(ty_@2, cfa), cfb)) -> new_ltEs12(xuu100, xuu101, cfa, cfb) 33.50/15.05 new_compare18(False, True) -> LT 33.50/15.05 new_ltEs23(xuu100, xuu101, ty_Integer) -> new_ltEs5(xuu100, xuu101) 33.50/15.05 new_esEs27(xuu50001, xuu4001, app(ty_[], ddb)) -> new_esEs22(xuu50001, xuu4001, ddb) 33.50/15.05 new_esEs38(xuu660, xuu670, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs24(xuu660, xuu670, fg, fh, ga) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), ty_Bool) -> new_ltEs15(xuu660, xuu670) 33.50/15.05 new_esEs33(xuu78, xuu81, app(ty_[], cbh)) -> new_esEs22(xuu78, xuu81, cbh) 33.50/15.05 new_ltEs22(xuu66, xuu67, ty_Ordering) -> new_ltEs9(xuu66, xuu67) 33.50/15.05 new_primCmpInt(Pos(Succ(xuu50000)), Pos(xuu400)) -> new_primCmpNat0(Succ(xuu50000), xuu400) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, app(app(ty_Either, bfg), bfh)) -> new_ltEs11(xuu660, xuu670, bfg, bfh) 33.50/15.05 new_lt22(xuu111, xuu113, app(ty_Ratio, fdc)) -> new_lt6(xuu111, xuu113, fdc) 33.50/15.05 new_esEs35(xuu661, xuu671, ty_@0) -> new_esEs25(xuu661, xuu671) 33.50/15.05 new_primCompAux00(xuu87, EQ) -> xuu87 33.50/15.05 new_compare25(Right(xuu5000), Right(xuu400), cdd, cde) -> new_compare210(xuu5000, xuu400, new_esEs11(xuu5000, xuu400, cde), cdd, cde) 33.50/15.05 new_esEs27(xuu50001, xuu4001, app(app(ty_Either, dce), dcf)) -> new_esEs15(xuu50001, xuu4001, dce, dcf) 33.50/15.05 new_sr(xuu400, xuu5001) -> new_primMulInt(xuu400, xuu5001) 33.50/15.05 new_ltEs22(xuu66, xuu67, app(ty_Ratio, dfe)) -> new_ltEs8(xuu66, xuu67, dfe) 33.50/15.05 new_esEs35(xuu661, xuu671, app(app(ty_@2, bba), bbb)) -> new_esEs17(xuu661, xuu671, bba, bbb) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.05 new_compare9(xuu5000, xuu400, ty_Integer) -> new_compare16(xuu5000, xuu400) 33.50/15.05 new_compare9(xuu5000, xuu400, app(ty_[], bgh)) -> new_compare3(xuu5000, xuu400, bgh) 33.50/15.05 new_primMulNat0(Zero, Zero) -> Zero 33.50/15.05 new_esEs28(xuu50000, xuu4000, app(ty_Maybe, dec)) -> new_esEs19(xuu50000, xuu4000, dec) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), app(app(ty_@2, ge), gf)) -> new_ltEs12(xuu660, xuu670, ge, gf) 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), ty_Integer) -> new_ltEs5(xuu660, xuu670) 33.50/15.05 new_esEs35(xuu661, xuu671, app(ty_Maybe, bbd)) -> new_esEs19(xuu661, xuu671, bbd) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, ty_Char) -> new_ltEs4(xuu660, xuu670) 33.50/15.05 new_ltEs13(Nothing, Nothing, fdg) -> True 33.50/15.05 new_ltEs13(Just(xuu660), Nothing, fdg) -> False 33.50/15.05 new_ltEs21(xuu661, xuu671, ty_@0) -> new_ltEs17(xuu661, xuu671) 33.50/15.05 new_primMulNat0(Succ(xuu40000), Succ(xuu500100)) -> new_primPlusNat0(new_primMulNat0(xuu40000, Succ(xuu500100)), Succ(xuu500100)) 33.50/15.05 new_esEs37(xuu111, xuu113, ty_Integer) -> new_esEs20(xuu111, xuu113) 33.50/15.05 new_ltEs21(xuu661, xuu671, app(ty_Ratio, fde)) -> new_ltEs8(xuu661, xuu671, fde) 33.50/15.05 new_esEs33(xuu78, xuu81, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs24(xuu78, xuu81, cbe, cbf, cbg) 33.50/15.05 new_lt22(xuu111, xuu113, app(app(app(ty_@3, bf), bg), bh)) -> new_lt4(xuu111, xuu113, bf, bg, bh) 33.50/15.05 new_esEs36(xuu660, xuu670, app(app(ty_@2, bcc), bcd)) -> new_esEs17(xuu660, xuu670, bcc, bcd) 33.50/15.05 new_esEs11(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.05 new_esEs11(xuu5000, xuu400, app(app(ty_@2, edc), edd)) -> new_esEs17(xuu5000, xuu400, edc, edd) 33.50/15.05 new_esEs26(xuu50002, xuu4002, app(app(ty_Either, dbc), dbd)) -> new_esEs15(xuu50002, xuu4002, dbc, dbd) 33.50/15.05 new_esEs35(xuu661, xuu671, ty_Ordering) -> new_esEs21(xuu661, xuu671) 33.50/15.05 new_lt20(xuu661, xuu671, ty_Float) -> new_lt10(xuu661, xuu671) 33.50/15.05 new_esEs27(xuu50001, xuu4001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs24(xuu50001, xuu4001, ddd, dde, ddf) 33.50/15.05 new_ltEs19(xuu662, xuu672, app(ty_Maybe, bab)) -> new_ltEs13(xuu662, xuu672, bab) 33.50/15.05 new_esEs5(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.05 new_esEs34(xuu77, xuu80, app(ty_Maybe, cce)) -> new_esEs19(xuu77, xuu80, cce) 33.50/15.05 new_esEs7(xuu5002, xuu402, ty_@0) -> new_esEs25(xuu5002, xuu402) 33.50/15.05 new_ltEs24(xuu93, xuu94, app(app(ty_Either, cef), ceg)) -> new_ltEs11(xuu93, xuu94, cef, ceg) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, ty_Float) -> new_ltEs6(xuu660, xuu670) 33.50/15.05 new_lt20(xuu661, xuu671, ty_@0) -> new_lt18(xuu661, xuu671) 33.50/15.05 new_esEs39(xuu50001, xuu4001, app(ty_Ratio, fff)) -> new_esEs23(xuu50001, xuu4001, fff) 33.50/15.05 new_lt5(xuu500, xuu40) -> new_esEs29(new_compare18(xuu500, xuu40)) 33.50/15.05 new_esEs37(xuu111, xuu113, ty_Int) -> new_esEs13(xuu111, xuu113) 33.50/15.05 new_esEs36(xuu660, xuu670, ty_Integer) -> new_esEs20(xuu660, xuu670) 33.50/15.05 new_ltEs18(xuu79, xuu82, app(app(ty_Either, cag), cah)) -> new_ltEs11(xuu79, xuu82, cag, cah) 33.50/15.05 new_esEs7(xuu5002, xuu402, ty_Ordering) -> new_esEs21(xuu5002, xuu402) 33.50/15.05 new_lt23(xuu660, xuu670, app(app(ty_@2, fb), fc)) -> new_lt14(xuu660, xuu670, fb, fc) 33.50/15.05 new_esEs10(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.05 new_esEs28(xuu50000, xuu4000, app(app(app(ty_@3, def), deg), deh)) -> new_esEs24(xuu50000, xuu4000, def, deg, deh) 33.50/15.05 new_lt21(xuu660, xuu670, ty_Double) -> new_lt19(xuu660, xuu670) 33.50/15.05 new_lt12(xuu78, xuu81, app(ty_Ratio, eed)) -> new_lt6(xuu78, xuu81, eed) 33.50/15.05 new_ltEs9(GT, LT) -> False 33.50/15.05 new_lt21(xuu660, xuu670, ty_Int) -> new_lt8(xuu660, xuu670) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), app(app(ty_@2, dgf), dgg)) -> new_esEs17(xuu50000, xuu4000, dgf, dgg) 33.50/15.05 new_esEs37(xuu111, xuu113, app(ty_[], ca)) -> new_esEs22(xuu111, xuu113, ca) 33.50/15.05 new_lt16(xuu500, xuu40) -> new_esEs29(new_compare16(xuu500, xuu40)) 33.50/15.05 new_esEs7(xuu5002, xuu402, ty_Int) -> new_esEs13(xuu5002, xuu402) 33.50/15.05 new_esEs32(xuu50000, xuu4000, app(ty_[], ebb)) -> new_esEs22(xuu50000, xuu4000, ebb) 33.50/15.05 new_esEs40(xuu50000, xuu4000, app(ty_Maybe, fgf)) -> new_esEs19(xuu50000, xuu4000, fgf) 33.50/15.05 new_ltEs22(xuu66, xuu67, app(app(ty_@2, dh), fd)) -> new_ltEs12(xuu66, xuu67, dh, fd) 33.50/15.05 new_compare27(xuu111, xuu112, xuu113, xuu114, True, cd, bd) -> EQ 33.50/15.05 new_lt13(xuu77, xuu80, ty_Ordering) -> new_lt9(xuu77, xuu80) 33.50/15.05 new_ltEs19(xuu662, xuu672, app(app(ty_Either, bag), bah)) -> new_ltEs11(xuu662, xuu672, bag, bah) 33.50/15.05 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 33.50/15.05 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 33.50/15.05 new_esEs9(xuu5000, xuu400, app(ty_Ratio, ece)) -> new_esEs23(xuu5000, xuu400, ece) 33.50/15.05 new_esEs9(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.05 new_esEs39(xuu50001, xuu4001, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs24(xuu50001, xuu4001, ffg, ffh, fga) 33.50/15.05 new_compare29(xuu93, xuu94, False, fef, cdh) -> new_compare110(xuu93, xuu94, new_ltEs24(xuu93, xuu94, fef), fef, cdh) 33.50/15.05 new_esEs32(xuu50000, xuu4000, app(app(ty_Either, eae), eaf)) -> new_esEs15(xuu50000, xuu4000, eae, eaf) 33.50/15.05 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 33.50/15.05 new_ltEs9(EQ, GT) -> True 33.50/15.05 new_lt4(xuu500, xuu40, bhc, bhd, bhe) -> new_esEs29(new_compare15(xuu500, xuu40, bhc, bhd, bhe)) 33.50/15.05 new_esEs5(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.05 new_esEs31(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.05 new_lt13(xuu77, xuu80, app(app(ty_Either, cdb), cdc)) -> new_lt7(xuu77, xuu80, cdb, cdc) 33.50/15.05 new_lt22(xuu111, xuu113, app(app(ty_@2, bb), bc)) -> new_lt14(xuu111, xuu113, bb, bc) 33.50/15.05 new_compare9(xuu5000, xuu400, ty_Bool) -> new_compare18(xuu5000, xuu400) 33.50/15.05 new_ltEs23(xuu100, xuu101, ty_Float) -> new_ltEs6(xuu100, xuu101) 33.50/15.05 new_esEs4(xuu5001, xuu401, ty_Double) -> new_esEs16(xuu5001, xuu401) 33.50/15.05 new_ltEs18(xuu79, xuu82, ty_Integer) -> new_ltEs5(xuu79, xuu82) 33.50/15.05 new_esEs14(False, False) -> True 33.50/15.05 new_compare17(EQ, EQ) -> EQ 33.50/15.05 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 33.50/15.05 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 33.50/15.05 new_esEs5(xuu5000, xuu400, app(app(ty_@2, dhh), eaa)) -> new_esEs17(xuu5000, xuu400, dhh, eaa) 33.50/15.05 new_compare10(xuu168, xuu169, xuu170, xuu171, True, xuu173, cgb, cgc) -> new_compare11(xuu168, xuu169, xuu170, xuu171, True, cgb, cgc) 33.50/15.05 new_esEs37(xuu111, xuu113, app(app(ty_Either, cb), cc)) -> new_esEs15(xuu111, xuu113, cb, cc) 33.50/15.05 new_lt21(xuu660, xuu670, app(ty_Maybe, bce)) -> new_lt15(xuu660, xuu670, bce) 33.50/15.05 new_primCmpInt(Neg(Zero), Neg(Succ(xuu4000))) -> new_primCmpNat0(Succ(xuu4000), Zero) 33.50/15.05 new_esEs11(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.05 new_lt22(xuu111, xuu113, ty_Bool) -> new_lt5(xuu111, xuu113) 33.50/15.05 new_esEs40(xuu50000, xuu4000, app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs24(xuu50000, xuu4000, fha, fhb, fhc) 33.50/15.05 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 33.50/15.05 new_esEs34(xuu77, xuu80, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs24(xuu77, xuu80, ccf, ccg, cch) 33.50/15.05 new_compare111(xuu142, xuu143, False, dfd) -> GT 33.50/15.05 new_esEs4(xuu5001, xuu401, app(ty_Maybe, egg)) -> new_esEs19(xuu5001, xuu401, egg) 33.50/15.05 new_ltEs11(Left(xuu660), Left(xuu670), app(ty_Maybe, bdh), bdg) -> new_ltEs13(xuu660, xuu670, bdh) 33.50/15.05 new_esEs34(xuu77, xuu80, ty_Bool) -> new_esEs14(xuu77, xuu80) 33.50/15.05 new_ltEs19(xuu662, xuu672, ty_@0) -> new_ltEs17(xuu662, xuu672) 33.50/15.05 new_ltEs24(xuu93, xuu94, app(ty_[], cee)) -> new_ltEs16(xuu93, xuu94, cee) 33.50/15.05 new_lt23(xuu660, xuu670, ty_Double) -> new_lt19(xuu660, xuu670) 33.50/15.05 new_ltEs24(xuu93, xuu94, app(app(ty_@2, cdf), cdg)) -> new_ltEs12(xuu93, xuu94, cdf, cdg) 33.50/15.05 new_esEs11(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.05 new_ltEs24(xuu93, xuu94, ty_Integer) -> new_ltEs5(xuu93, xuu94) 33.50/15.05 new_esEs40(xuu50000, xuu4000, app(ty_Ratio, fgh)) -> new_esEs23(xuu50000, xuu4000, fgh) 33.50/15.05 new_esEs7(xuu5002, xuu402, ty_Float) -> new_esEs18(xuu5002, xuu402) 33.50/15.05 new_esEs5(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.05 new_esEs21(EQ, GT) -> False 33.50/15.05 new_esEs21(GT, EQ) -> False 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.05 new_esEs34(xuu77, xuu80, app(ty_[], cda)) -> new_esEs22(xuu77, xuu80, cda) 33.50/15.05 new_esEs25(@0, @0) -> True 33.50/15.05 new_esEs7(xuu5002, xuu402, ty_Bool) -> new_esEs14(xuu5002, xuu402) 33.50/15.05 new_esEs7(xuu5002, xuu402, app(ty_Ratio, dad)) -> new_esEs23(xuu5002, xuu402, dad) 33.50/15.05 new_esEs37(xuu111, xuu113, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs24(xuu111, xuu113, bf, bg, bh) 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, ty_Ordering) -> new_ltEs9(xuu660, xuu670) 33.50/15.05 new_esEs11(xuu5000, xuu400, app(ty_[], edf)) -> new_esEs22(xuu5000, xuu400, edf) 33.50/15.05 new_esEs38(xuu660, xuu670, ty_@0) -> new_esEs25(xuu660, xuu670) 33.50/15.05 new_esEs21(GT, GT) -> True 33.50/15.05 new_compare9(xuu5000, xuu400, ty_@0) -> new_compare19(xuu5000, xuu400) 33.50/15.05 new_ltEs19(xuu662, xuu672, app(ty_Ratio, eef)) -> new_ltEs8(xuu662, xuu672, eef) 33.50/15.05 new_compare16(Integer(xuu5000), Integer(xuu400)) -> new_primCmpInt(xuu5000, xuu400) 33.50/15.05 new_compare113(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, xuu190, dfg, dfh, dga) -> new_compare112(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, xuu190, dfg, dfh, dga) 33.50/15.05 new_esEs40(xuu50000, xuu4000, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.05 new_not(False) -> True 33.50/15.05 new_esEs33(xuu78, xuu81, ty_Integer) -> new_esEs20(xuu78, xuu81) 33.50/15.05 new_esEs36(xuu660, xuu670, app(ty_[], bda)) -> new_esEs22(xuu660, xuu670, bda) 33.50/15.05 new_ltEs21(xuu661, xuu671, ty_Char) -> new_ltEs4(xuu661, xuu671) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Char, dhg) -> new_esEs12(xuu50000, xuu4000) 33.50/15.05 new_esEs28(xuu50000, xuu4000, ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.05 new_esEs9(xuu5000, xuu400, app(ty_[], ecd)) -> new_esEs22(xuu5000, xuu400, ecd) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), app(ty_Maybe, dgh)) -> new_esEs19(xuu50000, xuu4000, dgh) 33.50/15.05 new_lt21(xuu660, xuu670, app(ty_[], bda)) -> new_lt17(xuu660, xuu670, bda) 33.50/15.05 new_esEs9(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.05 new_compare113(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, xuu190, dfg, dfh, dga) -> new_compare112(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, dfg, dfh, dga) 33.50/15.05 new_lt20(xuu661, xuu671, ty_Ordering) -> new_lt9(xuu661, xuu671) 33.50/15.05 new_primPlusNat0(Succ(xuu44200), Succ(xuu13100)) -> Succ(Succ(new_primPlusNat0(xuu44200, xuu13100))) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, app(ty_Ratio, fcg)) -> new_esEs23(xuu50000, xuu4000, fcg) 33.50/15.05 new_esEs37(xuu111, xuu113, ty_Double) -> new_esEs16(xuu111, xuu113) 33.50/15.05 new_ltEs21(xuu661, xuu671, app(app(ty_Either, eh), fa)) -> new_ltEs11(xuu661, xuu671, eh, fa) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, app(ty_[], fcf)) -> new_esEs22(xuu50000, xuu4000, fcf) 33.50/15.05 new_esEs38(xuu660, xuu670, app(ty_Maybe, ff)) -> new_esEs19(xuu660, xuu670, ff) 33.50/15.05 new_compare9(xuu5000, xuu400, app(ty_Ratio, dfa)) -> new_compare12(xuu5000, xuu400, dfa) 33.50/15.05 new_ltEs15(False, True) -> True 33.50/15.05 new_esEs9(xuu5000, xuu400, app(app(ty_Either, ebg), ebh)) -> new_esEs15(xuu5000, xuu400, ebg, ebh) 33.50/15.05 new_esEs9(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.05 new_esEs35(xuu661, xuu671, ty_Integer) -> new_esEs20(xuu661, xuu671) 33.50/15.05 new_esEs30(xuu50001, xuu4001, ty_Int) -> new_esEs13(xuu50001, xuu4001) 33.50/15.05 new_compare25(Right(xuu5000), Left(xuu400), cdd, cde) -> GT 33.50/15.05 new_esEs8(xuu5001, xuu401, ty_Integer) -> new_esEs20(xuu5001, xuu401) 33.50/15.05 new_lt20(xuu661, xuu671, ty_Int) -> new_lt8(xuu661, xuu671) 33.50/15.05 new_esEs36(xuu660, xuu670, app(app(ty_Either, bdb), bdc)) -> new_esEs15(xuu660, xuu670, bdb, bdc) 33.50/15.05 new_esEs28(xuu50000, xuu4000, app(ty_Ratio, dee)) -> new_esEs23(xuu50000, xuu4000, dee) 33.50/15.05 new_esEs40(xuu50000, xuu4000, ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.05 new_esEs40(xuu50000, xuu4000, app(app(ty_@2, fgd), fge)) -> new_esEs17(xuu50000, xuu4000, fgd, fge) 33.50/15.05 new_ltEs19(xuu662, xuu672, ty_Int) -> new_ltEs7(xuu662, xuu672) 33.50/15.05 new_ltEs9(LT, EQ) -> True 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.05 new_esEs5(xuu5000, xuu400, app(ty_Ratio, dgb)) -> new_esEs23(xuu5000, xuu400, dgb) 33.50/15.05 new_esEs35(xuu661, xuu671, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs24(xuu661, xuu671, bbe, bbf, bbg) 33.50/15.05 new_esEs10(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.05 new_lt20(xuu661, xuu671, app(ty_Maybe, bbd)) -> new_lt15(xuu661, xuu671, bbd) 33.50/15.05 new_lt21(xuu660, xuu670, ty_Integer) -> new_lt16(xuu660, xuu670) 33.50/15.05 new_compare25(Left(xuu5000), Right(xuu400), cdd, cde) -> LT 33.50/15.05 new_esEs35(xuu661, xuu671, ty_Double) -> new_esEs16(xuu661, xuu671) 33.50/15.05 new_esEs33(xuu78, xuu81, app(app(ty_Either, cca), ccb)) -> new_esEs15(xuu78, xuu81, cca, ccb) 33.50/15.05 new_esEs27(xuu50001, xuu4001, app(ty_Maybe, dda)) -> new_esEs19(xuu50001, xuu4001, dda) 33.50/15.05 new_esEs32(xuu50000, xuu4000, app(ty_Ratio, ebc)) -> new_esEs23(xuu50000, xuu4000, ebc) 33.50/15.05 new_compare14(Just(xuu5000), Just(xuu400), dg) -> new_compare28(xuu5000, xuu400, new_esEs6(xuu5000, xuu400, dg), dg) 33.50/15.05 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 33.50/15.05 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 33.50/15.05 new_esEs26(xuu50002, xuu4002, ty_Int) -> new_esEs13(xuu50002, xuu4002) 33.50/15.05 new_ltEs10(xuu66, xuu67) -> new_fsEs(new_compare24(xuu66, xuu67)) 33.50/15.05 new_esEs26(xuu50002, xuu4002, ty_Double) -> new_esEs16(xuu50002, xuu4002) 33.50/15.05 new_ltEs23(xuu100, xuu101, ty_Bool) -> new_ltEs15(xuu100, xuu101) 33.50/15.05 new_esEs36(xuu660, xuu670, app(ty_Maybe, bce)) -> new_esEs19(xuu660, xuu670, bce) 33.50/15.05 new_esEs10(xuu5000, xuu400, app(app(ty_Either, efa), efb)) -> new_esEs15(xuu5000, xuu400, efa, efb) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.05 new_compare7(Float(xuu5000, Neg(xuu50010)), Float(xuu400, Neg(xuu4010))) -> new_compare8(new_sr(xuu5000, Neg(xuu4010)), new_sr(Neg(xuu50010), xuu400)) 33.50/15.05 new_compare111(xuu142, xuu143, True, dfd) -> LT 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, ty_Double) -> new_ltEs10(xuu660, xuu670) 33.50/15.05 new_lt12(xuu78, xuu81, ty_@0) -> new_lt18(xuu78, xuu81) 33.50/15.05 new_ltEs20(xuu112, xuu114, ty_Int) -> new_ltEs7(xuu112, xuu114) 33.50/15.05 new_ltEs22(xuu66, xuu67, app(ty_Maybe, fdg)) -> new_ltEs13(xuu66, xuu67, fdg) 33.50/15.05 new_lt13(xuu77, xuu80, ty_Double) -> new_lt19(xuu77, xuu80) 33.50/15.05 new_lt12(xuu78, xuu81, ty_Ordering) -> new_lt9(xuu78, xuu81) 33.50/15.05 new_ltEs9(LT, GT) -> True 33.50/15.05 new_ltEs21(xuu661, xuu671, ty_Double) -> new_ltEs10(xuu661, xuu671) 33.50/15.05 new_esEs39(xuu50001, xuu4001, app(app(ty_@2, ffb), ffc)) -> new_esEs17(xuu50001, xuu4001, ffb, ffc) 33.50/15.05 new_esEs34(xuu77, xuu80, app(app(ty_Either, cdb), cdc)) -> new_esEs15(xuu77, xuu80, cdb, cdc) 33.50/15.05 new_esEs39(xuu50001, xuu4001, ty_Float) -> new_esEs18(xuu50001, xuu4001) 33.50/15.05 new_compare24(Double(xuu5000, Pos(xuu50010)), Double(xuu400, Pos(xuu4010))) -> new_compare8(new_sr(xuu5000, Pos(xuu4010)), new_sr(Pos(xuu50010), xuu400)) 33.50/15.05 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 33.50/15.05 new_ltEs23(xuu100, xuu101, app(app(ty_Either, cfh), cga)) -> new_ltEs11(xuu100, xuu101, cfh, cga) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Integer, dhg) -> new_esEs20(xuu50000, xuu4000) 33.50/15.05 new_esEs11(xuu5000, xuu400, app(app(ty_Either, eda), edb)) -> new_esEs15(xuu5000, xuu400, eda, edb) 33.50/15.05 new_lt23(xuu660, xuu670, ty_Ordering) -> new_lt9(xuu660, xuu670) 33.50/15.05 new_esEs5(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.05 new_ltEs23(xuu100, xuu101, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs14(xuu100, xuu101, cfd, cfe, cff) 33.50/15.05 new_esEs8(xuu5001, xuu401, ty_Ordering) -> new_esEs21(xuu5001, xuu401) 33.50/15.05 new_compare26(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, True, bhf, bhg, cbc) -> EQ 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, app(app(ty_Either, fca), fcb)) -> new_esEs15(xuu50000, xuu4000, fca, fcb) 33.50/15.05 new_compare29(xuu93, xuu94, True, fef, cdh) -> EQ 33.50/15.05 new_ltEs11(Right(xuu660), Right(xuu670), beg, app(ty_Ratio, ead)) -> new_ltEs8(xuu660, xuu670, ead) 33.50/15.05 new_ltEs23(xuu100, xuu101, ty_Ordering) -> new_ltEs9(xuu100, xuu101) 33.50/15.05 new_primCmpNat0(Succ(xuu50000), Succ(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) 33.50/15.05 new_lt12(xuu78, xuu81, ty_Double) -> new_lt19(xuu78, xuu81) 33.50/15.05 new_lt21(xuu660, xuu670, app(app(ty_Either, bdb), bdc)) -> new_lt7(xuu660, xuu670, bdb, bdc) 33.50/15.05 new_esEs40(xuu50000, xuu4000, ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.05 new_esEs22([], [], eab) -> True 33.50/15.05 new_esEs21(LT, GT) -> False 33.50/15.05 new_esEs21(GT, LT) -> False 33.50/15.05 new_esEs28(xuu50000, xuu4000, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.05 new_esEs11(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.05 new_esEs35(xuu661, xuu671, app(app(ty_Either, bca), bcb)) -> new_esEs15(xuu661, xuu671, bca, bcb) 33.50/15.05 new_lt20(xuu661, xuu671, app(app(ty_@2, bba), bbb)) -> new_lt14(xuu661, xuu671, bba, bbb) 33.50/15.05 new_compare9(xuu5000, xuu400, ty_Float) -> new_compare7(xuu5000, xuu400) 33.50/15.05 new_ltEs19(xuu662, xuu672, ty_Char) -> new_ltEs4(xuu662, xuu672) 33.50/15.05 new_esEs9(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.05 new_esEs27(xuu50001, xuu4001, app(app(ty_@2, dcg), dch)) -> new_esEs17(xuu50001, xuu4001, dcg, dch) 33.50/15.05 new_compare3(:(xuu5000, xuu5001), [], bga) -> GT 33.50/15.05 new_ltEs21(xuu661, xuu671, ty_Integer) -> new_ltEs5(xuu661, xuu671) 33.50/15.05 new_compare6(Char(xuu5000), Char(xuu400)) -> new_primCmpNat0(xuu5000, xuu400) 33.50/15.05 new_esEs27(xuu50001, xuu4001, ty_@0) -> new_esEs25(xuu50001, xuu4001) 33.50/15.05 new_lt20(xuu661, xuu671, ty_Bool) -> new_lt5(xuu661, xuu671) 33.50/15.05 new_esEs19(Just(xuu50000), Just(xuu4000), app(app(ty_Either, dgd), dge)) -> new_esEs15(xuu50000, xuu4000, dgd, dge) 33.50/15.05 new_ltEs23(xuu100, xuu101, ty_Double) -> new_ltEs10(xuu100, xuu101) 33.50/15.05 new_esEs26(xuu50002, xuu4002, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs24(xuu50002, xuu4002, dcb, dcc, dcd) 33.50/15.05 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 33.50/15.05 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 33.50/15.05 new_esEs32(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.05 new_esEs34(xuu77, xuu80, ty_Ordering) -> new_esEs21(xuu77, xuu80) 33.50/15.05 new_esEs29(LT) -> True 33.50/15.05 new_esEs37(xuu111, xuu113, app(app(ty_@2, bb), bc)) -> new_esEs17(xuu111, xuu113, bb, bc) 33.50/15.05 new_ltEs24(xuu93, xuu94, app(ty_Maybe, cea)) -> new_ltEs13(xuu93, xuu94, cea) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Bool, dhg) -> new_esEs14(xuu50000, xuu4000) 33.50/15.05 new_ltEs9(EQ, LT) -> False 33.50/15.05 new_lt15(xuu500, xuu40, dg) -> new_esEs29(new_compare14(xuu500, xuu40, dg)) 33.50/15.05 new_ltEs24(xuu93, xuu94, ty_Ordering) -> new_ltEs9(xuu93, xuu94) 33.50/15.05 new_esEs26(xuu50002, xuu4002, app(ty_Maybe, dbg)) -> new_esEs19(xuu50002, xuu4002, dbg) 33.50/15.05 new_compare110(xuu151, xuu152, False, dfb, dfc) -> GT 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), ty_@0) -> new_ltEs17(xuu660, xuu670) 33.50/15.05 new_esEs27(xuu50001, xuu4001, ty_Int) -> new_esEs13(xuu50001, xuu4001) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.05 new_lt20(xuu661, xuu671, ty_Integer) -> new_lt16(xuu661, xuu671) 33.50/15.05 new_ltEs20(xuu112, xuu114, ty_Char) -> new_ltEs4(xuu112, xuu114) 33.50/15.05 new_primEqNat0(Zero, Zero) -> True 33.50/15.05 new_ltEs15(True, False) -> False 33.50/15.05 new_esEs5(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.05 new_esEs26(xuu50002, xuu4002, app(app(ty_@2, dbe), dbf)) -> new_esEs17(xuu50002, xuu4002, dbe, dbf) 33.50/15.05 new_esEs22(:(xuu50000, xuu50001), :(xuu4000, xuu4001), eab) -> new_asAs(new_esEs32(xuu50000, xuu4000, eab), new_esEs22(xuu50001, xuu4001, eab)) 33.50/15.05 new_ltEs22(xuu66, xuu67, ty_Integer) -> new_ltEs5(xuu66, xuu67) 33.50/15.05 new_esEs38(xuu660, xuu670, app(app(ty_@2, fb), fc)) -> new_esEs17(xuu660, xuu670, fb, fc) 33.50/15.05 new_ltEs24(xuu93, xuu94, ty_Bool) -> new_ltEs15(xuu93, xuu94) 33.50/15.05 new_esEs10(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.05 new_esEs28(xuu50000, xuu4000, ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.05 new_esEs32(xuu50000, xuu4000, ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.05 new_ltEs23(xuu100, xuu101, app(ty_Maybe, cfc)) -> new_ltEs13(xuu100, xuu101, cfc) 33.50/15.05 new_esEs36(xuu660, xuu670, ty_Double) -> new_esEs16(xuu660, xuu670) 33.50/15.05 new_asAs(False, xuu129) -> False 33.50/15.05 new_ltEs13(Just(xuu660), Just(xuu670), app(ty_Ratio, fdh)) -> new_ltEs8(xuu660, xuu670, fdh) 33.50/15.05 new_ltEs22(xuu66, xuu67, ty_Double) -> new_ltEs10(xuu66, xuu67) 33.50/15.05 new_esEs33(xuu78, xuu81, ty_Ordering) -> new_esEs21(xuu78, xuu81) 33.50/15.05 new_lt22(xuu111, xuu113, ty_@0) -> new_lt18(xuu111, xuu113) 33.50/15.05 new_ltEs22(xuu66, xuu67, app(app(ty_Either, beg), bdg)) -> new_ltEs11(xuu66, xuu67, beg, bdg) 33.50/15.05 new_esEs4(xuu5001, xuu401, ty_Int) -> new_esEs13(xuu5001, xuu401) 33.50/15.05 new_ltEs13(Nothing, Just(xuu670), fdg) -> True 33.50/15.05 new_compare9(xuu5000, xuu400, app(app(ty_Either, bha), bhb)) -> new_compare25(xuu5000, xuu400, bha, bhb) 33.50/15.05 new_esEs4(xuu5001, xuu401, ty_@0) -> new_esEs25(xuu5001, xuu401) 33.50/15.05 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Ordering, dhg) -> new_esEs21(xuu50000, xuu4000) 33.50/15.05 new_lt22(xuu111, xuu113, ty_Ordering) -> new_lt9(xuu111, xuu113) 33.50/15.05 new_esEs37(xuu111, xuu113, app(ty_Maybe, be)) -> new_esEs19(xuu111, xuu113, be) 33.50/15.05 new_lt22(xuu111, xuu113, app(app(ty_Either, cb), cc)) -> new_lt7(xuu111, xuu113, cb, cc) 33.50/15.05 new_compare10(xuu168, xuu169, xuu170, xuu171, False, xuu173, cgb, cgc) -> new_compare11(xuu168, xuu169, xuu170, xuu171, xuu173, cgb, cgc) 33.50/15.05 new_ltEs15(False, False) -> True 33.50/15.05 new_esEs8(xuu5001, xuu401, ty_Bool) -> new_esEs14(xuu5001, xuu401) 33.50/15.05 new_compare12(:%(xuu5000, xuu5001), :%(xuu400, xuu401), ty_Integer) -> new_compare16(new_sr0(xuu5000, xuu401), new_sr0(xuu400, xuu5001)) 33.50/15.05 new_ltEs9(EQ, EQ) -> True 33.50/15.05 new_esEs34(xuu77, xuu80, ty_Integer) -> new_esEs20(xuu77, xuu80) 33.50/15.05 new_esEs9(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.05 new_esEs15(Right(xuu50000), Right(xuu4000), dhf, ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.05 new_esEs39(xuu50001, xuu4001, ty_Int) -> new_esEs13(xuu50001, xuu4001) 33.50/15.05 new_esEs7(xuu5002, xuu402, ty_Char) -> new_esEs12(xuu5002, xuu402) 33.50/15.05 new_ltEs18(xuu79, xuu82, ty_Int) -> new_ltEs7(xuu79, xuu82) 33.50/15.05 new_esEs6(xuu5000, xuu400, app(ty_Ratio, fac)) -> new_esEs23(xuu5000, xuu400, fac) 33.50/15.05 new_compare9(xuu5000, xuu400, ty_Double) -> new_compare24(xuu5000, xuu400) 33.50/15.05 new_esEs11(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.05 new_ltEs24(xuu93, xuu94, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs14(xuu93, xuu94, ceb, cec, ced) 33.50/15.05 new_esEs39(xuu50001, xuu4001, ty_@0) -> new_esEs25(xuu50001, xuu4001) 33.50/15.05 new_compare17(GT, LT) -> GT 33.50/15.05 33.50/15.05 The set Q consists of the following terms: 33.50/15.05 33.50/15.05 new_lt22(x0, x1, ty_Double) 33.50/15.05 new_compare17(LT, GT) 33.50/15.05 new_compare17(GT, LT) 33.50/15.05 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_lt23(x0, x1, ty_Double) 33.50/15.05 new_lt21(x0, x1, ty_Ordering) 33.50/15.05 new_esEs7(x0, x1, ty_Char) 33.50/15.05 new_ltEs13(Just(x0), Nothing, x1) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) 33.50/15.05 new_asAs(True, x0) 33.50/15.05 new_compare9(x0, x1, ty_Char) 33.50/15.05 new_lt20(x0, x1, ty_Char) 33.50/15.05 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_primCompAux00(x0, LT) 33.50/15.05 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 33.50/15.05 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 33.50/15.05 new_ltEs22(x0, x1, ty_Float) 33.50/15.05 new_esEs38(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs4(x0, x1, ty_Int) 33.50/15.05 new_esEs27(x0, x1, ty_Bool) 33.50/15.05 new_compare11(x0, x1, x2, x3, True, x4, x5) 33.50/15.05 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_ltEs24(x0, x1, ty_@0) 33.50/15.05 new_esEs5(x0, x1, ty_Double) 33.50/15.05 new_ltEs19(x0, x1, ty_Int) 33.50/15.05 new_esEs27(x0, x1, ty_@0) 33.50/15.05 new_esEs38(x0, x1, ty_@0) 33.50/15.05 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_lt22(x0, x1, ty_Ordering) 33.50/15.05 new_lt12(x0, x1, ty_Integer) 33.50/15.05 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs11(x0, x1, ty_Double) 33.50/15.05 new_esEs19(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_ltEs24(x0, x1, ty_Bool) 33.50/15.05 new_esEs35(x0, x1, ty_Integer) 33.50/15.05 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_compare27(x0, x1, x2, x3, True, x4, x5) 33.50/15.05 new_lt20(x0, x1, ty_Int) 33.50/15.05 new_esEs7(x0, x1, ty_Int) 33.50/15.05 new_esEs6(x0, x1, ty_Float) 33.50/15.05 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_ltEs18(x0, x1, ty_Double) 33.50/15.05 new_esEs8(x0, x1, ty_Ordering) 33.50/15.05 new_primPlusNat0(Succ(x0), Zero) 33.50/15.05 new_esEs32(x0, x1, ty_Integer) 33.50/15.05 new_esEs6(x0, x1, app(ty_[], x2)) 33.50/15.05 new_esEs4(x0, x1, ty_Char) 33.50/15.05 new_esEs21(LT, LT) 33.50/15.05 new_esEs15(Right(x0), Right(x1), x2, ty_@0) 33.50/15.05 new_esEs11(x0, x1, ty_Ordering) 33.50/15.05 new_esEs38(x0, x1, ty_Bool) 33.50/15.05 new_compare28(x0, x1, True, x2) 33.50/15.05 new_esEs4(x0, x1, ty_Double) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, ty_Char) 33.50/15.05 new_esEs28(x0, x1, ty_@0) 33.50/15.05 new_esEs8(x0, x1, ty_Int) 33.50/15.05 new_esEs22(:(x0, x1), [], x2) 33.50/15.05 new_primEqInt(Pos(Zero), Pos(Zero)) 33.50/15.05 new_lt16(x0, x1) 33.50/15.05 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs27(x0, x1, ty_Integer) 33.50/15.05 new_lt12(x0, x1, ty_@0) 33.50/15.05 new_esEs33(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 33.50/15.05 new_esEs39(x0, x1, ty_Integer) 33.50/15.05 new_ltEs17(x0, x1) 33.50/15.05 new_lt13(x0, x1, ty_Bool) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, ty_Double) 33.50/15.05 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) 33.50/15.05 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs38(x0, x1, ty_Char) 33.50/15.05 new_esEs5(x0, x1, ty_Ordering) 33.50/15.05 new_esEs40(x0, x1, ty_Float) 33.50/15.05 new_esEs35(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs35(x0, x1, ty_Bool) 33.50/15.05 new_compare16(Integer(x0), Integer(x1)) 33.50/15.05 new_esEs32(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_lt23(x0, x1, ty_Ordering) 33.50/15.05 new_esEs8(x0, x1, ty_Char) 33.50/15.05 new_esEs14(True, True) 33.50/15.05 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_compare9(x0, x1, ty_Int) 33.50/15.05 new_esEs37(x0, x1, ty_@0) 33.50/15.05 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) 33.50/15.05 new_ltEs18(x0, x1, ty_Int) 33.50/15.05 new_compare3(:(x0, x1), :(x2, x3), x4) 33.50/15.05 new_esEs26(x0, x1, ty_Bool) 33.50/15.05 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_compare114(x0, x1, True, x2, x3) 33.50/15.05 new_esEs10(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_ltEs9(EQ, EQ) 33.50/15.05 new_lt10(x0, x1) 33.50/15.05 new_primEqNat0(Zero, Succ(x0)) 33.50/15.05 new_primEqInt(Neg(Zero), Neg(Zero)) 33.50/15.05 new_esEs11(x0, x1, ty_Int) 33.50/15.05 new_lt23(x0, x1, ty_Int) 33.50/15.05 new_compare9(x0, x1, ty_Ordering) 33.50/15.05 new_esEs36(x0, x1, ty_@0) 33.50/15.05 new_esEs5(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs40(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, ty_Int) 33.50/15.05 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 33.50/15.05 new_ltEs18(x0, x1, ty_Ordering) 33.50/15.05 new_esEs8(x0, x1, ty_Double) 33.50/15.05 new_lt8(x0, x1) 33.50/15.05 new_esEs28(x0, x1, ty_Char) 33.50/15.05 new_ltEs13(Just(x0), Just(x1), ty_Float) 33.50/15.05 new_lt13(x0, x1, ty_Integer) 33.50/15.05 new_esEs15(Right(x0), Right(x1), x2, ty_Integer) 33.50/15.05 new_esEs38(x0, x1, ty_Int) 33.50/15.05 new_primCmpNat0(Succ(x0), Succ(x1)) 33.50/15.05 new_esEs29(GT) 33.50/15.05 new_compare9(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_ltEs15(False, True) 33.50/15.05 new_ltEs15(True, False) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), ty_@0, x2) 33.50/15.05 new_esEs39(x0, x1, ty_Bool) 33.50/15.05 new_pePe(True, x0) 33.50/15.05 new_lt22(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs32(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_ltEs24(x0, x1, ty_Char) 33.50/15.05 new_esEs36(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_ltEs15(True, True) 33.50/15.05 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_lt23(x0, x1, ty_Char) 33.50/15.05 new_esEs19(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs36(x0, x1, ty_Integer) 33.50/15.05 new_esEs28(x0, x1, ty_Int) 33.50/15.05 new_esEs37(x0, x1, ty_Integer) 33.50/15.05 new_esEs37(x0, x1, ty_Int) 33.50/15.05 new_lt20(x0, x1, ty_Bool) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) 33.50/15.05 new_esEs39(x0, x1, ty_Float) 33.50/15.05 new_esEs36(x0, x1, ty_Int) 33.50/15.05 new_esEs14(False, True) 33.50/15.05 new_esEs14(True, False) 33.50/15.05 new_ltEs13(Just(x0), Just(x1), ty_Bool) 33.50/15.05 new_lt20(x0, x1, ty_Ordering) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), ty_Float, x2) 33.50/15.05 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_compare9(x0, x1, ty_Bool) 33.50/15.05 new_esEs28(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_ltEs5(x0, x1) 33.50/15.05 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 33.50/15.05 new_esEs7(x0, x1, ty_Ordering) 33.50/15.05 new_compare9(x0, x1, ty_Double) 33.50/15.05 new_esEs15(Left(x0), Left(x1), ty_Double, x2) 33.50/15.05 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 33.50/15.05 new_esEs36(x0, x1, ty_Char) 33.50/15.05 new_ltEs11(Left(x0), Right(x1), x2, x3) 33.50/15.05 new_ltEs11(Right(x0), Left(x1), x2, x3) 33.50/15.05 new_esEs36(x0, x1, app(ty_[], x2)) 33.50/15.05 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_ltEs18(x0, x1, ty_Char) 33.50/15.05 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_lt23(x0, x1, app(ty_[], x2)) 33.50/15.05 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_esEs39(x0, x1, ty_@0) 33.50/15.05 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_sr(x0, x1) 33.50/15.05 new_esEs34(x0, x1, app(ty_[], x2)) 33.50/15.05 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_ltEs19(x0, x1, ty_Ordering) 33.50/15.05 new_esEs37(x0, x1, ty_Char) 33.50/15.05 new_esEs26(x0, x1, app(ty_[], x2)) 33.50/15.05 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs35(x0, x1, ty_Float) 33.50/15.05 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs15(Left(x0), Left(x1), ty_Int, x2) 33.50/15.05 new_esEs19(Just(x0), Just(x1), app(ty_[], x2)) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 33.50/15.05 new_primEqInt(Pos(Zero), Neg(Zero)) 33.50/15.05 new_primEqInt(Neg(Zero), Pos(Zero)) 33.50/15.05 new_compare15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 33.50/15.05 new_ltEs22(x0, x1, ty_Integer) 33.50/15.05 new_compare14(Nothing, Just(x0), x1) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 33.50/15.05 new_ltEs21(x0, x1, app(ty_[], x2)) 33.50/15.05 new_esEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 33.50/15.05 new_esEs9(x0, x1, ty_Char) 33.50/15.05 new_esEs37(x0, x1, ty_Bool) 33.50/15.05 new_lt18(x0, x1) 33.50/15.05 new_esEs9(x0, x1, ty_Double) 33.50/15.05 new_ltEs13(Nothing, Nothing, x0) 33.50/15.05 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 33.50/15.05 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 33.50/15.05 new_esEs39(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 33.50/15.05 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_lt12(x0, x1, ty_Bool) 33.50/15.05 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_esEs4(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 33.50/15.05 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_esEs30(x0, x1, ty_Int) 33.50/15.05 new_lt14(x0, x1, x2, x3) 33.50/15.05 new_compare27(x0, x1, x2, x3, False, x4, x5) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 33.50/15.05 new_esEs6(x0, x1, ty_@0) 33.50/15.05 new_lt20(x0, x1, ty_Integer) 33.50/15.05 new_esEs9(x0, x1, ty_Int) 33.50/15.05 new_esEs22([], :(x0, x1), x2) 33.50/15.05 new_ltEs24(x0, x1, ty_Int) 33.50/15.05 new_ltEs23(x0, x1, ty_Float) 33.50/15.05 new_esEs36(x0, x1, ty_Bool) 33.50/15.05 new_esEs4(x0, x1, ty_Ordering) 33.50/15.05 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 33.50/15.05 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs35(x0, x1, ty_@0) 33.50/15.05 new_esEs28(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_ltEs13(Just(x0), Just(x1), ty_@0) 33.50/15.05 new_esEs16(Double(x0, x1), Double(x2, x3)) 33.50/15.05 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs10(x0, x1, ty_Integer) 33.50/15.05 new_esEs33(x0, x1, app(ty_[], x2)) 33.50/15.05 new_lt13(x0, x1, ty_Ordering) 33.50/15.05 new_esEs26(x0, x1, ty_Integer) 33.50/15.05 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_lt21(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs26(x0, x1, ty_Char) 33.50/15.05 new_ltEs20(x0, x1, ty_Float) 33.50/15.05 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_lt6(x0, x1, x2) 33.50/15.05 new_esEs40(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_lt21(x0, x1, ty_Bool) 33.50/15.05 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs18(Float(x0, x1), Float(x2, x3)) 33.50/15.05 new_esEs11(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), ty_Char, x2) 33.50/15.05 new_ltEs22(x0, x1, ty_Bool) 33.50/15.05 new_esEs5(x0, x1, ty_@0) 33.50/15.05 new_lt23(x0, x1, ty_@0) 33.50/15.05 new_ltEs20(x0, x1, ty_Ordering) 33.50/15.05 new_ltEs9(GT, GT) 33.50/15.05 new_esEs34(x0, x1, ty_Integer) 33.50/15.05 new_esEs4(x0, x1, ty_Integer) 33.50/15.05 new_esEs6(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_ltEs21(x0, x1, ty_Float) 33.50/15.05 new_esEs10(x0, x1, ty_@0) 33.50/15.05 new_esEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 33.50/15.05 new_compare8(x0, x1) 33.50/15.05 new_esEs8(x0, x1, ty_@0) 33.50/15.05 new_esEs19(Just(x0), Just(x1), ty_Integer) 33.50/15.05 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs36(x0, x1, ty_Double) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) 33.50/15.05 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) 33.50/15.05 new_compare9(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_primMulInt(Pos(x0), Neg(x1)) 33.50/15.05 new_primMulInt(Neg(x0), Pos(x1)) 33.50/15.05 new_ltEs9(LT, EQ) 33.50/15.05 new_ltEs9(EQ, LT) 33.50/15.05 new_compare17(EQ, EQ) 33.50/15.05 new_esEs26(x0, x1, ty_Int) 33.50/15.05 new_lt22(x0, x1, ty_@0) 33.50/15.05 new_compare3([], [], x0) 33.50/15.05 new_esEs8(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_esEs27(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 33.50/15.05 new_esEs40(x0, x1, ty_@0) 33.50/15.05 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_lt12(x0, x1, ty_Double) 33.50/15.05 new_lt15(x0, x1, x2) 33.50/15.05 new_compare28(x0, x1, False, x2) 33.50/15.05 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs39(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_esEs13(x0, x1) 33.50/15.05 new_esEs33(x0, x1, ty_Ordering) 33.50/15.05 new_esEs4(x0, x1, ty_Bool) 33.50/15.05 new_esEs38(x0, x1, ty_Double) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 33.50/15.05 new_esEs33(x0, x1, ty_Double) 33.50/15.05 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 33.50/15.05 new_lt21(x0, x1, ty_Integer) 33.50/15.05 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_esEs37(x0, x1, ty_Float) 33.50/15.05 new_primPlusNat0(Succ(x0), Succ(x1)) 33.50/15.05 new_esEs7(x0, x1, ty_Integer) 33.50/15.05 new_ltEs10(x0, x1) 33.50/15.05 new_esEs34(x0, x1, ty_Bool) 33.50/15.05 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_lt12(x0, x1, ty_Ordering) 33.50/15.05 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs11(x0, x1, ty_@0) 33.50/15.05 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs21(EQ, EQ) 33.50/15.05 new_esEs36(x0, x1, ty_Ordering) 33.50/15.05 new_sr0(Integer(x0), Integer(x1)) 33.50/15.05 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_ltEs20(x0, x1, ty_Int) 33.50/15.05 new_esEs37(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_ltEs6(x0, x1) 33.50/15.05 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_ltEs18(x0, x1, ty_@0) 33.50/15.05 new_esEs21(GT, GT) 33.50/15.05 new_primCmpInt(Neg(Zero), Neg(Zero)) 33.50/15.05 new_esEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 33.50/15.05 new_ltEs16(x0, x1, x2) 33.50/15.05 new_lt20(x0, x1, ty_@0) 33.50/15.05 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 33.50/15.05 new_lt20(x0, x1, ty_Double) 33.50/15.05 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_compare3(:(x0, x1), [], x2) 33.50/15.05 new_compare114(x0, x1, False, x2, x3) 33.50/15.05 new_lt13(x0, x1, ty_Int) 33.50/15.05 new_primCmpInt(Pos(Zero), Neg(Zero)) 33.50/15.05 new_primCmpInt(Neg(Zero), Pos(Zero)) 33.50/15.05 new_esEs32(x0, x1, ty_@0) 33.50/15.05 new_esEs7(x0, x1, ty_Bool) 33.50/15.05 new_compare17(LT, EQ) 33.50/15.05 new_compare17(EQ, LT) 33.50/15.05 new_esEs32(x0, x1, ty_Double) 33.50/15.05 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 33.50/15.05 new_lt20(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs21(LT, EQ) 33.50/15.05 new_esEs21(EQ, LT) 33.50/15.05 new_compare9(x0, x1, app(ty_[], x2)) 33.50/15.05 new_ltEs20(x0, x1, ty_Char) 33.50/15.05 new_esEs37(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_esEs34(x0, x1, ty_Float) 33.50/15.05 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_primEqNat0(Succ(x0), Zero) 33.50/15.05 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 33.50/15.05 new_esEs28(x0, x1, ty_Ordering) 33.50/15.05 new_esEs9(x0, x1, ty_Ordering) 33.50/15.05 new_esEs9(x0, x1, ty_Integer) 33.50/15.05 new_ltEs9(LT, LT) 33.50/15.05 new_esEs19(Just(x0), Just(x1), ty_Bool) 33.50/15.05 new_esEs28(x0, x1, ty_Bool) 33.50/15.05 new_compare9(x0, x1, ty_Float) 33.50/15.05 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_ltEs7(x0, x1) 33.50/15.05 new_esEs17(@2(x0, x1), @2(x2, x3), x4, x5) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 33.50/15.05 new_esEs39(x0, x1, ty_Ordering) 33.50/15.05 new_lt13(x0, x1, ty_Char) 33.50/15.05 new_ltEs19(x0, x1, ty_@0) 33.50/15.05 new_esEs19(Just(x0), Just(x1), ty_Float) 33.50/15.05 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 33.50/15.05 new_ltEs20(x0, x1, ty_Integer) 33.50/15.05 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_ltEs21(x0, x1, ty_Char) 33.50/15.05 new_ltEs15(False, False) 33.50/15.05 new_ltEs24(x0, x1, ty_Integer) 33.50/15.05 new_compare111(x0, x1, False, x2) 33.50/15.05 new_compare19(@0, @0) 33.50/15.05 new_lt7(x0, x1, x2, x3) 33.50/15.05 new_esEs4(x0, x1, ty_Float) 33.50/15.05 new_esEs26(x0, x1, app(ty_Ratio, x2)) 33.50/15.05 new_esEs40(x0, x1, app(ty_[], x2)) 33.50/15.05 new_esEs19(Just(x0), Nothing, x1) 33.50/15.05 new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) 33.50/15.05 new_ltEs24(x0, x1, ty_Ordering) 33.50/15.05 new_primCmpNat0(Zero, Succ(x0)) 33.50/15.05 new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 33.50/15.05 new_compare18(True, True) 33.50/15.05 new_lt13(x0, x1, ty_Float) 33.50/15.05 new_ltEs21(x0, x1, ty_Int) 33.50/15.05 new_esEs28(x0, x1, ty_Integer) 33.50/15.05 new_lt21(x0, x1, ty_Int) 33.50/15.05 new_esEs9(x0, x1, app(ty_[], x2)) 33.50/15.05 new_compare17(LT, LT) 33.50/15.05 new_lt21(x0, x1, ty_Char) 33.50/15.05 new_esEs34(x0, x1, ty_Int) 33.50/15.05 new_esEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 33.50/15.05 new_esEs15(Right(x0), Right(x1), x2, ty_Double) 33.50/15.05 new_primMulInt(Pos(x0), Pos(x1)) 33.50/15.05 new_esEs27(x0, x1, ty_Double) 33.50/15.05 new_esEs7(x0, x1, app(ty_[], x2)) 33.50/15.05 new_compare110(x0, x1, False, x2, x3) 33.50/15.05 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_esEs10(x0, x1, app(ty_[], x2)) 33.50/15.05 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 33.50/15.05 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_esEs40(x0, x1, ty_Double) 33.50/15.05 new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 33.50/15.05 new_esEs19(Just(x0), Just(x1), ty_Int) 33.50/15.05 new_ltEs19(x0, x1, ty_Double) 33.50/15.05 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.05 new_esEs26(x0, x1, ty_Float) 33.50/15.05 new_esEs19(Just(x0), Just(x1), app(ty_Ratio, x2)) 33.50/15.05 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.05 new_lt11(x0, x1) 33.50/15.05 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 33.50/15.05 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 33.50/15.05 new_esEs39(x0, x1, app(ty_[], x2)) 33.50/15.05 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.05 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 33.50/15.05 new_ltEs21(x0, x1, ty_Bool) 33.50/15.06 new_compare25(Right(x0), Left(x1), x2, x3) 33.50/15.06 new_compare25(Left(x0), Right(x1), x2, x3) 33.50/15.06 new_ltEs20(x0, x1, ty_Bool) 33.50/15.06 new_lt21(x0, x1, ty_Float) 33.50/15.06 new_ltEs20(x0, x1, ty_@0) 33.50/15.06 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt22(x0, x1, ty_Float) 33.50/15.06 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 33.50/15.06 new_esEs8(x0, x1, ty_Float) 33.50/15.06 new_esEs34(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs19(Just(x0), Just(x1), ty_Char) 33.50/15.06 new_esEs10(x0, x1, ty_Double) 33.50/15.06 new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) 33.50/15.06 new_esEs40(x0, x1, ty_Int) 33.50/15.06 new_ltEs18(x0, x1, ty_Float) 33.50/15.06 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_primMulNat0(Zero, Zero) 33.50/15.06 new_esEs22(:(x0, x1), :(x2, x3), x4) 33.50/15.06 new_compare24(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 33.50/15.06 new_compare24(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 33.50/15.06 new_compare6(Char(x0), Char(x1)) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, ty_Float) 33.50/15.06 new_esEs7(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_ltEs23(x0, x1, ty_Int) 33.50/15.06 new_ltEs22(x0, x1, ty_Int) 33.50/15.06 new_compare24(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 33.50/15.06 new_compare29(x0, x1, False, x2, x3) 33.50/15.06 new_lt9(x0, x1) 33.50/15.06 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 33.50/15.06 new_esEs11(x0, x1, ty_Float) 33.50/15.06 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs34(x0, x1, ty_Char) 33.50/15.06 new_compare9(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_lt13(x0, x1, app(ty_[], x2)) 33.50/15.06 new_lt23(x0, x1, ty_Float) 33.50/15.06 new_esEs40(x0, x1, ty_Ordering) 33.50/15.06 new_ltEs22(x0, x1, ty_Ordering) 33.50/15.06 new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_lt22(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs9(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 33.50/15.06 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs31(x0, x1, ty_Integer) 33.50/15.06 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_compare14(Just(x0), Just(x1), x2) 33.50/15.06 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_compare18(True, False) 33.50/15.06 new_compare18(False, True) 33.50/15.06 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs20(Integer(x0), Integer(x1)) 33.50/15.06 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs33(x0, x1, ty_Char) 33.50/15.06 new_esEs8(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs6(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_fsEs(x0) 33.50/15.06 new_esEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 33.50/15.06 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 33.50/15.06 new_ltEs22(x0, x1, app(ty_[], x2)) 33.50/15.06 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_compare17(GT, GT) 33.50/15.06 new_esEs29(LT) 33.50/15.06 new_esEs28(x0, x1, app(ty_[], x2)) 33.50/15.06 new_ltEs23(x0, x1, ty_Double) 33.50/15.06 new_lt5(x0, x1) 33.50/15.06 new_esEs11(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_ltEs23(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs33(x0, x1, ty_@0) 33.50/15.06 new_ltEs19(x0, x1, ty_Float) 33.50/15.06 new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 33.50/15.06 new_ltEs22(x0, x1, ty_Double) 33.50/15.06 new_compare3([], :(x0, x1), x2) 33.50/15.06 new_esEs5(x0, x1, ty_Float) 33.50/15.06 new_esEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 33.50/15.06 new_ltEs23(x0, x1, ty_Char) 33.50/15.06 new_compare210(x0, x1, True, x2, x3) 33.50/15.06 new_ltEs22(x0, x1, ty_Char) 33.50/15.06 new_lt12(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs7(x0, x1, ty_Float) 33.50/15.06 new_primEqNat0(Succ(x0), Succ(x1)) 33.50/15.06 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 33.50/15.06 new_lt4(x0, x1, x2, x3, x4) 33.50/15.06 new_esEs38(x0, x1, app(ty_[], x2)) 33.50/15.06 new_primPlusNat0(Zero, Zero) 33.50/15.06 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_not(True) 33.50/15.06 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 33.50/15.06 new_pePe(False, x0) 33.50/15.06 new_esEs15(Left(x0), Left(x1), ty_Bool, x2) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), ty_Double) 33.50/15.06 new_esEs25(@0, @0) 33.50/15.06 new_esEs4(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_lt20(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_primCompAux00(x0, GT) 33.50/15.06 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs32(x0, x1, ty_Ordering) 33.50/15.06 new_ltEs20(x0, x1, app(ty_[], x2)) 33.50/15.06 new_ltEs18(x0, x1, ty_Integer) 33.50/15.06 new_esEs15(Left(x0), Left(x1), ty_Float, x2) 33.50/15.06 new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 33.50/15.06 new_esEs9(x0, x1, ty_Bool) 33.50/15.06 new_esEs26(x0, x1, ty_Ordering) 33.50/15.06 new_primCompAux0(x0, x1, x2, x3) 33.50/15.06 new_lt20(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs15(Left(x0), Right(x1), x2, x3) 33.50/15.06 new_esEs15(Right(x0), Left(x1), x2, x3) 33.50/15.06 new_ltEs11(Left(x0), Left(x1), ty_Double, x2) 33.50/15.06 new_esEs19(Nothing, Nothing, x0) 33.50/15.06 new_esEs9(x0, x1, ty_Float) 33.50/15.06 new_ltEs23(x0, x1, ty_@0) 33.50/15.06 new_esEs33(x0, x1, ty_Integer) 33.50/15.06 new_esEs32(x0, x1, app(ty_[], x2)) 33.50/15.06 new_lt23(x0, x1, ty_Integer) 33.50/15.06 new_esEs33(x0, x1, ty_Bool) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), ty_Int) 33.50/15.06 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 33.50/15.06 new_esEs9(x0, x1, ty_@0) 33.50/15.06 new_esEs39(x0, x1, ty_Int) 33.50/15.06 new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 33.50/15.06 new_lt23(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs35(x0, x1, ty_Double) 33.50/15.06 new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) 33.50/15.06 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs6(x0, x1, ty_Double) 33.50/15.06 new_ltEs18(x0, x1, ty_Bool) 33.50/15.06 new_compare111(x0, x1, True, x2) 33.50/15.06 new_primCmpNat0(Succ(x0), Zero) 33.50/15.06 new_compare210(x0, x1, False, x2, x3) 33.50/15.06 new_esEs28(x0, x1, ty_Float) 33.50/15.06 new_esEs10(x0, x1, ty_Ordering) 33.50/15.06 new_esEs6(x0, x1, ty_Char) 33.50/15.06 new_compare25(Right(x0), Right(x1), x2, x3) 33.50/15.06 new_ltEs21(x0, x1, ty_Integer) 33.50/15.06 new_compare24(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 33.50/15.06 new_ltEs11(Left(x0), Left(x1), ty_Int, x2) 33.50/15.06 new_esEs19(Just(x0), Just(x1), ty_Ordering) 33.50/15.06 new_compare14(Just(x0), Nothing, x1) 33.50/15.06 new_esEs34(x0, x1, ty_Ordering) 33.50/15.06 new_compare11(x0, x1, x2, x3, False, x4, x5) 33.50/15.06 new_ltEs21(x0, x1, ty_Ordering) 33.50/15.06 new_esEs6(x0, x1, ty_Int) 33.50/15.06 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt12(x0, x1, app(ty_[], x2)) 33.50/15.06 new_primCmpInt(Pos(Zero), Pos(Zero)) 33.50/15.06 new_esEs39(x0, x1, ty_Double) 33.50/15.06 new_esEs39(x0, x1, ty_Char) 33.50/15.06 new_esEs37(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs38(x0, x1, ty_Float) 33.50/15.06 new_esEs29(EQ) 33.50/15.06 new_esEs15(Left(x0), Left(x1), ty_@0, x2) 33.50/15.06 new_esEs35(x0, x1, ty_Int) 33.50/15.06 new_ltEs21(x0, x1, ty_Double) 33.50/15.06 new_esEs27(x0, x1, ty_Ordering) 33.50/15.06 new_asAs(False, x0) 33.50/15.06 new_ltEs20(x0, x1, ty_Double) 33.50/15.06 new_esEs8(x0, x1, ty_Bool) 33.50/15.06 new_ltEs23(x0, x1, ty_Integer) 33.50/15.06 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs34(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_primMulInt(Neg(x0), Neg(x1)) 33.50/15.06 new_lt12(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs27(x0, x1, ty_Float) 33.50/15.06 new_lt22(x0, x1, ty_Bool) 33.50/15.06 new_ltEs19(x0, x1, ty_Integer) 33.50/15.06 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs26(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_lt23(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_ltEs18(x0, x1, app(ty_[], x2)) 33.50/15.06 new_ltEs24(x0, x1, ty_Double) 33.50/15.06 new_esEs32(x0, x1, ty_Char) 33.50/15.06 new_esEs40(x0, x1, ty_Bool) 33.50/15.06 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs11(x0, x1, app(ty_[], x2)) 33.50/15.06 new_lt21(x0, x1, ty_@0) 33.50/15.06 new_esEs19(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs15(Left(x0), Left(x1), ty_Char, x2) 33.50/15.06 new_esEs21(EQ, GT) 33.50/15.06 new_esEs21(GT, EQ) 33.50/15.06 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs35(x0, x1, ty_Char) 33.50/15.06 new_compare9(x0, x1, ty_Integer) 33.50/15.06 new_compare29(x0, x1, True, x2, x3) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), ty_Char) 33.50/15.06 new_lt23(x0, x1, ty_Bool) 33.50/15.06 new_esEs37(x0, x1, ty_Double) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs33(x0, x1, ty_Float) 33.50/15.06 new_ltEs22(x0, x1, ty_@0) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, ty_Ordering) 33.50/15.06 new_esEs12(Char(x0), Char(x1)) 33.50/15.06 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt13(x0, x1, ty_Double) 33.50/15.06 new_ltEs24(x0, x1, ty_Float) 33.50/15.06 new_compare25(Left(x0), Left(x1), x2, x3) 33.50/15.06 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 33.50/15.06 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_compare14(Nothing, Nothing, x0) 33.50/15.06 new_compare18(False, False) 33.50/15.06 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs31(x0, x1, ty_Int) 33.50/15.06 new_esEs7(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_compare17(GT, EQ) 33.50/15.06 new_compare17(EQ, GT) 33.50/15.06 new_lt12(x0, x1, ty_Float) 33.50/15.06 new_esEs6(x0, x1, ty_Bool) 33.50/15.06 new_primPlusNat0(Zero, Succ(x0)) 33.50/15.06 new_esEs35(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, ty_@0) 33.50/15.06 new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 33.50/15.06 new_esEs40(x0, x1, ty_Integer) 33.50/15.06 new_esEs19(Just(x0), Just(x1), app(ty_Maybe, x2)) 33.50/15.06 new_esEs5(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_ltEs23(x0, x1, ty_Bool) 33.50/15.06 new_lt12(x0, x1, ty_Char) 33.50/15.06 new_lt22(x0, x1, ty_Integer) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, ty_Float) 33.50/15.06 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 33.50/15.06 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 33.50/15.06 new_esEs36(x0, x1, ty_Float) 33.50/15.06 new_esEs19(Nothing, Just(x0), x1) 33.50/15.06 new_compare110(x0, x1, True, x2, x3) 33.50/15.06 new_lt21(x0, x1, app(ty_[], x2)) 33.50/15.06 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs10(x0, x1, ty_Bool) 33.50/15.06 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs9(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs28(x0, x1, ty_Double) 33.50/15.06 new_esEs35(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs37(x0, x1, ty_Ordering) 33.50/15.06 new_ltEs19(x0, x1, app(ty_[], x2)) 33.50/15.06 new_primCompAux00(x0, EQ) 33.50/15.06 new_lt12(x0, x1, ty_Int) 33.50/15.06 new_ltEs24(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs27(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs33(x0, x1, ty_Int) 33.50/15.06 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs11(x0, x1, ty_Integer) 33.50/15.06 new_esEs32(x0, x1, ty_Float) 33.50/15.06 new_ltEs9(GT, EQ) 33.50/15.06 new_esEs19(Just(x0), Just(x1), ty_Double) 33.50/15.06 new_ltEs9(EQ, GT) 33.50/15.06 new_primEqNat0(Zero, Zero) 33.50/15.06 new_esEs5(x0, x1, ty_Integer) 33.50/15.06 new_esEs33(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_lt13(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_primMulNat0(Succ(x0), Succ(x1)) 33.50/15.06 new_esEs7(x0, x1, ty_Double) 33.50/15.06 new_compare9(x0, x1, ty_@0) 33.50/15.06 new_esEs10(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs7(x0, x1, ty_@0) 33.50/15.06 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_not(False) 33.50/15.06 new_esEs32(x0, x1, ty_Bool) 33.50/15.06 new_esEs10(x0, x1, ty_Char) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, ty_Int) 33.50/15.06 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 33.50/15.06 new_lt20(x0, x1, ty_Float) 33.50/15.06 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 33.50/15.06 new_esEs19(Just(x0), Just(x1), ty_@0) 33.50/15.06 new_lt13(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_compare9(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs26(x0, x1, ty_@0) 33.50/15.06 new_esEs5(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs30(x0, x1, ty_Integer) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 33.50/15.06 new_esEs26(x0, x1, ty_Double) 33.50/15.06 new_lt19(x0, x1) 33.50/15.06 new_ltEs19(x0, x1, ty_Bool) 33.50/15.06 new_esEs10(x0, x1, ty_Int) 33.50/15.06 new_esEs11(x0, x1, ty_Char) 33.50/15.06 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs38(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs5(x0, x1, ty_Char) 33.50/15.06 new_esEs5(x0, x1, ty_Int) 33.50/15.06 new_esEs4(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs14(False, False) 33.50/15.06 new_esEs34(x0, x1, ty_Double) 33.50/15.06 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs6(x0, x1, ty_Integer) 33.50/15.06 new_ltEs23(x0, x1, ty_Ordering) 33.50/15.06 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 33.50/15.06 new_lt22(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_primMulNat0(Zero, Succ(x0)) 33.50/15.06 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 33.50/15.06 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt21(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_ltEs8(x0, x1, x2) 33.50/15.06 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 33.50/15.06 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 33.50/15.06 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs6(x0, x1, ty_Ordering) 33.50/15.06 new_esEs27(x0, x1, ty_Int) 33.50/15.06 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 33.50/15.06 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 33.50/15.06 new_esEs22([], [], x0) 33.50/15.06 new_esEs27(x0, x1, app(ty_[], x2)) 33.50/15.06 new_ltEs13(Nothing, Just(x0), x1) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), ty_Integer) 33.50/15.06 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs36(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs38(x0, x1, ty_Ordering) 33.50/15.06 new_ltEs4(x0, x1) 33.50/15.06 new_esEs15(Left(x0), Left(x1), ty_Integer, x2) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, ty_Bool) 33.50/15.06 new_esEs11(x0, x1, ty_Bool) 33.50/15.06 new_esEs8(x0, x1, ty_Integer) 33.50/15.06 new_lt17(x0, x1, x2) 33.50/15.06 new_lt22(x0, x1, ty_Int) 33.50/15.06 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs27(x0, x1, ty_Char) 33.50/15.06 new_esEs10(x0, x1, ty_Float) 33.50/15.06 new_esEs21(LT, GT) 33.50/15.06 new_esEs21(GT, LT) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, ty_Char) 33.50/15.06 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_primMulNat0(Succ(x0), Zero) 33.50/15.06 new_esEs8(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 33.50/15.06 new_esEs4(x0, x1, ty_@0) 33.50/15.06 new_ltEs21(x0, x1, ty_@0) 33.50/15.06 new_esEs5(x0, x1, ty_Bool) 33.50/15.06 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 33.50/15.06 new_ltEs19(x0, x1, ty_Char) 33.50/15.06 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 33.50/15.06 new_primCmpNat0(Zero, Zero) 33.50/15.06 new_esEs40(x0, x1, ty_Char) 33.50/15.06 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs35(x0, x1, ty_Ordering) 33.50/15.06 new_lt21(x0, x1, ty_Double) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 33.50/15.06 new_esEs34(x0, x1, ty_@0) 33.50/15.06 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_ltEs9(GT, LT) 33.50/15.06 new_ltEs9(LT, GT) 33.50/15.06 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs32(x0, x1, ty_Int) 33.50/15.06 new_lt13(x0, x1, ty_@0) 33.50/15.06 new_lt22(x0, x1, ty_Char) 33.50/15.06 new_esEs38(x0, x1, ty_Integer) 33.50/15.06 new_esEs15(Left(x0), Left(x1), ty_Ordering, x2) 33.50/15.06 33.50/15.06 We have to consider all minimal (P,Q,R)-chains. 33.50/15.06 ---------------------------------------- 33.50/15.06 33.50/15.06 (24) QDPSizeChangeProof (EQUIVALENT) 33.50/15.06 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. 33.50/15.06 33.50/15.06 From the DPs we obtained the following set of size-change graphs: 33.50/15.06 *new_ltEs2(xuu66, xuu67, bdd) -> new_compare1(xuu66, xuu67, bdd) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(ty_Maybe, bab)) -> new_ltEs0(xuu662, xuu672, bab) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs0(Just(xuu660), Just(xuu670), app(ty_Maybe, gg)) -> new_ltEs0(xuu660, xuu670, gg) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_lt1(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), bhc, bhd, bhe) -> new_compare21(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs9(xuu5000, xuu400, bhc), new_asAs(new_esEs8(xuu5001, xuu401, bhd), new_esEs7(xuu5002, xuu402, bhe))), bhc, bhd, bhe) 33.50/15.06 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare4(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), bhc, bhd, bhe) -> new_compare21(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs9(xuu5000, xuu400, bhc), new_asAs(new_esEs8(xuu5001, xuu401, bhd), new_esEs7(xuu5002, xuu402, bhe))), bhc, bhd, bhe) 33.50/15.06 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs1(xuu662, xuu672, bac, bad, bae) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs0(Just(xuu660), Just(xuu670), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(xuu660, xuu670, gh, ha, hb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_lt(@2(xuu5000, xuu5001), @2(xuu400, xuu401), h, ba) -> new_compare2(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs5(xuu5000, xuu400, h), new_esEs4(xuu5001, xuu401, ba)), h, ba) 33.50/15.06 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare(@2(xuu5000, xuu5001), @2(xuu400, xuu401), h, ba) -> new_compare2(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs5(xuu5000, xuu400, h), new_esEs4(xuu5001, xuu401, ba)), h, ba) 33.50/15.06 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(app(ty_@2, hh), baa)) -> new_ltEs(xuu662, xuu672, hh, baa) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs0(Just(xuu660), Just(xuu670), app(app(ty_@2, ge), gf)) -> new_ltEs(xuu660, xuu670, ge, gf) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare22(xuu93, xuu94, False, app(ty_Maybe, cea), cdh) -> new_ltEs0(xuu93, xuu94, cea) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare22(xuu93, xuu94, False, app(app(app(ty_@3, ceb), cec), ced), cdh) -> new_ltEs1(xuu93, xuu94, ceb, cec, ced) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare22(xuu93, xuu94, False, app(app(ty_@2, cdf), cdg), cdh) -> new_ltEs(xuu93, xuu94, cdf, cdg) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(ty_Maybe, cg)) -> new_ltEs0(xuu112, xuu114, cg) 33.50/15.06 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(xuu112, xuu114, da, db, dc) 33.50/15.06 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(xuu112, xuu114, ce, cf) 33.50/15.06 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_Either, cb), cc), bd) -> new_lt3(xuu111, xuu113, cb, cc) 33.50/15.06 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_primCompAux(xuu5000, xuu400, xuu50, app(app(ty_@2, bgb), bgc)) -> new_compare(xuu5000, xuu400, bgb, bgc) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare0(Just(xuu5000), Just(xuu400), dg) -> new_compare20(xuu5000, xuu400, new_esEs6(xuu5000, xuu400, dg), dg) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_lt0(Just(xuu5000), Just(xuu400), dg) -> new_compare20(xuu5000, xuu400, new_esEs6(xuu5000, xuu400, dg), dg) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_lt2(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_primCompAux(xuu5000, xuu400, new_compare3(xuu5001, xuu401, bga), bga) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_lt2(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_compare1(xuu5001, xuu401, bga) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare1(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_primCompAux(xuu5000, xuu400, new_compare3(xuu5001, xuu401, bga), bga) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_primCompAux(xuu5000, xuu400, xuu50, app(ty_Maybe, bgd)) -> new_compare0(xuu5000, xuu400, bgd) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_primCompAux(xuu5000, xuu400, xuu50, app(app(ty_Either, bha), bhb)) -> new_compare5(xuu5000, xuu400, bha, bhb) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(ty_Maybe, ec)) -> new_ltEs0(xuu661, xuu671, ec) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs1(xuu661, xuu671, ed, ee, ef) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(app(ty_@2, ea), eb)) -> new_ltEs(xuu661, xuu671, ea, eb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(ty_Either, gc), gd), fd) -> new_lt3(xuu660, xuu670, gc, gd) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(xuu66, xuu67, False, app(ty_[], bdd)) -> new_compare1(xuu66, xuu67, bdd) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare1(:(xuu5000, xuu5001), :(xuu400, xuu401), bga) -> new_compare1(xuu5001, xuu401, bga) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_primCompAux(xuu5000, xuu400, xuu50, app(ty_[], bgh)) -> new_compare1(xuu5000, xuu400, bgh) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(app(ty_Either, bag), bah)) -> new_ltEs3(xuu662, xuu672, bag, bah) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs0(Just(xuu660), Just(xuu670), app(app(ty_Either, hd), he)) -> new_ltEs3(xuu660, xuu670, hd, he) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs0(Just(xuu660), Just(xuu670), app(ty_[], hc)) -> new_ltEs2(xuu660, xuu670, hc) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare22(xuu93, xuu94, False, app(app(ty_Either, cef), ceg), cdh) -> new_ltEs3(xuu93, xuu94, cef, ceg) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare22(xuu93, xuu94, False, app(ty_[], cee), cdh) -> new_ltEs2(xuu93, xuu94, cee) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(app(ty_Either, de), df)) -> new_ltEs3(xuu112, xuu114, de, df) 33.50/15.06 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(app(ty_Either, eh), fa)) -> new_ltEs3(xuu661, xuu671, eh, fa) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(ty_Maybe, cab)) -> new_ltEs0(xuu79, xuu82, cab) 33.50/15.06 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare23(xuu100, xuu101, False, ceh, app(ty_Maybe, cfc)) -> new_ltEs0(xuu100, xuu101, cfc) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs1(xuu79, xuu82, cac, cad, cae) 33.50/15.06 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare23(xuu100, xuu101, False, ceh, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs1(xuu100, xuu101, cfd, cfe, cff) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(app(ty_@2, bhh), caa)) -> new_ltEs(xuu79, xuu82, bhh, caa) 33.50/15.06 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare23(xuu100, xuu101, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(xuu100, xuu101, cfa, cfb) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(app(app(ty_@3, bf), bg), bh), bd) -> new_lt1(xuu111, xuu113, bf, bg, bh) 33.50/15.06 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(app(ty_@3, fg), fh), ga), fd) -> new_lt1(xuu660, xuu670, fg, fh, ga) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(app(ty_Either, cag), cah)) -> new_ltEs3(xuu79, xuu82, cag, cah) 33.50/15.06 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare23(xuu100, xuu101, False, ceh, app(app(ty_Either, cfh), cga)) -> new_ltEs3(xuu100, xuu101, cfh, cga) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_primCompAux(xuu5000, xuu400, xuu50, app(app(app(ty_@3, bge), bgf), bgg)) -> new_compare4(xuu5000, xuu400, bge, bgf, bgg) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_@2, bb), bc), bd) -> new_lt(xuu111, xuu113, bb, bc) 33.50/15.06 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(app(ty_@2, fb), fc), fd) -> new_lt(xuu660, xuu670, fb, fc) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare23(xuu100, xuu101, False, ceh, app(ty_[], cfg)) -> new_ltEs2(xuu100, xuu101, cfg) 33.50/15.06 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_lt3(Right(xuu5000), Right(xuu400), cdd, cde) -> new_compare23(xuu5000, xuu400, new_esEs11(xuu5000, xuu400, cde), cdd, cde) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_lt3(Left(xuu5000), Left(xuu400), cdd, cde) -> new_compare22(xuu5000, xuu400, new_esEs10(xuu5000, xuu400, cdd), cdd, cde) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare5(Right(xuu5000), Right(xuu400), cdd, cde) -> new_compare23(xuu5000, xuu400, new_esEs11(xuu5000, xuu400, cde), cdd, cde) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare5(Left(xuu5000), Left(xuu400), cdd, cde) -> new_compare22(xuu5000, xuu400, new_esEs10(xuu5000, xuu400, cdd), cdd, cde) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(ty_Maybe, be), bd) -> new_lt0(xuu111, xuu113, be) 33.50/15.06 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(ty_Maybe, ff), fd) -> new_lt0(xuu660, xuu670, ff) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, hg, app(ty_[], baf)) -> new_ltEs2(xuu662, xuu672, baf) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, app(ty_[], ca), bd) -> new_lt2(xuu111, xuu113, ca) 33.50/15.06 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare2(xuu111, xuu112, xuu113, xuu114, False, cd, app(ty_[], dd)) -> new_ltEs2(xuu112, xuu114, dd) 33.50/15.06 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), app(ty_[], gb), fd) -> new_lt2(xuu660, xuu670, gb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs(@2(xuu660, xuu661), @2(xuu670, xuu671), dh, app(ty_[], eg)) -> new_ltEs2(xuu661, xuu671, eg) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, bhg, app(ty_[], caf)) -> new_ltEs2(xuu79, xuu82, caf) 33.50/15.06 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(app(ty_Either, bca), bcb), bbc) -> new_lt3(xuu661, xuu671, bca, bcb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(ty_Either, bdb), bdc), hg, bbc) -> new_lt3(xuu660, xuu670, bdb, bdc) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(app(app(ty_@3, bbe), bbf), bbg), bbc) -> new_lt1(xuu661, xuu671, bbe, bbf, bbg) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(app(ty_@3, bcf), bcg), bch), hg, bbc) -> new_lt1(xuu660, xuu670, bcf, bcg, bch) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(app(ty_@2, bcc), bcd), hg, bbc) -> new_lt(xuu660, xuu670, bcc, bcd) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(app(ty_@2, bba), bbb), bbc) -> new_lt(xuu661, xuu671, bba, bbb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(ty_Maybe, bce), hg, bbc) -> new_lt0(xuu660, xuu670, bce) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(ty_Maybe, bbd), bbc) -> new_lt0(xuu661, xuu671, bbd) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), hf, app(ty_[], bbh), bbc) -> new_lt2(xuu661, xuu671, bbh) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs1(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), app(ty_[], bda), hg, bbc) -> new_lt2(xuu660, xuu670, bda) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Left(xuu660), Left(xuu670), app(ty_Maybe, bdh), bdg) -> new_ltEs0(xuu660, xuu670, bdh) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Right(xuu660), Right(xuu670), beg, app(ty_Maybe, bfb)) -> new_ltEs0(xuu660, xuu670, bfb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(ty_Maybe, gg))) -> new_ltEs0(xuu660, xuu670, gg) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(ty_Maybe, bdh)), bdg)) -> new_ltEs0(xuu660, xuu670, bdh) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(ty_Maybe, bab))) -> new_ltEs0(xuu662, xuu672, bab) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(ty_Maybe, bfb))) -> new_ltEs0(xuu660, xuu670, bfb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(ty_Maybe, ec))) -> new_ltEs0(xuu661, xuu671, ec) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Right(xuu660), Right(xuu670), beg, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs1(xuu660, xuu670, bfc, bfd, bfe) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Left(xuu660), Left(xuu670), app(app(app(ty_@3, bea), beb), bec), bdg) -> new_ltEs1(xuu660, xuu670, bea, beb, bec) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(app(ty_@3, bea), beb), bec)), bdg)) -> new_ltEs1(xuu660, xuu670, bea, beb, bec) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(app(app(ty_@3, ed), ee), ef))) -> new_ltEs1(xuu661, xuu671, ed, ee, ef) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs1(xuu660, xuu670, gh, ha, hb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(app(app(ty_@3, bac), bad), bae))) -> new_ltEs1(xuu662, xuu672, bac, bad, bae) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs1(xuu660, xuu670, bfc, bfd, bfe) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Right(xuu660), Right(xuu670), beg, app(app(ty_@2, beh), bfa)) -> new_ltEs(xuu660, xuu670, beh, bfa) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Left(xuu660), Left(xuu670), app(app(ty_@2, bde), bdf), bdg) -> new_ltEs(xuu660, xuu670, bde, bdf) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Left(xuu660), Left(xuu670), app(app(ty_Either, bee), bef), bdg) -> new_ltEs3(xuu660, xuu670, bee, bef) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Right(xuu660), Right(xuu670), beg, app(app(ty_Either, bfg), bfh)) -> new_ltEs3(xuu660, xuu670, bfg, bfh) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Right(xuu660), Right(xuu670), beg, app(ty_[], bff)) -> new_ltEs2(xuu660, xuu670, bff) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_ltEs3(Left(xuu660), Left(xuu670), app(ty_[], bed), bdg) -> new_ltEs2(xuu660, xuu670, bed) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(app(ty_@2, beh), bfa))) -> new_ltEs(xuu660, xuu670, beh, bfa) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(ty_@2, bde), bdf)), bdg)) -> new_ltEs(xuu660, xuu670, bde, bdf) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(app(ty_@2, hh), baa))) -> new_ltEs(xuu662, xuu672, hh, baa) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(ty_@2, ge), gf))) -> new_ltEs(xuu660, xuu670, ge, gf) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(app(ty_@2, ea), eb))) -> new_ltEs(xuu661, xuu671, ea, eb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(ty_Either, bdb), bdc)), hg), bbc)) -> new_lt3(xuu660, xuu670, bdb, bdc) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(app(ty_Either, bca), bcb)), bbc)) -> new_lt3(xuu661, xuu671, bca, bcb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(ty_Either, gc), gd)), fd)) -> new_lt3(xuu660, xuu670, gc, gd) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(app(ty_Either, cdb), cdc), bhg, cbc) -> new_lt3(xuu77, xuu80, cdb, cdc) 33.50/15.06 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(app(ty_Either, cca), ccb), cbc) -> new_lt3(xuu78, xuu81, cca, ccb) 33.50/15.06 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(app(ty_Either, bee), bef)), bdg)) -> new_ltEs3(xuu660, xuu670, bee, bef) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(app(ty_Either, hd), he))) -> new_ltEs3(xuu660, xuu670, hd, he) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(app(ty_Either, bag), bah))) -> new_ltEs3(xuu662, xuu672, bag, bah) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(app(ty_Either, bfg), bfh))) -> new_ltEs3(xuu660, xuu670, bfg, bfh) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(app(ty_Either, eh), fa))) -> new_ltEs3(xuu661, xuu671, eh, fa) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(app(app(ty_@3, bbe), bbf), bbg)), bbc)) -> new_lt1(xuu661, xuu671, bbe, bbf, bbg) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(app(ty_@3, bcf), bcg), bch)), hg), bbc)) -> new_lt1(xuu660, xuu670, bcf, bcg, bch) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(app(ty_@3, fg), fh), ga)), fd)) -> new_lt1(xuu660, xuu670, fg, fh, ga) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(app(ty_@2, fb), fc)), fd)) -> new_lt(xuu660, xuu670, fb, fc) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), hg), bbc)) -> new_lt(xuu660, xuu670, bcc, bcd) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(app(ty_@2, bba), bbb)), bbc)) -> new_lt(xuu661, xuu671, bba, bbb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(ty_Maybe, bce)), hg), bbc)) -> new_lt0(xuu660, xuu670, bce) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(ty_Maybe, bbd)), bbc)) -> new_lt0(xuu661, xuu671, bbd) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(ty_Maybe, ff)), fd)) -> new_lt0(xuu660, xuu670, ff) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, app(ty_[], gb)), fd)) -> new_lt2(xuu660, xuu670, gb) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, app(ty_[], bda)), hg), bbc)) -> new_lt2(xuu660, xuu670, bda) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), app(ty_[], bbh)), bbc)) -> new_lt2(xuu661, xuu671, bbh) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Left(xuu660), Left(xuu670), False, app(app(ty_Either, app(ty_[], bed)), bdg)) -> new_ltEs2(xuu660, xuu670, bed) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@2(xuu660, xuu661), @2(xuu670, xuu671), False, app(app(ty_@2, dh), app(ty_[], eg))) -> new_ltEs2(xuu661, xuu671, eg) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), False, app(app(app(ty_@3, hf), hg), app(ty_[], baf))) -> new_ltEs2(xuu662, xuu672, baf) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Right(xuu660), Right(xuu670), False, app(app(ty_Either, beg), app(ty_[], bff))) -> new_ltEs2(xuu660, xuu670, bff) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare20(Just(xuu660), Just(xuu670), False, app(ty_Maybe, app(ty_[], hc))) -> new_ltEs2(xuu660, xuu670, hc) 33.50/15.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(app(app(ty_@3, ccf), ccg), cch), bhg, cbc) -> new_lt1(xuu77, xuu80, ccf, ccg, cch) 33.50/15.06 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(app(app(ty_@3, cbe), cbf), cbg), cbc) -> new_lt1(xuu78, xuu81, cbe, cbf, cbg) 33.50/15.06 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(app(ty_@2, cba), cbb), cbc) -> new_lt(xuu78, xuu81, cba, cbb) 33.50/15.06 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(app(ty_@2, ccc), ccd), bhg, cbc) -> new_lt(xuu77, xuu80, ccc, ccd) 33.50/15.06 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(ty_Maybe, cce), bhg, cbc) -> new_lt0(xuu77, xuu80, cce) 33.50/15.06 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(ty_Maybe, cbd), cbc) -> new_lt0(xuu78, xuu81, cbd) 33.50/15.06 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, bhf, app(ty_[], cbh), cbc) -> new_lt2(xuu78, xuu81, cbh) 33.50/15.06 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 33.50/15.06 33.50/15.06 33.50/15.06 *new_compare21(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, app(ty_[], cda), bhg, cbc) -> new_lt2(xuu77, xuu80, cda) 33.50/15.06 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 33.50/15.06 33.50/15.06 33.50/15.06 ---------------------------------------- 33.50/15.06 33.50/15.06 (25) 33.50/15.06 YES 33.50/15.06 33.50/15.06 ---------------------------------------- 33.50/15.06 33.50/15.06 (26) 33.50/15.06 Obligation: 33.50/15.06 Q DP problem: 33.50/15.06 The TRS P consists of the following rules: 33.50/15.06 33.50/15.06 new_primMulNat(Succ(xuu40000), Succ(xuu500100)) -> new_primMulNat(xuu40000, Succ(xuu500100)) 33.50/15.06 33.50/15.06 R is empty. 33.50/15.06 Q is empty. 33.50/15.06 We have to consider all minimal (P,Q,R)-chains. 33.50/15.06 ---------------------------------------- 33.50/15.06 33.50/15.06 (27) QDPSizeChangeProof (EQUIVALENT) 33.50/15.06 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. 33.50/15.06 33.50/15.06 From the DPs we obtained the following set of size-change graphs: 33.50/15.06 *new_primMulNat(Succ(xuu40000), Succ(xuu500100)) -> new_primMulNat(xuu40000, Succ(xuu500100)) 33.50/15.06 The graph contains the following edges 1 > 1, 2 >= 2 33.50/15.06 33.50/15.06 33.50/15.06 ---------------------------------------- 33.50/15.06 33.50/15.06 (28) 33.50/15.06 YES 33.50/15.06 33.50/15.06 ---------------------------------------- 33.50/15.06 33.50/15.06 (29) 33.50/15.06 Obligation: 33.50/15.06 Q DP problem: 33.50/15.06 The TRS P consists of the following rules: 33.50/15.06 33.50/15.06 new_addToFM_C(xuu3, Branch(xuu40, xuu41, xuu42, xuu43, xuu44), xuu500, xuu501, bd, be) -> new_addToFM_C2(xuu3, xuu40, xuu41, xuu42, xuu43, xuu44, xuu500, xuu501, new_lt24(xuu500, xuu40, bd), bd, be) 33.50/15.06 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, h), h, ba) 33.50/15.06 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba) -> new_addToFM_C(xuu16, xuu20, xuu22, xuu23, h, ba) 33.50/15.06 new_addToFM_C1(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bb, bc) -> new_addToFM_C(xuu35, xuu40, xuu41, xuu42, bb, bc) 33.50/15.06 33.50/15.06 The TRS R consists of the following rules: 33.50/15.06 33.50/15.06 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 33.50/15.06 new_esEs33(xuu78, xuu81, app(ty_Ratio, cfh)) -> new_esEs23(xuu78, xuu81, cfh) 33.50/15.06 new_lt22(xuu111, xuu113, ty_Integer) -> new_lt16(xuu111, xuu113) 33.50/15.06 new_primPlusNat0(Zero, Zero) -> Zero 33.50/15.06 new_esEs39(xuu50001, xuu4001, app(app(ty_Either, fgh), fha)) -> new_esEs15(xuu50001, xuu4001, fgh, fha) 33.50/15.06 new_compare25(Left(xuu5000), Left(xuu400), bbb, bbc) -> new_compare29(xuu5000, xuu400, new_esEs10(xuu5000, xuu400, bbb), bbb, bbc) 33.50/15.06 new_pePe(True, xuu201) -> True 33.50/15.06 new_esEs8(xuu5001, xuu401, app(ty_[], ccd)) -> new_esEs22(xuu5001, xuu401, ccd) 33.50/15.06 new_esEs27(xuu50001, xuu4001, ty_Float) -> new_esEs18(xuu50001, xuu4001) 33.50/15.06 new_esEs10(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.06 new_esEs38(xuu660, xuu670, ty_Double) -> new_esEs16(xuu660, xuu670) 33.50/15.06 new_esEs8(xuu5001, xuu401, ty_Char) -> new_esEs12(xuu5001, xuu401) 33.50/15.06 new_ltEs23(xuu100, xuu101, app(ty_[], ffa)) -> new_ltEs16(xuu100, xuu101, ffa) 33.50/15.06 new_lt18(xuu500, xuu40) -> new_esEs29(new_compare19(xuu500, xuu40)) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, ty_Int) -> new_ltEs7(xuu660, xuu670) 33.50/15.06 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 33.50/15.06 new_esEs6(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.06 new_fsEs(xuu196) -> new_not(new_esEs21(xuu196, GT)) 33.50/15.06 new_ltEs19(xuu662, xuu672, app(app(ty_@2, dah), dba)) -> new_ltEs12(xuu662, xuu672, dah, dba) 33.50/15.06 new_ltEs19(xuu662, xuu672, ty_Integer) -> new_ltEs5(xuu662, xuu672) 33.50/15.06 new_compare17(LT, GT) -> LT 33.50/15.06 new_lt13(xuu77, xuu80, app(ty_Maybe, che)) -> new_lt15(xuu77, xuu80, che) 33.50/15.06 new_ltEs20(xuu112, xuu114, ty_Ordering) -> new_ltEs9(xuu112, xuu114) 33.50/15.06 new_lt23(xuu660, xuu670, app(ty_Maybe, fbb)) -> new_lt15(xuu660, xuu670, fbb) 33.50/15.06 new_esEs36(xuu660, xuu670, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs24(xuu660, xuu670, ddg, ddh, dea) 33.50/15.06 new_lt24(xuu500, xuu40, app(ty_Ratio, bae)) -> new_lt6(xuu500, xuu40, bae) 33.50/15.06 new_ltEs24(xuu93, xuu94, app(ty_Ratio, fff)) -> new_ltEs8(xuu93, xuu94, fff) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, app(ty_Maybe, ebc)) -> new_esEs19(xuu50000, xuu4000, ebc) 33.50/15.06 new_esEs10(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.06 new_esEs26(xuu50002, xuu4002, ty_Ordering) -> new_esEs21(xuu50002, xuu4002) 33.50/15.06 new_compare19(@0, @0) -> EQ 33.50/15.06 new_esEs30(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) 33.50/15.06 new_compare3([], [], gc) -> EQ 33.50/15.06 new_compare17(LT, EQ) -> LT 33.50/15.06 new_ltEs24(xuu93, xuu94, ty_Float) -> new_ltEs6(xuu93, xuu94) 33.50/15.06 new_compare24(Double(xuu5000, Neg(xuu50010)), Double(xuu400, Neg(xuu4010))) -> new_compare8(new_sr(xuu5000, Neg(xuu4010)), new_sr(Neg(xuu50010), xuu400)) 33.50/15.06 new_lt12(xuu78, xuu81, app(ty_[], cgg)) -> new_lt17(xuu78, xuu81, cgg) 33.50/15.06 new_compare17(EQ, GT) -> LT 33.50/15.06 new_ltEs18(xuu79, xuu82, ty_@0) -> new_ltEs17(xuu79, xuu82) 33.50/15.06 new_lt8(xuu500, xuu40) -> new_esEs29(new_compare8(xuu500, xuu40)) 33.50/15.06 new_esEs35(xuu661, xuu671, ty_Int) -> new_esEs13(xuu661, xuu671) 33.50/15.06 new_esEs5(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.06 new_compare112(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, baf, bag, bah) -> GT 33.50/15.06 new_lt12(xuu78, xuu81, ty_Integer) -> new_lt16(xuu78, xuu81) 33.50/15.06 new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.06 new_ltEs18(xuu79, xuu82, ty_Char) -> new_ltEs4(xuu79, xuu82) 33.50/15.06 new_lt10(xuu500, xuu40) -> new_esEs29(new_compare7(xuu500, xuu40)) 33.50/15.06 new_not(True) -> False 33.50/15.06 new_esEs4(xuu5001, xuu401, ty_Bool) -> new_esEs14(xuu5001, xuu401) 33.50/15.06 new_lt21(xuu660, xuu670, app(app(ty_@2, ddd), dde)) -> new_lt14(xuu660, xuu670, ddd, dde) 33.50/15.06 new_esEs28(xuu50000, xuu4000, app(app(ty_@2, fb), fc)) -> new_esEs17(xuu50000, xuu4000, fb, fc) 33.50/15.06 new_primCompAux00(xuu87, LT) -> LT 33.50/15.06 new_esEs38(xuu660, xuu670, app(ty_Ratio, fag)) -> new_esEs23(xuu660, xuu670, fag) 33.50/15.06 new_ltEs22(xuu66, xuu67, ty_Bool) -> new_ltEs15(xuu66, xuu67) 33.50/15.06 new_esEs26(xuu50002, xuu4002, ty_@0) -> new_esEs25(xuu50002, xuu4002) 33.50/15.06 new_lt22(xuu111, xuu113, ty_Float) -> new_lt10(xuu111, xuu113) 33.50/15.06 new_esEs40(xuu50000, xuu4000, ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.06 new_esEs28(xuu50000, xuu4000, ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), app(ty_[], bfa), beb) -> new_ltEs16(xuu660, xuu670, bfa) 33.50/15.06 new_esEs21(LT, EQ) -> False 33.50/15.06 new_esEs21(EQ, LT) -> False 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), app(app(ty_Either, dhe), dhf), dfh) -> new_esEs15(xuu50000, xuu4000, dhe, dhf) 33.50/15.06 new_esEs5(xuu5000, xuu400, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs24(xuu5000, xuu400, bh, ca, cb) 33.50/15.06 new_esEs39(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 33.50/15.06 new_lt20(xuu661, xuu671, ty_Double) -> new_lt19(xuu661, xuu671) 33.50/15.06 new_esEs33(xuu78, xuu81, ty_Double) -> new_esEs16(xuu78, xuu81) 33.50/15.06 new_esEs11(xuu5000, xuu400, app(ty_Maybe, edg)) -> new_esEs19(xuu5000, xuu400, edg) 33.50/15.06 new_primEqNat0(Succ(xuu500000), Zero) -> False 33.50/15.06 new_primEqNat0(Zero, Succ(xuu40000)) -> False 33.50/15.06 new_ltEs21(xuu661, xuu671, app(app(ty_@2, ehf), ehg)) -> new_ltEs12(xuu661, xuu671, ehf, ehg) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, ty_Integer) -> new_ltEs5(xuu660, xuu670) 33.50/15.06 new_lt21(xuu660, xuu670, app(app(app(ty_@3, ddg), ddh), dea)) -> new_lt4(xuu660, xuu670, ddg, ddh, dea) 33.50/15.06 new_lt20(xuu661, xuu671, app(app(ty_Either, dda), ddb)) -> new_lt7(xuu661, xuu671, dda, ddb) 33.50/15.06 new_esEs37(xuu111, xuu113, ty_Float) -> new_esEs18(xuu111, xuu113) 33.50/15.06 new_esEs8(xuu5001, xuu401, app(app(ty_Either, cbg), cbh)) -> new_esEs15(xuu5001, xuu401, cbg, cbh) 33.50/15.06 new_esEs14(False, True) -> False 33.50/15.06 new_esEs14(True, False) -> False 33.50/15.06 new_compare28(xuu66, xuu67, True, fde) -> EQ 33.50/15.06 new_esEs32(xuu50000, xuu4000, ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), ty_Float) -> new_ltEs6(xuu660, xuu670) 33.50/15.06 new_primCmpInt(Pos(Succ(xuu50000)), Neg(xuu400)) -> GT 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Double, dfh) -> new_esEs16(xuu50000, xuu4000) 33.50/15.06 new_lt12(xuu78, xuu81, ty_Char) -> new_lt11(xuu78, xuu81) 33.50/15.06 new_lt22(xuu111, xuu113, app(ty_[], eff)) -> new_lt17(xuu111, xuu113, eff) 33.50/15.06 new_ltEs21(xuu661, xuu671, app(app(app(ty_@3, faa), fab), fac)) -> new_ltEs14(xuu661, xuu671, faa, fab, fac) 33.50/15.06 new_ltEs21(xuu661, xuu671, ty_Int) -> new_ltEs7(xuu661, xuu671) 33.50/15.06 new_ltEs20(xuu112, xuu114, ty_Double) -> new_ltEs10(xuu112, xuu114) 33.50/15.06 new_compare11(xuu168, xuu169, xuu170, xuu171, True, bf, bg) -> LT 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), ty_Float, beb) -> new_ltEs6(xuu660, xuu670) 33.50/15.06 new_esEs5(xuu5000, xuu400, app(ty_Maybe, bcf)) -> new_esEs19(xuu5000, xuu400, bcf) 33.50/15.06 new_esEs35(xuu661, xuu671, ty_Bool) -> new_esEs14(xuu661, xuu671) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs14(xuu660, xuu670, bga, bgb, bgc) 33.50/15.06 new_esEs7(xuu5002, xuu402, ty_Integer) -> new_esEs20(xuu5002, xuu402) 33.50/15.06 new_primCmpNat0(Zero, Succ(xuu4000)) -> LT 33.50/15.06 new_ltEs20(xuu112, xuu114, ty_@0) -> new_ltEs17(xuu112, xuu114) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.06 new_esEs11(xuu5000, xuu400, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs24(xuu5000, xuu400, eeb, eec, eed) 33.50/15.06 new_lt6(xuu500, xuu40, bae) -> new_esEs29(new_compare12(xuu500, xuu40, bae)) 33.50/15.06 new_esEs36(xuu660, xuu670, ty_Ordering) -> new_esEs21(xuu660, xuu670) 33.50/15.06 new_esEs34(xuu77, xuu80, ty_Char) -> new_esEs12(xuu77, xuu80) 33.50/15.06 new_esEs26(xuu50002, xuu4002, app(ty_Ratio, db)) -> new_esEs23(xuu50002, xuu4002, db) 33.50/15.06 new_esEs32(xuu50000, xuu4000, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.06 new_esEs34(xuu77, xuu80, ty_Float) -> new_esEs18(xuu77, xuu80) 33.50/15.06 new_compare3([], :(xuu400, xuu401), gc) -> LT 33.50/15.06 new_ltEs20(xuu112, xuu114, app(ty_Maybe, egd)) -> new_ltEs13(xuu112, xuu114, egd) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), ty_@0, dfh) -> new_esEs25(xuu50000, xuu4000) 33.50/15.06 new_ltEs23(xuu100, xuu101, ty_Char) -> new_ltEs4(xuu100, xuu101) 33.50/15.06 new_lt24(xuu500, xuu40, ty_Int) -> new_lt8(xuu500, xuu40) 33.50/15.06 new_compare114(xuu158, xuu159, True, fdf, fdg) -> LT 33.50/15.06 new_primCompAux0(xuu5000, xuu400, xuu50, gc) -> new_primCompAux00(xuu50, new_compare9(xuu5000, xuu400, gc)) 33.50/15.06 new_ltEs19(xuu662, xuu672, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_ltEs14(xuu662, xuu672, dbc, dbd, dbe) 33.50/15.06 new_esEs36(xuu660, xuu670, ty_@0) -> new_esEs25(xuu660, xuu670) 33.50/15.06 new_lt22(xuu111, xuu113, ty_Char) -> new_lt11(xuu111, xuu113) 33.50/15.06 new_ltEs7(xuu66, xuu67) -> new_fsEs(new_compare8(xuu66, xuu67)) 33.50/15.06 new_ltEs21(xuu661, xuu671, ty_Float) -> new_ltEs6(xuu661, xuu671) 33.50/15.06 new_ltEs18(xuu79, xuu82, app(ty_[], cfe)) -> new_ltEs16(xuu79, xuu82, cfe) 33.50/15.06 new_esEs11(xuu5000, xuu400, app(ty_Ratio, eea)) -> new_esEs23(xuu5000, xuu400, eea) 33.50/15.06 new_esEs26(xuu50002, xuu4002, app(ty_[], da)) -> new_esEs22(xuu50002, xuu4002, da) 33.50/15.06 new_esEs17(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), dga, dgb) -> new_asAs(new_esEs40(xuu50000, xuu4000, dga), new_esEs39(xuu50001, xuu4001, dgb)) 33.50/15.06 new_esEs36(xuu660, xuu670, ty_Char) -> new_esEs12(xuu660, xuu670) 33.50/15.06 new_esEs38(xuu660, xuu670, ty_Ordering) -> new_esEs21(xuu660, xuu670) 33.50/15.06 new_compare15(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), hh, baa, bab) -> new_compare26(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs9(xuu5000, xuu400, hh), new_asAs(new_esEs8(xuu5001, xuu401, baa), new_esEs7(xuu5002, xuu402, bab))), hh, baa, bab) 33.50/15.06 new_ltEs20(xuu112, xuu114, ty_Bool) -> new_ltEs15(xuu112, xuu114) 33.50/15.06 new_esEs33(xuu78, xuu81, app(ty_Maybe, cgc)) -> new_esEs19(xuu78, xuu81, cgc) 33.50/15.06 new_esEs26(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 33.50/15.06 new_ltEs18(xuu79, xuu82, ty_Ordering) -> new_ltEs9(xuu79, xuu82) 33.50/15.06 new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 33.50/15.06 new_esEs5(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.06 new_primCmpInt(Neg(Zero), Pos(Succ(xuu4000))) -> LT 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, app(app(ty_@2, bff), bfg)) -> new_ltEs12(xuu660, xuu670, bff, bfg) 33.50/15.06 new_primMulInt(Pos(xuu4000), Pos(xuu50010)) -> Pos(new_primMulNat0(xuu4000, xuu50010)) 33.50/15.06 new_esEs8(xuu5001, xuu401, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs24(xuu5001, xuu401, ccf, ccg, cch) 33.50/15.06 new_lt24(xuu500, xuu40, app(app(ty_@2, bgg), bgh)) -> new_lt14(xuu500, xuu40, bgg, bgh) 33.50/15.06 new_ltEs18(xuu79, xuu82, ty_Double) -> new_ltEs10(xuu79, xuu82) 33.50/15.06 new_compare18(True, True) -> EQ 33.50/15.06 new_esEs40(xuu50000, xuu4000, ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.06 new_lt22(xuu111, xuu113, ty_Int) -> new_lt8(xuu111, xuu113) 33.50/15.06 new_esEs28(xuu50000, xuu4000, ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), ty_Integer, beb) -> new_ltEs5(xuu660, xuu670) 33.50/15.06 new_esEs9(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.06 new_lt11(xuu500, xuu40) -> new_esEs29(new_compare6(xuu500, xuu40)) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, app(app(ty_@2, eba), ebb)) -> new_esEs17(xuu50000, xuu4000, eba, ebb) 33.50/15.06 new_primMulNat0(Succ(xuu40000), Zero) -> Zero 33.50/15.06 new_primMulNat0(Zero, Succ(xuu500100)) -> Zero 33.50/15.06 new_lt7(xuu500, xuu40, bbb, bbc) -> new_esEs29(new_compare25(xuu500, xuu40, bbb, bbc)) 33.50/15.06 new_esEs6(xuu5000, xuu400, app(app(ty_Either, dgc), dgd)) -> new_esEs15(xuu5000, xuu400, dgc, dgd) 33.50/15.06 new_esEs38(xuu660, xuu670, ty_Integer) -> new_esEs20(xuu660, xuu670) 33.50/15.06 new_ltEs23(xuu100, xuu101, ty_Int) -> new_ltEs7(xuu100, xuu101) 33.50/15.06 new_gt(xuu22, xuu17, app(ty_Maybe, bbg)) -> new_esEs41(new_compare14(xuu22, xuu17, bbg)) 33.50/15.06 new_esEs7(xuu5002, xuu402, ty_Double) -> new_esEs16(xuu5002, xuu402) 33.50/15.06 new_primPlusNat0(Succ(xuu44200), Zero) -> Succ(xuu44200) 33.50/15.06 new_primPlusNat0(Zero, Succ(xuu13100)) -> Succ(xuu13100) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.06 new_ltEs18(xuu79, xuu82, app(ty_Maybe, cfa)) -> new_ltEs13(xuu79, xuu82, cfa) 33.50/15.06 new_esEs9(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.06 new_lt12(xuu78, xuu81, ty_Int) -> new_lt8(xuu78, xuu81) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Int, dfh) -> new_esEs13(xuu50000, xuu4000) 33.50/15.06 new_esEs18(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs13(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 33.50/15.06 new_lt21(xuu660, xuu670, app(ty_Ratio, ddc)) -> new_lt6(xuu660, xuu670, ddc) 33.50/15.06 new_esEs7(xuu5002, xuu402, app(app(ty_@2, cag), cah)) -> new_esEs17(xuu5002, xuu402, cag, cah) 33.50/15.06 new_ltEs23(xuu100, xuu101, ty_@0) -> new_ltEs17(xuu100, xuu101) 33.50/15.06 new_lt24(xuu500, xuu40, app(ty_[], gc)) -> new_lt17(xuu500, xuu40, gc) 33.50/15.06 new_ltEs20(xuu112, xuu114, app(ty_[], egh)) -> new_ltEs16(xuu112, xuu114, egh) 33.50/15.06 new_esEs5(xuu5000, xuu400, app(ty_[], bhb)) -> new_esEs22(xuu5000, xuu400, bhb) 33.50/15.06 new_esEs37(xuu111, xuu113, ty_Bool) -> new_esEs14(xuu111, xuu113) 33.50/15.06 new_esEs33(xuu78, xuu81, ty_@0) -> new_esEs25(xuu78, xuu81) 33.50/15.06 new_esEs28(xuu50000, xuu4000, ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.06 new_ltEs19(xuu662, xuu672, ty_Float) -> new_ltEs6(xuu662, xuu672) 33.50/15.06 new_esEs8(xuu5001, xuu401, app(ty_Maybe, ccc)) -> new_esEs19(xuu5001, xuu401, ccc) 33.50/15.06 new_esEs33(xuu78, xuu81, app(app(ty_@2, cga), cgb)) -> new_esEs17(xuu78, xuu81, cga, cgb) 33.50/15.06 new_ltEs4(xuu66, xuu67) -> new_fsEs(new_compare6(xuu66, xuu67)) 33.50/15.06 new_esEs10(xuu5000, xuu400, app(app(ty_@2, ecc), ecd)) -> new_esEs17(xuu5000, xuu400, ecc, ecd) 33.50/15.06 new_esEs39(xuu50001, xuu4001, app(ty_[], fhe)) -> new_esEs22(xuu50001, xuu4001, fhe) 33.50/15.06 new_gt(xuu22, xuu17, ty_Bool) -> new_esEs41(new_compare18(xuu22, xuu17)) 33.50/15.06 new_esEs5(xuu5000, xuu400, app(app(ty_Either, dfg), dfh)) -> new_esEs15(xuu5000, xuu400, dfg, dfh) 33.50/15.06 new_lt24(xuu500, xuu40, app(app(app(ty_@3, hh), baa), bab)) -> new_lt4(xuu500, xuu40, hh, baa, bab) 33.50/15.06 new_lt12(xuu78, xuu81, ty_Float) -> new_lt10(xuu78, xuu81) 33.50/15.06 new_compare112(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, baf, bag, bah) -> LT 33.50/15.06 new_ltEs18(xuu79, xuu82, ty_Bool) -> new_ltEs15(xuu79, xuu82) 33.50/15.06 new_esEs36(xuu660, xuu670, app(ty_Ratio, ddc)) -> new_esEs23(xuu660, xuu670, ddc) 33.50/15.06 new_compare14(Just(xuu5000), Nothing, bha) -> GT 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.06 new_esEs7(xuu5002, xuu402, app(ty_Maybe, cba)) -> new_esEs19(xuu5002, xuu402, cba) 33.50/15.06 new_esEs11(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.06 new_esEs21(LT, LT) -> True 33.50/15.06 new_esEs39(xuu50001, xuu4001, ty_Ordering) -> new_esEs21(xuu50001, xuu4001) 33.50/15.06 new_esEs38(xuu660, xuu670, ty_Bool) -> new_esEs14(xuu660, xuu670) 33.50/15.06 new_lt13(xuu77, xuu80, ty_Bool) -> new_lt5(xuu77, xuu80) 33.50/15.06 new_esEs4(xuu5001, xuu401, ty_Integer) -> new_esEs20(xuu5001, xuu401) 33.50/15.06 new_compare14(Nothing, Nothing, bha) -> EQ 33.50/15.06 new_esEs28(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.06 new_esEs40(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.06 new_ltEs24(xuu93, xuu94, ty_Int) -> new_ltEs7(xuu93, xuu94) 33.50/15.06 new_esEs27(xuu50001, xuu4001, ty_Bool) -> new_esEs14(xuu50001, xuu4001) 33.50/15.06 new_esEs32(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.06 new_compare9(xuu5000, xuu400, app(ty_Maybe, gg)) -> new_compare14(xuu5000, xuu400, gg) 33.50/15.06 new_esEs8(xuu5001, xuu401, ty_Float) -> new_esEs18(xuu5001, xuu401) 33.50/15.06 new_esEs12(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) 33.50/15.06 new_esEs10(xuu5000, xuu400, app(ty_Ratio, ecg)) -> new_esEs23(xuu5000, xuu400, ecg) 33.50/15.06 new_ltEs15(True, True) -> True 33.50/15.06 new_lt9(xuu500, xuu40) -> new_esEs29(new_compare17(xuu500, xuu40)) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), app(app(app(ty_@3, bef), beg), beh), beb) -> new_ltEs14(xuu660, xuu670, bef, beg, beh) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), ty_Int) -> new_ltEs7(xuu660, xuu670) 33.50/15.06 new_esEs27(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 33.50/15.06 new_esEs39(xuu50001, xuu4001, app(ty_Maybe, fhd)) -> new_esEs19(xuu50001, xuu4001, fhd) 33.50/15.06 new_esEs33(xuu78, xuu81, ty_Int) -> new_esEs13(xuu78, xuu81) 33.50/15.06 new_compare17(GT, GT) -> EQ 33.50/15.06 new_esEs33(xuu78, xuu81, ty_Bool) -> new_esEs14(xuu78, xuu81) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), app(ty_Ratio, bde)) -> new_esEs23(xuu50000, xuu4000, bde) 33.50/15.06 new_compare18(False, False) -> EQ 33.50/15.06 new_esEs13(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) 33.50/15.06 new_gt(xuu22, xuu17, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs41(new_compare15(xuu22, xuu17, bbh, bca, bcb)) 33.50/15.06 new_esEs8(xuu5001, xuu401, ty_@0) -> new_esEs25(xuu5001, xuu401) 33.50/15.06 new_ltEs21(xuu661, xuu671, app(ty_[], fad)) -> new_ltEs16(xuu661, xuu671, fad) 33.50/15.06 new_esEs35(xuu661, xuu671, app(ty_Ratio, dca)) -> new_esEs23(xuu661, xuu671, dca) 33.50/15.06 new_lt12(xuu78, xuu81, app(app(ty_@2, cga), cgb)) -> new_lt14(xuu78, xuu81, cga, cgb) 33.50/15.06 new_esEs6(xuu5000, xuu400, app(ty_[], dgh)) -> new_esEs22(xuu5000, xuu400, dgh) 33.50/15.06 new_lt21(xuu660, xuu670, ty_@0) -> new_lt18(xuu660, xuu670) 33.50/15.06 new_ltEs5(xuu66, xuu67) -> new_fsEs(new_compare16(xuu66, xuu67)) 33.50/15.06 new_lt24(xuu500, xuu40, ty_Integer) -> new_lt16(xuu500, xuu40) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), ty_Int, beb) -> new_ltEs7(xuu660, xuu670) 33.50/15.06 new_gt(xuu22, xuu17, app(app(ty_@2, bbe), bbf)) -> new_esEs41(new_compare13(xuu22, xuu17, bbe, bbf)) 33.50/15.06 new_compare210(xuu100, xuu101, False, fdh, fea) -> new_compare114(xuu100, xuu101, new_ltEs23(xuu100, xuu101, fea), fdh, fea) 33.50/15.06 new_lt23(xuu660, xuu670, app(app(ty_Either, fbg), fbh)) -> new_lt7(xuu660, xuu670, fbg, fbh) 33.50/15.06 new_esEs33(xuu78, xuu81, ty_Char) -> new_esEs12(xuu78, xuu81) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, ty_@0) -> new_ltEs17(xuu660, xuu670) 33.50/15.06 new_esEs4(xuu5001, xuu401, ty_Float) -> new_esEs18(xuu5001, xuu401) 33.50/15.06 new_lt23(xuu660, xuu670, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_lt4(xuu660, xuu670, fbc, fbd, fbe) 33.50/15.06 new_compare24(Double(xuu5000, Pos(xuu50010)), Double(xuu400, Neg(xuu4010))) -> new_compare8(new_sr(xuu5000, Pos(xuu4010)), new_sr(Neg(xuu50010), xuu400)) 33.50/15.06 new_compare24(Double(xuu5000, Neg(xuu50010)), Double(xuu400, Pos(xuu4010))) -> new_compare8(new_sr(xuu5000, Neg(xuu4010)), new_sr(Pos(xuu50010), xuu400)) 33.50/15.06 new_lt23(xuu660, xuu670, ty_Bool) -> new_lt5(xuu660, xuu670) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, ead), eae), eaf), dfh) -> new_esEs24(xuu50000, xuu4000, ead, eae, eaf) 33.50/15.06 new_ltEs23(xuu100, xuu101, app(app(ty_@2, fec), fed)) -> new_ltEs12(xuu100, xuu101, fec, fed) 33.50/15.06 new_esEs27(xuu50001, xuu4001, app(ty_[], ec)) -> new_esEs22(xuu50001, xuu4001, ec) 33.50/15.06 new_gt(xuu22, xuu17, app(ty_Ratio, bbd)) -> new_esEs41(new_compare12(xuu22, xuu17, bbd)) 33.50/15.06 new_esEs38(xuu660, xuu670, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs24(xuu660, xuu670, fbc, fbd, fbe) 33.50/15.06 new_primCmpInt(Pos(Succ(xuu50000)), Pos(xuu400)) -> new_primCmpNat0(Succ(xuu50000), xuu400) 33.50/15.06 new_esEs35(xuu661, xuu671, ty_@0) -> new_esEs25(xuu661, xuu671) 33.50/15.06 new_primCompAux00(xuu87, EQ) -> xuu87 33.50/15.06 new_compare25(Right(xuu5000), Right(xuu400), bbb, bbc) -> new_compare210(xuu5000, xuu400, new_esEs11(xuu5000, xuu400, bbc), bbb, bbc) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.06 new_compare9(xuu5000, xuu400, ty_Integer) -> new_compare16(xuu5000, xuu400) 33.50/15.06 new_compare9(xuu5000, xuu400, app(ty_[], hc)) -> new_compare3(xuu5000, xuu400, hc) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), app(app(ty_@2, fcc), fcd)) -> new_ltEs12(xuu660, xuu670, fcc, fcd) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), ty_Integer) -> new_ltEs5(xuu660, xuu670) 33.50/15.06 new_esEs35(xuu661, xuu671, app(ty_Maybe, dcd)) -> new_esEs19(xuu661, xuu671, dcd) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, ty_Char) -> new_ltEs4(xuu660, xuu670) 33.50/15.06 new_ltEs13(Nothing, Nothing, fca) -> True 33.50/15.06 new_ltEs13(Just(xuu660), Nothing, fca) -> False 33.50/15.06 new_ltEs21(xuu661, xuu671, ty_@0) -> new_ltEs17(xuu661, xuu671) 33.50/15.06 new_primMulNat0(Succ(xuu40000), Succ(xuu500100)) -> new_primPlusNat0(new_primMulNat0(xuu40000, Succ(xuu500100)), Succ(xuu500100)) 33.50/15.06 new_esEs37(xuu111, xuu113, ty_Integer) -> new_esEs20(xuu111, xuu113) 33.50/15.06 new_esEs33(xuu78, xuu81, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs24(xuu78, xuu81, cgd, cge, cgf) 33.50/15.06 new_lt22(xuu111, xuu113, app(app(app(ty_@3, efc), efd), efe)) -> new_lt4(xuu111, xuu113, efc, efd, efe) 33.50/15.06 new_esEs35(xuu661, xuu671, ty_Ordering) -> new_esEs21(xuu661, xuu671) 33.50/15.06 new_lt20(xuu661, xuu671, ty_Float) -> new_lt10(xuu661, xuu671) 33.50/15.06 new_esEs34(xuu77, xuu80, app(ty_Maybe, che)) -> new_esEs19(xuu77, xuu80, che) 33.50/15.06 new_esEs7(xuu5002, xuu402, ty_@0) -> new_esEs25(xuu5002, xuu402) 33.50/15.06 new_lt24(xuu500, xuu40, ty_Ordering) -> new_lt9(xuu500, xuu40) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, ty_Float) -> new_ltEs6(xuu660, xuu670) 33.50/15.06 new_lt20(xuu661, xuu671, ty_@0) -> new_lt18(xuu661, xuu671) 33.50/15.06 new_esEs36(xuu660, xuu670, ty_Integer) -> new_esEs20(xuu660, xuu670) 33.50/15.06 new_lt12(xuu78, xuu81, app(ty_Ratio, cfh)) -> new_lt6(xuu78, xuu81, cfh) 33.50/15.06 new_ltEs9(GT, LT) -> False 33.50/15.06 new_lt21(xuu660, xuu670, ty_Int) -> new_lt8(xuu660, xuu670) 33.50/15.06 new_esEs40(xuu50000, xuu4000, app(ty_Maybe, gaf)) -> new_esEs19(xuu50000, xuu4000, gaf) 33.50/15.06 new_ltEs22(xuu66, xuu67, app(app(ty_@2, ehc), ehd)) -> new_ltEs12(xuu66, xuu67, ehc, ehd) 33.50/15.06 new_esEs9(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.06 new_esEs39(xuu50001, xuu4001, app(app(app(ty_@3, fhg), fhh), gaa)) -> new_esEs24(xuu50001, xuu4001, fhg, fhh, gaa) 33.50/15.06 new_compare29(xuu93, xuu94, False, ffd, ffe) -> new_compare110(xuu93, xuu94, new_ltEs24(xuu93, xuu94, ffd), ffd, ffe) 33.50/15.06 new_esEs32(xuu50000, xuu4000, app(app(ty_Either, bhc), bhd)) -> new_esEs15(xuu50000, xuu4000, bhc, bhd) 33.50/15.06 new_esEs31(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.06 new_compare9(xuu5000, xuu400, ty_Bool) -> new_compare18(xuu5000, xuu400) 33.50/15.06 new_esEs14(False, False) -> True 33.50/15.06 new_compare17(EQ, EQ) -> EQ 33.50/15.06 new_compare10(xuu168, xuu169, xuu170, xuu171, True, xuu173, bf, bg) -> new_compare11(xuu168, xuu169, xuu170, xuu171, True, bf, bg) 33.50/15.06 new_esEs41(GT) -> True 33.50/15.06 new_esEs37(xuu111, xuu113, app(app(ty_Either, efg), efh)) -> new_esEs15(xuu111, xuu113, efg, efh) 33.50/15.06 new_lt21(xuu660, xuu670, app(ty_Maybe, ddf)) -> new_lt15(xuu660, xuu670, ddf) 33.50/15.06 new_esEs11(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.06 new_lt22(xuu111, xuu113, ty_Bool) -> new_lt5(xuu111, xuu113) 33.50/15.06 new_esEs40(xuu50000, xuu4000, app(app(app(ty_@3, gba), gbb), gbc)) -> new_esEs24(xuu50000, xuu4000, gba, gbb, gbc) 33.50/15.06 new_esEs34(xuu77, xuu80, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs24(xuu77, xuu80, chf, chg, chh) 33.50/15.06 new_compare111(xuu142, xuu143, False, bac) -> GT 33.50/15.06 new_esEs4(xuu5001, xuu401, app(ty_Maybe, dfa)) -> new_esEs19(xuu5001, xuu401, dfa) 33.50/15.06 new_esEs34(xuu77, xuu80, ty_Bool) -> new_esEs14(xuu77, xuu80) 33.50/15.06 new_ltEs19(xuu662, xuu672, ty_@0) -> new_ltEs17(xuu662, xuu672) 33.50/15.06 new_ltEs24(xuu93, xuu94, app(ty_[], fge)) -> new_ltEs16(xuu93, xuu94, fge) 33.50/15.06 new_ltEs24(xuu93, xuu94, app(app(ty_@2, ffg), ffh)) -> new_ltEs12(xuu93, xuu94, ffg, ffh) 33.50/15.06 new_esEs11(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.06 new_esEs7(xuu5002, xuu402, ty_Float) -> new_esEs18(xuu5002, xuu402) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs20(xuu50000, xuu4000) 33.50/15.06 new_esEs37(xuu111, xuu113, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs24(xuu111, xuu113, efc, efd, efe) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, ty_Ordering) -> new_ltEs9(xuu660, xuu670) 33.50/15.06 new_esEs38(xuu660, xuu670, ty_@0) -> new_esEs25(xuu660, xuu670) 33.50/15.06 new_compare9(xuu5000, xuu400, ty_@0) -> new_compare19(xuu5000, xuu400) 33.50/15.06 new_compare16(Integer(xuu5000), Integer(xuu400)) -> new_primCmpInt(xuu5000, xuu400) 33.50/15.06 new_esEs33(xuu78, xuu81, ty_Integer) -> new_esEs20(xuu78, xuu81) 33.50/15.06 new_lt24(xuu500, xuu40, ty_@0) -> new_lt18(xuu500, xuu40) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Char, dfh) -> new_esEs12(xuu50000, xuu4000) 33.50/15.06 new_esEs9(xuu5000, xuu400, app(ty_[], cdf)) -> new_esEs22(xuu5000, xuu400, cdf) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), app(ty_Maybe, bdc)) -> new_esEs19(xuu50000, xuu4000, bdc) 33.50/15.06 new_lt20(xuu661, xuu671, ty_Ordering) -> new_lt9(xuu661, xuu671) 33.50/15.06 new_primPlusNat0(Succ(xuu44200), Succ(xuu13100)) -> Succ(Succ(new_primPlusNat0(xuu44200, xuu13100))) 33.50/15.06 new_lt24(xuu500, xuu40, app(app(ty_Either, bbb), bbc)) -> new_lt7(xuu500, xuu40, bbb, bbc) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, app(ty_[], ebd)) -> new_esEs22(xuu50000, xuu4000, ebd) 33.50/15.06 new_esEs38(xuu660, xuu670, app(ty_Maybe, fbb)) -> new_esEs19(xuu660, xuu670, fbb) 33.50/15.06 new_ltEs15(False, True) -> True 33.50/15.06 new_esEs35(xuu661, xuu671, ty_Integer) -> new_esEs20(xuu661, xuu671) 33.50/15.06 new_esEs30(xuu50001, xuu4001, ty_Int) -> new_esEs13(xuu50001, xuu4001) 33.50/15.06 new_lt20(xuu661, xuu671, ty_Int) -> new_lt8(xuu661, xuu671) 33.50/15.06 new_esEs36(xuu660, xuu670, app(app(ty_Either, dec), ded)) -> new_esEs15(xuu660, xuu670, dec, ded) 33.50/15.06 new_esEs28(xuu50000, xuu4000, app(ty_Ratio, fg)) -> new_esEs23(xuu50000, xuu4000, fg) 33.50/15.06 new_esEs40(xuu50000, xuu4000, ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.06 new_ltEs9(LT, EQ) -> True 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.06 new_esEs35(xuu661, xuu671, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs24(xuu661, xuu671, dce, dcf, dcg) 33.50/15.06 new_esEs10(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.06 new_lt20(xuu661, xuu671, app(ty_Maybe, dcd)) -> new_lt15(xuu661, xuu671, dcd) 33.50/15.06 new_lt21(xuu660, xuu670, ty_Integer) -> new_lt16(xuu660, xuu670) 33.50/15.06 new_esEs33(xuu78, xuu81, app(app(ty_Either, cgh), cha)) -> new_esEs15(xuu78, xuu81, cgh, cha) 33.50/15.06 new_esEs32(xuu50000, xuu4000, app(ty_Ratio, caa)) -> new_esEs23(xuu50000, xuu4000, caa) 33.50/15.06 new_esEs26(xuu50002, xuu4002, ty_Int) -> new_esEs13(xuu50002, xuu4002) 33.50/15.06 new_esEs26(xuu50002, xuu4002, ty_Double) -> new_esEs16(xuu50002, xuu4002) 33.50/15.06 new_esEs36(xuu660, xuu670, app(ty_Maybe, ddf)) -> new_esEs19(xuu660, xuu670, ddf) 33.50/15.06 new_esEs10(xuu5000, xuu400, app(app(ty_Either, eca), ecb)) -> new_esEs15(xuu5000, xuu400, eca, ecb) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.06 new_compare7(Float(xuu5000, Neg(xuu50010)), Float(xuu400, Neg(xuu4010))) -> new_compare8(new_sr(xuu5000, Neg(xuu4010)), new_sr(Neg(xuu50010), xuu400)) 33.50/15.06 new_compare111(xuu142, xuu143, True, bac) -> LT 33.50/15.06 new_lt13(xuu77, xuu80, ty_Double) -> new_lt19(xuu77, xuu80) 33.50/15.06 new_ltEs9(LT, GT) -> True 33.50/15.06 new_ltEs21(xuu661, xuu671, ty_Double) -> new_ltEs10(xuu661, xuu671) 33.50/15.06 new_esEs34(xuu77, xuu80, app(app(ty_Either, dab), dac)) -> new_esEs15(xuu77, xuu80, dab, dac) 33.50/15.06 new_esEs39(xuu50001, xuu4001, ty_Float) -> new_esEs18(xuu50001, xuu4001) 33.50/15.06 new_compare24(Double(xuu5000, Pos(xuu50010)), Double(xuu400, Pos(xuu4010))) -> new_compare8(new_sr(xuu5000, Pos(xuu4010)), new_sr(Pos(xuu50010), xuu400)) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Integer, dfh) -> new_esEs20(xuu50000, xuu4000) 33.50/15.06 new_esEs11(xuu5000, xuu400, app(app(ty_Either, edc), edd)) -> new_esEs15(xuu5000, xuu400, edc, edd) 33.50/15.06 new_lt23(xuu660, xuu670, ty_Ordering) -> new_lt9(xuu660, xuu670) 33.50/15.06 new_esEs5(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.06 new_gt(xuu22, xuu17, ty_@0) -> new_esEs41(new_compare19(xuu22, xuu17)) 33.50/15.06 new_compare26(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, True, cec, ced, cee) -> EQ 33.50/15.06 new_compare29(xuu93, xuu94, True, ffd, ffe) -> EQ 33.50/15.06 new_primCmpNat0(Succ(xuu50000), Succ(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) 33.50/15.06 new_lt12(xuu78, xuu81, ty_Double) -> new_lt19(xuu78, xuu81) 33.50/15.06 new_lt21(xuu660, xuu670, app(app(ty_Either, dec), ded)) -> new_lt7(xuu660, xuu670, dec, ded) 33.50/15.06 new_esEs40(xuu50000, xuu4000, ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.06 new_esEs22([], [], bhb) -> True 33.50/15.06 new_esEs21(LT, GT) -> False 33.50/15.06 new_esEs21(GT, LT) -> False 33.50/15.06 new_esEs28(xuu50000, xuu4000, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.06 new_esEs35(xuu661, xuu671, app(app(ty_Either, dda), ddb)) -> new_esEs15(xuu661, xuu671, dda, ddb) 33.50/15.06 new_esEs11(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.06 new_compare9(xuu5000, xuu400, ty_Float) -> new_compare7(xuu5000, xuu400) 33.50/15.06 new_esEs27(xuu50001, xuu4001, app(app(ty_@2, dh), ea)) -> new_esEs17(xuu50001, xuu4001, dh, ea) 33.50/15.06 new_compare3(:(xuu5000, xuu5001), [], gc) -> GT 33.50/15.06 new_lt20(xuu661, xuu671, ty_Bool) -> new_lt5(xuu661, xuu671) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), app(app(ty_Either, bcg), bch)) -> new_esEs15(xuu50000, xuu4000, bcg, bch) 33.50/15.06 new_ltEs23(xuu100, xuu101, ty_Double) -> new_ltEs10(xuu100, xuu101) 33.50/15.06 new_esEs32(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.06 new_esEs34(xuu77, xuu80, ty_Ordering) -> new_esEs21(xuu77, xuu80) 33.50/15.06 new_esEs29(LT) -> True 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Bool, dfh) -> new_esEs14(xuu50000, xuu4000) 33.50/15.06 new_ltEs9(EQ, LT) -> False 33.50/15.06 new_lt15(xuu500, xuu40, bha) -> new_esEs29(new_compare14(xuu500, xuu40, bha)) 33.50/15.06 new_esEs27(xuu50001, xuu4001, ty_Int) -> new_esEs13(xuu50001, xuu4001) 33.50/15.06 new_lt20(xuu661, xuu671, ty_Integer) -> new_lt16(xuu661, xuu671) 33.50/15.06 new_ltEs15(True, False) -> False 33.50/15.06 new_esEs5(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.06 new_esEs26(xuu50002, xuu4002, app(app(ty_@2, ce), cf)) -> new_esEs17(xuu50002, xuu4002, ce, cf) 33.50/15.06 new_esEs22(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bhb) -> new_asAs(new_esEs32(xuu50000, xuu4000, bhb), new_esEs22(xuu50001, xuu4001, bhb)) 33.50/15.06 new_esEs10(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.06 new_esEs32(xuu50000, xuu4000, ty_Bool) -> new_esEs14(xuu50000, xuu4000) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), app(ty_Ratio, fcb)) -> new_ltEs8(xuu660, xuu670, fcb) 33.50/15.06 new_ltEs22(xuu66, xuu67, ty_Double) -> new_ltEs10(xuu66, xuu67) 33.50/15.06 new_esEs33(xuu78, xuu81, ty_Ordering) -> new_esEs21(xuu78, xuu81) 33.50/15.06 new_lt22(xuu111, xuu113, ty_@0) -> new_lt18(xuu111, xuu113) 33.50/15.06 new_ltEs13(Nothing, Just(xuu670), fca) -> True 33.50/15.06 new_compare9(xuu5000, xuu400, app(app(ty_Either, hd), he)) -> new_compare25(xuu5000, xuu400, hd, he) 33.50/15.06 new_esEs4(xuu5001, xuu401, ty_@0) -> new_esEs25(xuu5001, xuu401) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Ordering, dfh) -> new_esEs21(xuu50000, xuu4000) 33.50/15.06 new_lt22(xuu111, xuu113, ty_Ordering) -> new_lt9(xuu111, xuu113) 33.50/15.06 new_esEs37(xuu111, xuu113, app(ty_Maybe, efb)) -> new_esEs19(xuu111, xuu113, efb) 33.50/15.06 new_lt22(xuu111, xuu113, app(app(ty_Either, efg), efh)) -> new_lt7(xuu111, xuu113, efg, efh) 33.50/15.06 new_ltEs15(False, False) -> True 33.50/15.06 new_esEs34(xuu77, xuu80, ty_Integer) -> new_esEs20(xuu77, xuu80) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.06 new_esEs11(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.06 new_esEs39(xuu50001, xuu4001, ty_@0) -> new_esEs25(xuu50001, xuu4001) 33.50/15.06 new_compare17(GT, LT) -> GT 33.50/15.06 new_esEs29(EQ) -> False 33.50/15.06 new_lt23(xuu660, xuu670, ty_@0) -> new_lt18(xuu660, xuu670) 33.50/15.06 new_primCmpInt(Neg(Succ(xuu50000)), Pos(xuu400)) -> LT 33.50/15.06 new_esEs35(xuu661, xuu671, app(ty_[], dch)) -> new_esEs22(xuu661, xuu671, dch) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), ty_@0, beb) -> new_ltEs17(xuu660, xuu670) 33.50/15.06 new_lt24(xuu500, xuu40, ty_Double) -> new_lt19(xuu500, xuu40) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), app(ty_Maybe, eaa), dfh) -> new_esEs19(xuu50000, xuu4000, eaa) 33.50/15.06 new_esEs15(Left(xuu50000), Right(xuu4000), dfg, dfh) -> False 33.50/15.06 new_esEs15(Right(xuu50000), Left(xuu4000), dfg, dfh) -> False 33.50/15.06 new_esEs35(xuu661, xuu671, ty_Char) -> new_esEs12(xuu661, xuu671) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), app(ty_Maybe, fce)) -> new_ltEs13(xuu660, xuu670, fce) 33.50/15.06 new_esEs29(GT) -> False 33.50/15.06 new_ltEs19(xuu662, xuu672, ty_Ordering) -> new_ltEs9(xuu662, xuu672) 33.50/15.06 new_primCmpInt(Pos(Zero), Neg(Succ(xuu4000))) -> GT 33.50/15.06 new_esEs33(xuu78, xuu81, ty_Float) -> new_esEs18(xuu78, xuu81) 33.50/15.06 new_primCmpInt(Neg(Succ(xuu50000)), Neg(xuu400)) -> new_primCmpNat0(xuu400, Succ(xuu50000)) 33.50/15.06 new_esEs9(xuu5000, xuu400, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs24(xuu5000, xuu400, cdh, cea, ceb) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, ty_Bool) -> new_ltEs15(xuu660, xuu670) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), app(app(ty_@2, bec), bed), beb) -> new_ltEs12(xuu660, xuu670, bec, bed) 33.50/15.06 new_ltEs18(xuu79, xuu82, app(ty_Ratio, cef)) -> new_ltEs8(xuu79, xuu82, cef) 33.50/15.06 new_ltEs9(LT, LT) -> True 33.50/15.06 new_lt23(xuu660, xuu670, ty_Int) -> new_lt8(xuu660, xuu670) 33.50/15.06 new_esEs37(xuu111, xuu113, ty_@0) -> new_esEs25(xuu111, xuu113) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), app(ty_[], bdd)) -> new_esEs22(xuu50000, xuu4000, bdd) 33.50/15.06 new_ltEs24(xuu93, xuu94, ty_@0) -> new_ltEs17(xuu93, xuu94) 33.50/15.06 new_lt21(xuu660, xuu670, ty_Ordering) -> new_lt9(xuu660, xuu670) 33.50/15.06 new_esEs41(EQ) -> False 33.50/15.06 new_esEs6(xuu5000, xuu400, app(app(ty_@2, dge), dgf)) -> new_esEs17(xuu5000, xuu400, dge, dgf) 33.50/15.06 new_lt20(xuu661, xuu671, app(app(app(ty_@3, dce), dcf), dcg)) -> new_lt4(xuu661, xuu671, dce, dcf, dcg) 33.50/15.06 new_compare9(xuu5000, xuu400, app(app(app(ty_@3, gh), ha), hb)) -> new_compare15(xuu5000, xuu400, gh, ha, hb) 33.50/15.06 new_compare17(GT, EQ) -> GT 33.50/15.06 new_ltEs18(xuu79, xuu82, ty_Float) -> new_ltEs6(xuu79, xuu82) 33.50/15.06 new_esEs10(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.06 new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False 33.50/15.06 new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False 33.50/15.06 new_esEs37(xuu111, xuu113, ty_Ordering) -> new_esEs21(xuu111, xuu113) 33.50/15.06 new_compare210(xuu100, xuu101, True, fdh, fea) -> EQ 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.06 new_esEs32(xuu50000, xuu4000, ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.06 new_esEs10(xuu5000, xuu400, app(ty_[], ecf)) -> new_esEs22(xuu5000, xuu400, ecf) 33.50/15.06 new_compare9(xuu5000, xuu400, app(app(ty_@2, ge), gf)) -> new_compare13(xuu5000, xuu400, ge, gf) 33.50/15.06 new_compare9(xuu5000, xuu400, ty_Char) -> new_compare6(xuu5000, xuu400) 33.50/15.06 new_esEs8(xuu5001, xuu401, ty_Int) -> new_esEs13(xuu5001, xuu401) 33.50/15.06 new_esEs37(xuu111, xuu113, app(ty_Ratio, eeg)) -> new_esEs23(xuu111, xuu113, eeg) 33.50/15.06 new_lt13(xuu77, xuu80, app(ty_Ratio, chb)) -> new_lt6(xuu77, xuu80, chb) 33.50/15.06 new_ltEs24(xuu93, xuu94, ty_Char) -> new_ltEs4(xuu93, xuu94) 33.50/15.06 new_lt13(xuu77, xuu80, ty_Char) -> new_lt11(xuu77, xuu80) 33.50/15.06 new_lt19(xuu500, xuu40) -> new_esEs29(new_compare24(xuu500, xuu40)) 33.50/15.06 new_compare14(Nothing, Just(xuu400), bha) -> LT 33.50/15.06 new_esEs34(xuu77, xuu80, ty_Double) -> new_esEs16(xuu77, xuu80) 33.50/15.06 new_esEs4(xuu5001, xuu401, ty_Char) -> new_esEs12(xuu5001, xuu401) 33.50/15.06 new_primCmpNat0(Zero, Zero) -> EQ 33.50/15.06 new_ltEs20(xuu112, xuu114, ty_Integer) -> new_ltEs5(xuu112, xuu114) 33.50/15.06 new_esEs27(xuu50001, xuu4001, ty_Double) -> new_esEs16(xuu50001, xuu4001) 33.50/15.06 new_esEs9(xuu5000, xuu400, app(ty_Maybe, cde)) -> new_esEs19(xuu5000, xuu400, cde) 33.50/15.06 new_lt21(xuu660, xuu670, ty_Float) -> new_lt10(xuu660, xuu670) 33.50/15.06 new_esEs6(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), app(ty_[], fda)) -> new_ltEs16(xuu660, xuu670, fda) 33.50/15.06 new_ltEs16(xuu66, xuu67, fdd) -> new_fsEs(new_compare3(xuu66, xuu67, fdd)) 33.50/15.06 new_ltEs24(xuu93, xuu94, ty_Double) -> new_ltEs10(xuu93, xuu94) 33.50/15.06 new_lt21(xuu660, xuu670, ty_Bool) -> new_lt5(xuu660, xuu670) 33.50/15.06 new_compare7(Float(xuu5000, Pos(xuu50010)), Float(xuu400, Neg(xuu4010))) -> new_compare8(new_sr(xuu5000, Pos(xuu4010)), new_sr(Neg(xuu50010), xuu400)) 33.50/15.06 new_compare7(Float(xuu5000, Neg(xuu50010)), Float(xuu400, Pos(xuu4010))) -> new_compare8(new_sr(xuu5000, Neg(xuu4010)), new_sr(Pos(xuu50010), xuu400)) 33.50/15.06 new_esEs32(xuu50000, xuu4000, ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.06 new_esEs10(xuu5000, xuu400, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs24(xuu5000, xuu400, ech, eda, edb) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs24(xuu50000, xuu4000, bdf, bdg, bdh) 33.50/15.06 new_esEs36(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) 33.50/15.06 new_compare9(xuu5000, xuu400, ty_Ordering) -> new_compare17(xuu5000, xuu400) 33.50/15.06 new_esEs7(xuu5002, xuu402, app(app(ty_Either, cae), caf)) -> new_esEs15(xuu5002, xuu402, cae, caf) 33.50/15.06 new_esEs34(xuu77, xuu80, app(app(ty_@2, chc), chd)) -> new_esEs17(xuu77, xuu80, chc, chd) 33.50/15.06 new_esEs38(xuu660, xuu670, ty_Float) -> new_esEs18(xuu660, xuu670) 33.50/15.06 new_ltEs21(xuu661, xuu671, ty_Bool) -> new_ltEs15(xuu661, xuu671) 33.50/15.06 new_compare8(xuu500, xuu40) -> new_primCmpInt(xuu500, xuu40) 33.50/15.06 new_esEs23(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), bba) -> new_asAs(new_esEs31(xuu50000, xuu4000, bba), new_esEs30(xuu50001, xuu4001, bba)) 33.50/15.06 new_compare13(@2(xuu5000, xuu5001), @2(xuu400, xuu401), bgg, bgh) -> new_compare27(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs5(xuu5000, xuu400, bgg), new_esEs4(xuu5001, xuu401, bgh)), bgg, bgh) 33.50/15.06 new_ltEs22(xuu66, xuu67, ty_Int) -> new_ltEs7(xuu66, xuu67) 33.50/15.06 new_ltEs20(xuu112, xuu114, app(ty_Ratio, ega)) -> new_ltEs8(xuu112, xuu114, ega) 33.50/15.06 new_primCompAux00(xuu87, GT) -> GT 33.50/15.06 new_ltEs22(xuu66, xuu67, app(app(app(ty_@3, dad), dae), daf)) -> new_ltEs14(xuu66, xuu67, dad, dae, daf) 33.50/15.06 new_esEs40(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.06 new_compare28(xuu66, xuu67, False, fde) -> new_compare111(xuu66, xuu67, new_ltEs22(xuu66, xuu67, fde), fde) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), ty_Char) -> new_ltEs4(xuu660, xuu670) 33.50/15.06 new_lt13(xuu77, xuu80, ty_@0) -> new_lt18(xuu77, xuu80) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), app(ty_Ratio, eac), dfh) -> new_esEs23(xuu50000, xuu4000, eac) 33.50/15.06 new_ltEs21(xuu661, xuu671, ty_Ordering) -> new_ltEs9(xuu661, xuu671) 33.50/15.06 new_esEs4(xuu5001, xuu401, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs24(xuu5001, xuu401, dfd, dfe, dff) 33.50/15.06 new_compare12(:%(xuu5000, xuu5001), :%(xuu400, xuu401), ty_Int) -> new_compare8(new_sr(xuu5000, xuu401), new_sr(xuu400, xuu5001)) 33.50/15.06 new_esEs6(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.06 new_lt23(xuu660, xuu670, app(ty_Ratio, fag)) -> new_lt6(xuu660, xuu670, fag) 33.50/15.06 new_ltEs11(Left(xuu660), Right(xuu670), bfd, beb) -> True 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, app(ty_[], bgd)) -> new_ltEs16(xuu660, xuu670, bgd) 33.50/15.06 new_compare110(xuu151, xuu152, True, hf, hg) -> LT 33.50/15.06 new_compare3(:(xuu5000, xuu5001), :(xuu400, xuu401), gc) -> new_primCompAux0(xuu5000, xuu400, new_compare3(xuu5001, xuu401, gc), gc) 33.50/15.06 new_compare17(EQ, LT) -> GT 33.50/15.06 new_esEs27(xuu50001, xuu4001, app(ty_Ratio, ed)) -> new_esEs23(xuu50001, xuu4001, ed) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), ty_Char, beb) -> new_ltEs4(xuu660, xuu670) 33.50/15.06 new_ltEs14(@3(xuu660, xuu661, xuu662), @3(xuu670, xuu671, xuu672), dad, dae, daf) -> new_pePe(new_lt21(xuu660, xuu670, dad), new_asAs(new_esEs36(xuu660, xuu670, dad), new_pePe(new_lt20(xuu661, xuu671, dae), new_asAs(new_esEs35(xuu661, xuu671, dae), new_ltEs19(xuu662, xuu672, daf))))) 33.50/15.06 new_esEs26(xuu50002, xuu4002, ty_Float) -> new_esEs18(xuu50002, xuu4002) 33.50/15.06 new_esEs7(xuu5002, xuu402, app(ty_[], cbb)) -> new_esEs22(xuu5002, xuu402, cbb) 33.50/15.06 new_esEs31(xuu50000, xuu4000, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.06 new_ltEs22(xuu66, xuu67, app(ty_[], fdd)) -> new_ltEs16(xuu66, xuu67, fdd) 33.50/15.06 new_esEs28(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 33.50/15.06 new_ltEs19(xuu662, xuu672, ty_Double) -> new_ltEs10(xuu662, xuu672) 33.50/15.06 new_lt23(xuu660, xuu670, ty_Char) -> new_lt11(xuu660, xuu670) 33.50/15.06 new_esEs39(xuu50001, xuu4001, ty_Double) -> new_esEs16(xuu50001, xuu4001) 33.50/15.06 new_esEs4(xuu5001, xuu401, ty_Ordering) -> new_esEs21(xuu5001, xuu401) 33.50/15.06 new_primCmpNat0(Succ(xuu50000), Zero) -> GT 33.50/15.06 new_ltEs8(xuu66, xuu67, bad) -> new_fsEs(new_compare12(xuu66, xuu67, bad)) 33.50/15.06 new_pePe(False, xuu201) -> xuu201 33.50/15.06 new_esEs28(xuu50000, xuu4000, app(ty_[], ff)) -> new_esEs22(xuu50000, xuu4000, ff) 33.50/15.06 new_esEs21(EQ, EQ) -> True 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, app(ty_Maybe, bfh)) -> new_ltEs13(xuu660, xuu670, bfh) 33.50/15.06 new_compare9(xuu5000, xuu400, ty_Int) -> new_compare8(xuu5000, xuu400) 33.50/15.06 new_esEs38(xuu660, xuu670, app(app(ty_Either, fbg), fbh)) -> new_esEs15(xuu660, xuu670, fbg, fbh) 33.50/15.06 new_lt20(xuu661, xuu671, ty_Char) -> new_lt11(xuu661, xuu671) 33.50/15.06 new_lt22(xuu111, xuu113, app(ty_Maybe, efb)) -> new_lt15(xuu111, xuu113, efb) 33.50/15.06 new_esEs26(xuu50002, xuu4002, ty_Bool) -> new_esEs14(xuu50002, xuu4002) 33.50/15.06 new_esEs11(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.06 new_esEs34(xuu77, xuu80, app(ty_Ratio, chb)) -> new_esEs23(xuu77, xuu80, chb) 33.50/15.06 new_ltEs12(@2(xuu660, xuu661), @2(xuu670, xuu671), ehc, ehd) -> new_pePe(new_lt23(xuu660, xuu670, ehc), new_asAs(new_esEs38(xuu660, xuu670, ehc), new_ltEs21(xuu661, xuu671, ehd))) 33.50/15.06 new_esEs6(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), app(app(ty_Either, fdb), fdc)) -> new_ltEs11(xuu660, xuu670, fdb, fdc) 33.50/15.06 new_ltEs18(xuu79, xuu82, app(app(ty_@2, ceg), ceh)) -> new_ltEs12(xuu79, xuu82, ceg, ceh) 33.50/15.06 new_ltEs19(xuu662, xuu672, ty_Bool) -> new_ltEs15(xuu662, xuu672) 33.50/15.06 new_lt14(xuu500, xuu40, bgg, bgh) -> new_esEs29(new_compare13(xuu500, xuu40, bgg, bgh)) 33.50/15.06 new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False 33.50/15.06 new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), ty_Double) -> new_ltEs10(xuu660, xuu670) 33.50/15.06 new_lt23(xuu660, xuu670, ty_Integer) -> new_lt16(xuu660, xuu670) 33.50/15.06 new_esEs4(xuu5001, xuu401, app(app(ty_Either, dee), def)) -> new_esEs15(xuu5001, xuu401, dee, def) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), ty_Double, beb) -> new_ltEs10(xuu660, xuu670) 33.50/15.06 new_compare17(LT, LT) -> EQ 33.50/15.06 new_ltEs20(xuu112, xuu114, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs14(xuu112, xuu114, ege, egf, egg) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), ty_Float, dfh) -> new_esEs18(xuu50000, xuu4000) 33.50/15.06 new_lt23(xuu660, xuu670, app(ty_[], fbf)) -> new_lt17(xuu660, xuu670, fbf) 33.50/15.06 new_gt(xuu22, xuu17, ty_Ordering) -> new_esEs41(new_compare17(xuu22, xuu17)) 33.50/15.06 new_esEs27(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) 33.50/15.06 new_compare114(xuu158, xuu159, False, fdf, fdg) -> GT 33.50/15.06 new_esEs36(xuu660, xuu670, ty_Bool) -> new_esEs14(xuu660, xuu670) 33.50/15.06 new_esEs32(xuu50000, xuu4000, ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.06 new_esEs10(xuu5000, xuu400, app(ty_Maybe, ece)) -> new_esEs19(xuu5000, xuu400, ece) 33.50/15.06 new_esEs36(xuu660, xuu670, ty_Float) -> new_esEs18(xuu660, xuu670) 33.50/15.06 new_esEs38(xuu660, xuu670, app(ty_[], fbf)) -> new_esEs22(xuu660, xuu670, fbf) 33.50/15.06 new_gt(xuu22, xuu17, ty_Double) -> new_esEs41(new_compare24(xuu22, xuu17)) 33.50/15.06 new_esEs8(xuu5001, xuu401, ty_Double) -> new_esEs16(xuu5001, xuu401) 33.50/15.06 new_ltEs11(Right(xuu660), Left(xuu670), bfd, beb) -> False 33.50/15.06 new_ltEs9(GT, EQ) -> False 33.50/15.06 new_esEs38(xuu660, xuu670, ty_Char) -> new_esEs12(xuu660, xuu670) 33.50/15.06 new_esEs6(xuu5000, xuu400, app(ty_Maybe, dgg)) -> new_esEs19(xuu5000, xuu400, dgg) 33.50/15.06 new_esEs24(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bh, ca, cb) -> new_asAs(new_esEs28(xuu50000, xuu4000, bh), new_asAs(new_esEs27(xuu50001, xuu4001, ca), new_esEs26(xuu50002, xuu4002, cb))) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), app(ty_[], eab), dfh) -> new_esEs22(xuu50000, xuu4000, eab) 33.50/15.06 new_ltEs17(xuu66, xuu67) -> new_fsEs(new_compare19(xuu66, xuu67)) 33.50/15.06 new_esEs20(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) 33.50/15.06 new_esEs15(Left(xuu50000), Left(xuu4000), app(app(ty_@2, dhg), dhh), dfh) -> new_esEs17(xuu50000, xuu4000, dhg, dhh) 33.50/15.06 new_esEs6(xuu5000, xuu400, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs24(xuu5000, xuu400, dhb, dhc, dhd) 33.50/15.06 new_ltEs20(xuu112, xuu114, app(app(ty_@2, egb), egc)) -> new_ltEs12(xuu112, xuu114, egb, egc) 33.50/15.06 new_ltEs22(xuu66, xuu67, ty_@0) -> new_ltEs17(xuu66, xuu67) 33.50/15.06 new_esEs8(xuu5001, xuu401, app(app(ty_@2, cca), ccb)) -> new_esEs17(xuu5001, xuu401, cca, ccb) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), app(ty_Ratio, bea), beb) -> new_ltEs8(xuu660, xuu670, bea) 33.50/15.06 new_compare26(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, False, cec, ced, cee) -> new_compare113(xuu77, xuu78, xuu79, xuu80, xuu81, xuu82, new_lt13(xuu77, xuu80, cec), new_asAs(new_esEs34(xuu77, xuu80, cec), new_pePe(new_lt12(xuu78, xuu81, ced), new_asAs(new_esEs33(xuu78, xuu81, ced), new_ltEs18(xuu79, xuu82, cee)))), cec, ced, cee) 33.50/15.06 new_esEs39(xuu50001, xuu4001, ty_Bool) -> new_esEs14(xuu50001, xuu4001) 33.50/15.06 new_esEs4(xuu5001, xuu401, app(ty_[], dfb)) -> new_esEs22(xuu5001, xuu401, dfb) 33.50/15.06 new_esEs9(xuu5000, xuu400, app(app(ty_@2, cdc), cdd)) -> new_esEs17(xuu5000, xuu400, cdc, cdd) 33.50/15.06 new_esEs28(xuu50000, xuu4000, app(app(ty_Either, eh), fa)) -> new_esEs15(xuu50000, xuu4000, eh, fa) 33.50/15.06 new_esEs10(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.06 new_esEs40(xuu50000, xuu4000, app(app(ty_Either, gab), gac)) -> new_esEs15(xuu50000, xuu4000, gab, gac) 33.50/15.06 new_lt13(xuu77, xuu80, ty_Float) -> new_lt10(xuu77, xuu80) 33.50/15.06 new_esEs16(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs13(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) 33.50/15.06 new_lt13(xuu77, xuu80, app(app(ty_@2, chc), chd)) -> new_lt14(xuu77, xuu80, chc, chd) 33.50/15.06 new_lt20(xuu661, xuu671, app(ty_Ratio, dca)) -> new_lt6(xuu661, xuu671, dca) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), app(app(ty_Either, bfb), bfc), beb) -> new_ltEs11(xuu660, xuu670, bfb, bfc) 33.50/15.06 new_esEs6(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.06 new_lt23(xuu660, xuu670, ty_Float) -> new_lt10(xuu660, xuu670) 33.50/15.06 new_lt13(xuu77, xuu80, ty_Int) -> new_lt8(xuu77, xuu80) 33.50/15.06 new_esEs22(:(xuu50000, xuu50001), [], bhb) -> False 33.50/15.06 new_esEs22([], :(xuu4000, xuu4001), bhb) -> False 33.50/15.06 new_ltEs9(GT, GT) -> True 33.50/15.06 new_esEs32(xuu50000, xuu4000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs24(xuu50000, xuu4000, cab, cac, cad) 33.50/15.06 new_lt24(xuu500, xuu40, ty_Bool) -> new_lt5(xuu500, xuu40) 33.50/15.06 new_esEs34(xuu77, xuu80, ty_Int) -> new_esEs13(xuu77, xuu80) 33.50/15.06 new_compare18(True, False) -> GT 33.50/15.06 new_lt24(xuu500, xuu40, app(ty_Maybe, bha)) -> new_lt15(xuu500, xuu40, bha) 33.50/15.06 new_lt12(xuu78, xuu81, app(ty_Maybe, cgc)) -> new_lt15(xuu78, xuu81, cgc) 33.50/15.06 new_ltEs19(xuu662, xuu672, app(ty_[], dbf)) -> new_ltEs16(xuu662, xuu672, dbf) 33.50/15.06 new_ltEs20(xuu112, xuu114, ty_Float) -> new_ltEs6(xuu112, xuu114) 33.50/15.06 new_lt13(xuu77, xuu80, ty_Integer) -> new_lt16(xuu77, xuu80) 33.50/15.06 new_primMulInt(Neg(xuu4000), Neg(xuu50010)) -> Pos(new_primMulNat0(xuu4000, xuu50010)) 33.50/15.06 new_primCmpInt(Pos(Zero), Pos(Succ(xuu4000))) -> new_primCmpNat0(Zero, Succ(xuu4000)) 33.50/15.06 new_esEs11(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.06 new_esEs37(xuu111, xuu113, ty_Char) -> new_esEs12(xuu111, xuu113) 33.50/15.06 new_esEs14(True, True) -> True 33.50/15.06 new_lt24(xuu500, xuu40, ty_Float) -> new_lt10(xuu500, xuu40) 33.50/15.06 new_esEs34(xuu77, xuu80, ty_@0) -> new_esEs25(xuu77, xuu80) 33.50/15.06 new_esEs32(xuu50000, xuu4000, app(app(ty_@2, bhe), bhf)) -> new_esEs17(xuu50000, xuu4000, bhe, bhf) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), ty_Ordering, beb) -> new_ltEs9(xuu660, xuu670) 33.50/15.06 new_esEs40(xuu50000, xuu4000, app(ty_[], gag)) -> new_esEs22(xuu50000, xuu4000, gag) 33.50/15.06 new_compare11(xuu168, xuu169, xuu170, xuu171, False, bf, bg) -> GT 33.50/15.06 new_ltEs23(xuu100, xuu101, app(ty_Ratio, feb)) -> new_ltEs8(xuu100, xuu101, feb) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), ty_Ordering) -> new_ltEs9(xuu660, xuu670) 33.50/15.06 new_esEs39(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) 33.50/15.06 new_esEs32(xuu50000, xuu4000, app(ty_Maybe, bhg)) -> new_esEs19(xuu50000, xuu4000, bhg) 33.50/15.06 new_esEs7(xuu5002, xuu402, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs24(xuu5002, xuu402, cbd, cbe, cbf) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs24(xuu50000, xuu4000, ebf, ebg, ebh) 33.50/15.06 new_esEs27(xuu50001, xuu4001, ty_Ordering) -> new_esEs21(xuu50001, xuu4001) 33.50/15.06 new_esEs9(xuu5000, xuu400, ty_@0) -> new_esEs25(xuu5000, xuu400) 33.50/15.06 new_esEs35(xuu661, xuu671, ty_Float) -> new_esEs18(xuu661, xuu671) 33.50/15.06 new_lt13(xuu77, xuu80, app(ty_[], daa)) -> new_lt17(xuu77, xuu80, daa) 33.50/15.06 new_ltEs18(xuu79, xuu82, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs14(xuu79, xuu82, cfb, cfc, cfd) 33.50/15.06 new_lt13(xuu77, xuu80, app(app(app(ty_@3, chf), chg), chh)) -> new_lt4(xuu77, xuu80, chf, chg, chh) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.06 new_ltEs22(xuu66, xuu67, ty_Float) -> new_ltEs6(xuu66, xuu67) 33.50/15.06 new_ltEs22(xuu66, xuu67, ty_Char) -> new_ltEs4(xuu66, xuu67) 33.50/15.06 new_compare7(Float(xuu5000, Pos(xuu50010)), Float(xuu400, Pos(xuu4010))) -> new_compare8(new_sr(xuu5000, Pos(xuu4010)), new_sr(Pos(xuu50010), xuu400)) 33.50/15.06 new_gt(xuu22, xuu17, app(app(ty_Either, bcd), bce)) -> new_esEs41(new_compare25(xuu22, xuu17, bcd, bce)) 33.50/15.06 new_ltEs6(xuu66, xuu67) -> new_fsEs(new_compare7(xuu66, xuu67)) 33.50/15.06 new_primMulInt(Pos(xuu4000), Neg(xuu50010)) -> Neg(new_primMulNat0(xuu4000, xuu50010)) 33.50/15.06 new_primMulInt(Neg(xuu4000), Pos(xuu50010)) -> Neg(new_primMulNat0(xuu4000, xuu50010)) 33.50/15.06 new_esEs4(xuu5001, xuu401, app(app(ty_@2, deg), deh)) -> new_esEs17(xuu5001, xuu401, deg, deh) 33.50/15.06 new_esEs5(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.06 new_ltEs21(xuu661, xuu671, app(ty_Maybe, ehh)) -> new_ltEs13(xuu661, xuu671, ehh) 33.50/15.06 new_lt20(xuu661, xuu671, app(ty_[], dch)) -> new_lt17(xuu661, xuu671, dch) 33.50/15.06 new_compare27(xuu111, xuu112, xuu113, xuu114, False, eee, eef) -> new_compare10(xuu111, xuu112, xuu113, xuu114, new_lt22(xuu111, xuu113, eee), new_asAs(new_esEs37(xuu111, xuu113, eee), new_ltEs20(xuu112, xuu114, eef)), eee, eef) 33.50/15.06 new_ltEs20(xuu112, xuu114, app(app(ty_Either, eha), ehb)) -> new_ltEs11(xuu112, xuu114, eha, ehb) 33.50/15.06 new_sr0(Integer(xuu4000), Integer(xuu50010)) -> Integer(new_primMulInt(xuu4000, xuu50010)) 33.50/15.06 new_esEs19(Nothing, Just(xuu4000), bcf) -> False 33.50/15.06 new_esEs19(Just(xuu50000), Nothing, bcf) -> False 33.50/15.06 new_esEs19(Nothing, Nothing, bcf) -> True 33.50/15.06 new_esEs26(xuu50002, xuu4002, ty_Integer) -> new_esEs20(xuu50002, xuu4002) 33.50/15.06 new_esEs6(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.06 new_esEs8(xuu5001, xuu401, app(ty_Ratio, cce)) -> new_esEs23(xuu5001, xuu401, cce) 33.50/15.06 new_lt17(xuu500, xuu40, gc) -> new_esEs29(new_compare3(xuu500, xuu40, gc)) 33.50/15.06 new_esEs40(xuu50000, xuu4000, ty_Ordering) -> new_esEs21(xuu50000, xuu4000) 33.50/15.06 new_esEs10(xuu5000, xuu400, ty_Float) -> new_esEs18(xuu5000, xuu400) 33.50/15.06 new_lt21(xuu660, xuu670, ty_Char) -> new_lt11(xuu660, xuu670) 33.50/15.06 new_esEs6(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.06 new_esEs4(xuu5001, xuu401, app(ty_Ratio, dfc)) -> new_esEs23(xuu5001, xuu401, dfc) 33.50/15.06 new_lt12(xuu78, xuu81, app(app(ty_Either, cgh), cha)) -> new_lt7(xuu78, xuu81, cgh, cha) 33.50/15.06 new_esEs6(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.06 new_asAs(True, xuu129) -> xuu129 33.50/15.06 new_lt12(xuu78, xuu81, ty_Bool) -> new_lt5(xuu78, xuu81) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), app(app(app(ty_@3, fcf), fcg), fch)) -> new_ltEs14(xuu660, xuu670, fcf, fcg, fch) 33.50/15.06 new_lt12(xuu78, xuu81, app(app(app(ty_@3, cgd), cge), cgf)) -> new_lt4(xuu78, xuu81, cgd, cge, cgf) 33.50/15.06 new_esEs38(xuu660, xuu670, ty_Int) -> new_esEs13(xuu660, xuu670) 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), ty_Bool, beb) -> new_ltEs15(xuu660, xuu670) 33.50/15.06 new_lt22(xuu111, xuu113, ty_Double) -> new_lt19(xuu111, xuu113) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs16(xuu50000, xuu4000) 33.50/15.06 new_compare18(False, True) -> LT 33.50/15.06 new_ltEs23(xuu100, xuu101, ty_Integer) -> new_ltEs5(xuu100, xuu101) 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), ty_Bool) -> new_ltEs15(xuu660, xuu670) 33.50/15.06 new_gt(xuu22, xuu17, ty_Integer) -> new_esEs41(new_compare16(xuu22, xuu17)) 33.50/15.06 new_esEs33(xuu78, xuu81, app(ty_[], cgg)) -> new_esEs22(xuu78, xuu81, cgg) 33.50/15.06 new_ltEs22(xuu66, xuu67, ty_Ordering) -> new_ltEs9(xuu66, xuu67) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, app(app(ty_Either, bge), bgf)) -> new_ltEs11(xuu660, xuu670, bge, bgf) 33.50/15.06 new_gt(xuu22, xuu17, app(ty_[], bcc)) -> new_esEs41(new_compare3(xuu22, xuu17, bcc)) 33.50/15.06 new_lt22(xuu111, xuu113, app(ty_Ratio, eeg)) -> new_lt6(xuu111, xuu113, eeg) 33.50/15.06 new_esEs27(xuu50001, xuu4001, app(app(ty_Either, df), dg)) -> new_esEs15(xuu50001, xuu4001, df, dg) 33.50/15.06 new_sr(xuu400, xuu5001) -> new_primMulInt(xuu400, xuu5001) 33.50/15.06 new_ltEs22(xuu66, xuu67, app(ty_Ratio, bad)) -> new_ltEs8(xuu66, xuu67, bad) 33.50/15.06 new_esEs35(xuu661, xuu671, app(app(ty_@2, dcb), dcc)) -> new_esEs17(xuu661, xuu671, dcb, dcc) 33.50/15.06 new_primMulNat0(Zero, Zero) -> Zero 33.50/15.06 new_esEs28(xuu50000, xuu4000, app(ty_Maybe, fd)) -> new_esEs19(xuu50000, xuu4000, fd) 33.50/15.06 new_gt(xuu22, xuu17, ty_Float) -> new_esEs41(new_compare7(xuu22, xuu17)) 33.50/15.06 new_gt(xuu22, xuu17, ty_Char) -> new_esEs41(new_compare6(xuu22, xuu17)) 33.50/15.06 new_ltEs21(xuu661, xuu671, app(ty_Ratio, ehe)) -> new_ltEs8(xuu661, xuu671, ehe) 33.50/15.06 new_esEs36(xuu660, xuu670, app(app(ty_@2, ddd), dde)) -> new_esEs17(xuu660, xuu670, ddd, dde) 33.50/15.06 new_esEs11(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.06 new_esEs11(xuu5000, xuu400, app(app(ty_@2, ede), edf)) -> new_esEs17(xuu5000, xuu400, ede, edf) 33.50/15.06 new_esEs26(xuu50002, xuu4002, app(app(ty_Either, cc), cd)) -> new_esEs15(xuu50002, xuu4002, cc, cd) 33.50/15.06 new_esEs27(xuu50001, xuu4001, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs24(xuu50001, xuu4001, ee, ef, eg) 33.50/15.06 new_ltEs19(xuu662, xuu672, app(ty_Maybe, dbb)) -> new_ltEs13(xuu662, xuu672, dbb) 33.50/15.06 new_esEs5(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.06 new_ltEs24(xuu93, xuu94, app(app(ty_Either, fgf), fgg)) -> new_ltEs11(xuu93, xuu94, fgf, fgg) 33.50/15.06 new_esEs39(xuu50001, xuu4001, app(ty_Ratio, fhf)) -> new_esEs23(xuu50001, xuu4001, fhf) 33.50/15.06 new_lt5(xuu500, xuu40) -> new_esEs29(new_compare18(xuu500, xuu40)) 33.50/15.06 new_esEs37(xuu111, xuu113, ty_Int) -> new_esEs13(xuu111, xuu113) 33.50/15.06 new_ltEs18(xuu79, xuu82, app(app(ty_Either, cff), cfg)) -> new_ltEs11(xuu79, xuu82, cff, cfg) 33.50/15.06 new_esEs7(xuu5002, xuu402, ty_Ordering) -> new_esEs21(xuu5002, xuu402) 33.50/15.06 new_lt23(xuu660, xuu670, app(app(ty_@2, fah), fba)) -> new_lt14(xuu660, xuu670, fah, fba) 33.50/15.06 new_esEs10(xuu5000, xuu400, ty_Double) -> new_esEs16(xuu5000, xuu400) 33.50/15.06 new_esEs28(xuu50000, xuu4000, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs24(xuu50000, xuu4000, fh, ga, gb) 33.50/15.06 new_lt21(xuu660, xuu670, ty_Double) -> new_lt19(xuu660, xuu670) 33.50/15.06 new_esEs19(Just(xuu50000), Just(xuu4000), app(app(ty_@2, bda), bdb)) -> new_esEs17(xuu50000, xuu4000, bda, bdb) 33.50/15.06 new_esEs37(xuu111, xuu113, app(ty_[], eff)) -> new_esEs22(xuu111, xuu113, eff) 33.50/15.06 new_lt16(xuu500, xuu40) -> new_esEs29(new_compare16(xuu500, xuu40)) 33.50/15.06 new_esEs32(xuu50000, xuu4000, app(ty_[], bhh)) -> new_esEs22(xuu50000, xuu4000, bhh) 33.50/15.06 new_esEs7(xuu5002, xuu402, ty_Int) -> new_esEs13(xuu5002, xuu402) 33.50/15.06 new_compare27(xuu111, xuu112, xuu113, xuu114, True, eee, eef) -> EQ 33.50/15.06 new_lt13(xuu77, xuu80, ty_Ordering) -> new_lt9(xuu77, xuu80) 33.50/15.06 new_ltEs19(xuu662, xuu672, app(app(ty_Either, dbg), dbh)) -> new_ltEs11(xuu662, xuu672, dbg, dbh) 33.50/15.06 new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False 33.50/15.06 new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False 33.50/15.06 new_esEs9(xuu5000, xuu400, app(ty_Ratio, cdg)) -> new_esEs23(xuu5000, xuu400, cdg) 33.50/15.06 new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) 33.50/15.06 new_ltEs9(EQ, GT) -> True 33.50/15.06 new_lt4(xuu500, xuu40, hh, baa, bab) -> new_esEs29(new_compare15(xuu500, xuu40, hh, baa, bab)) 33.50/15.06 new_esEs5(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.06 new_lt13(xuu77, xuu80, app(app(ty_Either, dab), dac)) -> new_lt7(xuu77, xuu80, dab, dac) 33.50/15.06 new_lt22(xuu111, xuu113, app(app(ty_@2, eeh), efa)) -> new_lt14(xuu111, xuu113, eeh, efa) 33.50/15.06 new_ltEs23(xuu100, xuu101, ty_Float) -> new_ltEs6(xuu100, xuu101) 33.50/15.06 new_esEs4(xuu5001, xuu401, ty_Double) -> new_esEs16(xuu5001, xuu401) 33.50/15.06 new_ltEs18(xuu79, xuu82, ty_Integer) -> new_ltEs5(xuu79, xuu82) 33.50/15.06 new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False 33.50/15.06 new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False 33.50/15.06 new_esEs5(xuu5000, xuu400, app(app(ty_@2, dga), dgb)) -> new_esEs17(xuu5000, xuu400, dga, dgb) 33.50/15.06 new_gt(xuu22, xuu17, ty_Int) -> new_gt0(xuu22, xuu17) 33.50/15.06 new_primCmpInt(Neg(Zero), Neg(Succ(xuu4000))) -> new_primCmpNat0(Succ(xuu4000), Zero) 33.50/15.06 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 33.50/15.06 new_ltEs11(Left(xuu660), Left(xuu670), app(ty_Maybe, bee), beb) -> new_ltEs13(xuu660, xuu670, bee) 33.50/15.06 new_lt23(xuu660, xuu670, ty_Double) -> new_lt19(xuu660, xuu670) 33.50/15.06 new_ltEs24(xuu93, xuu94, ty_Integer) -> new_ltEs5(xuu93, xuu94) 33.50/15.06 new_esEs40(xuu50000, xuu4000, app(ty_Ratio, gah)) -> new_esEs23(xuu50000, xuu4000, gah) 33.50/15.06 new_esEs5(xuu5000, xuu400, ty_Int) -> new_esEs13(xuu5000, xuu400) 33.50/15.06 new_esEs21(EQ, GT) -> False 33.50/15.06 new_esEs21(GT, EQ) -> False 33.50/15.06 new_esEs34(xuu77, xuu80, app(ty_[], daa)) -> new_esEs22(xuu77, xuu80, daa) 33.50/15.06 new_esEs25(@0, @0) -> True 33.50/15.06 new_esEs7(xuu5002, xuu402, ty_Bool) -> new_esEs14(xuu5002, xuu402) 33.50/15.06 new_esEs7(xuu5002, xuu402, app(ty_Ratio, cbc)) -> new_esEs23(xuu5002, xuu402, cbc) 33.50/15.06 new_esEs11(xuu5000, xuu400, app(ty_[], edh)) -> new_esEs22(xuu5000, xuu400, edh) 33.50/15.06 new_esEs21(GT, GT) -> True 33.50/15.06 new_ltEs19(xuu662, xuu672, app(ty_Ratio, dag)) -> new_ltEs8(xuu662, xuu672, dag) 33.50/15.06 new_compare113(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, False, xuu190, baf, bag, bah) -> new_compare112(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, xuu190, baf, bag, bah) 33.50/15.06 new_esEs40(xuu50000, xuu4000, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.06 new_not(False) -> True 33.50/15.06 new_esEs36(xuu660, xuu670, app(ty_[], deb)) -> new_esEs22(xuu660, xuu670, deb) 33.50/15.06 new_ltEs21(xuu661, xuu671, ty_Char) -> new_ltEs4(xuu661, xuu671) 33.50/15.06 new_esEs28(xuu50000, xuu4000, ty_Float) -> new_esEs18(xuu50000, xuu4000) 33.50/15.06 new_lt21(xuu660, xuu670, app(ty_[], deb)) -> new_lt17(xuu660, xuu670, deb) 33.50/15.06 new_esEs9(xuu5000, xuu400, ty_Char) -> new_esEs12(xuu5000, xuu400) 33.50/15.06 new_compare113(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, xuu190, baf, bag, bah) -> new_compare112(xuu183, xuu184, xuu185, xuu186, xuu187, xuu188, True, baf, bag, bah) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, app(ty_Ratio, ebe)) -> new_esEs23(xuu50000, xuu4000, ebe) 33.50/15.06 new_esEs37(xuu111, xuu113, ty_Double) -> new_esEs16(xuu111, xuu113) 33.50/15.06 new_ltEs21(xuu661, xuu671, app(app(ty_Either, fae), faf)) -> new_ltEs11(xuu661, xuu671, fae, faf) 33.50/15.06 new_esEs41(LT) -> False 33.50/15.06 new_gt0(xuu22, xuu17) -> new_esEs41(new_compare8(xuu22, xuu17)) 33.50/15.06 new_compare9(xuu5000, xuu400, app(ty_Ratio, gd)) -> new_compare12(xuu5000, xuu400, gd) 33.50/15.06 new_esEs9(xuu5000, xuu400, app(app(ty_Either, cda), cdb)) -> new_esEs15(xuu5000, xuu400, cda, cdb) 33.50/15.06 new_esEs9(xuu5000, xuu400, ty_Bool) -> new_esEs14(xuu5000, xuu400) 33.50/15.06 new_compare25(Right(xuu5000), Left(xuu400), bbb, bbc) -> GT 33.50/15.06 new_esEs8(xuu5001, xuu401, ty_Integer) -> new_esEs20(xuu5001, xuu401) 33.50/15.06 new_esEs40(xuu50000, xuu4000, app(app(ty_@2, gad), gae)) -> new_esEs17(xuu50000, xuu4000, gad, gae) 33.50/15.06 new_ltEs19(xuu662, xuu672, ty_Int) -> new_ltEs7(xuu662, xuu672) 33.50/15.06 new_esEs5(xuu5000, xuu400, app(ty_Ratio, bba)) -> new_esEs23(xuu5000, xuu400, bba) 33.50/15.06 new_lt24(xuu500, xuu40, ty_Char) -> new_lt11(xuu500, xuu40) 33.50/15.06 new_compare25(Left(xuu5000), Right(xuu400), bbb, bbc) -> LT 33.50/15.06 new_esEs35(xuu661, xuu671, ty_Double) -> new_esEs16(xuu661, xuu671) 33.50/15.06 new_esEs27(xuu50001, xuu4001, app(ty_Maybe, eb)) -> new_esEs19(xuu50001, xuu4001, eb) 33.50/15.06 new_compare14(Just(xuu5000), Just(xuu400), bha) -> new_compare28(xuu5000, xuu400, new_esEs6(xuu5000, xuu400, bha), bha) 33.50/15.06 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 33.50/15.06 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 33.50/15.06 new_ltEs10(xuu66, xuu67) -> new_fsEs(new_compare24(xuu66, xuu67)) 33.50/15.06 new_ltEs23(xuu100, xuu101, ty_Bool) -> new_ltEs15(xuu100, xuu101) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, ty_Double) -> new_ltEs10(xuu660, xuu670) 33.50/15.06 new_lt12(xuu78, xuu81, ty_@0) -> new_lt18(xuu78, xuu81) 33.50/15.06 new_ltEs20(xuu112, xuu114, ty_Int) -> new_ltEs7(xuu112, xuu114) 33.50/15.06 new_ltEs22(xuu66, xuu67, app(ty_Maybe, fca)) -> new_ltEs13(xuu66, xuu67, fca) 33.50/15.06 new_lt12(xuu78, xuu81, ty_Ordering) -> new_lt9(xuu78, xuu81) 33.50/15.06 new_esEs39(xuu50001, xuu4001, app(app(ty_@2, fhb), fhc)) -> new_esEs17(xuu50001, xuu4001, fhb, fhc) 33.50/15.06 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 33.50/15.06 new_ltEs23(xuu100, xuu101, app(app(ty_Either, ffb), ffc)) -> new_ltEs11(xuu100, xuu101, ffb, ffc) 33.50/15.06 new_ltEs23(xuu100, xuu101, app(app(app(ty_@3, fef), feg), feh)) -> new_ltEs14(xuu100, xuu101, fef, feg, feh) 33.50/15.06 new_esEs8(xuu5001, xuu401, ty_Ordering) -> new_esEs21(xuu5001, xuu401) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, app(app(ty_Either, eag), eah)) -> new_esEs15(xuu50000, xuu4000, eag, eah) 33.50/15.06 new_ltEs11(Right(xuu660), Right(xuu670), bfd, app(ty_Ratio, bfe)) -> new_ltEs8(xuu660, xuu670, bfe) 33.50/15.06 new_ltEs23(xuu100, xuu101, ty_Ordering) -> new_ltEs9(xuu100, xuu101) 33.50/15.06 new_lt20(xuu661, xuu671, app(app(ty_@2, dcb), dcc)) -> new_lt14(xuu661, xuu671, dcb, dcc) 33.50/15.06 new_ltEs19(xuu662, xuu672, ty_Char) -> new_ltEs4(xuu662, xuu672) 33.50/15.06 new_esEs9(xuu5000, xuu400, ty_Integer) -> new_esEs20(xuu5000, xuu400) 33.50/15.06 new_ltEs21(xuu661, xuu671, ty_Integer) -> new_ltEs5(xuu661, xuu671) 33.50/15.06 new_compare6(Char(xuu5000), Char(xuu400)) -> new_primCmpNat0(xuu5000, xuu400) 33.50/15.06 new_esEs27(xuu50001, xuu4001, ty_@0) -> new_esEs25(xuu50001, xuu4001) 33.50/15.06 new_esEs26(xuu50002, xuu4002, app(app(app(ty_@3, dc), dd), de)) -> new_esEs24(xuu50002, xuu4002, dc, dd, de) 33.50/15.06 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 33.50/15.06 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 33.50/15.06 new_esEs37(xuu111, xuu113, app(app(ty_@2, eeh), efa)) -> new_esEs17(xuu111, xuu113, eeh, efa) 33.50/15.06 new_ltEs24(xuu93, xuu94, app(ty_Maybe, fga)) -> new_ltEs13(xuu93, xuu94, fga) 33.50/15.06 new_ltEs24(xuu93, xuu94, ty_Ordering) -> new_ltEs9(xuu93, xuu94) 33.50/15.06 new_esEs26(xuu50002, xuu4002, app(ty_Maybe, cg)) -> new_esEs19(xuu50002, xuu4002, cg) 33.50/15.06 new_compare110(xuu151, xuu152, False, hf, hg) -> GT 33.50/15.06 new_ltEs13(Just(xuu660), Just(xuu670), ty_@0) -> new_ltEs17(xuu660, xuu670) 33.50/15.06 new_esEs15(Right(xuu50000), Right(xuu4000), dfg, ty_Int) -> new_esEs13(xuu50000, xuu4000) 33.50/15.06 new_ltEs20(xuu112, xuu114, ty_Char) -> new_ltEs4(xuu112, xuu114) 33.50/15.06 new_primEqNat0(Zero, Zero) -> True 33.50/15.06 new_ltEs22(xuu66, xuu67, ty_Integer) -> new_ltEs5(xuu66, xuu67) 33.50/15.06 new_esEs38(xuu660, xuu670, app(app(ty_@2, fah), fba)) -> new_esEs17(xuu660, xuu670, fah, fba) 33.50/15.06 new_ltEs24(xuu93, xuu94, ty_Bool) -> new_ltEs15(xuu93, xuu94) 33.50/15.06 new_esEs28(xuu50000, xuu4000, ty_@0) -> new_esEs25(xuu50000, xuu4000) 33.50/15.06 new_ltEs23(xuu100, xuu101, app(ty_Maybe, fee)) -> new_ltEs13(xuu100, xuu101, fee) 33.50/15.06 new_esEs36(xuu660, xuu670, ty_Double) -> new_esEs16(xuu660, xuu670) 33.50/15.06 new_asAs(False, xuu129) -> False 33.50/15.06 new_ltEs22(xuu66, xuu67, app(app(ty_Either, bfd), beb)) -> new_ltEs11(xuu66, xuu67, bfd, beb) 33.50/15.06 new_esEs4(xuu5001, xuu401, ty_Int) -> new_esEs13(xuu5001, xuu401) 33.50/15.06 new_compare10(xuu168, xuu169, xuu170, xuu171, False, xuu173, bf, bg) -> new_compare11(xuu168, xuu169, xuu170, xuu171, xuu173, bf, bg) 33.50/15.06 new_compare12(:%(xuu5000, xuu5001), :%(xuu400, xuu401), ty_Integer) -> new_compare16(new_sr0(xuu5000, xuu401), new_sr0(xuu400, xuu5001)) 33.50/15.06 new_esEs8(xuu5001, xuu401, ty_Bool) -> new_esEs14(xuu5001, xuu401) 33.50/15.06 new_ltEs9(EQ, EQ) -> True 33.50/15.06 new_esEs9(xuu5000, xuu400, ty_Ordering) -> new_esEs21(xuu5000, xuu400) 33.50/15.06 new_esEs39(xuu50001, xuu4001, ty_Int) -> new_esEs13(xuu50001, xuu4001) 33.50/15.06 new_esEs7(xuu5002, xuu402, ty_Char) -> new_esEs12(xuu5002, xuu402) 33.50/15.06 new_ltEs18(xuu79, xuu82, ty_Int) -> new_ltEs7(xuu79, xuu82) 33.50/15.06 new_esEs6(xuu5000, xuu400, app(ty_Ratio, dha)) -> new_esEs23(xuu5000, xuu400, dha) 33.50/15.06 new_compare9(xuu5000, xuu400, ty_Double) -> new_compare24(xuu5000, xuu400) 33.50/15.06 new_ltEs24(xuu93, xuu94, app(app(app(ty_@3, fgb), fgc), fgd)) -> new_ltEs14(xuu93, xuu94, fgb, fgc, fgd) 33.50/15.06 33.50/15.06 The set Q consists of the following terms: 33.50/15.06 33.50/15.06 new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 33.50/15.06 new_lt22(x0, x1, ty_Double) 33.50/15.06 new_lt23(x0, x1, ty_Double) 33.50/15.06 new_esEs7(x0, x1, ty_Char) 33.50/15.06 new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 33.50/15.06 new_lt20(x0, x1, app(ty_[], x2)) 33.50/15.06 new_compare29(x0, x1, True, x2, x3) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) 33.50/15.06 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 33.50/15.06 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 33.50/15.06 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs27(x0, x1, ty_Bool) 33.50/15.06 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs5(x0, x1, ty_Double) 33.50/15.06 new_esEs27(x0, x1, ty_@0) 33.50/15.06 new_compare28(x0, x1, True, x2) 33.50/15.06 new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) 33.50/15.06 new_ltEs11(Left(x0), Left(x1), ty_Double, x2) 33.50/15.06 new_lt22(x0, x1, ty_Ordering) 33.50/15.06 new_compare114(x0, x1, False, x2, x3) 33.50/15.06 new_esEs35(x0, x1, ty_Integer) 33.50/15.06 new_esEs9(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_lt20(x0, x1, ty_Int) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, ty_@0) 33.50/15.06 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs33(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs8(x0, x1, ty_Ordering) 33.50/15.06 new_esEs32(x0, x1, ty_Integer) 33.50/15.06 new_esEs21(LT, LT) 33.50/15.06 new_esEs4(x0, x1, ty_Char) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 33.50/15.06 new_esEs22(:(x0, x1), [], x2) 33.50/15.06 new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 33.50/15.06 new_esEs4(x0, x1, ty_Double) 33.50/15.06 new_esEs28(x0, x1, ty_@0) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_primEqInt(Pos(Zero), Pos(Zero)) 33.50/15.06 new_lt21(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs37(x0, x1, app(ty_[], x2)) 33.50/15.06 new_gt(x0, x1, ty_Float) 33.50/15.06 new_esEs27(x0, x1, ty_Integer) 33.50/15.06 new_esEs39(x0, x1, ty_Integer) 33.50/15.06 new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 33.50/15.06 new_esEs38(x0, x1, ty_Char) 33.50/15.06 new_esEs5(x0, x1, ty_Ordering) 33.50/15.06 new_esEs40(x0, x1, ty_Float) 33.50/15.06 new_esEs35(x0, x1, ty_Bool) 33.50/15.06 new_compare16(Integer(x0), Integer(x1)) 33.50/15.06 new_lt23(x0, x1, ty_Ordering) 33.50/15.06 new_esEs8(x0, x1, ty_Char) 33.50/15.06 new_esEs14(True, True) 33.50/15.06 new_gt(x0, x1, ty_Integer) 33.50/15.06 new_compare9(x0, x1, ty_Int) 33.50/15.06 new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 33.50/15.06 new_ltEs18(x0, x1, ty_Int) 33.50/15.06 new_esEs26(x0, x1, ty_Bool) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) 33.50/15.06 new_ltEs9(EQ, EQ) 33.50/15.06 new_lt10(x0, x1) 33.50/15.06 new_primEqInt(Neg(Zero), Neg(Zero)) 33.50/15.06 new_esEs11(x0, x1, ty_Int) 33.50/15.06 new_esEs36(x0, x1, ty_@0) 33.50/15.06 new_esEs8(x0, x1, ty_Double) 33.50/15.06 new_esEs40(x0, x1, app(ty_[], x2)) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), ty_Float) 33.50/15.06 new_ltEs15(False, True) 33.50/15.06 new_ltEs15(True, False) 33.50/15.06 new_compare3([], :(x0, x1), x2) 33.50/15.06 new_esEs9(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs39(x0, x1, ty_Bool) 33.50/15.06 new_ltEs24(x0, x1, ty_Char) 33.50/15.06 new_lt23(x0, x1, ty_Char) 33.50/15.06 new_lt22(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 33.50/15.06 new_esEs36(x0, x1, ty_Integer) 33.50/15.06 new_esEs28(x0, x1, ty_Int) 33.50/15.06 new_lt20(x0, x1, ty_Bool) 33.50/15.06 new_esEs39(x0, x1, ty_Float) 33.50/15.06 new_esEs36(x0, x1, ty_Int) 33.50/15.06 new_esEs28(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), ty_Bool) 33.50/15.06 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_compare9(x0, x1, ty_Bool) 33.50/15.06 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 33.50/15.06 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs7(x0, x1, ty_Ordering) 33.50/15.06 new_ltEs8(x0, x1, x2) 33.50/15.06 new_esEs39(x0, x1, ty_@0) 33.50/15.06 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_ltEs19(x0, x1, ty_Ordering) 33.50/15.06 new_esEs37(x0, x1, ty_Char) 33.50/15.06 new_esEs19(Just(x0), Just(x1), app(ty_Maybe, x2)) 33.50/15.06 new_esEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 33.50/15.06 new_esEs35(x0, x1, ty_Float) 33.50/15.06 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_primEqInt(Pos(Zero), Neg(Zero)) 33.50/15.06 new_primEqInt(Neg(Zero), Pos(Zero)) 33.50/15.06 new_compare27(x0, x1, x2, x3, False, x4, x5) 33.50/15.06 new_compare110(x0, x1, True, x2, x3) 33.50/15.06 new_esEs9(x0, x1, ty_Char) 33.50/15.06 new_lt18(x0, x1) 33.50/15.06 new_esEs9(x0, x1, ty_Double) 33.50/15.06 new_lt24(x0, x1, ty_Ordering) 33.50/15.06 new_esEs30(x0, x1, ty_Int) 33.50/15.06 new_lt20(x0, x1, ty_Integer) 33.50/15.06 new_lt13(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs36(x0, x1, ty_Bool) 33.50/15.06 new_esEs4(x0, x1, ty_Ordering) 33.50/15.06 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 33.50/15.06 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 33.50/15.06 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_esEs35(x0, x1, ty_@0) 33.50/15.06 new_compare9(x0, x1, app(ty_[], x2)) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), ty_@0) 33.50/15.06 new_compare210(x0, x1, False, x2, x3) 33.50/15.06 new_esEs16(Double(x0, x1), Double(x2, x3)) 33.50/15.06 new_lt13(x0, x1, ty_Ordering) 33.50/15.06 new_esEs26(x0, x1, ty_Integer) 33.50/15.06 new_ltEs13(Nothing, Nothing, x0) 33.50/15.06 new_lt21(x0, x1, ty_Bool) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, ty_Float) 33.50/15.06 new_lt24(x0, x1, ty_Char) 33.50/15.06 new_compare25(Left(x0), Left(x1), x2, x3) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, ty_Char) 33.50/15.06 new_esEs34(x0, x1, ty_Integer) 33.50/15.06 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt20(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs19(Just(x0), Just(x1), ty_Integer) 33.50/15.06 new_ltEs9(LT, EQ) 33.50/15.06 new_ltEs9(EQ, LT) 33.50/15.06 new_compare17(EQ, EQ) 33.50/15.06 new_esEs5(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs26(x0, x1, ty_Int) 33.50/15.06 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs40(x0, x1, ty_@0) 33.50/15.06 new_compare3([], [], x0) 33.50/15.06 new_lt12(x0, x1, ty_Double) 33.50/15.06 new_esEs19(Nothing, Just(x0), x1) 33.50/15.06 new_esEs36(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs33(x0, x1, ty_Ordering) 33.50/15.06 new_esEs38(x0, x1, ty_Double) 33.50/15.06 new_esEs33(x0, x1, ty_Double) 33.50/15.06 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt21(x0, x1, ty_Integer) 33.50/15.06 new_primPlusNat0(Succ(x0), Succ(x1)) 33.50/15.06 new_ltEs10(x0, x1) 33.50/15.06 new_esEs34(x0, x1, ty_Bool) 33.50/15.06 new_esEs32(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs36(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_lt12(x0, x1, ty_Ordering) 33.50/15.06 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs34(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_ltEs11(Left(x0), Right(x1), x2, x3) 33.50/15.06 new_ltEs11(Right(x0), Left(x1), x2, x3) 33.50/15.06 new_esEs11(x0, x1, ty_@0) 33.50/15.06 new_esEs9(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs21(EQ, EQ) 33.50/15.06 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_sr0(Integer(x0), Integer(x1)) 33.50/15.06 new_ltEs20(x0, x1, ty_Int) 33.50/15.06 new_ltEs6(x0, x1) 33.50/15.06 new_ltEs18(x0, x1, ty_@0) 33.50/15.06 new_lt20(x0, x1, ty_@0) 33.50/15.06 new_lt22(x0, x1, app(ty_[], x2)) 33.50/15.06 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 33.50/15.06 new_ltEs22(x0, x1, app(ty_[], x2)) 33.50/15.06 new_gt0(x0, x1) 33.50/15.06 new_lt21(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs32(x0, x1, ty_@0) 33.50/15.06 new_compare17(LT, EQ) 33.50/15.06 new_compare17(EQ, LT) 33.50/15.06 new_esEs21(LT, EQ) 33.50/15.06 new_esEs21(EQ, LT) 33.50/15.06 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_esEs34(x0, x1, ty_Float) 33.50/15.06 new_primEqNat0(Succ(x0), Zero) 33.50/15.06 new_lt24(x0, x1, ty_Float) 33.50/15.06 new_esEs9(x0, x1, ty_Ordering) 33.50/15.06 new_compare25(Right(x0), Right(x1), x2, x3) 33.50/15.06 new_esEs19(Just(x0), Just(x1), ty_Bool) 33.50/15.06 new_ltEs9(LT, LT) 33.50/15.06 new_esEs28(x0, x1, ty_Bool) 33.50/15.06 new_compare9(x0, x1, ty_Float) 33.50/15.06 new_ltEs7(x0, x1) 33.50/15.06 new_esEs8(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs7(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, ty_Int) 33.50/15.06 new_lt13(x0, x1, ty_Char) 33.50/15.06 new_esEs19(Just(x0), Just(x1), ty_Float) 33.50/15.06 new_gt(x0, x1, ty_Int) 33.50/15.06 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_compare9(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_compare19(@0, @0) 33.50/15.06 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_lt23(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_ltEs24(x0, x1, ty_Ordering) 33.50/15.06 new_esEs27(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_gt(x0, x1, ty_Bool) 33.50/15.06 new_ltEs21(x0, x1, ty_Int) 33.50/15.06 new_esEs28(x0, x1, ty_Integer) 33.50/15.06 new_lt15(x0, x1, x2) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, ty_Ordering) 33.50/15.06 new_esEs15(Left(x0), Left(x1), ty_@0, x2) 33.50/15.06 new_compare25(Right(x0), Left(x1), x2, x3) 33.50/15.06 new_compare25(Left(x0), Right(x1), x2, x3) 33.50/15.06 new_lt21(x0, x1, ty_Int) 33.50/15.06 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_ltEs13(Nothing, Just(x0), x1) 33.50/15.06 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 33.50/15.06 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_lt24(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_esEs40(x0, x1, ty_Double) 33.50/15.06 new_ltEs19(x0, x1, ty_Double) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 33.50/15.06 new_esEs26(x0, x1, ty_Float) 33.50/15.06 new_compare3(:(x0, x1), :(x2, x3), x4) 33.50/15.06 new_ltEs21(x0, x1, ty_Bool) 33.50/15.06 new_ltEs20(x0, x1, ty_Bool) 33.50/15.06 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt22(x0, x1, ty_Float) 33.50/15.06 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 33.50/15.06 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs19(Just(x0), Just(x1), ty_Char) 33.50/15.06 new_esEs10(x0, x1, ty_Double) 33.50/15.06 new_compare111(x0, x1, False, x2) 33.50/15.06 new_esEs40(x0, x1, ty_Int) 33.50/15.06 new_ltEs18(x0, x1, ty_Float) 33.50/15.06 new_esEs8(x0, x1, app(ty_[], x2)) 33.50/15.06 new_compare11(x0, x1, x2, x3, True, x4, x5) 33.50/15.06 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_compare24(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 33.50/15.06 new_compare24(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 33.50/15.06 new_ltEs23(x0, x1, ty_Int) 33.50/15.06 new_lt24(x0, x1, ty_Integer) 33.50/15.06 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_gt(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_lt9(x0, x1) 33.50/15.06 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 33.50/15.06 new_esEs19(Just(x0), Just(x1), app(ty_[], x2)) 33.50/15.06 new_esEs34(x0, x1, ty_Char) 33.50/15.06 new_ltEs22(x0, x1, ty_Ordering) 33.50/15.06 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 33.50/15.06 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 33.50/15.06 new_esEs22([], [], x0) 33.50/15.06 new_esEs17(@2(x0, x1), @2(x2, x3), x4, x5) 33.50/15.06 new_esEs20(Integer(x0), Integer(x1)) 33.50/15.06 new_esEs33(x0, x1, ty_Char) 33.50/15.06 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 33.50/15.06 new_fsEs(x0) 33.50/15.06 new_lt5(x0, x1) 33.50/15.06 new_ltEs19(x0, x1, ty_Float) 33.50/15.06 new_ltEs22(x0, x1, ty_Double) 33.50/15.06 new_ltEs23(x0, x1, ty_Char) 33.50/15.06 new_primEqNat0(Succ(x0), Succ(x1)) 33.50/15.06 new_esEs6(x0, x1, app(ty_[], x2)) 33.50/15.06 new_esEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 33.50/15.06 new_primPlusNat0(Zero, Zero) 33.50/15.06 new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 33.50/15.06 new_not(True) 33.50/15.06 new_lt13(x0, x1, app(ty_Maybe, x2)) 33.50/15.06 new_lt7(x0, x1, x2, x3) 33.50/15.06 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.06 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.06 new_primCompAux00(x0, GT) 33.50/15.06 new_esEs15(Right(x0), Right(x1), x2, ty_Double) 33.50/15.06 new_ltEs18(x0, x1, ty_Integer) 33.50/15.06 new_esEs9(x0, x1, ty_Bool) 33.50/15.06 new_esEs26(x0, x1, ty_Ordering) 33.50/15.06 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.06 new_esEs26(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs9(x0, x1, ty_Float) 33.50/15.07 new_ltEs23(x0, x1, ty_@0) 33.50/15.07 new_esEs28(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_esEs33(x0, x1, ty_Integer) 33.50/15.07 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs33(x0, x1, ty_Bool) 33.50/15.07 new_ltEs13(Just(x0), Just(x1), ty_Int) 33.50/15.07 new_esEs15(Left(x0), Left(x1), ty_Integer, x2) 33.50/15.07 new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 33.50/15.07 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 33.50/15.07 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs35(x0, x1, ty_Double) 33.50/15.07 new_esEs34(x0, x1, app(ty_[], x2)) 33.50/15.07 new_ltEs18(x0, x1, ty_Bool) 33.50/15.07 new_primCmpNat0(Succ(x0), Zero) 33.50/15.07 new_esEs6(x0, x1, ty_Char) 33.50/15.07 new_ltEs21(x0, x1, ty_Integer) 33.50/15.07 new_compare24(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 33.50/15.07 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, ty_Int) 33.50/15.07 new_esEs15(Left(x0), Right(x1), x2, x3) 33.50/15.07 new_esEs15(Right(x0), Left(x1), x2, x3) 33.50/15.07 new_esEs6(x0, x1, ty_Int) 33.50/15.07 new_lt23(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs38(x0, x1, ty_Float) 33.50/15.07 new_esEs29(EQ) 33.50/15.07 new_ltEs20(x0, x1, ty_Double) 33.50/15.07 new_ltEs23(x0, x1, ty_Integer) 33.50/15.07 new_primMulInt(Neg(x0), Neg(x1)) 33.50/15.07 new_esEs27(x0, x1, ty_Float) 33.50/15.07 new_lt22(x0, x1, ty_Bool) 33.50/15.07 new_ltEs19(x0, x1, ty_Integer) 33.50/15.07 new_compare29(x0, x1, False, x2, x3) 33.50/15.07 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs19(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs32(x0, x1, ty_Char) 33.50/15.07 new_esEs40(x0, x1, ty_Bool) 33.50/15.07 new_compare11(x0, x1, x2, x3, False, x4, x5) 33.50/15.07 new_compare114(x0, x1, True, x2, x3) 33.50/15.07 new_compare28(x0, x1, False, x2) 33.50/15.07 new_lt21(x0, x1, ty_@0) 33.50/15.07 new_esEs21(EQ, GT) 33.50/15.07 new_esEs21(GT, EQ) 33.50/15.07 new_compare9(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_ltEs13(Just(x0), Just(x1), ty_Char) 33.50/15.07 new_esEs37(x0, x1, ty_Double) 33.50/15.07 new_esEs33(x0, x1, ty_Float) 33.50/15.07 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs37(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_esEs12(Char(x0), Char(x1)) 33.50/15.07 new_lt13(x0, x1, ty_Double) 33.50/15.07 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 33.50/15.07 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs34(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_compare17(EQ, GT) 33.50/15.07 new_compare17(GT, EQ) 33.50/15.07 new_lt20(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_esEs6(x0, x1, ty_Bool) 33.50/15.07 new_gt(x0, x1, ty_@0) 33.50/15.07 new_compare14(Nothing, Just(x0), x1) 33.50/15.07 new_esEs40(x0, x1, ty_Integer) 33.50/15.07 new_esEs19(Just(x0), Just(x1), app(ty_Ratio, x2)) 33.50/15.07 new_ltEs23(x0, x1, ty_Bool) 33.50/15.07 new_esEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 33.50/15.07 new_lt22(x0, x1, ty_Integer) 33.50/15.07 new_lt12(x0, x1, app(ty_[], x2)) 33.50/15.07 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 33.50/15.07 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 33.50/15.07 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs8(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_esEs7(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs36(x0, x1, ty_Float) 33.50/15.07 new_esEs10(x0, x1, ty_Bool) 33.50/15.07 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 33.50/15.07 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs15(Left(x0), Left(x1), ty_Bool, x2) 33.50/15.07 new_esEs37(x0, x1, ty_Ordering) 33.50/15.07 new_primCompAux00(x0, EQ) 33.50/15.07 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 33.50/15.07 new_esEs33(x0, x1, ty_Int) 33.50/15.07 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs32(x0, x1, ty_Float) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 33.50/15.07 new_ltEs9(GT, EQ) 33.50/15.07 new_ltEs9(EQ, GT) 33.50/15.07 new_primEqNat0(Zero, Zero) 33.50/15.07 new_lt24(x0, x1, ty_@0) 33.50/15.07 new_primMulNat0(Succ(x0), Succ(x1)) 33.50/15.07 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs7(x0, x1, ty_@0) 33.50/15.07 new_esEs32(x0, x1, ty_Bool) 33.50/15.07 new_not(False) 33.50/15.07 new_esEs10(x0, x1, ty_Char) 33.50/15.07 new_lt20(x0, x1, ty_Float) 33.50/15.07 new_esEs19(Just(x0), Just(x1), ty_@0) 33.50/15.07 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs30(x0, x1, ty_Integer) 33.50/15.07 new_esEs26(x0, x1, ty_Double) 33.50/15.07 new_esEs40(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_esEs15(Left(x0), Left(x1), ty_Char, x2) 33.50/15.07 new_lt19(x0, x1) 33.50/15.07 new_ltEs19(x0, x1, ty_Bool) 33.50/15.07 new_esEs10(x0, x1, ty_Int) 33.50/15.07 new_esEs22([], :(x0, x1), x2) 33.50/15.07 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_lt17(x0, x1, x2) 33.50/15.07 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs6(x0, x1, ty_Integer) 33.50/15.07 new_primMulNat0(Zero, Succ(x0)) 33.50/15.07 new_esEs27(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 33.50/15.07 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 33.50/15.07 new_esEs27(x0, x1, ty_Int) 33.50/15.07 new_esEs35(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs15(Left(x0), Left(x1), ty_Int, x2) 33.50/15.07 new_ltEs13(Just(x0), Just(x1), ty_Integer) 33.50/15.07 new_ltEs4(x0, x1) 33.50/15.07 new_esEs41(LT) 33.50/15.07 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_lt22(x0, x1, ty_Int) 33.50/15.07 new_esEs27(x0, x1, ty_Char) 33.50/15.07 new_esEs10(x0, x1, ty_Float) 33.50/15.07 new_esEs6(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs4(x0, x1, ty_@0) 33.50/15.07 new_ltEs21(x0, x1, ty_@0) 33.50/15.07 new_esEs15(Left(x0), Left(x1), ty_Float, x2) 33.50/15.07 new_ltEs19(x0, x1, ty_Char) 33.50/15.07 new_esEs35(x0, x1, ty_Ordering) 33.50/15.07 new_esEs40(x0, x1, ty_Char) 33.50/15.07 new_esEs34(x0, x1, ty_@0) 33.50/15.07 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_ltEs21(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs32(x0, x1, ty_Int) 33.50/15.07 new_lt22(x0, x1, ty_Char) 33.50/15.07 new_esEs38(x0, x1, ty_Integer) 33.50/15.07 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_compare17(LT, GT) 33.50/15.07 new_compare17(GT, LT) 33.50/15.07 new_lt21(x0, x1, ty_Ordering) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 33.50/15.07 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_asAs(True, x0) 33.50/15.07 new_compare9(x0, x1, ty_Char) 33.50/15.07 new_lt20(x0, x1, ty_Char) 33.50/15.07 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs28(x0, x1, app(ty_[], x2)) 33.50/15.07 new_primCompAux00(x0, LT) 33.50/15.07 new_ltEs22(x0, x1, ty_Float) 33.50/15.07 new_esEs15(Left(x0), Left(x1), ty_Double, x2) 33.50/15.07 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs4(x0, x1, ty_Int) 33.50/15.07 new_ltEs24(x0, x1, ty_@0) 33.50/15.07 new_esEs15(Left(x0), Left(x1), ty_Ordering, x2) 33.50/15.07 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_ltEs19(x0, x1, ty_Int) 33.50/15.07 new_esEs38(x0, x1, ty_@0) 33.50/15.07 new_lt12(x0, x1, ty_Integer) 33.50/15.07 new_esEs11(x0, x1, ty_Double) 33.50/15.07 new_ltEs24(x0, x1, ty_Bool) 33.50/15.07 new_esEs26(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs7(x0, x1, ty_Int) 33.50/15.07 new_esEs6(x0, x1, ty_Float) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, ty_Integer) 33.50/15.07 new_ltEs18(x0, x1, ty_Double) 33.50/15.07 new_primPlusNat0(Succ(x0), Zero) 33.50/15.07 new_esEs11(x0, x1, ty_Ordering) 33.50/15.07 new_esEs38(x0, x1, ty_Bool) 33.50/15.07 new_compare210(x0, x1, True, x2, x3) 33.50/15.07 new_esEs8(x0, x1, ty_Int) 33.50/15.07 new_lt16(x0, x1) 33.50/15.07 new_ltEs18(x0, x1, app(ty_[], x2)) 33.50/15.07 new_lt12(x0, x1, ty_@0) 33.50/15.07 new_compare14(Just(x0), Nothing, x1) 33.50/15.07 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 33.50/15.07 new_lt13(x0, x1, ty_Bool) 33.50/15.07 new_ltEs17(x0, x1) 33.50/15.07 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_ltEs23(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs37(x0, x1, ty_@0) 33.50/15.07 new_primEqNat0(Zero, Succ(x0)) 33.50/15.07 new_lt23(x0, x1, ty_Int) 33.50/15.07 new_compare9(x0, x1, ty_Ordering) 33.50/15.07 new_ltEs18(x0, x1, ty_Ordering) 33.50/15.07 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 33.50/15.07 new_lt8(x0, x1) 33.50/15.07 new_esEs28(x0, x1, ty_Char) 33.50/15.07 new_lt4(x0, x1, x2, x3, x4) 33.50/15.07 new_primCmpNat0(Succ(x0), Succ(x1)) 33.50/15.07 new_lt13(x0, x1, ty_Integer) 33.50/15.07 new_esEs38(x0, x1, ty_Int) 33.50/15.07 new_esEs29(GT) 33.50/15.07 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_pePe(True, x0) 33.50/15.07 new_gt(x0, x1, app(ty_[], x2)) 33.50/15.07 new_ltEs15(True, True) 33.50/15.07 new_esEs37(x0, x1, ty_Integer) 33.50/15.07 new_esEs37(x0, x1, ty_Int) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, ty_@0) 33.50/15.07 new_esEs14(False, True) 33.50/15.07 new_esEs14(True, False) 33.50/15.07 new_lt20(x0, x1, ty_Ordering) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, ty_Float) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 33.50/15.07 new_ltEs5(x0, x1) 33.50/15.07 new_compare9(x0, x1, ty_Double) 33.50/15.07 new_esEs36(x0, x1, ty_Char) 33.50/15.07 new_ltEs18(x0, x1, ty_Char) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, ty_Bool) 33.50/15.07 new_esEs4(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_sr(x0, x1) 33.50/15.07 new_ltEs19(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs11(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_lt12(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_ltEs22(x0, x1, ty_Integer) 33.50/15.07 new_esEs37(x0, x1, ty_Bool) 33.50/15.07 new_lt23(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 33.50/15.07 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 33.50/15.07 new_lt12(x0, x1, ty_Bool) 33.50/15.07 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 33.50/15.07 new_esEs6(x0, x1, ty_@0) 33.50/15.07 new_esEs9(x0, x1, ty_Int) 33.50/15.07 new_ltEs24(x0, x1, ty_Int) 33.50/15.07 new_ltEs23(x0, x1, ty_Float) 33.50/15.07 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs11(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 33.50/15.07 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs10(x0, x1, ty_Integer) 33.50/15.07 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs26(x0, x1, ty_Char) 33.50/15.07 new_ltEs20(x0, x1, ty_Float) 33.50/15.07 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs18(Float(x0, x1), Float(x2, x3)) 33.50/15.07 new_esEs41(GT) 33.50/15.07 new_esEs5(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_ltEs22(x0, x1, ty_Bool) 33.50/15.07 new_esEs5(x0, x1, ty_@0) 33.50/15.07 new_esEs7(x0, x1, app(ty_[], x2)) 33.50/15.07 new_lt23(x0, x1, ty_@0) 33.50/15.07 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_ltEs20(x0, x1, ty_Ordering) 33.50/15.07 new_ltEs9(GT, GT) 33.50/15.07 new_esEs4(x0, x1, ty_Integer) 33.50/15.07 new_lt24(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_ltEs21(x0, x1, ty_Float) 33.50/15.07 new_esEs10(x0, x1, ty_@0) 33.50/15.07 new_esEs8(x0, x1, ty_@0) 33.50/15.07 new_compare8(x0, x1) 33.50/15.07 new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) 33.50/15.07 new_esEs36(x0, x1, ty_Double) 33.50/15.07 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_compare111(x0, x1, True, x2) 33.50/15.07 new_primMulInt(Pos(x0), Neg(x1)) 33.50/15.07 new_primMulInt(Neg(x0), Pos(x1)) 33.50/15.07 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_lt22(x0, x1, ty_@0) 33.50/15.07 new_esEs38(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs13(x0, x1) 33.50/15.07 new_esEs4(x0, x1, ty_Bool) 33.50/15.07 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs37(x0, x1, ty_Float) 33.50/15.07 new_compare27(x0, x1, x2, x3, True, x4, x5) 33.50/15.07 new_compare110(x0, x1, False, x2, x3) 33.50/15.07 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs7(x0, x1, ty_Integer) 33.50/15.07 new_esEs27(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs36(x0, x1, ty_Ordering) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), ty_@0, x2) 33.50/15.07 new_ltEs13(Just(x0), Nothing, x1) 33.50/15.07 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs21(GT, GT) 33.50/15.07 new_primCmpInt(Neg(Zero), Neg(Zero)) 33.50/15.07 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_ltEs11(Right(x0), Right(x1), x2, ty_Char) 33.50/15.07 new_lt20(x0, x1, ty_Double) 33.50/15.07 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_lt13(x0, x1, ty_Int) 33.50/15.07 new_primCmpInt(Pos(Zero), Neg(Zero)) 33.50/15.07 new_primCmpInt(Neg(Zero), Pos(Zero)) 33.50/15.07 new_esEs7(x0, x1, ty_Bool) 33.50/15.07 new_esEs32(x0, x1, ty_Double) 33.50/15.07 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_ltEs20(x0, x1, ty_Char) 33.50/15.07 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 33.50/15.07 new_esEs28(x0, x1, ty_Ordering) 33.50/15.07 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 33.50/15.07 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs9(x0, x1, ty_Integer) 33.50/15.07 new_esEs39(x0, x1, ty_Ordering) 33.50/15.07 new_ltEs19(x0, x1, ty_@0) 33.50/15.07 new_ltEs20(x0, x1, ty_Integer) 33.50/15.07 new_ltEs15(False, False) 33.50/15.07 new_ltEs21(x0, x1, ty_Char) 33.50/15.07 new_lt24(x0, x1, ty_Bool) 33.50/15.07 new_ltEs24(x0, x1, ty_Integer) 33.50/15.07 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs4(x0, x1, ty_Float) 33.50/15.07 new_primCmpNat0(Zero, Succ(x0)) 33.50/15.07 new_esEs40(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_compare18(True, True) 33.50/15.07 new_gt(x0, x1, ty_Char) 33.50/15.07 new_esEs6(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_lt13(x0, x1, ty_Float) 33.50/15.07 new_compare17(LT, LT) 33.50/15.07 new_lt21(x0, x1, ty_Char) 33.50/15.07 new_esEs34(x0, x1, ty_Int) 33.50/15.07 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_primMulInt(Pos(x0), Pos(x1)) 33.50/15.07 new_esEs19(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs27(x0, x1, ty_Double) 33.50/15.07 new_lt24(x0, x1, ty_Int) 33.50/15.07 new_esEs10(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs19(Just(x0), Just(x1), ty_Int) 33.50/15.07 new_ltEs16(x0, x1, x2) 33.50/15.07 new_esEs39(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_lt11(x0, x1) 33.50/15.07 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 33.50/15.07 new_esEs35(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_lt21(x0, x1, ty_Float) 33.50/15.07 new_ltEs20(x0, x1, ty_@0) 33.50/15.07 new_esEs8(x0, x1, ty_Float) 33.50/15.07 new_esEs35(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_primMulNat0(Zero, Zero) 33.50/15.07 new_lt21(x0, x1, app(ty_[], x2)) 33.50/15.07 new_compare6(Char(x0), Char(x1)) 33.50/15.07 new_esEs38(x0, x1, app(ty_[], x2)) 33.50/15.07 new_ltEs22(x0, x1, ty_Int) 33.50/15.07 new_compare24(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 33.50/15.07 new_compare9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs11(x0, x1, ty_Float) 33.50/15.07 new_gt(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_compare15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 33.50/15.07 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_lt23(x0, x1, ty_Float) 33.50/15.07 new_lt24(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs40(x0, x1, ty_Ordering) 33.50/15.07 new_esEs11(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs31(x0, x1, ty_Integer) 33.50/15.07 new_compare18(True, False) 33.50/15.07 new_compare18(False, True) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), ty_Float, x2) 33.50/15.07 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs4(x0, x1, app(ty_[], x2)) 33.50/15.07 new_compare17(GT, GT) 33.50/15.07 new_esEs29(LT) 33.50/15.07 new_ltEs23(x0, x1, ty_Double) 33.50/15.07 new_esEs33(x0, x1, ty_@0) 33.50/15.07 new_esEs5(x0, x1, ty_Float) 33.50/15.07 new_ltEs22(x0, x1, ty_Char) 33.50/15.07 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs7(x0, x1, ty_Float) 33.50/15.07 new_lt13(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_lt14(x0, x1, x2, x3) 33.50/15.07 new_lt22(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_compare9(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_pePe(False, x0) 33.50/15.07 new_ltEs13(Just(x0), Just(x1), ty_Double) 33.50/15.07 new_esEs25(@0, @0) 33.50/15.07 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs32(x0, x1, ty_Ordering) 33.50/15.07 new_lt6(x0, x1, x2) 33.50/15.07 new_esEs37(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 33.50/15.07 new_lt12(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 33.50/15.07 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_gt(x0, x1, ty_Ordering) 33.50/15.07 new_compare3(:(x0, x1), [], x2) 33.50/15.07 new_esEs5(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_lt23(x0, x1, ty_Integer) 33.50/15.07 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 33.50/15.07 new_esEs9(x0, x1, ty_@0) 33.50/15.07 new_esEs39(x0, x1, ty_Int) 33.50/15.07 new_esEs6(x0, x1, ty_Double) 33.50/15.07 new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) 33.50/15.07 new_esEs28(x0, x1, ty_Float) 33.50/15.07 new_esEs10(x0, x1, ty_Ordering) 33.50/15.07 new_esEs33(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs19(Just(x0), Just(x1), ty_Ordering) 33.50/15.07 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs19(Just(x0), Nothing, x1) 33.50/15.07 new_ltEs20(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs34(x0, x1, ty_Ordering) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 33.50/15.07 new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 33.50/15.07 new_ltEs21(x0, x1, ty_Ordering) 33.50/15.07 new_esEs4(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_primCmpInt(Pos(Zero), Pos(Zero)) 33.50/15.07 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs39(x0, x1, ty_Double) 33.50/15.07 new_esEs39(x0, x1, ty_Char) 33.50/15.07 new_ltEs11(Right(x0), Right(x1), x2, ty_Double) 33.50/15.07 new_esEs35(x0, x1, ty_Int) 33.50/15.07 new_ltEs21(x0, x1, ty_Double) 33.50/15.07 new_esEs27(x0, x1, ty_Ordering) 33.50/15.07 new_asAs(False, x0) 33.50/15.07 new_esEs8(x0, x1, ty_Bool) 33.50/15.07 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_ltEs24(x0, x1, ty_Double) 33.50/15.07 new_compare9(x0, x1, ty_Integer) 33.50/15.07 new_esEs35(x0, x1, ty_Char) 33.50/15.07 new_lt23(x0, x1, ty_Bool) 33.50/15.07 new_esEs39(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 33.50/15.07 new_esEs32(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_ltEs22(x0, x1, ty_@0) 33.50/15.07 new_ltEs24(x0, x1, ty_Float) 33.50/15.07 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_compare18(False, False) 33.50/15.07 new_esEs31(x0, x1, ty_Int) 33.50/15.07 new_lt12(x0, x1, ty_Float) 33.50/15.07 new_esEs36(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_primPlusNat0(Zero, Succ(x0)) 33.50/15.07 new_esEs10(x0, x1, app(ty_[], x2)) 33.50/15.07 new_compare14(Just(x0), Just(x1), x2) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) 33.50/15.07 new_lt12(x0, x1, ty_Char) 33.50/15.07 new_esEs33(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 33.50/15.07 new_esEs38(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 33.50/15.07 new_esEs26(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 33.50/15.07 new_esEs22(:(x0, x1), :(x2, x3), x4) 33.50/15.07 new_esEs28(x0, x1, ty_Double) 33.50/15.07 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 33.50/15.07 new_esEs41(EQ) 33.50/15.07 new_lt12(x0, x1, ty_Int) 33.50/15.07 new_esEs19(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs11(x0, x1, ty_Integer) 33.50/15.07 new_esEs19(Just(x0), Just(x1), ty_Double) 33.50/15.07 new_esEs5(x0, x1, ty_Integer) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) 33.50/15.07 new_esEs7(x0, x1, ty_Double) 33.50/15.07 new_compare9(x0, x1, ty_@0) 33.50/15.07 new_primCompAux0(x0, x1, x2, x3) 33.50/15.07 new_esEs10(x0, x1, app(ty_Ratio, x2)) 33.50/15.07 new_compare9(x0, x1, app(ty_Maybe, x2)) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), ty_Int, x2) 33.50/15.07 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 33.50/15.07 new_lt24(x0, x1, ty_Double) 33.50/15.07 new_esEs26(x0, x1, ty_@0) 33.50/15.07 new_esEs39(x0, x1, app(ty_[], x2)) 33.50/15.07 new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 33.50/15.07 new_esEs11(x0, x1, ty_Char) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), ty_Char, x2) 33.50/15.07 new_esEs5(x0, x1, ty_Char) 33.50/15.07 new_esEs5(x0, x1, ty_Int) 33.50/15.07 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs14(False, False) 33.50/15.07 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs34(x0, x1, ty_Double) 33.50/15.07 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_ltEs23(x0, x1, ty_Ordering) 33.50/15.07 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 33.50/15.07 new_esEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 33.50/15.07 new_gt(x0, x1, ty_Double) 33.50/15.07 new_compare14(Nothing, Nothing, x0) 33.50/15.07 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_esEs6(x0, x1, ty_Ordering) 33.50/15.07 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 33.50/15.07 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 33.50/15.07 new_esEs19(Nothing, Nothing, x0) 33.50/15.07 new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) 33.50/15.07 new_esEs38(x0, x1, ty_Ordering) 33.50/15.07 new_esEs32(x0, x1, app(ty_[], x2)) 33.50/15.07 new_esEs11(x0, x1, ty_Bool) 33.50/15.07 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 33.50/15.07 new_esEs8(x0, x1, ty_Integer) 33.50/15.07 new_esEs21(LT, GT) 33.50/15.07 new_esEs21(GT, LT) 33.50/15.07 new_ltEs24(x0, x1, app(ty_[], x2)) 33.50/15.07 new_primMulNat0(Succ(x0), Zero) 33.50/15.07 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 33.50/15.07 new_esEs5(x0, x1, ty_Bool) 33.50/15.07 new_primCmpNat0(Zero, Zero) 33.50/15.07 new_lt21(x0, x1, ty_Double) 33.50/15.07 new_ltEs9(GT, LT) 33.50/15.07 new_ltEs9(LT, GT) 33.50/15.07 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 33.50/15.07 new_lt13(x0, x1, ty_@0) 33.50/15.07 33.50/15.07 We have to consider all minimal (P,Q,R)-chains. 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (30) QDPSizeChangeProof (EQUIVALENT) 33.50/15.07 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. 33.50/15.07 33.50/15.07 From the DPs we obtained the following set of size-change graphs: 33.50/15.07 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba) -> new_addToFM_C(xuu16, xuu20, xuu22, xuu23, h, ba) 33.50/15.07 The graph contains the following edges 1 >= 1, 5 >= 2, 7 >= 3, 8 >= 4, 10 >= 5, 11 >= 6 33.50/15.07 33.50/15.07 33.50/15.07 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, h), h, ba) 33.50/15.07 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11 33.50/15.07 33.50/15.07 33.50/15.07 *new_addToFM_C1(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bb, bc) -> new_addToFM_C(xuu35, xuu40, xuu41, xuu42, bb, bc) 33.50/15.07 The graph contains the following edges 1 >= 1, 6 >= 2, 7 >= 3, 8 >= 4, 10 >= 5, 11 >= 6 33.50/15.07 33.50/15.07 33.50/15.07 *new_addToFM_C(xuu3, Branch(xuu40, xuu41, xuu42, xuu43, xuu44), xuu500, xuu501, bd, be) -> new_addToFM_C2(xuu3, xuu40, xuu41, xuu42, xuu43, xuu44, xuu500, xuu501, new_lt24(xuu500, xuu40, bd), bd, be) 33.50/15.07 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 7, 4 >= 8, 5 >= 10, 6 >= 11 33.50/15.07 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (31) 33.50/15.07 YES 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (32) 33.50/15.07 Obligation: 33.50/15.07 Q DP problem: 33.50/15.07 The TRS P consists of the following rules: 33.50/15.07 33.50/15.07 new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) 33.50/15.07 33.50/15.07 R is empty. 33.50/15.07 Q is empty. 33.50/15.07 We have to consider all minimal (P,Q,R)-chains. 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (33) QDPSizeChangeProof (EQUIVALENT) 33.50/15.07 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. 33.50/15.07 33.50/15.07 From the DPs we obtained the following set of size-change graphs: 33.50/15.07 *new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) 33.50/15.07 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 33.50/15.07 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (34) 33.50/15.07 YES 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (35) 33.50/15.07 Obligation: 33.50/15.07 Q DP problem: 33.50/15.07 The TRS P consists of the following rules: 33.50/15.07 33.50/15.07 new_primEqNat(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat(xuu500000, xuu40000) 33.50/15.07 33.50/15.07 R is empty. 33.50/15.07 Q is empty. 33.50/15.07 We have to consider all minimal (P,Q,R)-chains. 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (36) QDPSizeChangeProof (EQUIVALENT) 33.50/15.07 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. 33.50/15.07 33.50/15.07 From the DPs we obtained the following set of size-change graphs: 33.50/15.07 *new_primEqNat(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat(xuu500000, xuu40000) 33.50/15.07 The graph contains the following edges 1 > 1, 2 > 2 33.50/15.07 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (37) 33.50/15.07 YES 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (38) 33.50/15.07 Obligation: 33.50/15.07 Q DP problem: 33.50/15.07 The TRS P consists of the following rules: 33.50/15.07 33.50/15.07 new_primMinusNat(Succ(xuu44200), Succ(xuu13100)) -> new_primMinusNat(xuu44200, xuu13100) 33.50/15.07 33.50/15.07 R is empty. 33.50/15.07 Q is empty. 33.50/15.07 We have to consider all minimal (P,Q,R)-chains. 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (39) QDPSizeChangeProof (EQUIVALENT) 33.50/15.07 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. 33.50/15.07 33.50/15.07 From the DPs we obtained the following set of size-change graphs: 33.50/15.07 *new_primMinusNat(Succ(xuu44200), Succ(xuu13100)) -> new_primMinusNat(xuu44200, xuu13100) 33.50/15.07 The graph contains the following edges 1 > 1, 2 > 2 33.50/15.07 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (40) 33.50/15.07 YES 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (41) 33.50/15.07 Obligation: 33.50/15.07 Q DP problem: 33.50/15.07 The TRS P consists of the following rules: 33.50/15.07 33.50/15.07 new_primPlusNat(Succ(xuu44200), Succ(xuu13100)) -> new_primPlusNat(xuu44200, xuu13100) 33.50/15.07 33.50/15.07 R is empty. 33.50/15.07 Q is empty. 33.50/15.07 We have to consider all minimal (P,Q,R)-chains. 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (42) QDPSizeChangeProof (EQUIVALENT) 33.50/15.07 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. 33.50/15.07 33.50/15.07 From the DPs we obtained the following set of size-change graphs: 33.50/15.07 *new_primPlusNat(Succ(xuu44200), Succ(xuu13100)) -> new_primPlusNat(xuu44200, xuu13100) 33.50/15.07 The graph contains the following edges 1 > 1, 2 > 2 33.50/15.07 33.50/15.07 33.50/15.07 ---------------------------------------- 33.50/15.07 33.50/15.07 (43) 33.50/15.07 YES 33.68/15.14 EOF