/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 4 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 12 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 130 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; lookupWithDefaultFM fm deflt key = case lookupFM fm key of { Nothing-> deflt; Just elt-> elt; } ; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; lookupWithDefaultFM fm deflt key = case lookupFM fm key of { Nothing-> deflt; Just elt-> elt; } ; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case lookupFM fm key of { Nothing -> deflt; Just elt -> elt} " is transformed to "lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; " "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vvy vvz = gcd3 vvy vvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } ; " "gcd1 True vvy vvz = error []; gcd1 vwu vwv vww = gcd0 vwv vww; " "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; gcd2 vwx vwy vwz = gcd0 vwy vwz; " "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; gcd3 vxu vxv = gcd0 vxu vxv; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find|key_to_find < keylookupFM fm_l key_to_find|key_to_find > keylookupFM fm_r key_to_find|otherwiseJust elt; " is transformed to "lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; " "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; " "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); " "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; " "lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); " "lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vyu vyv x y True = error []; reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; " "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " "reduce2D vyu vyv = gcd vyu vyv; " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); lookupWithDefaultFM0 deflt Nothing = deflt; lookupWithDefaultFM0 deflt (Just elt) = elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupWithDefaultFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.lookupWithDefaultFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 5[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4 vyw5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw3 vyw5)",fontsize=16,color="burlywood",shape="triangle"];2985[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 7[label="",style="solid", color="burlywood", weight=3]; 2986[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];6 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 11[label="FiniteMap.lookupWithDefaultFM0 vyw4 Nothing",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 12 -> 14[label="",style="dashed", color="red", weight=0]; 12[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (vyw5 < vyw30))",fontsize=16,color="magenta"];12 -> 15[label="",style="dashed", color="magenta", weight=3]; 12 -> 16[label="",style="dashed", color="magenta", weight=3]; 12 -> 17[label="",style="dashed", color="magenta", weight=3]; 12 -> 18[label="",style="dashed", color="magenta", weight=3]; 12 -> 19[label="",style="dashed", color="magenta", weight=3]; 12 -> 20[label="",style="dashed", color="magenta", weight=3]; 12 -> 21[label="",style="dashed", color="magenta", weight=3]; 12 -> 22[label="",style="dashed", color="magenta", weight=3]; 13[label="vyw4",fontsize=16,color="green",shape="box"];15[label="vyw34",fontsize=16,color="green",shape="box"];16[label="vyw31",fontsize=16,color="green",shape="box"];17[label="vyw5",fontsize=16,color="green",shape="box"];18[label="vyw33",fontsize=16,color="green",shape="box"];19[label="vyw4",fontsize=16,color="green",shape="box"];20[label="vyw5 < vyw30",fontsize=16,color="blue",shape="box"];2987[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2987[label="",style="solid", color="blue", weight=9]; 2987 -> 23[label="",style="solid", color="blue", weight=3]; 2988[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2988[label="",style="solid", color="blue", weight=9]; 2988 -> 24[label="",style="solid", color="blue", weight=3]; 2989[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 25[label="",style="solid", color="blue", weight=3]; 2990[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 26[label="",style="solid", color="blue", weight=3]; 2991[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 27[label="",style="solid", color="blue", weight=3]; 2992[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 28[label="",style="solid", color="blue", weight=3]; 2993[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2993[label="",style="solid", color="blue", weight=9]; 2993 -> 29[label="",style="solid", color="blue", weight=3]; 2994[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2994[label="",style="solid", color="blue", weight=9]; 2994 -> 30[label="",style="solid", color="blue", weight=3]; 2995[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2995[label="",style="solid", color="blue", weight=9]; 2995 -> 31[label="",style="solid", color="blue", weight=3]; 2996[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2996[label="",style="solid", color="blue", weight=9]; 2996 -> 32[label="",style="solid", color="blue", weight=3]; 2997[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2997[label="",style="solid", color="blue", weight=9]; 2997 -> 33[label="",style="solid", color="blue", weight=3]; 2998[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2998[label="",style="solid", color="blue", weight=9]; 2998 -> 34[label="",style="solid", color="blue", weight=3]; 2999[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 2999[label="",style="solid", color="blue", weight=9]; 2999 -> 35[label="",style="solid", color="blue", weight=3]; 3000[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];20 -> 3000[label="",style="solid", color="blue", weight=9]; 3000 -> 36[label="",style="solid", color="blue", weight=3]; 21[label="vyw30",fontsize=16,color="green",shape="box"];22[label="vyw32",fontsize=16,color="green",shape="box"];14[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 vyw16 vyw17 vyw18 vyw19 vyw20 vyw21 vyw22)",fontsize=16,color="burlywood",shape="triangle"];3001[label="vyw22/False",fontsize=10,color="white",style="solid",shape="box"];14 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 37[label="",style="solid", color="burlywood", weight=3]; 3002[label="vyw22/True",fontsize=10,color="white",style="solid",shape="box"];14 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 38[label="",style="solid", color="burlywood", weight=3]; 23[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];23 -> 39[label="",style="solid", color="black", weight=3]; 24[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];24 -> 40[label="",style="solid", color="black", weight=3]; 25[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];25 -> 41[label="",style="solid", color="black", weight=3]; 26[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];26 -> 42[label="",style="solid", color="black", weight=3]; 27[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];27 -> 43[label="",style="solid", color="black", weight=3]; 28[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];28 -> 44[label="",style="solid", color="black", weight=3]; 29[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];29 -> 45[label="",style="solid", color="black", weight=3]; 30[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];30 -> 46[label="",style="solid", color="black", weight=3]; 31[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];31 -> 47[label="",style="solid", color="black", weight=3]; 32[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];32 -> 48[label="",style="solid", color="black", weight=3]; 33[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];33 -> 49[label="",style="solid", color="black", weight=3]; 34[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];34 -> 50[label="",style="solid", color="black", weight=3]; 35[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];35 -> 51[label="",style="solid", color="black", weight=3]; 36[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];36 -> 52[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 vyw16 vyw17 vyw18 vyw19 vyw20 vyw21 False)",fontsize=16,color="black",shape="box"];37 -> 53[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 vyw16 vyw17 vyw18 vyw19 vyw20 vyw21 True)",fontsize=16,color="black",shape="box"];38 -> 54[label="",style="solid", color="black", weight=3]; 39 -> 179[label="",style="dashed", color="red", weight=0]; 39[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];39 -> 180[label="",style="dashed", color="magenta", weight=3]; 40 -> 179[label="",style="dashed", color="red", weight=0]; 40[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];40 -> 181[label="",style="dashed", color="magenta", weight=3]; 41 -> 179[label="",style="dashed", color="red", weight=0]; 41[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];41 -> 182[label="",style="dashed", color="magenta", weight=3]; 42 -> 179[label="",style="dashed", color="red", weight=0]; 42[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];42 -> 183[label="",style="dashed", color="magenta", weight=3]; 43 -> 179[label="",style="dashed", color="red", weight=0]; 43[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];43 -> 184[label="",style="dashed", color="magenta", weight=3]; 44 -> 179[label="",style="dashed", color="red", weight=0]; 44[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];44 -> 185[label="",style="dashed", color="magenta", weight=3]; 45 -> 179[label="",style="dashed", color="red", weight=0]; 45[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];45 -> 186[label="",style="dashed", color="magenta", weight=3]; 46 -> 179[label="",style="dashed", color="red", weight=0]; 46[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];46 -> 187[label="",style="dashed", color="magenta", weight=3]; 47 -> 179[label="",style="dashed", color="red", weight=0]; 47[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];47 -> 188[label="",style="dashed", color="magenta", weight=3]; 48 -> 179[label="",style="dashed", color="red", weight=0]; 48[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];48 -> 189[label="",style="dashed", color="magenta", weight=3]; 49 -> 179[label="",style="dashed", color="red", weight=0]; 49[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];49 -> 190[label="",style="dashed", color="magenta", weight=3]; 50 -> 179[label="",style="dashed", color="red", weight=0]; 50[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];50 -> 191[label="",style="dashed", color="magenta", weight=3]; 51 -> 179[label="",style="dashed", color="red", weight=0]; 51[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];51 -> 192[label="",style="dashed", color="magenta", weight=3]; 52 -> 179[label="",style="dashed", color="red", weight=0]; 52[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];52 -> 193[label="",style="dashed", color="magenta", weight=3]; 53 -> 70[label="",style="dashed", color="red", weight=0]; 53[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM1 vyw16 vyw17 vyw18 vyw19 vyw20 vyw21 (vyw21 > vyw16))",fontsize=16,color="magenta"];53 -> 71[label="",style="dashed", color="magenta", weight=3]; 53 -> 72[label="",style="dashed", color="magenta", weight=3]; 53 -> 73[label="",style="dashed", color="magenta", weight=3]; 53 -> 74[label="",style="dashed", color="magenta", weight=3]; 53 -> 75[label="",style="dashed", color="magenta", weight=3]; 53 -> 76[label="",style="dashed", color="magenta", weight=3]; 53 -> 77[label="",style="dashed", color="magenta", weight=3]; 53 -> 78[label="",style="dashed", color="magenta", weight=3]; 54 -> 6[label="",style="dashed", color="red", weight=0]; 54[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM vyw19 vyw21)",fontsize=16,color="magenta"];54 -> 79[label="",style="dashed", color="magenta", weight=3]; 54 -> 80[label="",style="dashed", color="magenta", weight=3]; 54 -> 81[label="",style="dashed", color="magenta", weight=3]; 180[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];180 -> 219[label="",style="solid", color="black", weight=3]; 179[label="vyw42 == LT",fontsize=16,color="burlywood",shape="triangle"];3003[label="vyw42/LT",fontsize=10,color="white",style="solid",shape="box"];179 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 220[label="",style="solid", color="burlywood", weight=3]; 3004[label="vyw42/EQ",fontsize=10,color="white",style="solid",shape="box"];179 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 221[label="",style="solid", color="burlywood", weight=3]; 3005[label="vyw42/GT",fontsize=10,color="white",style="solid",shape="box"];179 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 222[label="",style="solid", color="burlywood", weight=3]; 181[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];181 -> 223[label="",style="solid", color="black", weight=3]; 182[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];182 -> 224[label="",style="solid", color="black", weight=3]; 183[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];183 -> 225[label="",style="solid", color="black", weight=3]; 184[label="compare vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];3006[label="vyw5/vyw50 : vyw51",fontsize=10,color="white",style="solid",shape="box"];184 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 226[label="",style="solid", color="burlywood", weight=3]; 3007[label="vyw5/[]",fontsize=10,color="white",style="solid",shape="box"];184 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 227[label="",style="solid", color="burlywood", weight=3]; 185[label="compare vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];3008[label="vyw5/vyw50 :% vyw51",fontsize=10,color="white",style="solid",shape="box"];185 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 228[label="",style="solid", color="burlywood", weight=3]; 186[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];186 -> 229[label="",style="solid", color="black", weight=3]; 187[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];187 -> 230[label="",style="solid", color="black", weight=3]; 188[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];188 -> 231[label="",style="solid", color="black", weight=3]; 189[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];189 -> 232[label="",style="solid", color="black", weight=3]; 190[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];190 -> 233[label="",style="solid", color="black", weight=3]; 191[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];191 -> 234[label="",style="solid", color="black", weight=3]; 192[label="compare vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];3009[label="vyw5/Integer vyw50",fontsize=10,color="white",style="solid",shape="box"];192 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 235[label="",style="solid", color="burlywood", weight=3]; 193[label="compare vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];3010[label="vyw5/()",fontsize=10,color="white",style="solid",shape="box"];193 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 236[label="",style="solid", color="burlywood", weight=3]; 71[label="vyw21",fontsize=16,color="green",shape="box"];72[label="vyw16",fontsize=16,color="green",shape="box"];73[label="vyw19",fontsize=16,color="green",shape="box"];74[label="vyw15",fontsize=16,color="green",shape="box"];75[label="vyw21 > vyw16",fontsize=16,color="blue",shape="box"];3011[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 100[label="",style="solid", color="blue", weight=3]; 3012[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 101[label="",style="solid", color="blue", weight=3]; 3013[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 102[label="",style="solid", color="blue", weight=3]; 3014[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 103[label="",style="solid", color="blue", weight=3]; 3015[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 104[label="",style="solid", color="blue", weight=3]; 3016[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 105[label="",style="solid", color="blue", weight=3]; 3017[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 106[label="",style="solid", color="blue", weight=3]; 3018[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 107[label="",style="solid", color="blue", weight=3]; 3019[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 108[label="",style="solid", color="blue", weight=3]; 3020[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 109[label="",style="solid", color="blue", weight=3]; 3021[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 110[label="",style="solid", color="blue", weight=3]; 3022[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 111[label="",style="solid", color="blue", weight=3]; 3023[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 112[label="",style="solid", color="blue", weight=3]; 3024[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];75 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 113[label="",style="solid", color="blue", weight=3]; 76[label="vyw17",fontsize=16,color="green",shape="box"];77[label="vyw18",fontsize=16,color="green",shape="box"];78[label="vyw20",fontsize=16,color="green",shape="box"];70[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM1 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 vyw39)",fontsize=16,color="burlywood",shape="triangle"];3025[label="vyw39/False",fontsize=10,color="white",style="solid",shape="box"];70 -> 3025[label="",style="solid", color="burlywood", weight=9]; 3025 -> 114[label="",style="solid", color="burlywood", weight=3]; 3026[label="vyw39/True",fontsize=10,color="white",style="solid",shape="box"];70 -> 3026[label="",style="solid", color="burlywood", weight=9]; 3026 -> 115[label="",style="solid", color="burlywood", weight=3]; 79[label="vyw15",fontsize=16,color="green",shape="box"];80[label="vyw19",fontsize=16,color="green",shape="box"];81[label="vyw21",fontsize=16,color="green",shape="box"];219[label="primCmpChar vyw5 vyw30",fontsize=16,color="burlywood",shape="box"];3027[label="vyw5/Char vyw50",fontsize=10,color="white",style="solid",shape="box"];219 -> 3027[label="",style="solid", color="burlywood", weight=9]; 3027 -> 252[label="",style="solid", color="burlywood", weight=3]; 220[label="LT == LT",fontsize=16,color="black",shape="box"];220 -> 253[label="",style="solid", color="black", weight=3]; 221[label="EQ == LT",fontsize=16,color="black",shape="box"];221 -> 254[label="",style="solid", color="black", weight=3]; 222[label="GT == LT",fontsize=16,color="black",shape="box"];222 -> 255[label="",style="solid", color="black", weight=3]; 223[label="primCmpDouble vyw5 vyw30",fontsize=16,color="burlywood",shape="box"];3028[label="vyw5/Double vyw50 vyw51",fontsize=10,color="white",style="solid",shape="box"];223 -> 3028[label="",style="solid", color="burlywood", weight=9]; 3028 -> 256[label="",style="solid", color="burlywood", weight=3]; 224[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];224 -> 257[label="",style="solid", color="black", weight=3]; 225[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];225 -> 258[label="",style="solid", color="black", weight=3]; 226[label="compare (vyw50 : vyw51) vyw30",fontsize=16,color="burlywood",shape="box"];3029[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];226 -> 3029[label="",style="solid", color="burlywood", weight=9]; 3029 -> 259[label="",style="solid", color="burlywood", weight=3]; 3030[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];226 -> 3030[label="",style="solid", color="burlywood", weight=9]; 3030 -> 260[label="",style="solid", color="burlywood", weight=3]; 227[label="compare [] vyw30",fontsize=16,color="burlywood",shape="box"];3031[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];227 -> 3031[label="",style="solid", color="burlywood", weight=9]; 3031 -> 261[label="",style="solid", color="burlywood", weight=3]; 3032[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];227 -> 3032[label="",style="solid", color="burlywood", weight=9]; 3032 -> 262[label="",style="solid", color="burlywood", weight=3]; 228[label="compare (vyw50 :% vyw51) vyw30",fontsize=16,color="burlywood",shape="box"];3033[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];228 -> 3033[label="",style="solid", color="burlywood", weight=9]; 3033 -> 263[label="",style="solid", color="burlywood", weight=3]; 229[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];229 -> 264[label="",style="solid", color="black", weight=3]; 230[label="primCmpInt vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];3034[label="vyw5/Pos vyw50",fontsize=10,color="white",style="solid",shape="box"];230 -> 3034[label="",style="solid", color="burlywood", weight=9]; 3034 -> 265[label="",style="solid", color="burlywood", weight=3]; 3035[label="vyw5/Neg vyw50",fontsize=10,color="white",style="solid",shape="box"];230 -> 3035[label="",style="solid", color="burlywood", weight=9]; 3035 -> 266[label="",style="solid", color="burlywood", weight=3]; 231[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];231 -> 267[label="",style="solid", color="black", weight=3]; 232[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];232 -> 268[label="",style="solid", color="black", weight=3]; 233[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];233 -> 269[label="",style="solid", color="black", weight=3]; 234[label="primCmpFloat vyw5 vyw30",fontsize=16,color="burlywood",shape="box"];3036[label="vyw5/Float vyw50 vyw51",fontsize=10,color="white",style="solid",shape="box"];234 -> 3036[label="",style="solid", color="burlywood", weight=9]; 3036 -> 270[label="",style="solid", color="burlywood", weight=3]; 235[label="compare (Integer vyw50) vyw30",fontsize=16,color="burlywood",shape="box"];3037[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];235 -> 3037[label="",style="solid", color="burlywood", weight=9]; 3037 -> 271[label="",style="solid", color="burlywood", weight=3]; 236[label="compare () vyw30",fontsize=16,color="burlywood",shape="box"];3038[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];236 -> 3038[label="",style="solid", color="burlywood", weight=9]; 3038 -> 272[label="",style="solid", color="burlywood", weight=3]; 100[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];100 -> 143[label="",style="solid", color="black", weight=3]; 101[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];101 -> 144[label="",style="solid", color="black", weight=3]; 102[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];102 -> 145[label="",style="solid", color="black", weight=3]; 103[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];103 -> 146[label="",style="solid", color="black", weight=3]; 104[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];104 -> 147[label="",style="solid", color="black", weight=3]; 105[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];105 -> 148[label="",style="solid", color="black", weight=3]; 106[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];106 -> 149[label="",style="solid", color="black", weight=3]; 107[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];107 -> 150[label="",style="solid", color="black", weight=3]; 108[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];108 -> 151[label="",style="solid", color="black", weight=3]; 109[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];109 -> 152[label="",style="solid", color="black", weight=3]; 110[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];110 -> 153[label="",style="solid", color="black", weight=3]; 111[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];111 -> 154[label="",style="solid", color="black", weight=3]; 112[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];112 -> 155[label="",style="solid", color="black", weight=3]; 113[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];113 -> 156[label="",style="solid", color="black", weight=3]; 114[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM1 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 False)",fontsize=16,color="black",shape="box"];114 -> 157[label="",style="solid", color="black", weight=3]; 115[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM1 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 True)",fontsize=16,color="black",shape="box"];115 -> 158[label="",style="solid", color="black", weight=3]; 252[label="primCmpChar (Char vyw50) vyw30",fontsize=16,color="burlywood",shape="box"];3039[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];252 -> 3039[label="",style="solid", color="burlywood", weight=9]; 3039 -> 308[label="",style="solid", color="burlywood", weight=3]; 253[label="True",fontsize=16,color="green",shape="box"];254[label="False",fontsize=16,color="green",shape="box"];255[label="False",fontsize=16,color="green",shape="box"];256[label="primCmpDouble (Double vyw50 vyw51) vyw30",fontsize=16,color="burlywood",shape="box"];3040[label="vyw51/Pos vyw510",fontsize=10,color="white",style="solid",shape="box"];256 -> 3040[label="",style="solid", color="burlywood", weight=9]; 3040 -> 309[label="",style="solid", color="burlywood", weight=3]; 3041[label="vyw51/Neg vyw510",fontsize=10,color="white",style="solid",shape="box"];256 -> 3041[label="",style="solid", color="burlywood", weight=9]; 3041 -> 310[label="",style="solid", color="burlywood", weight=3]; 257[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];3042[label="vyw5/LT",fontsize=10,color="white",style="solid",shape="box"];257 -> 3042[label="",style="solid", color="burlywood", weight=9]; 3042 -> 311[label="",style="solid", color="burlywood", weight=3]; 3043[label="vyw5/EQ",fontsize=10,color="white",style="solid",shape="box"];257 -> 3043[label="",style="solid", color="burlywood", weight=9]; 3043 -> 312[label="",style="solid", color="burlywood", weight=3]; 3044[label="vyw5/GT",fontsize=10,color="white",style="solid",shape="box"];257 -> 3044[label="",style="solid", color="burlywood", weight=9]; 3044 -> 313[label="",style="solid", color="burlywood", weight=3]; 258[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];3045[label="vyw5/Left vyw50",fontsize=10,color="white",style="solid",shape="box"];258 -> 3045[label="",style="solid", color="burlywood", weight=9]; 3045 -> 314[label="",style="solid", color="burlywood", weight=3]; 3046[label="vyw5/Right vyw50",fontsize=10,color="white",style="solid",shape="box"];258 -> 3046[label="",style="solid", color="burlywood", weight=9]; 3046 -> 315[label="",style="solid", color="burlywood", weight=3]; 259[label="compare (vyw50 : vyw51) (vyw300 : vyw301)",fontsize=16,color="black",shape="box"];259 -> 316[label="",style="solid", color="black", weight=3]; 260[label="compare (vyw50 : vyw51) []",fontsize=16,color="black",shape="box"];260 -> 317[label="",style="solid", color="black", weight=3]; 261[label="compare [] (vyw300 : vyw301)",fontsize=16,color="black",shape="box"];261 -> 318[label="",style="solid", color="black", weight=3]; 262[label="compare [] []",fontsize=16,color="black",shape="box"];262 -> 319[label="",style="solid", color="black", weight=3]; 263[label="compare (vyw50 :% vyw51) (vyw300 :% vyw301)",fontsize=16,color="black",shape="box"];263 -> 320[label="",style="solid", color="black", weight=3]; 264[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];3047[label="vyw5/(vyw50,vyw51,vyw52)",fontsize=10,color="white",style="solid",shape="box"];264 -> 3047[label="",style="solid", color="burlywood", weight=9]; 3047 -> 321[label="",style="solid", color="burlywood", weight=3]; 265[label="primCmpInt (Pos vyw50) vyw30",fontsize=16,color="burlywood",shape="box"];3048[label="vyw50/Succ vyw500",fontsize=10,color="white",style="solid",shape="box"];265 -> 3048[label="",style="solid", color="burlywood", weight=9]; 3048 -> 322[label="",style="solid", color="burlywood", weight=3]; 3049[label="vyw50/Zero",fontsize=10,color="white",style="solid",shape="box"];265 -> 3049[label="",style="solid", color="burlywood", weight=9]; 3049 -> 323[label="",style="solid", color="burlywood", weight=3]; 266[label="primCmpInt (Neg vyw50) vyw30",fontsize=16,color="burlywood",shape="box"];3050[label="vyw50/Succ vyw500",fontsize=10,color="white",style="solid",shape="box"];266 -> 3050[label="",style="solid", color="burlywood", weight=9]; 3050 -> 324[label="",style="solid", color="burlywood", weight=3]; 3051[label="vyw50/Zero",fontsize=10,color="white",style="solid",shape="box"];266 -> 3051[label="",style="solid", color="burlywood", weight=9]; 3051 -> 325[label="",style="solid", color="burlywood", weight=3]; 267[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];3052[label="vyw5/(vyw50,vyw51)",fontsize=10,color="white",style="solid",shape="box"];267 -> 3052[label="",style="solid", color="burlywood", weight=9]; 3052 -> 326[label="",style="solid", color="burlywood", weight=3]; 268[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];3053[label="vyw5/False",fontsize=10,color="white",style="solid",shape="box"];268 -> 3053[label="",style="solid", color="burlywood", weight=9]; 3053 -> 327[label="",style="solid", color="burlywood", weight=3]; 3054[label="vyw5/True",fontsize=10,color="white",style="solid",shape="box"];268 -> 3054[label="",style="solid", color="burlywood", weight=9]; 3054 -> 328[label="",style="solid", color="burlywood", weight=3]; 269[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];3055[label="vyw5/Nothing",fontsize=10,color="white",style="solid",shape="box"];269 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 329[label="",style="solid", color="burlywood", weight=3]; 3056[label="vyw5/Just vyw50",fontsize=10,color="white",style="solid",shape="box"];269 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 330[label="",style="solid", color="burlywood", weight=3]; 270[label="primCmpFloat (Float vyw50 vyw51) vyw30",fontsize=16,color="burlywood",shape="box"];3057[label="vyw51/Pos vyw510",fontsize=10,color="white",style="solid",shape="box"];270 -> 3057[label="",style="solid", color="burlywood", weight=9]; 3057 -> 331[label="",style="solid", color="burlywood", weight=3]; 3058[label="vyw51/Neg vyw510",fontsize=10,color="white",style="solid",shape="box"];270 -> 3058[label="",style="solid", color="burlywood", weight=9]; 3058 -> 332[label="",style="solid", color="burlywood", weight=3]; 271[label="compare (Integer vyw50) (Integer vyw300)",fontsize=16,color="black",shape="box"];271 -> 333[label="",style="solid", color="black", weight=3]; 272[label="compare () ()",fontsize=16,color="black",shape="box"];272 -> 334[label="",style="solid", color="black", weight=3]; 143 -> 237[label="",style="dashed", color="red", weight=0]; 143[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];143 -> 238[label="",style="dashed", color="magenta", weight=3]; 144 -> 237[label="",style="dashed", color="red", weight=0]; 144[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];144 -> 239[label="",style="dashed", color="magenta", weight=3]; 145 -> 237[label="",style="dashed", color="red", weight=0]; 145[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];145 -> 240[label="",style="dashed", color="magenta", weight=3]; 146 -> 237[label="",style="dashed", color="red", weight=0]; 146[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];146 -> 241[label="",style="dashed", color="magenta", weight=3]; 147 -> 237[label="",style="dashed", color="red", weight=0]; 147[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];147 -> 242[label="",style="dashed", color="magenta", weight=3]; 148 -> 237[label="",style="dashed", color="red", weight=0]; 148[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];148 -> 243[label="",style="dashed", color="magenta", weight=3]; 149 -> 237[label="",style="dashed", color="red", weight=0]; 149[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];149 -> 244[label="",style="dashed", color="magenta", weight=3]; 150 -> 237[label="",style="dashed", color="red", weight=0]; 150[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];150 -> 245[label="",style="dashed", color="magenta", weight=3]; 151 -> 237[label="",style="dashed", color="red", weight=0]; 151[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];151 -> 246[label="",style="dashed", color="magenta", weight=3]; 152 -> 237[label="",style="dashed", color="red", weight=0]; 152[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];152 -> 247[label="",style="dashed", color="magenta", weight=3]; 153 -> 237[label="",style="dashed", color="red", weight=0]; 153[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];153 -> 248[label="",style="dashed", color="magenta", weight=3]; 154 -> 237[label="",style="dashed", color="red", weight=0]; 154[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];154 -> 249[label="",style="dashed", color="magenta", weight=3]; 155 -> 237[label="",style="dashed", color="red", weight=0]; 155[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];155 -> 250[label="",style="dashed", color="magenta", weight=3]; 156 -> 237[label="",style="dashed", color="red", weight=0]; 156[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];156 -> 251[label="",style="dashed", color="magenta", weight=3]; 157[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM0 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 otherwise)",fontsize=16,color="black",shape="box"];157 -> 273[label="",style="solid", color="black", weight=3]; 158 -> 6[label="",style="dashed", color="red", weight=0]; 158[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM vyw37 vyw38)",fontsize=16,color="magenta"];158 -> 274[label="",style="dashed", color="magenta", weight=3]; 158 -> 275[label="",style="dashed", color="magenta", weight=3]; 158 -> 276[label="",style="dashed", color="magenta", weight=3]; 308[label="primCmpChar (Char vyw50) (Char vyw300)",fontsize=16,color="black",shape="box"];308 -> 339[label="",style="solid", color="black", weight=3]; 309[label="primCmpDouble (Double vyw50 (Pos vyw510)) vyw30",fontsize=16,color="burlywood",shape="box"];3059[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];309 -> 3059[label="",style="solid", color="burlywood", weight=9]; 3059 -> 340[label="",style="solid", color="burlywood", weight=3]; 310[label="primCmpDouble (Double vyw50 (Neg vyw510)) vyw30",fontsize=16,color="burlywood",shape="box"];3060[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];310 -> 3060[label="",style="solid", color="burlywood", weight=9]; 3060 -> 341[label="",style="solid", color="burlywood", weight=3]; 311[label="compare2 LT vyw30 (LT == vyw30)",fontsize=16,color="burlywood",shape="box"];3061[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];311 -> 3061[label="",style="solid", color="burlywood", weight=9]; 3061 -> 342[label="",style="solid", color="burlywood", weight=3]; 3062[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];311 -> 3062[label="",style="solid", color="burlywood", weight=9]; 3062 -> 343[label="",style="solid", color="burlywood", weight=3]; 3063[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];311 -> 3063[label="",style="solid", color="burlywood", weight=9]; 3063 -> 344[label="",style="solid", color="burlywood", weight=3]; 312[label="compare2 EQ vyw30 (EQ == vyw30)",fontsize=16,color="burlywood",shape="box"];3064[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];312 -> 3064[label="",style="solid", color="burlywood", weight=9]; 3064 -> 345[label="",style="solid", color="burlywood", weight=3]; 3065[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];312 -> 3065[label="",style="solid", color="burlywood", weight=9]; 3065 -> 346[label="",style="solid", color="burlywood", weight=3]; 3066[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];312 -> 3066[label="",style="solid", color="burlywood", weight=9]; 3066 -> 347[label="",style="solid", color="burlywood", weight=3]; 313[label="compare2 GT vyw30 (GT == vyw30)",fontsize=16,color="burlywood",shape="box"];3067[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];313 -> 3067[label="",style="solid", color="burlywood", weight=9]; 3067 -> 348[label="",style="solid", color="burlywood", weight=3]; 3068[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];313 -> 3068[label="",style="solid", color="burlywood", weight=9]; 3068 -> 349[label="",style="solid", color="burlywood", weight=3]; 3069[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];313 -> 3069[label="",style="solid", color="burlywood", weight=9]; 3069 -> 350[label="",style="solid", color="burlywood", weight=3]; 314[label="compare2 (Left vyw50) vyw30 (Left vyw50 == vyw30)",fontsize=16,color="burlywood",shape="box"];3070[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];314 -> 3070[label="",style="solid", color="burlywood", weight=9]; 3070 -> 351[label="",style="solid", color="burlywood", weight=3]; 3071[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];314 -> 3071[label="",style="solid", color="burlywood", weight=9]; 3071 -> 352[label="",style="solid", color="burlywood", weight=3]; 315[label="compare2 (Right vyw50) vyw30 (Right vyw50 == vyw30)",fontsize=16,color="burlywood",shape="box"];3072[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];315 -> 3072[label="",style="solid", color="burlywood", weight=9]; 3072 -> 353[label="",style="solid", color="burlywood", weight=3]; 3073[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];315 -> 3073[label="",style="solid", color="burlywood", weight=9]; 3073 -> 354[label="",style="solid", color="burlywood", weight=3]; 316 -> 355[label="",style="dashed", color="red", weight=0]; 316[label="primCompAux vyw50 vyw300 (compare vyw51 vyw301)",fontsize=16,color="magenta"];316 -> 356[label="",style="dashed", color="magenta", weight=3]; 317[label="GT",fontsize=16,color="green",shape="box"];318[label="LT",fontsize=16,color="green",shape="box"];319[label="EQ",fontsize=16,color="green",shape="box"];320[label="compare (vyw50 * vyw301) (vyw300 * vyw51)",fontsize=16,color="blue",shape="box"];3074[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];320 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 357[label="",style="solid", color="blue", weight=3]; 3075[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];320 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 358[label="",style="solid", color="blue", weight=3]; 321[label="compare2 (vyw50,vyw51,vyw52) vyw30 ((vyw50,vyw51,vyw52) == vyw30)",fontsize=16,color="burlywood",shape="box"];3076[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];321 -> 3076[label="",style="solid", color="burlywood", weight=9]; 3076 -> 359[label="",style="solid", color="burlywood", weight=3]; 322[label="primCmpInt (Pos (Succ vyw500)) vyw30",fontsize=16,color="burlywood",shape="box"];3077[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];322 -> 3077[label="",style="solid", color="burlywood", weight=9]; 3077 -> 360[label="",style="solid", color="burlywood", weight=3]; 3078[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];322 -> 3078[label="",style="solid", color="burlywood", weight=9]; 3078 -> 361[label="",style="solid", color="burlywood", weight=3]; 323[label="primCmpInt (Pos Zero) vyw30",fontsize=16,color="burlywood",shape="box"];3079[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];323 -> 3079[label="",style="solid", color="burlywood", weight=9]; 3079 -> 362[label="",style="solid", color="burlywood", weight=3]; 3080[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];323 -> 3080[label="",style="solid", color="burlywood", weight=9]; 3080 -> 363[label="",style="solid", color="burlywood", weight=3]; 324[label="primCmpInt (Neg (Succ vyw500)) vyw30",fontsize=16,color="burlywood",shape="box"];3081[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];324 -> 3081[label="",style="solid", color="burlywood", weight=9]; 3081 -> 364[label="",style="solid", color="burlywood", weight=3]; 3082[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];324 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 365[label="",style="solid", color="burlywood", weight=3]; 325[label="primCmpInt (Neg Zero) vyw30",fontsize=16,color="burlywood",shape="box"];3083[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];325 -> 3083[label="",style="solid", color="burlywood", weight=9]; 3083 -> 366[label="",style="solid", color="burlywood", weight=3]; 3084[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];325 -> 3084[label="",style="solid", color="burlywood", weight=9]; 3084 -> 367[label="",style="solid", color="burlywood", weight=3]; 326[label="compare2 (vyw50,vyw51) vyw30 ((vyw50,vyw51) == vyw30)",fontsize=16,color="burlywood",shape="box"];3085[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];326 -> 3085[label="",style="solid", color="burlywood", weight=9]; 3085 -> 368[label="",style="solid", color="burlywood", weight=3]; 327[label="compare2 False vyw30 (False == vyw30)",fontsize=16,color="burlywood",shape="box"];3086[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];327 -> 3086[label="",style="solid", color="burlywood", weight=9]; 3086 -> 369[label="",style="solid", color="burlywood", weight=3]; 3087[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];327 -> 3087[label="",style="solid", color="burlywood", weight=9]; 3087 -> 370[label="",style="solid", color="burlywood", weight=3]; 328[label="compare2 True vyw30 (True == vyw30)",fontsize=16,color="burlywood",shape="box"];3088[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];328 -> 3088[label="",style="solid", color="burlywood", weight=9]; 3088 -> 371[label="",style="solid", color="burlywood", weight=3]; 3089[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];328 -> 3089[label="",style="solid", color="burlywood", weight=9]; 3089 -> 372[label="",style="solid", color="burlywood", weight=3]; 329[label="compare2 Nothing vyw30 (Nothing == vyw30)",fontsize=16,color="burlywood",shape="box"];3090[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];329 -> 3090[label="",style="solid", color="burlywood", weight=9]; 3090 -> 373[label="",style="solid", color="burlywood", weight=3]; 3091[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];329 -> 3091[label="",style="solid", color="burlywood", weight=9]; 3091 -> 374[label="",style="solid", color="burlywood", weight=3]; 330[label="compare2 (Just vyw50) vyw30 (Just vyw50 == vyw30)",fontsize=16,color="burlywood",shape="box"];3092[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];330 -> 3092[label="",style="solid", color="burlywood", weight=9]; 3092 -> 375[label="",style="solid", color="burlywood", weight=3]; 3093[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];330 -> 3093[label="",style="solid", color="burlywood", weight=9]; 3093 -> 376[label="",style="solid", color="burlywood", weight=3]; 331[label="primCmpFloat (Float vyw50 (Pos vyw510)) vyw30",fontsize=16,color="burlywood",shape="box"];3094[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];331 -> 3094[label="",style="solid", color="burlywood", weight=9]; 3094 -> 377[label="",style="solid", color="burlywood", weight=3]; 332[label="primCmpFloat (Float vyw50 (Neg vyw510)) vyw30",fontsize=16,color="burlywood",shape="box"];3095[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];332 -> 3095[label="",style="solid", color="burlywood", weight=9]; 3095 -> 378[label="",style="solid", color="burlywood", weight=3]; 333 -> 230[label="",style="dashed", color="red", weight=0]; 333[label="primCmpInt vyw50 vyw300",fontsize=16,color="magenta"];333 -> 379[label="",style="dashed", color="magenta", weight=3]; 333 -> 380[label="",style="dashed", color="magenta", weight=3]; 334[label="EQ",fontsize=16,color="green",shape="box"];238 -> 180[label="",style="dashed", color="red", weight=0]; 238[label="compare vyw21 vyw16",fontsize=16,color="magenta"];238 -> 277[label="",style="dashed", color="magenta", weight=3]; 238 -> 278[label="",style="dashed", color="magenta", weight=3]; 237[label="vyw43 == GT",fontsize=16,color="burlywood",shape="triangle"];3096[label="vyw43/LT",fontsize=10,color="white",style="solid",shape="box"];237 -> 3096[label="",style="solid", color="burlywood", weight=9]; 3096 -> 279[label="",style="solid", color="burlywood", weight=3]; 3097[label="vyw43/EQ",fontsize=10,color="white",style="solid",shape="box"];237 -> 3097[label="",style="solid", color="burlywood", weight=9]; 3097 -> 280[label="",style="solid", color="burlywood", weight=3]; 3098[label="vyw43/GT",fontsize=10,color="white",style="solid",shape="box"];237 -> 3098[label="",style="solid", color="burlywood", weight=9]; 3098 -> 281[label="",style="solid", color="burlywood", weight=3]; 239 -> 181[label="",style="dashed", color="red", weight=0]; 239[label="compare vyw21 vyw16",fontsize=16,color="magenta"];239 -> 282[label="",style="dashed", color="magenta", weight=3]; 239 -> 283[label="",style="dashed", color="magenta", weight=3]; 240 -> 182[label="",style="dashed", color="red", weight=0]; 240[label="compare vyw21 vyw16",fontsize=16,color="magenta"];240 -> 284[label="",style="dashed", color="magenta", weight=3]; 240 -> 285[label="",style="dashed", color="magenta", weight=3]; 241 -> 183[label="",style="dashed", color="red", weight=0]; 241[label="compare vyw21 vyw16",fontsize=16,color="magenta"];241 -> 286[label="",style="dashed", color="magenta", weight=3]; 241 -> 287[label="",style="dashed", color="magenta", weight=3]; 242 -> 184[label="",style="dashed", color="red", weight=0]; 242[label="compare vyw21 vyw16",fontsize=16,color="magenta"];242 -> 288[label="",style="dashed", color="magenta", weight=3]; 242 -> 289[label="",style="dashed", color="magenta", weight=3]; 243 -> 185[label="",style="dashed", color="red", weight=0]; 243[label="compare vyw21 vyw16",fontsize=16,color="magenta"];243 -> 290[label="",style="dashed", color="magenta", weight=3]; 243 -> 291[label="",style="dashed", color="magenta", weight=3]; 244 -> 186[label="",style="dashed", color="red", weight=0]; 244[label="compare vyw21 vyw16",fontsize=16,color="magenta"];244 -> 292[label="",style="dashed", color="magenta", weight=3]; 244 -> 293[label="",style="dashed", color="magenta", weight=3]; 245 -> 187[label="",style="dashed", color="red", weight=0]; 245[label="compare vyw21 vyw16",fontsize=16,color="magenta"];245 -> 294[label="",style="dashed", color="magenta", weight=3]; 245 -> 295[label="",style="dashed", color="magenta", weight=3]; 246 -> 188[label="",style="dashed", color="red", weight=0]; 246[label="compare vyw21 vyw16",fontsize=16,color="magenta"];246 -> 296[label="",style="dashed", color="magenta", weight=3]; 246 -> 297[label="",style="dashed", color="magenta", weight=3]; 247 -> 189[label="",style="dashed", color="red", weight=0]; 247[label="compare vyw21 vyw16",fontsize=16,color="magenta"];247 -> 298[label="",style="dashed", color="magenta", weight=3]; 247 -> 299[label="",style="dashed", color="magenta", weight=3]; 248 -> 190[label="",style="dashed", color="red", weight=0]; 248[label="compare vyw21 vyw16",fontsize=16,color="magenta"];248 -> 300[label="",style="dashed", color="magenta", weight=3]; 248 -> 301[label="",style="dashed", color="magenta", weight=3]; 249 -> 191[label="",style="dashed", color="red", weight=0]; 249[label="compare vyw21 vyw16",fontsize=16,color="magenta"];249 -> 302[label="",style="dashed", color="magenta", weight=3]; 249 -> 303[label="",style="dashed", color="magenta", weight=3]; 250 -> 192[label="",style="dashed", color="red", weight=0]; 250[label="compare vyw21 vyw16",fontsize=16,color="magenta"];250 -> 304[label="",style="dashed", color="magenta", weight=3]; 250 -> 305[label="",style="dashed", color="magenta", weight=3]; 251 -> 193[label="",style="dashed", color="red", weight=0]; 251[label="compare vyw21 vyw16",fontsize=16,color="magenta"];251 -> 306[label="",style="dashed", color="magenta", weight=3]; 251 -> 307[label="",style="dashed", color="magenta", weight=3]; 273[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM0 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 True)",fontsize=16,color="black",shape="box"];273 -> 335[label="",style="solid", color="black", weight=3]; 274[label="vyw32",fontsize=16,color="green",shape="box"];275[label="vyw37",fontsize=16,color="green",shape="box"];276[label="vyw38",fontsize=16,color="green",shape="box"];339[label="primCmpNat vyw50 vyw300",fontsize=16,color="burlywood",shape="triangle"];3099[label="vyw50/Succ vyw500",fontsize=10,color="white",style="solid",shape="box"];339 -> 3099[label="",style="solid", color="burlywood", weight=9]; 3099 -> 381[label="",style="solid", color="burlywood", weight=3]; 3100[label="vyw50/Zero",fontsize=10,color="white",style="solid",shape="box"];339 -> 3100[label="",style="solid", color="burlywood", weight=9]; 3100 -> 382[label="",style="solid", color="burlywood", weight=3]; 340[label="primCmpDouble (Double vyw50 (Pos vyw510)) (Double vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3101[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];340 -> 3101[label="",style="solid", color="burlywood", weight=9]; 3101 -> 383[label="",style="solid", color="burlywood", weight=3]; 3102[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];340 -> 3102[label="",style="solid", color="burlywood", weight=9]; 3102 -> 384[label="",style="solid", color="burlywood", weight=3]; 341[label="primCmpDouble (Double vyw50 (Neg vyw510)) (Double vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3103[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];341 -> 3103[label="",style="solid", color="burlywood", weight=9]; 3103 -> 385[label="",style="solid", color="burlywood", weight=3]; 3104[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];341 -> 3104[label="",style="solid", color="burlywood", weight=9]; 3104 -> 386[label="",style="solid", color="burlywood", weight=3]; 342[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];342 -> 387[label="",style="solid", color="black", weight=3]; 343[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];343 -> 388[label="",style="solid", color="black", weight=3]; 344[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];344 -> 389[label="",style="solid", color="black", weight=3]; 345[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];345 -> 390[label="",style="solid", color="black", weight=3]; 346[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];346 -> 391[label="",style="solid", color="black", weight=3]; 347[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];347 -> 392[label="",style="solid", color="black", weight=3]; 348[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];348 -> 393[label="",style="solid", color="black", weight=3]; 349[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];349 -> 394[label="",style="solid", color="black", weight=3]; 350[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];350 -> 395[label="",style="solid", color="black", weight=3]; 351[label="compare2 (Left vyw50) (Left vyw300) (Left vyw50 == Left vyw300)",fontsize=16,color="black",shape="box"];351 -> 396[label="",style="solid", color="black", weight=3]; 352[label="compare2 (Left vyw50) (Right vyw300) (Left vyw50 == Right vyw300)",fontsize=16,color="black",shape="box"];352 -> 397[label="",style="solid", color="black", weight=3]; 353[label="compare2 (Right vyw50) (Left vyw300) (Right vyw50 == Left vyw300)",fontsize=16,color="black",shape="box"];353 -> 398[label="",style="solid", color="black", weight=3]; 354[label="compare2 (Right vyw50) (Right vyw300) (Right vyw50 == Right vyw300)",fontsize=16,color="black",shape="box"];354 -> 399[label="",style="solid", color="black", weight=3]; 356 -> 184[label="",style="dashed", color="red", weight=0]; 356[label="compare vyw51 vyw301",fontsize=16,color="magenta"];356 -> 400[label="",style="dashed", color="magenta", weight=3]; 356 -> 401[label="",style="dashed", color="magenta", weight=3]; 355[label="primCompAux vyw50 vyw300 vyw44",fontsize=16,color="black",shape="triangle"];355 -> 402[label="",style="solid", color="black", weight=3]; 357 -> 187[label="",style="dashed", color="red", weight=0]; 357[label="compare (vyw50 * vyw301) (vyw300 * vyw51)",fontsize=16,color="magenta"];357 -> 404[label="",style="dashed", color="magenta", weight=3]; 357 -> 405[label="",style="dashed", color="magenta", weight=3]; 358 -> 192[label="",style="dashed", color="red", weight=0]; 358[label="compare (vyw50 * vyw301) (vyw300 * vyw51)",fontsize=16,color="magenta"];358 -> 406[label="",style="dashed", color="magenta", weight=3]; 358 -> 407[label="",style="dashed", color="magenta", weight=3]; 359[label="compare2 (vyw50,vyw51,vyw52) (vyw300,vyw301,vyw302) ((vyw50,vyw51,vyw52) == (vyw300,vyw301,vyw302))",fontsize=16,color="black",shape="box"];359 -> 408[label="",style="solid", color="black", weight=3]; 360[label="primCmpInt (Pos (Succ vyw500)) (Pos vyw300)",fontsize=16,color="black",shape="box"];360 -> 409[label="",style="solid", color="black", weight=3]; 361[label="primCmpInt (Pos (Succ vyw500)) (Neg vyw300)",fontsize=16,color="black",shape="box"];361 -> 410[label="",style="solid", color="black", weight=3]; 362[label="primCmpInt (Pos Zero) (Pos vyw300)",fontsize=16,color="burlywood",shape="box"];3105[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];362 -> 3105[label="",style="solid", color="burlywood", weight=9]; 3105 -> 411[label="",style="solid", color="burlywood", weight=3]; 3106[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];362 -> 3106[label="",style="solid", color="burlywood", weight=9]; 3106 -> 412[label="",style="solid", color="burlywood", weight=3]; 363[label="primCmpInt (Pos Zero) (Neg vyw300)",fontsize=16,color="burlywood",shape="box"];3107[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];363 -> 3107[label="",style="solid", color="burlywood", weight=9]; 3107 -> 413[label="",style="solid", color="burlywood", weight=3]; 3108[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];363 -> 3108[label="",style="solid", color="burlywood", weight=9]; 3108 -> 414[label="",style="solid", color="burlywood", weight=3]; 364[label="primCmpInt (Neg (Succ vyw500)) (Pos vyw300)",fontsize=16,color="black",shape="box"];364 -> 415[label="",style="solid", color="black", weight=3]; 365[label="primCmpInt (Neg (Succ vyw500)) (Neg vyw300)",fontsize=16,color="black",shape="box"];365 -> 416[label="",style="solid", color="black", weight=3]; 366[label="primCmpInt (Neg Zero) (Pos vyw300)",fontsize=16,color="burlywood",shape="box"];3109[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];366 -> 3109[label="",style="solid", color="burlywood", weight=9]; 3109 -> 417[label="",style="solid", color="burlywood", weight=3]; 3110[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];366 -> 3110[label="",style="solid", color="burlywood", weight=9]; 3110 -> 418[label="",style="solid", color="burlywood", weight=3]; 367[label="primCmpInt (Neg Zero) (Neg vyw300)",fontsize=16,color="burlywood",shape="box"];3111[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];367 -> 3111[label="",style="solid", color="burlywood", weight=9]; 3111 -> 419[label="",style="solid", color="burlywood", weight=3]; 3112[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];367 -> 3112[label="",style="solid", color="burlywood", weight=9]; 3112 -> 420[label="",style="solid", color="burlywood", weight=3]; 368[label="compare2 (vyw50,vyw51) (vyw300,vyw301) ((vyw50,vyw51) == (vyw300,vyw301))",fontsize=16,color="black",shape="box"];368 -> 421[label="",style="solid", color="black", weight=3]; 369[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];369 -> 422[label="",style="solid", color="black", weight=3]; 370[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];370 -> 423[label="",style="solid", color="black", weight=3]; 371[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];371 -> 424[label="",style="solid", color="black", weight=3]; 372[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];372 -> 425[label="",style="solid", color="black", weight=3]; 373[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];373 -> 426[label="",style="solid", color="black", weight=3]; 374[label="compare2 Nothing (Just vyw300) (Nothing == Just vyw300)",fontsize=16,color="black",shape="box"];374 -> 427[label="",style="solid", color="black", weight=3]; 375[label="compare2 (Just vyw50) Nothing (Just vyw50 == Nothing)",fontsize=16,color="black",shape="box"];375 -> 428[label="",style="solid", color="black", weight=3]; 376[label="compare2 (Just vyw50) (Just vyw300) (Just vyw50 == Just vyw300)",fontsize=16,color="black",shape="box"];376 -> 429[label="",style="solid", color="black", weight=3]; 377[label="primCmpFloat (Float vyw50 (Pos vyw510)) (Float vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3113[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];377 -> 3113[label="",style="solid", color="burlywood", weight=9]; 3113 -> 430[label="",style="solid", color="burlywood", weight=3]; 3114[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];377 -> 3114[label="",style="solid", color="burlywood", weight=9]; 3114 -> 431[label="",style="solid", color="burlywood", weight=3]; 378[label="primCmpFloat (Float vyw50 (Neg vyw510)) (Float vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3115[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];378 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 432[label="",style="solid", color="burlywood", weight=3]; 3116[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];378 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 433[label="",style="solid", color="burlywood", weight=3]; 379[label="vyw300",fontsize=16,color="green",shape="box"];380[label="vyw50",fontsize=16,color="green",shape="box"];277[label="vyw16",fontsize=16,color="green",shape="box"];278[label="vyw21",fontsize=16,color="green",shape="box"];279[label="LT == GT",fontsize=16,color="black",shape="box"];279 -> 336[label="",style="solid", color="black", weight=3]; 280[label="EQ == GT",fontsize=16,color="black",shape="box"];280 -> 337[label="",style="solid", color="black", weight=3]; 281[label="GT == GT",fontsize=16,color="black",shape="box"];281 -> 338[label="",style="solid", color="black", weight=3]; 282[label="vyw16",fontsize=16,color="green",shape="box"];283[label="vyw21",fontsize=16,color="green",shape="box"];284[label="vyw16",fontsize=16,color="green",shape="box"];285[label="vyw21",fontsize=16,color="green",shape="box"];286[label="vyw16",fontsize=16,color="green",shape="box"];287[label="vyw21",fontsize=16,color="green",shape="box"];288[label="vyw16",fontsize=16,color="green",shape="box"];289[label="vyw21",fontsize=16,color="green",shape="box"];290[label="vyw16",fontsize=16,color="green",shape="box"];291[label="vyw21",fontsize=16,color="green",shape="box"];292[label="vyw16",fontsize=16,color="green",shape="box"];293[label="vyw21",fontsize=16,color="green",shape="box"];294[label="vyw16",fontsize=16,color="green",shape="box"];295[label="vyw21",fontsize=16,color="green",shape="box"];296[label="vyw16",fontsize=16,color="green",shape="box"];297[label="vyw21",fontsize=16,color="green",shape="box"];298[label="vyw16",fontsize=16,color="green",shape="box"];299[label="vyw21",fontsize=16,color="green",shape="box"];300[label="vyw16",fontsize=16,color="green",shape="box"];301[label="vyw21",fontsize=16,color="green",shape="box"];302[label="vyw16",fontsize=16,color="green",shape="box"];303[label="vyw21",fontsize=16,color="green",shape="box"];304[label="vyw16",fontsize=16,color="green",shape="box"];305[label="vyw21",fontsize=16,color="green",shape="box"];306[label="vyw16",fontsize=16,color="green",shape="box"];307[label="vyw21",fontsize=16,color="green",shape="box"];335[label="FiniteMap.lookupWithDefaultFM0 vyw32 (Just vyw34)",fontsize=16,color="black",shape="box"];335 -> 403[label="",style="solid", color="black", weight=3]; 381[label="primCmpNat (Succ vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3117[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];381 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 434[label="",style="solid", color="burlywood", weight=3]; 3118[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];381 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 435[label="",style="solid", color="burlywood", weight=3]; 382[label="primCmpNat Zero vyw300",fontsize=16,color="burlywood",shape="box"];3119[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];382 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 436[label="",style="solid", color="burlywood", weight=3]; 3120[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];382 -> 3120[label="",style="solid", color="burlywood", weight=9]; 3120 -> 437[label="",style="solid", color="burlywood", weight=3]; 383[label="primCmpDouble (Double vyw50 (Pos vyw510)) (Double vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];383 -> 438[label="",style="solid", color="black", weight=3]; 384[label="primCmpDouble (Double vyw50 (Pos vyw510)) (Double vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];384 -> 439[label="",style="solid", color="black", weight=3]; 385[label="primCmpDouble (Double vyw50 (Neg vyw510)) (Double vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];385 -> 440[label="",style="solid", color="black", weight=3]; 386[label="primCmpDouble (Double vyw50 (Neg vyw510)) (Double vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];386 -> 441[label="",style="solid", color="black", weight=3]; 387[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];387 -> 442[label="",style="solid", color="black", weight=3]; 388[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];388 -> 443[label="",style="solid", color="black", weight=3]; 389[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];389 -> 444[label="",style="solid", color="black", weight=3]; 390[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];390 -> 445[label="",style="solid", color="black", weight=3]; 391[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];391 -> 446[label="",style="solid", color="black", weight=3]; 392[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];392 -> 447[label="",style="solid", color="black", weight=3]; 393[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];393 -> 448[label="",style="solid", color="black", weight=3]; 394[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];394 -> 449[label="",style="solid", color="black", weight=3]; 395[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];395 -> 450[label="",style="solid", color="black", weight=3]; 396 -> 451[label="",style="dashed", color="red", weight=0]; 396[label="compare2 (Left vyw50) (Left vyw300) (vyw50 == vyw300)",fontsize=16,color="magenta"];396 -> 452[label="",style="dashed", color="magenta", weight=3]; 396 -> 453[label="",style="dashed", color="magenta", weight=3]; 396 -> 454[label="",style="dashed", color="magenta", weight=3]; 397[label="compare2 (Left vyw50) (Right vyw300) False",fontsize=16,color="black",shape="box"];397 -> 455[label="",style="solid", color="black", weight=3]; 398[label="compare2 (Right vyw50) (Left vyw300) False",fontsize=16,color="black",shape="box"];398 -> 456[label="",style="solid", color="black", weight=3]; 399 -> 457[label="",style="dashed", color="red", weight=0]; 399[label="compare2 (Right vyw50) (Right vyw300) (vyw50 == vyw300)",fontsize=16,color="magenta"];399 -> 458[label="",style="dashed", color="magenta", weight=3]; 399 -> 459[label="",style="dashed", color="magenta", weight=3]; 399 -> 460[label="",style="dashed", color="magenta", weight=3]; 400[label="vyw301",fontsize=16,color="green",shape="box"];401[label="vyw51",fontsize=16,color="green",shape="box"];402 -> 461[label="",style="dashed", color="red", weight=0]; 402[label="primCompAux0 vyw44 (compare vyw50 vyw300)",fontsize=16,color="magenta"];402 -> 462[label="",style="dashed", color="magenta", weight=3]; 402 -> 463[label="",style="dashed", color="magenta", weight=3]; 404[label="vyw300 * vyw51",fontsize=16,color="black",shape="triangle"];404 -> 464[label="",style="solid", color="black", weight=3]; 405 -> 404[label="",style="dashed", color="red", weight=0]; 405[label="vyw50 * vyw301",fontsize=16,color="magenta"];405 -> 465[label="",style="dashed", color="magenta", weight=3]; 405 -> 466[label="",style="dashed", color="magenta", weight=3]; 406[label="vyw300 * vyw51",fontsize=16,color="burlywood",shape="triangle"];3121[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];406 -> 3121[label="",style="solid", color="burlywood", weight=9]; 3121 -> 467[label="",style="solid", color="burlywood", weight=3]; 407 -> 406[label="",style="dashed", color="red", weight=0]; 407[label="vyw50 * vyw301",fontsize=16,color="magenta"];407 -> 468[label="",style="dashed", color="magenta", weight=3]; 407 -> 469[label="",style="dashed", color="magenta", weight=3]; 408 -> 1088[label="",style="dashed", color="red", weight=0]; 408[label="compare2 (vyw50,vyw51,vyw52) (vyw300,vyw301,vyw302) (vyw50 == vyw300 && vyw51 == vyw301 && vyw52 == vyw302)",fontsize=16,color="magenta"];408 -> 1089[label="",style="dashed", color="magenta", weight=3]; 408 -> 1090[label="",style="dashed", color="magenta", weight=3]; 408 -> 1091[label="",style="dashed", color="magenta", weight=3]; 408 -> 1092[label="",style="dashed", color="magenta", weight=3]; 408 -> 1093[label="",style="dashed", color="magenta", weight=3]; 408 -> 1094[label="",style="dashed", color="magenta", weight=3]; 408 -> 1095[label="",style="dashed", color="magenta", weight=3]; 409 -> 339[label="",style="dashed", color="red", weight=0]; 409[label="primCmpNat (Succ vyw500) vyw300",fontsize=16,color="magenta"];409 -> 478[label="",style="dashed", color="magenta", weight=3]; 409 -> 479[label="",style="dashed", color="magenta", weight=3]; 410[label="GT",fontsize=16,color="green",shape="box"];411[label="primCmpInt (Pos Zero) (Pos (Succ vyw3000))",fontsize=16,color="black",shape="box"];411 -> 480[label="",style="solid", color="black", weight=3]; 412[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];412 -> 481[label="",style="solid", color="black", weight=3]; 413[label="primCmpInt (Pos Zero) (Neg (Succ vyw3000))",fontsize=16,color="black",shape="box"];413 -> 482[label="",style="solid", color="black", weight=3]; 414[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];414 -> 483[label="",style="solid", color="black", weight=3]; 415[label="LT",fontsize=16,color="green",shape="box"];416 -> 339[label="",style="dashed", color="red", weight=0]; 416[label="primCmpNat vyw300 (Succ vyw500)",fontsize=16,color="magenta"];416 -> 484[label="",style="dashed", color="magenta", weight=3]; 416 -> 485[label="",style="dashed", color="magenta", weight=3]; 417[label="primCmpInt (Neg Zero) (Pos (Succ vyw3000))",fontsize=16,color="black",shape="box"];417 -> 486[label="",style="solid", color="black", weight=3]; 418[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];418 -> 487[label="",style="solid", color="black", weight=3]; 419[label="primCmpInt (Neg Zero) (Neg (Succ vyw3000))",fontsize=16,color="black",shape="box"];419 -> 488[label="",style="solid", color="black", weight=3]; 420[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];420 -> 489[label="",style="solid", color="black", weight=3]; 421 -> 927[label="",style="dashed", color="red", weight=0]; 421[label="compare2 (vyw50,vyw51) (vyw300,vyw301) (vyw50 == vyw300 && vyw51 == vyw301)",fontsize=16,color="magenta"];421 -> 928[label="",style="dashed", color="magenta", weight=3]; 421 -> 929[label="",style="dashed", color="magenta", weight=3]; 421 -> 930[label="",style="dashed", color="magenta", weight=3]; 421 -> 931[label="",style="dashed", color="magenta", weight=3]; 421 -> 932[label="",style="dashed", color="magenta", weight=3]; 422[label="compare2 False False True",fontsize=16,color="black",shape="box"];422 -> 496[label="",style="solid", color="black", weight=3]; 423[label="compare2 False True False",fontsize=16,color="black",shape="box"];423 -> 497[label="",style="solid", color="black", weight=3]; 424[label="compare2 True False False",fontsize=16,color="black",shape="box"];424 -> 498[label="",style="solid", color="black", weight=3]; 425[label="compare2 True True True",fontsize=16,color="black",shape="box"];425 -> 499[label="",style="solid", color="black", weight=3]; 426[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];426 -> 500[label="",style="solid", color="black", weight=3]; 427[label="compare2 Nothing (Just vyw300) False",fontsize=16,color="black",shape="box"];427 -> 501[label="",style="solid", color="black", weight=3]; 428[label="compare2 (Just vyw50) Nothing False",fontsize=16,color="black",shape="box"];428 -> 502[label="",style="solid", color="black", weight=3]; 429 -> 503[label="",style="dashed", color="red", weight=0]; 429[label="compare2 (Just vyw50) (Just vyw300) (vyw50 == vyw300)",fontsize=16,color="magenta"];429 -> 504[label="",style="dashed", color="magenta", weight=3]; 429 -> 505[label="",style="dashed", color="magenta", weight=3]; 429 -> 506[label="",style="dashed", color="magenta", weight=3]; 430[label="primCmpFloat (Float vyw50 (Pos vyw510)) (Float vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];430 -> 507[label="",style="solid", color="black", weight=3]; 431[label="primCmpFloat (Float vyw50 (Pos vyw510)) (Float vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];431 -> 508[label="",style="solid", color="black", weight=3]; 432[label="primCmpFloat (Float vyw50 (Neg vyw510)) (Float vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];432 -> 509[label="",style="solid", color="black", weight=3]; 433[label="primCmpFloat (Float vyw50 (Neg vyw510)) (Float vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];433 -> 510[label="",style="solid", color="black", weight=3]; 336[label="False",fontsize=16,color="green",shape="box"];337[label="False",fontsize=16,color="green",shape="box"];338[label="True",fontsize=16,color="green",shape="box"];403[label="vyw34",fontsize=16,color="green",shape="box"];434[label="primCmpNat (Succ vyw500) (Succ vyw3000)",fontsize=16,color="black",shape="box"];434 -> 511[label="",style="solid", color="black", weight=3]; 435[label="primCmpNat (Succ vyw500) Zero",fontsize=16,color="black",shape="box"];435 -> 512[label="",style="solid", color="black", weight=3]; 436[label="primCmpNat Zero (Succ vyw3000)",fontsize=16,color="black",shape="box"];436 -> 513[label="",style="solid", color="black", weight=3]; 437[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];437 -> 514[label="",style="solid", color="black", weight=3]; 438 -> 187[label="",style="dashed", color="red", weight=0]; 438[label="compare (vyw50 * Pos vyw3010) (Pos vyw510 * vyw300)",fontsize=16,color="magenta"];438 -> 515[label="",style="dashed", color="magenta", weight=3]; 438 -> 516[label="",style="dashed", color="magenta", weight=3]; 439 -> 187[label="",style="dashed", color="red", weight=0]; 439[label="compare (vyw50 * Pos vyw3010) (Neg vyw510 * vyw300)",fontsize=16,color="magenta"];439 -> 517[label="",style="dashed", color="magenta", weight=3]; 439 -> 518[label="",style="dashed", color="magenta", weight=3]; 440 -> 187[label="",style="dashed", color="red", weight=0]; 440[label="compare (vyw50 * Neg vyw3010) (Pos vyw510 * vyw300)",fontsize=16,color="magenta"];440 -> 519[label="",style="dashed", color="magenta", weight=3]; 440 -> 520[label="",style="dashed", color="magenta", weight=3]; 441 -> 187[label="",style="dashed", color="red", weight=0]; 441[label="compare (vyw50 * Neg vyw3010) (Neg vyw510 * vyw300)",fontsize=16,color="magenta"];441 -> 521[label="",style="dashed", color="magenta", weight=3]; 441 -> 522[label="",style="dashed", color="magenta", weight=3]; 442[label="EQ",fontsize=16,color="green",shape="box"];443[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];443 -> 523[label="",style="solid", color="black", weight=3]; 444[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];444 -> 524[label="",style="solid", color="black", weight=3]; 445[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];445 -> 525[label="",style="solid", color="black", weight=3]; 446[label="EQ",fontsize=16,color="green",shape="box"];447[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];447 -> 526[label="",style="solid", color="black", weight=3]; 448[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];448 -> 527[label="",style="solid", color="black", weight=3]; 449[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];449 -> 528[label="",style="solid", color="black", weight=3]; 450[label="EQ",fontsize=16,color="green",shape="box"];452[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3122[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 529[label="",style="solid", color="blue", weight=3]; 3123[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 530[label="",style="solid", color="blue", weight=3]; 3124[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 531[label="",style="solid", color="blue", weight=3]; 3125[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 532[label="",style="solid", color="blue", weight=3]; 3126[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 533[label="",style="solid", color="blue", weight=3]; 3127[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 534[label="",style="solid", color="blue", weight=3]; 3128[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 535[label="",style="solid", color="blue", weight=3]; 3129[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 536[label="",style="solid", color="blue", weight=3]; 3130[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 537[label="",style="solid", color="blue", weight=3]; 3131[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 538[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 539[label="",style="solid", color="blue", weight=3]; 3133[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 540[label="",style="solid", color="blue", weight=3]; 3134[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 541[label="",style="solid", color="blue", weight=3]; 3135[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];452 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 542[label="",style="solid", color="blue", weight=3]; 453[label="vyw300",fontsize=16,color="green",shape="box"];454[label="vyw50",fontsize=16,color="green",shape="box"];451[label="compare2 (Left vyw49) (Left vyw50) vyw51",fontsize=16,color="burlywood",shape="triangle"];3136[label="vyw51/False",fontsize=10,color="white",style="solid",shape="box"];451 -> 3136[label="",style="solid", color="burlywood", weight=9]; 3136 -> 543[label="",style="solid", color="burlywood", weight=3]; 3137[label="vyw51/True",fontsize=10,color="white",style="solid",shape="box"];451 -> 3137[label="",style="solid", color="burlywood", weight=9]; 3137 -> 544[label="",style="solid", color="burlywood", weight=3]; 455[label="compare1 (Left vyw50) (Right vyw300) (Left vyw50 <= Right vyw300)",fontsize=16,color="black",shape="box"];455 -> 545[label="",style="solid", color="black", weight=3]; 456[label="compare1 (Right vyw50) (Left vyw300) (Right vyw50 <= Left vyw300)",fontsize=16,color="black",shape="box"];456 -> 546[label="",style="solid", color="black", weight=3]; 458[label="vyw300",fontsize=16,color="green",shape="box"];459[label="vyw50",fontsize=16,color="green",shape="box"];460[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3138[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 547[label="",style="solid", color="blue", weight=3]; 3139[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 548[label="",style="solid", color="blue", weight=3]; 3140[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 549[label="",style="solid", color="blue", weight=3]; 3141[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 550[label="",style="solid", color="blue", weight=3]; 3142[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 551[label="",style="solid", color="blue", weight=3]; 3143[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 552[label="",style="solid", color="blue", weight=3]; 3144[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 553[label="",style="solid", color="blue", weight=3]; 3145[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 554[label="",style="solid", color="blue", weight=3]; 3146[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 555[label="",style="solid", color="blue", weight=3]; 3147[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 556[label="",style="solid", color="blue", weight=3]; 3148[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 557[label="",style="solid", color="blue", weight=3]; 3149[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 558[label="",style="solid", color="blue", weight=3]; 3150[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 559[label="",style="solid", color="blue", weight=3]; 3151[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 560[label="",style="solid", color="blue", weight=3]; 457[label="compare2 (Right vyw56) (Right vyw57) vyw58",fontsize=16,color="burlywood",shape="triangle"];3152[label="vyw58/False",fontsize=10,color="white",style="solid",shape="box"];457 -> 3152[label="",style="solid", color="burlywood", weight=9]; 3152 -> 561[label="",style="solid", color="burlywood", weight=3]; 3153[label="vyw58/True",fontsize=10,color="white",style="solid",shape="box"];457 -> 3153[label="",style="solid", color="burlywood", weight=9]; 3153 -> 562[label="",style="solid", color="burlywood", weight=3]; 462[label="vyw44",fontsize=16,color="green",shape="box"];463[label="compare vyw50 vyw300",fontsize=16,color="blue",shape="box"];3154[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 563[label="",style="solid", color="blue", weight=3]; 3155[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 564[label="",style="solid", color="blue", weight=3]; 3156[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 565[label="",style="solid", color="blue", weight=3]; 3157[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 566[label="",style="solid", color="blue", weight=3]; 3158[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 567[label="",style="solid", color="blue", weight=3]; 3159[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 568[label="",style="solid", color="blue", weight=3]; 3160[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 569[label="",style="solid", color="blue", weight=3]; 3161[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 570[label="",style="solid", color="blue", weight=3]; 3162[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 571[label="",style="solid", color="blue", weight=3]; 3163[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 572[label="",style="solid", color="blue", weight=3]; 3164[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 573[label="",style="solid", color="blue", weight=3]; 3165[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 574[label="",style="solid", color="blue", weight=3]; 3166[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 575[label="",style="solid", color="blue", weight=3]; 3167[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];463 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 576[label="",style="solid", color="blue", weight=3]; 461[label="primCompAux0 vyw62 vyw63",fontsize=16,color="burlywood",shape="triangle"];3168[label="vyw63/LT",fontsize=10,color="white",style="solid",shape="box"];461 -> 3168[label="",style="solid", color="burlywood", weight=9]; 3168 -> 577[label="",style="solid", color="burlywood", weight=3]; 3169[label="vyw63/EQ",fontsize=10,color="white",style="solid",shape="box"];461 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 578[label="",style="solid", color="burlywood", weight=3]; 3170[label="vyw63/GT",fontsize=10,color="white",style="solid",shape="box"];461 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 579[label="",style="solid", color="burlywood", weight=3]; 464[label="primMulInt vyw300 vyw51",fontsize=16,color="burlywood",shape="triangle"];3171[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];464 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 580[label="",style="solid", color="burlywood", weight=3]; 3172[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];464 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 581[label="",style="solid", color="burlywood", weight=3]; 465[label="vyw301",fontsize=16,color="green",shape="box"];466[label="vyw50",fontsize=16,color="green",shape="box"];467[label="Integer vyw3000 * vyw51",fontsize=16,color="burlywood",shape="box"];3173[label="vyw51/Integer vyw510",fontsize=10,color="white",style="solid",shape="box"];467 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 582[label="",style="solid", color="burlywood", weight=3]; 468[label="vyw301",fontsize=16,color="green",shape="box"];469[label="vyw50",fontsize=16,color="green",shape="box"];1089[label="vyw301",fontsize=16,color="green",shape="box"];1090[label="vyw50",fontsize=16,color="green",shape="box"];1091 -> 1140[label="",style="dashed", color="red", weight=0]; 1091[label="vyw50 == vyw300 && vyw51 == vyw301 && vyw52 == vyw302",fontsize=16,color="magenta"];1091 -> 1141[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1142[label="",style="dashed", color="magenta", weight=3]; 1092[label="vyw52",fontsize=16,color="green",shape="box"];1093[label="vyw51",fontsize=16,color="green",shape="box"];1094[label="vyw302",fontsize=16,color="green",shape="box"];1095[label="vyw300",fontsize=16,color="green",shape="box"];1088[label="compare2 (vyw105,vyw106,vyw107) (vyw108,vyw109,vyw110) vyw144",fontsize=16,color="burlywood",shape="triangle"];3174[label="vyw144/False",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 1135[label="",style="solid", color="burlywood", weight=3]; 3175[label="vyw144/True",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 1136[label="",style="solid", color="burlywood", weight=3]; 478[label="Succ vyw500",fontsize=16,color="green",shape="box"];479[label="vyw300",fontsize=16,color="green",shape="box"];480 -> 339[label="",style="dashed", color="red", weight=0]; 480[label="primCmpNat Zero (Succ vyw3000)",fontsize=16,color="magenta"];480 -> 599[label="",style="dashed", color="magenta", weight=3]; 480 -> 600[label="",style="dashed", color="magenta", weight=3]; 481[label="EQ",fontsize=16,color="green",shape="box"];482[label="GT",fontsize=16,color="green",shape="box"];483[label="EQ",fontsize=16,color="green",shape="box"];484[label="vyw300",fontsize=16,color="green",shape="box"];485[label="Succ vyw500",fontsize=16,color="green",shape="box"];486[label="LT",fontsize=16,color="green",shape="box"];487[label="EQ",fontsize=16,color="green",shape="box"];488 -> 339[label="",style="dashed", color="red", weight=0]; 488[label="primCmpNat (Succ vyw3000) Zero",fontsize=16,color="magenta"];488 -> 601[label="",style="dashed", color="magenta", weight=3]; 488 -> 602[label="",style="dashed", color="magenta", weight=3]; 489[label="EQ",fontsize=16,color="green",shape="box"];928[label="vyw50",fontsize=16,color="green",shape="box"];929[label="vyw51",fontsize=16,color="green",shape="box"];930[label="vyw300",fontsize=16,color="green",shape="box"];931 -> 1140[label="",style="dashed", color="red", weight=0]; 931[label="vyw50 == vyw300 && vyw51 == vyw301",fontsize=16,color="magenta"];931 -> 1143[label="",style="dashed", color="magenta", weight=3]; 931 -> 1144[label="",style="dashed", color="magenta", weight=3]; 932[label="vyw301",fontsize=16,color="green",shape="box"];927[label="compare2 (vyw118,vyw119) (vyw120,vyw121) vyw122",fontsize=16,color="burlywood",shape="triangle"];3176[label="vyw122/False",fontsize=10,color="white",style="solid",shape="box"];927 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 952[label="",style="solid", color="burlywood", weight=3]; 3177[label="vyw122/True",fontsize=10,color="white",style="solid",shape="box"];927 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 953[label="",style="solid", color="burlywood", weight=3]; 496[label="EQ",fontsize=16,color="green",shape="box"];497[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];497 -> 619[label="",style="solid", color="black", weight=3]; 498[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];498 -> 620[label="",style="solid", color="black", weight=3]; 499[label="EQ",fontsize=16,color="green",shape="box"];500[label="EQ",fontsize=16,color="green",shape="box"];501[label="compare1 Nothing (Just vyw300) (Nothing <= Just vyw300)",fontsize=16,color="black",shape="box"];501 -> 621[label="",style="solid", color="black", weight=3]; 502[label="compare1 (Just vyw50) Nothing (Just vyw50 <= Nothing)",fontsize=16,color="black",shape="box"];502 -> 622[label="",style="solid", color="black", weight=3]; 504[label="vyw300",fontsize=16,color="green",shape="box"];505[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3178[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 623[label="",style="solid", color="blue", weight=3]; 3179[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 624[label="",style="solid", color="blue", weight=3]; 3180[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 625[label="",style="solid", color="blue", weight=3]; 3181[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 626[label="",style="solid", color="blue", weight=3]; 3182[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 627[label="",style="solid", color="blue", weight=3]; 3183[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 628[label="",style="solid", color="blue", weight=3]; 3184[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 629[label="",style="solid", color="blue", weight=3]; 3185[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 630[label="",style="solid", color="blue", weight=3]; 3186[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 631[label="",style="solid", color="blue", weight=3]; 3187[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 632[label="",style="solid", color="blue", weight=3]; 3188[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 633[label="",style="solid", color="blue", weight=3]; 3189[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 634[label="",style="solid", color="blue", weight=3]; 3190[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 635[label="",style="solid", color="blue", weight=3]; 3191[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];505 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 636[label="",style="solid", color="blue", weight=3]; 506[label="vyw50",fontsize=16,color="green",shape="box"];503[label="compare2 (Just vyw94) (Just vyw95) vyw96",fontsize=16,color="burlywood",shape="triangle"];3192[label="vyw96/False",fontsize=10,color="white",style="solid",shape="box"];503 -> 3192[label="",style="solid", color="burlywood", weight=9]; 3192 -> 637[label="",style="solid", color="burlywood", weight=3]; 3193[label="vyw96/True",fontsize=10,color="white",style="solid",shape="box"];503 -> 3193[label="",style="solid", color="burlywood", weight=9]; 3193 -> 638[label="",style="solid", color="burlywood", weight=3]; 507 -> 187[label="",style="dashed", color="red", weight=0]; 507[label="compare (vyw50 * Pos vyw3010) (Pos vyw510 * vyw300)",fontsize=16,color="magenta"];507 -> 639[label="",style="dashed", color="magenta", weight=3]; 507 -> 640[label="",style="dashed", color="magenta", weight=3]; 508 -> 187[label="",style="dashed", color="red", weight=0]; 508[label="compare (vyw50 * Pos vyw3010) (Neg vyw510 * vyw300)",fontsize=16,color="magenta"];508 -> 641[label="",style="dashed", color="magenta", weight=3]; 508 -> 642[label="",style="dashed", color="magenta", weight=3]; 509 -> 187[label="",style="dashed", color="red", weight=0]; 509[label="compare (vyw50 * Neg vyw3010) (Pos vyw510 * vyw300)",fontsize=16,color="magenta"];509 -> 643[label="",style="dashed", color="magenta", weight=3]; 509 -> 644[label="",style="dashed", color="magenta", weight=3]; 510 -> 187[label="",style="dashed", color="red", weight=0]; 510[label="compare (vyw50 * Neg vyw3010) (Neg vyw510 * vyw300)",fontsize=16,color="magenta"];510 -> 645[label="",style="dashed", color="magenta", weight=3]; 510 -> 646[label="",style="dashed", color="magenta", weight=3]; 511 -> 339[label="",style="dashed", color="red", weight=0]; 511[label="primCmpNat vyw500 vyw3000",fontsize=16,color="magenta"];511 -> 647[label="",style="dashed", color="magenta", weight=3]; 511 -> 648[label="",style="dashed", color="magenta", weight=3]; 512[label="GT",fontsize=16,color="green",shape="box"];513[label="LT",fontsize=16,color="green",shape="box"];514[label="EQ",fontsize=16,color="green",shape="box"];515 -> 404[label="",style="dashed", color="red", weight=0]; 515[label="Pos vyw510 * vyw300",fontsize=16,color="magenta"];515 -> 649[label="",style="dashed", color="magenta", weight=3]; 515 -> 650[label="",style="dashed", color="magenta", weight=3]; 516 -> 404[label="",style="dashed", color="red", weight=0]; 516[label="vyw50 * Pos vyw3010",fontsize=16,color="magenta"];516 -> 651[label="",style="dashed", color="magenta", weight=3]; 516 -> 652[label="",style="dashed", color="magenta", weight=3]; 517 -> 404[label="",style="dashed", color="red", weight=0]; 517[label="Neg vyw510 * vyw300",fontsize=16,color="magenta"];517 -> 653[label="",style="dashed", color="magenta", weight=3]; 517 -> 654[label="",style="dashed", color="magenta", weight=3]; 518 -> 404[label="",style="dashed", color="red", weight=0]; 518[label="vyw50 * Pos vyw3010",fontsize=16,color="magenta"];518 -> 655[label="",style="dashed", color="magenta", weight=3]; 518 -> 656[label="",style="dashed", color="magenta", weight=3]; 519 -> 404[label="",style="dashed", color="red", weight=0]; 519[label="Pos vyw510 * vyw300",fontsize=16,color="magenta"];519 -> 657[label="",style="dashed", color="magenta", weight=3]; 519 -> 658[label="",style="dashed", color="magenta", weight=3]; 520 -> 404[label="",style="dashed", color="red", weight=0]; 520[label="vyw50 * Neg vyw3010",fontsize=16,color="magenta"];520 -> 659[label="",style="dashed", color="magenta", weight=3]; 520 -> 660[label="",style="dashed", color="magenta", weight=3]; 521 -> 404[label="",style="dashed", color="red", weight=0]; 521[label="Neg vyw510 * vyw300",fontsize=16,color="magenta"];521 -> 661[label="",style="dashed", color="magenta", weight=3]; 521 -> 662[label="",style="dashed", color="magenta", weight=3]; 522 -> 404[label="",style="dashed", color="red", weight=0]; 522[label="vyw50 * Neg vyw3010",fontsize=16,color="magenta"];522 -> 663[label="",style="dashed", color="magenta", weight=3]; 522 -> 664[label="",style="dashed", color="magenta", weight=3]; 523[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];523 -> 665[label="",style="solid", color="black", weight=3]; 524[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];524 -> 666[label="",style="solid", color="black", weight=3]; 525[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];525 -> 667[label="",style="solid", color="black", weight=3]; 526[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];526 -> 668[label="",style="solid", color="black", weight=3]; 527[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];527 -> 669[label="",style="solid", color="black", weight=3]; 528[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];528 -> 670[label="",style="solid", color="black", weight=3]; 529[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];529 -> 671[label="",style="solid", color="black", weight=3]; 530[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3194[label="vyw50/(vyw500,vyw501)",fontsize=10,color="white",style="solid",shape="box"];530 -> 3194[label="",style="solid", color="burlywood", weight=9]; 3194 -> 672[label="",style="solid", color="burlywood", weight=3]; 531[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3195[label="vyw50/Integer vyw500",fontsize=10,color="white",style="solid",shape="box"];531 -> 3195[label="",style="solid", color="burlywood", weight=9]; 3195 -> 673[label="",style="solid", color="burlywood", weight=3]; 532[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3196[label="vyw50/vyw500 :% vyw501",fontsize=10,color="white",style="solid",shape="box"];532 -> 3196[label="",style="solid", color="burlywood", weight=9]; 3196 -> 674[label="",style="solid", color="burlywood", weight=3]; 533[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3197[label="vyw50/vyw500 : vyw501",fontsize=10,color="white",style="solid",shape="box"];533 -> 3197[label="",style="solid", color="burlywood", weight=9]; 3197 -> 675[label="",style="solid", color="burlywood", weight=3]; 3198[label="vyw50/[]",fontsize=10,color="white",style="solid",shape="box"];533 -> 3198[label="",style="solid", color="burlywood", weight=9]; 3198 -> 676[label="",style="solid", color="burlywood", weight=3]; 534[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];534 -> 677[label="",style="solid", color="black", weight=3]; 535[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3199[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];535 -> 3199[label="",style="solid", color="burlywood", weight=9]; 3199 -> 678[label="",style="solid", color="burlywood", weight=3]; 3200[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];535 -> 3200[label="",style="solid", color="burlywood", weight=9]; 3200 -> 679[label="",style="solid", color="burlywood", weight=3]; 536[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];536 -> 680[label="",style="solid", color="black", weight=3]; 537[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3201[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];537 -> 3201[label="",style="solid", color="burlywood", weight=9]; 3201 -> 681[label="",style="solid", color="burlywood", weight=3]; 3202[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];537 -> 3202[label="",style="solid", color="burlywood", weight=9]; 3202 -> 682[label="",style="solid", color="burlywood", weight=3]; 538[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];538 -> 683[label="",style="solid", color="black", weight=3]; 539[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3203[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];539 -> 3203[label="",style="solid", color="burlywood", weight=9]; 3203 -> 684[label="",style="solid", color="burlywood", weight=3]; 3204[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];539 -> 3204[label="",style="solid", color="burlywood", weight=9]; 3204 -> 685[label="",style="solid", color="burlywood", weight=3]; 3205[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];539 -> 3205[label="",style="solid", color="burlywood", weight=9]; 3205 -> 686[label="",style="solid", color="burlywood", weight=3]; 540[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3206[label="vyw50/(vyw500,vyw501,vyw502)",fontsize=10,color="white",style="solid",shape="box"];540 -> 3206[label="",style="solid", color="burlywood", weight=9]; 3206 -> 687[label="",style="solid", color="burlywood", weight=3]; 541[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3207[label="vyw50/()",fontsize=10,color="white",style="solid",shape="box"];541 -> 3207[label="",style="solid", color="burlywood", weight=9]; 3207 -> 688[label="",style="solid", color="burlywood", weight=3]; 542[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3208[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];542 -> 3208[label="",style="solid", color="burlywood", weight=9]; 3208 -> 689[label="",style="solid", color="burlywood", weight=3]; 3209[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];542 -> 3209[label="",style="solid", color="burlywood", weight=9]; 3209 -> 690[label="",style="solid", color="burlywood", weight=3]; 543[label="compare2 (Left vyw49) (Left vyw50) False",fontsize=16,color="black",shape="box"];543 -> 691[label="",style="solid", color="black", weight=3]; 544[label="compare2 (Left vyw49) (Left vyw50) True",fontsize=16,color="black",shape="box"];544 -> 692[label="",style="solid", color="black", weight=3]; 545[label="compare1 (Left vyw50) (Right vyw300) True",fontsize=16,color="black",shape="box"];545 -> 693[label="",style="solid", color="black", weight=3]; 546[label="compare1 (Right vyw50) (Left vyw300) False",fontsize=16,color="black",shape="box"];546 -> 694[label="",style="solid", color="black", weight=3]; 547 -> 529[label="",style="dashed", color="red", weight=0]; 547[label="vyw50 == vyw300",fontsize=16,color="magenta"];547 -> 695[label="",style="dashed", color="magenta", weight=3]; 547 -> 696[label="",style="dashed", color="magenta", weight=3]; 548 -> 530[label="",style="dashed", color="red", weight=0]; 548[label="vyw50 == vyw300",fontsize=16,color="magenta"];548 -> 697[label="",style="dashed", color="magenta", weight=3]; 548 -> 698[label="",style="dashed", color="magenta", weight=3]; 549 -> 531[label="",style="dashed", color="red", weight=0]; 549[label="vyw50 == vyw300",fontsize=16,color="magenta"];549 -> 699[label="",style="dashed", color="magenta", weight=3]; 549 -> 700[label="",style="dashed", color="magenta", weight=3]; 550 -> 532[label="",style="dashed", color="red", weight=0]; 550[label="vyw50 == vyw300",fontsize=16,color="magenta"];550 -> 701[label="",style="dashed", color="magenta", weight=3]; 550 -> 702[label="",style="dashed", color="magenta", weight=3]; 551 -> 533[label="",style="dashed", color="red", weight=0]; 551[label="vyw50 == vyw300",fontsize=16,color="magenta"];551 -> 703[label="",style="dashed", color="magenta", weight=3]; 551 -> 704[label="",style="dashed", color="magenta", weight=3]; 552 -> 534[label="",style="dashed", color="red", weight=0]; 552[label="vyw50 == vyw300",fontsize=16,color="magenta"];552 -> 705[label="",style="dashed", color="magenta", weight=3]; 552 -> 706[label="",style="dashed", color="magenta", weight=3]; 553 -> 535[label="",style="dashed", color="red", weight=0]; 553[label="vyw50 == vyw300",fontsize=16,color="magenta"];553 -> 707[label="",style="dashed", color="magenta", weight=3]; 553 -> 708[label="",style="dashed", color="magenta", weight=3]; 554 -> 536[label="",style="dashed", color="red", weight=0]; 554[label="vyw50 == vyw300",fontsize=16,color="magenta"];554 -> 709[label="",style="dashed", color="magenta", weight=3]; 554 -> 710[label="",style="dashed", color="magenta", weight=3]; 555 -> 537[label="",style="dashed", color="red", weight=0]; 555[label="vyw50 == vyw300",fontsize=16,color="magenta"];555 -> 711[label="",style="dashed", color="magenta", weight=3]; 555 -> 712[label="",style="dashed", color="magenta", weight=3]; 556 -> 538[label="",style="dashed", color="red", weight=0]; 556[label="vyw50 == vyw300",fontsize=16,color="magenta"];556 -> 713[label="",style="dashed", color="magenta", weight=3]; 556 -> 714[label="",style="dashed", color="magenta", weight=3]; 557 -> 539[label="",style="dashed", color="red", weight=0]; 557[label="vyw50 == vyw300",fontsize=16,color="magenta"];557 -> 715[label="",style="dashed", color="magenta", weight=3]; 557 -> 716[label="",style="dashed", color="magenta", weight=3]; 558 -> 540[label="",style="dashed", color="red", weight=0]; 558[label="vyw50 == vyw300",fontsize=16,color="magenta"];558 -> 717[label="",style="dashed", color="magenta", weight=3]; 558 -> 718[label="",style="dashed", color="magenta", weight=3]; 559 -> 541[label="",style="dashed", color="red", weight=0]; 559[label="vyw50 == vyw300",fontsize=16,color="magenta"];559 -> 719[label="",style="dashed", color="magenta", weight=3]; 559 -> 720[label="",style="dashed", color="magenta", weight=3]; 560 -> 542[label="",style="dashed", color="red", weight=0]; 560[label="vyw50 == vyw300",fontsize=16,color="magenta"];560 -> 721[label="",style="dashed", color="magenta", weight=3]; 560 -> 722[label="",style="dashed", color="magenta", weight=3]; 561[label="compare2 (Right vyw56) (Right vyw57) False",fontsize=16,color="black",shape="box"];561 -> 723[label="",style="solid", color="black", weight=3]; 562[label="compare2 (Right vyw56) (Right vyw57) True",fontsize=16,color="black",shape="box"];562 -> 724[label="",style="solid", color="black", weight=3]; 563 -> 180[label="",style="dashed", color="red", weight=0]; 563[label="compare vyw50 vyw300",fontsize=16,color="magenta"];563 -> 725[label="",style="dashed", color="magenta", weight=3]; 563 -> 726[label="",style="dashed", color="magenta", weight=3]; 564 -> 181[label="",style="dashed", color="red", weight=0]; 564[label="compare vyw50 vyw300",fontsize=16,color="magenta"];564 -> 727[label="",style="dashed", color="magenta", weight=3]; 564 -> 728[label="",style="dashed", color="magenta", weight=3]; 565 -> 182[label="",style="dashed", color="red", weight=0]; 565[label="compare vyw50 vyw300",fontsize=16,color="magenta"];565 -> 729[label="",style="dashed", color="magenta", weight=3]; 565 -> 730[label="",style="dashed", color="magenta", weight=3]; 566 -> 183[label="",style="dashed", color="red", weight=0]; 566[label="compare vyw50 vyw300",fontsize=16,color="magenta"];566 -> 731[label="",style="dashed", color="magenta", weight=3]; 566 -> 732[label="",style="dashed", color="magenta", weight=3]; 567 -> 184[label="",style="dashed", color="red", weight=0]; 567[label="compare vyw50 vyw300",fontsize=16,color="magenta"];567 -> 733[label="",style="dashed", color="magenta", weight=3]; 567 -> 734[label="",style="dashed", color="magenta", weight=3]; 568 -> 185[label="",style="dashed", color="red", weight=0]; 568[label="compare vyw50 vyw300",fontsize=16,color="magenta"];568 -> 735[label="",style="dashed", color="magenta", weight=3]; 568 -> 736[label="",style="dashed", color="magenta", weight=3]; 569 -> 186[label="",style="dashed", color="red", weight=0]; 569[label="compare vyw50 vyw300",fontsize=16,color="magenta"];569 -> 737[label="",style="dashed", color="magenta", weight=3]; 569 -> 738[label="",style="dashed", color="magenta", weight=3]; 570 -> 187[label="",style="dashed", color="red", weight=0]; 570[label="compare vyw50 vyw300",fontsize=16,color="magenta"];570 -> 739[label="",style="dashed", color="magenta", weight=3]; 570 -> 740[label="",style="dashed", color="magenta", weight=3]; 571 -> 188[label="",style="dashed", color="red", weight=0]; 571[label="compare vyw50 vyw300",fontsize=16,color="magenta"];571 -> 741[label="",style="dashed", color="magenta", weight=3]; 571 -> 742[label="",style="dashed", color="magenta", weight=3]; 572 -> 189[label="",style="dashed", color="red", weight=0]; 572[label="compare vyw50 vyw300",fontsize=16,color="magenta"];572 -> 743[label="",style="dashed", color="magenta", weight=3]; 572 -> 744[label="",style="dashed", color="magenta", weight=3]; 573 -> 190[label="",style="dashed", color="red", weight=0]; 573[label="compare vyw50 vyw300",fontsize=16,color="magenta"];573 -> 745[label="",style="dashed", color="magenta", weight=3]; 573 -> 746[label="",style="dashed", color="magenta", weight=3]; 574 -> 191[label="",style="dashed", color="red", weight=0]; 574[label="compare vyw50 vyw300",fontsize=16,color="magenta"];574 -> 747[label="",style="dashed", color="magenta", weight=3]; 574 -> 748[label="",style="dashed", color="magenta", weight=3]; 575 -> 192[label="",style="dashed", color="red", weight=0]; 575[label="compare vyw50 vyw300",fontsize=16,color="magenta"];575 -> 749[label="",style="dashed", color="magenta", weight=3]; 575 -> 750[label="",style="dashed", color="magenta", weight=3]; 576 -> 193[label="",style="dashed", color="red", weight=0]; 576[label="compare vyw50 vyw300",fontsize=16,color="magenta"];576 -> 751[label="",style="dashed", color="magenta", weight=3]; 576 -> 752[label="",style="dashed", color="magenta", weight=3]; 577[label="primCompAux0 vyw62 LT",fontsize=16,color="black",shape="box"];577 -> 753[label="",style="solid", color="black", weight=3]; 578[label="primCompAux0 vyw62 EQ",fontsize=16,color="black",shape="box"];578 -> 754[label="",style="solid", color="black", weight=3]; 579[label="primCompAux0 vyw62 GT",fontsize=16,color="black",shape="box"];579 -> 755[label="",style="solid", color="black", weight=3]; 580[label="primMulInt (Pos vyw3000) vyw51",fontsize=16,color="burlywood",shape="box"];3210[label="vyw51/Pos vyw510",fontsize=10,color="white",style="solid",shape="box"];580 -> 3210[label="",style="solid", color="burlywood", weight=9]; 3210 -> 756[label="",style="solid", color="burlywood", weight=3]; 3211[label="vyw51/Neg vyw510",fontsize=10,color="white",style="solid",shape="box"];580 -> 3211[label="",style="solid", color="burlywood", weight=9]; 3211 -> 757[label="",style="solid", color="burlywood", weight=3]; 581[label="primMulInt (Neg vyw3000) vyw51",fontsize=16,color="burlywood",shape="box"];3212[label="vyw51/Pos vyw510",fontsize=10,color="white",style="solid",shape="box"];581 -> 3212[label="",style="solid", color="burlywood", weight=9]; 3212 -> 758[label="",style="solid", color="burlywood", weight=3]; 3213[label="vyw51/Neg vyw510",fontsize=10,color="white",style="solid",shape="box"];581 -> 3213[label="",style="solid", color="burlywood", weight=9]; 3213 -> 759[label="",style="solid", color="burlywood", weight=3]; 582[label="Integer vyw3000 * Integer vyw510",fontsize=16,color="black",shape="box"];582 -> 760[label="",style="solid", color="black", weight=3]; 1141 -> 1140[label="",style="dashed", color="red", weight=0]; 1141[label="vyw51 == vyw301 && vyw52 == vyw302",fontsize=16,color="magenta"];1141 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1142[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3214[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1161[label="",style="solid", color="blue", weight=3]; 3215[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1162[label="",style="solid", color="blue", weight=3]; 3216[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1163[label="",style="solid", color="blue", weight=3]; 3217[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1164[label="",style="solid", color="blue", weight=3]; 3218[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1165[label="",style="solid", color="blue", weight=3]; 3219[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1166[label="",style="solid", color="blue", weight=3]; 3220[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1167[label="",style="solid", color="blue", weight=3]; 3221[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 1168[label="",style="solid", color="blue", weight=3]; 3222[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 1169[label="",style="solid", color="blue", weight=3]; 3223[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 1170[label="",style="solid", color="blue", weight=3]; 3224[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1171[label="",style="solid", color="blue", weight=3]; 3225[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1172[label="",style="solid", color="blue", weight=3]; 3226[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1173[label="",style="solid", color="blue", weight=3]; 3227[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1174[label="",style="solid", color="blue", weight=3]; 1140[label="vyw149 && vyw150",fontsize=16,color="burlywood",shape="triangle"];3228[label="vyw149/False",fontsize=10,color="white",style="solid",shape="box"];1140 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 1175[label="",style="solid", color="burlywood", weight=3]; 3229[label="vyw149/True",fontsize=10,color="white",style="solid",shape="box"];1140 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 1176[label="",style="solid", color="burlywood", weight=3]; 1135[label="compare2 (vyw105,vyw106,vyw107) (vyw108,vyw109,vyw110) False",fontsize=16,color="black",shape="box"];1135 -> 1177[label="",style="solid", color="black", weight=3]; 1136[label="compare2 (vyw105,vyw106,vyw107) (vyw108,vyw109,vyw110) True",fontsize=16,color="black",shape="box"];1136 -> 1178[label="",style="solid", color="black", weight=3]; 599[label="Zero",fontsize=16,color="green",shape="box"];600[label="Succ vyw3000",fontsize=16,color="green",shape="box"];601[label="Succ vyw3000",fontsize=16,color="green",shape="box"];602[label="Zero",fontsize=16,color="green",shape="box"];1143[label="vyw51 == vyw301",fontsize=16,color="blue",shape="box"];3230[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3230[label="",style="solid", color="blue", weight=9]; 3230 -> 1179[label="",style="solid", color="blue", weight=3]; 3231[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3231[label="",style="solid", color="blue", weight=9]; 3231 -> 1180[label="",style="solid", color="blue", weight=3]; 3232[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3232[label="",style="solid", color="blue", weight=9]; 3232 -> 1181[label="",style="solid", color="blue", weight=3]; 3233[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3233[label="",style="solid", color="blue", weight=9]; 3233 -> 1182[label="",style="solid", color="blue", weight=3]; 3234[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1183[label="",style="solid", color="blue", weight=3]; 3235[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1184[label="",style="solid", color="blue", weight=3]; 3236[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1185[label="",style="solid", color="blue", weight=3]; 3237[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1186[label="",style="solid", color="blue", weight=3]; 3238[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 1187[label="",style="solid", color="blue", weight=3]; 3239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 1188[label="",style="solid", color="blue", weight=3]; 3240[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 1189[label="",style="solid", color="blue", weight=3]; 3241[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 1190[label="",style="solid", color="blue", weight=3]; 3242[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 1191[label="",style="solid", color="blue", weight=3]; 3243[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 1192[label="",style="solid", color="blue", weight=3]; 1144[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3244[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 1193[label="",style="solid", color="blue", weight=3]; 3245[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 1194[label="",style="solid", color="blue", weight=3]; 3246[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1195[label="",style="solid", color="blue", weight=3]; 3247[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1196[label="",style="solid", color="blue", weight=3]; 3248[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1197[label="",style="solid", color="blue", weight=3]; 3249[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1198[label="",style="solid", color="blue", weight=3]; 3250[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1199[label="",style="solid", color="blue", weight=3]; 3251[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1200[label="",style="solid", color="blue", weight=3]; 3252[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1201[label="",style="solid", color="blue", weight=3]; 3253[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1202[label="",style="solid", color="blue", weight=3]; 3254[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1203[label="",style="solid", color="blue", weight=3]; 3255[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1204[label="",style="solid", color="blue", weight=3]; 3256[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1205[label="",style="solid", color="blue", weight=3]; 3257[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1206[label="",style="solid", color="blue", weight=3]; 952[label="compare2 (vyw118,vyw119) (vyw120,vyw121) False",fontsize=16,color="black",shape="box"];952 -> 1020[label="",style="solid", color="black", weight=3]; 953[label="compare2 (vyw118,vyw119) (vyw120,vyw121) True",fontsize=16,color="black",shape="box"];953 -> 1021[label="",style="solid", color="black", weight=3]; 619[label="compare1 False True True",fontsize=16,color="black",shape="box"];619 -> 821[label="",style="solid", color="black", weight=3]; 620[label="compare1 True False False",fontsize=16,color="black",shape="box"];620 -> 822[label="",style="solid", color="black", weight=3]; 621[label="compare1 Nothing (Just vyw300) True",fontsize=16,color="black",shape="box"];621 -> 823[label="",style="solid", color="black", weight=3]; 622[label="compare1 (Just vyw50) Nothing False",fontsize=16,color="black",shape="box"];622 -> 824[label="",style="solid", color="black", weight=3]; 623 -> 529[label="",style="dashed", color="red", weight=0]; 623[label="vyw50 == vyw300",fontsize=16,color="magenta"];623 -> 825[label="",style="dashed", color="magenta", weight=3]; 623 -> 826[label="",style="dashed", color="magenta", weight=3]; 624 -> 530[label="",style="dashed", color="red", weight=0]; 624[label="vyw50 == vyw300",fontsize=16,color="magenta"];624 -> 827[label="",style="dashed", color="magenta", weight=3]; 624 -> 828[label="",style="dashed", color="magenta", weight=3]; 625 -> 531[label="",style="dashed", color="red", weight=0]; 625[label="vyw50 == vyw300",fontsize=16,color="magenta"];625 -> 829[label="",style="dashed", color="magenta", weight=3]; 625 -> 830[label="",style="dashed", color="magenta", weight=3]; 626 -> 532[label="",style="dashed", color="red", weight=0]; 626[label="vyw50 == vyw300",fontsize=16,color="magenta"];626 -> 831[label="",style="dashed", color="magenta", weight=3]; 626 -> 832[label="",style="dashed", color="magenta", weight=3]; 627 -> 533[label="",style="dashed", color="red", weight=0]; 627[label="vyw50 == vyw300",fontsize=16,color="magenta"];627 -> 833[label="",style="dashed", color="magenta", weight=3]; 627 -> 834[label="",style="dashed", color="magenta", weight=3]; 628 -> 534[label="",style="dashed", color="red", weight=0]; 628[label="vyw50 == vyw300",fontsize=16,color="magenta"];628 -> 835[label="",style="dashed", color="magenta", weight=3]; 628 -> 836[label="",style="dashed", color="magenta", weight=3]; 629 -> 535[label="",style="dashed", color="red", weight=0]; 629[label="vyw50 == vyw300",fontsize=16,color="magenta"];629 -> 837[label="",style="dashed", color="magenta", weight=3]; 629 -> 838[label="",style="dashed", color="magenta", weight=3]; 630 -> 536[label="",style="dashed", color="red", weight=0]; 630[label="vyw50 == vyw300",fontsize=16,color="magenta"];630 -> 839[label="",style="dashed", color="magenta", weight=3]; 630 -> 840[label="",style="dashed", color="magenta", weight=3]; 631 -> 537[label="",style="dashed", color="red", weight=0]; 631[label="vyw50 == vyw300",fontsize=16,color="magenta"];631 -> 841[label="",style="dashed", color="magenta", weight=3]; 631 -> 842[label="",style="dashed", color="magenta", weight=3]; 632 -> 538[label="",style="dashed", color="red", weight=0]; 632[label="vyw50 == vyw300",fontsize=16,color="magenta"];632 -> 843[label="",style="dashed", color="magenta", weight=3]; 632 -> 844[label="",style="dashed", color="magenta", weight=3]; 633 -> 539[label="",style="dashed", color="red", weight=0]; 633[label="vyw50 == vyw300",fontsize=16,color="magenta"];633 -> 845[label="",style="dashed", color="magenta", weight=3]; 633 -> 846[label="",style="dashed", color="magenta", weight=3]; 634 -> 540[label="",style="dashed", color="red", weight=0]; 634[label="vyw50 == vyw300",fontsize=16,color="magenta"];634 -> 847[label="",style="dashed", color="magenta", weight=3]; 634 -> 848[label="",style="dashed", color="magenta", weight=3]; 635 -> 541[label="",style="dashed", color="red", weight=0]; 635[label="vyw50 == vyw300",fontsize=16,color="magenta"];635 -> 849[label="",style="dashed", color="magenta", weight=3]; 635 -> 850[label="",style="dashed", color="magenta", weight=3]; 636 -> 542[label="",style="dashed", color="red", weight=0]; 636[label="vyw50 == vyw300",fontsize=16,color="magenta"];636 -> 851[label="",style="dashed", color="magenta", weight=3]; 636 -> 852[label="",style="dashed", color="magenta", weight=3]; 637[label="compare2 (Just vyw94) (Just vyw95) False",fontsize=16,color="black",shape="box"];637 -> 853[label="",style="solid", color="black", weight=3]; 638[label="compare2 (Just vyw94) (Just vyw95) True",fontsize=16,color="black",shape="box"];638 -> 854[label="",style="solid", color="black", weight=3]; 639 -> 404[label="",style="dashed", color="red", weight=0]; 639[label="Pos vyw510 * vyw300",fontsize=16,color="magenta"];639 -> 855[label="",style="dashed", color="magenta", weight=3]; 639 -> 856[label="",style="dashed", color="magenta", weight=3]; 640 -> 404[label="",style="dashed", color="red", weight=0]; 640[label="vyw50 * Pos vyw3010",fontsize=16,color="magenta"];640 -> 857[label="",style="dashed", color="magenta", weight=3]; 640 -> 858[label="",style="dashed", color="magenta", weight=3]; 641 -> 404[label="",style="dashed", color="red", weight=0]; 641[label="Neg vyw510 * vyw300",fontsize=16,color="magenta"];641 -> 859[label="",style="dashed", color="magenta", weight=3]; 641 -> 860[label="",style="dashed", color="magenta", weight=3]; 642 -> 404[label="",style="dashed", color="red", weight=0]; 642[label="vyw50 * Pos vyw3010",fontsize=16,color="magenta"];642 -> 861[label="",style="dashed", color="magenta", weight=3]; 642 -> 862[label="",style="dashed", color="magenta", weight=3]; 643 -> 404[label="",style="dashed", color="red", weight=0]; 643[label="Pos vyw510 * vyw300",fontsize=16,color="magenta"];643 -> 863[label="",style="dashed", color="magenta", weight=3]; 643 -> 864[label="",style="dashed", color="magenta", weight=3]; 644 -> 404[label="",style="dashed", color="red", weight=0]; 644[label="vyw50 * Neg vyw3010",fontsize=16,color="magenta"];644 -> 865[label="",style="dashed", color="magenta", weight=3]; 644 -> 866[label="",style="dashed", color="magenta", weight=3]; 645 -> 404[label="",style="dashed", color="red", weight=0]; 645[label="Neg vyw510 * vyw300",fontsize=16,color="magenta"];645 -> 867[label="",style="dashed", color="magenta", weight=3]; 645 -> 868[label="",style="dashed", color="magenta", weight=3]; 646 -> 404[label="",style="dashed", color="red", weight=0]; 646[label="vyw50 * Neg vyw3010",fontsize=16,color="magenta"];646 -> 869[label="",style="dashed", color="magenta", weight=3]; 646 -> 870[label="",style="dashed", color="magenta", weight=3]; 647[label="vyw500",fontsize=16,color="green",shape="box"];648[label="vyw3000",fontsize=16,color="green",shape="box"];649[label="vyw300",fontsize=16,color="green",shape="box"];650[label="Pos vyw510",fontsize=16,color="green",shape="box"];651[label="Pos vyw3010",fontsize=16,color="green",shape="box"];652[label="vyw50",fontsize=16,color="green",shape="box"];653[label="vyw300",fontsize=16,color="green",shape="box"];654[label="Neg vyw510",fontsize=16,color="green",shape="box"];655[label="Pos vyw3010",fontsize=16,color="green",shape="box"];656[label="vyw50",fontsize=16,color="green",shape="box"];657[label="vyw300",fontsize=16,color="green",shape="box"];658[label="Pos vyw510",fontsize=16,color="green",shape="box"];659[label="Neg vyw3010",fontsize=16,color="green",shape="box"];660[label="vyw50",fontsize=16,color="green",shape="box"];661[label="vyw300",fontsize=16,color="green",shape="box"];662[label="Neg vyw510",fontsize=16,color="green",shape="box"];663[label="Neg vyw3010",fontsize=16,color="green",shape="box"];664[label="vyw50",fontsize=16,color="green",shape="box"];665[label="LT",fontsize=16,color="green",shape="box"];666[label="LT",fontsize=16,color="green",shape="box"];667[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];667 -> 871[label="",style="solid", color="black", weight=3]; 668[label="LT",fontsize=16,color="green",shape="box"];669[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];669 -> 872[label="",style="solid", color="black", weight=3]; 670[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];670 -> 873[label="",style="solid", color="black", weight=3]; 671[label="primEqChar vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3258[label="vyw50/Char vyw500",fontsize=10,color="white",style="solid",shape="box"];671 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 874[label="",style="solid", color="burlywood", weight=3]; 672[label="(vyw500,vyw501) == vyw300",fontsize=16,color="burlywood",shape="box"];3259[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];672 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 875[label="",style="solid", color="burlywood", weight=3]; 673[label="Integer vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3260[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];673 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 876[label="",style="solid", color="burlywood", weight=3]; 674[label="vyw500 :% vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];3261[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];674 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 877[label="",style="solid", color="burlywood", weight=3]; 675[label="vyw500 : vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];3262[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];675 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 878[label="",style="solid", color="burlywood", weight=3]; 3263[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];675 -> 3263[label="",style="solid", color="burlywood", weight=9]; 3263 -> 879[label="",style="solid", color="burlywood", weight=3]; 676[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];3264[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];676 -> 3264[label="",style="solid", color="burlywood", weight=9]; 3264 -> 880[label="",style="solid", color="burlywood", weight=3]; 3265[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];676 -> 3265[label="",style="solid", color="burlywood", weight=9]; 3265 -> 881[label="",style="solid", color="burlywood", weight=3]; 677[label="primEqDouble vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3266[label="vyw50/Double vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];677 -> 3266[label="",style="solid", color="burlywood", weight=9]; 3266 -> 882[label="",style="solid", color="burlywood", weight=3]; 678[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];3267[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];678 -> 3267[label="",style="solid", color="burlywood", weight=9]; 3267 -> 883[label="",style="solid", color="burlywood", weight=3]; 3268[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];678 -> 3268[label="",style="solid", color="burlywood", weight=9]; 3268 -> 884[label="",style="solid", color="burlywood", weight=3]; 679[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];3269[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];679 -> 3269[label="",style="solid", color="burlywood", weight=9]; 3269 -> 885[label="",style="solid", color="burlywood", weight=3]; 3270[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];679 -> 3270[label="",style="solid", color="burlywood", weight=9]; 3270 -> 886[label="",style="solid", color="burlywood", weight=3]; 680[label="primEqFloat vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3271[label="vyw50/Float vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];680 -> 3271[label="",style="solid", color="burlywood", weight=9]; 3271 -> 887[label="",style="solid", color="burlywood", weight=3]; 681[label="Left vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3272[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];681 -> 3272[label="",style="solid", color="burlywood", weight=9]; 3272 -> 888[label="",style="solid", color="burlywood", weight=3]; 3273[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];681 -> 3273[label="",style="solid", color="burlywood", weight=9]; 3273 -> 889[label="",style="solid", color="burlywood", weight=3]; 682[label="Right vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3274[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];682 -> 3274[label="",style="solid", color="burlywood", weight=9]; 3274 -> 890[label="",style="solid", color="burlywood", weight=3]; 3275[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];682 -> 3275[label="",style="solid", color="burlywood", weight=9]; 3275 -> 891[label="",style="solid", color="burlywood", weight=3]; 683[label="primEqInt vyw50 vyw300",fontsize=16,color="burlywood",shape="triangle"];3276[label="vyw50/Pos vyw500",fontsize=10,color="white",style="solid",shape="box"];683 -> 3276[label="",style="solid", color="burlywood", weight=9]; 3276 -> 892[label="",style="solid", color="burlywood", weight=3]; 3277[label="vyw50/Neg vyw500",fontsize=10,color="white",style="solid",shape="box"];683 -> 3277[label="",style="solid", color="burlywood", weight=9]; 3277 -> 893[label="",style="solid", color="burlywood", weight=3]; 684[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];3278[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];684 -> 3278[label="",style="solid", color="burlywood", weight=9]; 3278 -> 894[label="",style="solid", color="burlywood", weight=3]; 3279[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];684 -> 3279[label="",style="solid", color="burlywood", weight=9]; 3279 -> 895[label="",style="solid", color="burlywood", weight=3]; 3280[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];684 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 896[label="",style="solid", color="burlywood", weight=3]; 685[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];3281[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];685 -> 3281[label="",style="solid", color="burlywood", weight=9]; 3281 -> 897[label="",style="solid", color="burlywood", weight=3]; 3282[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];685 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 898[label="",style="solid", color="burlywood", weight=3]; 3283[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];685 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 899[label="",style="solid", color="burlywood", weight=3]; 686[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];3284[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];686 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 900[label="",style="solid", color="burlywood", weight=3]; 3285[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];686 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 901[label="",style="solid", color="burlywood", weight=3]; 3286[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];686 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 902[label="",style="solid", color="burlywood", weight=3]; 687[label="(vyw500,vyw501,vyw502) == vyw300",fontsize=16,color="burlywood",shape="box"];3287[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];687 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 903[label="",style="solid", color="burlywood", weight=3]; 688[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];3288[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];688 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 904[label="",style="solid", color="burlywood", weight=3]; 689[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];3289[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];689 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 905[label="",style="solid", color="burlywood", weight=3]; 3290[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];689 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 906[label="",style="solid", color="burlywood", weight=3]; 690[label="Just vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3291[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];690 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 907[label="",style="solid", color="burlywood", weight=3]; 3292[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];690 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 908[label="",style="solid", color="burlywood", weight=3]; 691 -> 1013[label="",style="dashed", color="red", weight=0]; 691[label="compare1 (Left vyw49) (Left vyw50) (Left vyw49 <= Left vyw50)",fontsize=16,color="magenta"];691 -> 1014[label="",style="dashed", color="magenta", weight=3]; 691 -> 1015[label="",style="dashed", color="magenta", weight=3]; 691 -> 1016[label="",style="dashed", color="magenta", weight=3]; 692[label="EQ",fontsize=16,color="green",shape="box"];693[label="LT",fontsize=16,color="green",shape="box"];694[label="compare0 (Right vyw50) (Left vyw300) otherwise",fontsize=16,color="black",shape="box"];694 -> 910[label="",style="solid", color="black", weight=3]; 695[label="vyw300",fontsize=16,color="green",shape="box"];696[label="vyw50",fontsize=16,color="green",shape="box"];697[label="vyw300",fontsize=16,color="green",shape="box"];698[label="vyw50",fontsize=16,color="green",shape="box"];699[label="vyw300",fontsize=16,color="green",shape="box"];700[label="vyw50",fontsize=16,color="green",shape="box"];701[label="vyw300",fontsize=16,color="green",shape="box"];702[label="vyw50",fontsize=16,color="green",shape="box"];703[label="vyw300",fontsize=16,color="green",shape="box"];704[label="vyw50",fontsize=16,color="green",shape="box"];705[label="vyw300",fontsize=16,color="green",shape="box"];706[label="vyw50",fontsize=16,color="green",shape="box"];707[label="vyw300",fontsize=16,color="green",shape="box"];708[label="vyw50",fontsize=16,color="green",shape="box"];709[label="vyw300",fontsize=16,color="green",shape="box"];710[label="vyw50",fontsize=16,color="green",shape="box"];711[label="vyw300",fontsize=16,color="green",shape="box"];712[label="vyw50",fontsize=16,color="green",shape="box"];713[label="vyw300",fontsize=16,color="green",shape="box"];714[label="vyw50",fontsize=16,color="green",shape="box"];715[label="vyw300",fontsize=16,color="green",shape="box"];716[label="vyw50",fontsize=16,color="green",shape="box"];717[label="vyw300",fontsize=16,color="green",shape="box"];718[label="vyw50",fontsize=16,color="green",shape="box"];719[label="vyw300",fontsize=16,color="green",shape="box"];720[label="vyw50",fontsize=16,color="green",shape="box"];721[label="vyw300",fontsize=16,color="green",shape="box"];722[label="vyw50",fontsize=16,color="green",shape="box"];723 -> 1056[label="",style="dashed", color="red", weight=0]; 723[label="compare1 (Right vyw56) (Right vyw57) (Right vyw56 <= Right vyw57)",fontsize=16,color="magenta"];723 -> 1057[label="",style="dashed", color="magenta", weight=3]; 723 -> 1058[label="",style="dashed", color="magenta", weight=3]; 723 -> 1059[label="",style="dashed", color="magenta", weight=3]; 724[label="EQ",fontsize=16,color="green",shape="box"];725[label="vyw300",fontsize=16,color="green",shape="box"];726[label="vyw50",fontsize=16,color="green",shape="box"];727[label="vyw300",fontsize=16,color="green",shape="box"];728[label="vyw50",fontsize=16,color="green",shape="box"];729[label="vyw300",fontsize=16,color="green",shape="box"];730[label="vyw50",fontsize=16,color="green",shape="box"];731[label="vyw300",fontsize=16,color="green",shape="box"];732[label="vyw50",fontsize=16,color="green",shape="box"];733[label="vyw300",fontsize=16,color="green",shape="box"];734[label="vyw50",fontsize=16,color="green",shape="box"];735[label="vyw300",fontsize=16,color="green",shape="box"];736[label="vyw50",fontsize=16,color="green",shape="box"];737[label="vyw300",fontsize=16,color="green",shape="box"];738[label="vyw50",fontsize=16,color="green",shape="box"];739[label="vyw300",fontsize=16,color="green",shape="box"];740[label="vyw50",fontsize=16,color="green",shape="box"];741[label="vyw300",fontsize=16,color="green",shape="box"];742[label="vyw50",fontsize=16,color="green",shape="box"];743[label="vyw300",fontsize=16,color="green",shape="box"];744[label="vyw50",fontsize=16,color="green",shape="box"];745[label="vyw300",fontsize=16,color="green",shape="box"];746[label="vyw50",fontsize=16,color="green",shape="box"];747[label="vyw300",fontsize=16,color="green",shape="box"];748[label="vyw50",fontsize=16,color="green",shape="box"];749[label="vyw300",fontsize=16,color="green",shape="box"];750[label="vyw50",fontsize=16,color="green",shape="box"];751[label="vyw300",fontsize=16,color="green",shape="box"];752[label="vyw50",fontsize=16,color="green",shape="box"];753[label="LT",fontsize=16,color="green",shape="box"];754[label="vyw62",fontsize=16,color="green",shape="box"];755[label="GT",fontsize=16,color="green",shape="box"];756[label="primMulInt (Pos vyw3000) (Pos vyw510)",fontsize=16,color="black",shape="box"];756 -> 912[label="",style="solid", color="black", weight=3]; 757[label="primMulInt (Pos vyw3000) (Neg vyw510)",fontsize=16,color="black",shape="box"];757 -> 913[label="",style="solid", color="black", weight=3]; 758[label="primMulInt (Neg vyw3000) (Pos vyw510)",fontsize=16,color="black",shape="box"];758 -> 914[label="",style="solid", color="black", weight=3]; 759[label="primMulInt (Neg vyw3000) (Neg vyw510)",fontsize=16,color="black",shape="box"];759 -> 915[label="",style="solid", color="black", weight=3]; 760[label="Integer (primMulInt vyw3000 vyw510)",fontsize=16,color="green",shape="box"];760 -> 916[label="",style="dashed", color="green", weight=3]; 1159[label="vyw52 == vyw302",fontsize=16,color="blue",shape="box"];3293[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3293[label="",style="solid", color="blue", weight=9]; 3293 -> 1209[label="",style="solid", color="blue", weight=3]; 3294[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3294[label="",style="solid", color="blue", weight=9]; 3294 -> 1210[label="",style="solid", color="blue", weight=3]; 3295[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1211[label="",style="solid", color="blue", weight=3]; 3296[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1212[label="",style="solid", color="blue", weight=3]; 3297[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1213[label="",style="solid", color="blue", weight=3]; 3298[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 1214[label="",style="solid", color="blue", weight=3]; 3299[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1215[label="",style="solid", color="blue", weight=3]; 3300[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1216[label="",style="solid", color="blue", weight=3]; 3301[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1217[label="",style="solid", color="blue", weight=3]; 3302[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1218[label="",style="solid", color="blue", weight=3]; 3303[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1219[label="",style="solid", color="blue", weight=3]; 3304[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1220[label="",style="solid", color="blue", weight=3]; 3305[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1221[label="",style="solid", color="blue", weight=3]; 3306[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1159 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1222[label="",style="solid", color="blue", weight=3]; 1160[label="vyw51 == vyw301",fontsize=16,color="blue",shape="box"];3307[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1223[label="",style="solid", color="blue", weight=3]; 3308[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1224[label="",style="solid", color="blue", weight=3]; 3309[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 1225[label="",style="solid", color="blue", weight=3]; 3310[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1226[label="",style="solid", color="blue", weight=3]; 3311[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1227[label="",style="solid", color="blue", weight=3]; 3312[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1228[label="",style="solid", color="blue", weight=3]; 3313[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1229[label="",style="solid", color="blue", weight=3]; 3314[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1230[label="",style="solid", color="blue", weight=3]; 3315[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1231[label="",style="solid", color="blue", weight=3]; 3316[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 1232[label="",style="solid", color="blue", weight=3]; 3317[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 1233[label="",style="solid", color="blue", weight=3]; 3318[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 1234[label="",style="solid", color="blue", weight=3]; 3319[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 1235[label="",style="solid", color="blue", weight=3]; 3320[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 1236[label="",style="solid", color="blue", weight=3]; 1161 -> 529[label="",style="dashed", color="red", weight=0]; 1161[label="vyw50 == vyw300",fontsize=16,color="magenta"];1161 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1161 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1162 -> 530[label="",style="dashed", color="red", weight=0]; 1162[label="vyw50 == vyw300",fontsize=16,color="magenta"];1162 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1162 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1163 -> 531[label="",style="dashed", color="red", weight=0]; 1163[label="vyw50 == vyw300",fontsize=16,color="magenta"];1163 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1163 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1164 -> 532[label="",style="dashed", color="red", weight=0]; 1164[label="vyw50 == vyw300",fontsize=16,color="magenta"];1164 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1164 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1165 -> 533[label="",style="dashed", color="red", weight=0]; 1165[label="vyw50 == vyw300",fontsize=16,color="magenta"];1165 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1165 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1166 -> 534[label="",style="dashed", color="red", weight=0]; 1166[label="vyw50 == vyw300",fontsize=16,color="magenta"];1166 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1167 -> 535[label="",style="dashed", color="red", weight=0]; 1167[label="vyw50 == vyw300",fontsize=16,color="magenta"];1167 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1167 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1168 -> 536[label="",style="dashed", color="red", weight=0]; 1168[label="vyw50 == vyw300",fontsize=16,color="magenta"];1168 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1169 -> 537[label="",style="dashed", color="red", weight=0]; 1169[label="vyw50 == vyw300",fontsize=16,color="magenta"];1169 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1170 -> 538[label="",style="dashed", color="red", weight=0]; 1170[label="vyw50 == vyw300",fontsize=16,color="magenta"];1170 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1171 -> 539[label="",style="dashed", color="red", weight=0]; 1171[label="vyw50 == vyw300",fontsize=16,color="magenta"];1171 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1172 -> 540[label="",style="dashed", color="red", weight=0]; 1172[label="vyw50 == vyw300",fontsize=16,color="magenta"];1172 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1173 -> 541[label="",style="dashed", color="red", weight=0]; 1173[label="vyw50 == vyw300",fontsize=16,color="magenta"];1173 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1173 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1174 -> 542[label="",style="dashed", color="red", weight=0]; 1174[label="vyw50 == vyw300",fontsize=16,color="magenta"];1174 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1174 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1175[label="False && vyw150",fontsize=16,color="black",shape="box"];1175 -> 1265[label="",style="solid", color="black", weight=3]; 1176[label="True && vyw150",fontsize=16,color="black",shape="box"];1176 -> 1266[label="",style="solid", color="black", weight=3]; 1177[label="compare1 (vyw105,vyw106,vyw107) (vyw108,vyw109,vyw110) ((vyw105,vyw106,vyw107) <= (vyw108,vyw109,vyw110))",fontsize=16,color="black",shape="box"];1177 -> 1267[label="",style="solid", color="black", weight=3]; 1178[label="EQ",fontsize=16,color="green",shape="box"];1179 -> 529[label="",style="dashed", color="red", weight=0]; 1179[label="vyw51 == vyw301",fontsize=16,color="magenta"];1179 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1180 -> 530[label="",style="dashed", color="red", weight=0]; 1180[label="vyw51 == vyw301",fontsize=16,color="magenta"];1180 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1181 -> 531[label="",style="dashed", color="red", weight=0]; 1181[label="vyw51 == vyw301",fontsize=16,color="magenta"];1181 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1182 -> 532[label="",style="dashed", color="red", weight=0]; 1182[label="vyw51 == vyw301",fontsize=16,color="magenta"];1182 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1183 -> 533[label="",style="dashed", color="red", weight=0]; 1183[label="vyw51 == vyw301",fontsize=16,color="magenta"];1183 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1184 -> 534[label="",style="dashed", color="red", weight=0]; 1184[label="vyw51 == vyw301",fontsize=16,color="magenta"];1184 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1185 -> 535[label="",style="dashed", color="red", weight=0]; 1185[label="vyw51 == vyw301",fontsize=16,color="magenta"];1185 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1186 -> 536[label="",style="dashed", color="red", weight=0]; 1186[label="vyw51 == vyw301",fontsize=16,color="magenta"];1186 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1187 -> 537[label="",style="dashed", color="red", weight=0]; 1187[label="vyw51 == vyw301",fontsize=16,color="magenta"];1187 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1188 -> 538[label="",style="dashed", color="red", weight=0]; 1188[label="vyw51 == vyw301",fontsize=16,color="magenta"];1188 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1189 -> 539[label="",style="dashed", color="red", weight=0]; 1189[label="vyw51 == vyw301",fontsize=16,color="magenta"];1189 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1190 -> 540[label="",style="dashed", color="red", weight=0]; 1190[label="vyw51 == vyw301",fontsize=16,color="magenta"];1190 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1191 -> 541[label="",style="dashed", color="red", weight=0]; 1191[label="vyw51 == vyw301",fontsize=16,color="magenta"];1191 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1192 -> 542[label="",style="dashed", color="red", weight=0]; 1192[label="vyw51 == vyw301",fontsize=16,color="magenta"];1192 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1193 -> 529[label="",style="dashed", color="red", weight=0]; 1193[label="vyw50 == vyw300",fontsize=16,color="magenta"];1193 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1194 -> 530[label="",style="dashed", color="red", weight=0]; 1194[label="vyw50 == vyw300",fontsize=16,color="magenta"];1194 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1195 -> 531[label="",style="dashed", color="red", weight=0]; 1195[label="vyw50 == vyw300",fontsize=16,color="magenta"];1195 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1196 -> 532[label="",style="dashed", color="red", weight=0]; 1196[label="vyw50 == vyw300",fontsize=16,color="magenta"];1196 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1197 -> 533[label="",style="dashed", color="red", weight=0]; 1197[label="vyw50 == vyw300",fontsize=16,color="magenta"];1197 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1198 -> 534[label="",style="dashed", color="red", weight=0]; 1198[label="vyw50 == vyw300",fontsize=16,color="magenta"];1198 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1199 -> 535[label="",style="dashed", color="red", weight=0]; 1199[label="vyw50 == vyw300",fontsize=16,color="magenta"];1199 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1200 -> 536[label="",style="dashed", color="red", weight=0]; 1200[label="vyw50 == vyw300",fontsize=16,color="magenta"];1200 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1201 -> 537[label="",style="dashed", color="red", weight=0]; 1201[label="vyw50 == vyw300",fontsize=16,color="magenta"];1201 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1202 -> 538[label="",style="dashed", color="red", weight=0]; 1202[label="vyw50 == vyw300",fontsize=16,color="magenta"];1202 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1203 -> 539[label="",style="dashed", color="red", weight=0]; 1203[label="vyw50 == vyw300",fontsize=16,color="magenta"];1203 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1204 -> 540[label="",style="dashed", color="red", weight=0]; 1204[label="vyw50 == vyw300",fontsize=16,color="magenta"];1204 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1205 -> 541[label="",style="dashed", color="red", weight=0]; 1205[label="vyw50 == vyw300",fontsize=16,color="magenta"];1205 -> 1320[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1206 -> 542[label="",style="dashed", color="red", weight=0]; 1206[label="vyw50 == vyw300",fontsize=16,color="magenta"];1206 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1020[label="compare1 (vyw118,vyw119) (vyw120,vyw121) ((vyw118,vyw119) <= (vyw120,vyw121))",fontsize=16,color="black",shape="box"];1020 -> 1063[label="",style="solid", color="black", weight=3]; 1021[label="EQ",fontsize=16,color="green",shape="box"];821[label="LT",fontsize=16,color="green",shape="box"];822[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];822 -> 970[label="",style="solid", color="black", weight=3]; 823[label="LT",fontsize=16,color="green",shape="box"];824[label="compare0 (Just vyw50) Nothing otherwise",fontsize=16,color="black",shape="box"];824 -> 971[label="",style="solid", color="black", weight=3]; 825[label="vyw300",fontsize=16,color="green",shape="box"];826[label="vyw50",fontsize=16,color="green",shape="box"];827[label="vyw300",fontsize=16,color="green",shape="box"];828[label="vyw50",fontsize=16,color="green",shape="box"];829[label="vyw300",fontsize=16,color="green",shape="box"];830[label="vyw50",fontsize=16,color="green",shape="box"];831[label="vyw300",fontsize=16,color="green",shape="box"];832[label="vyw50",fontsize=16,color="green",shape="box"];833[label="vyw300",fontsize=16,color="green",shape="box"];834[label="vyw50",fontsize=16,color="green",shape="box"];835[label="vyw300",fontsize=16,color="green",shape="box"];836[label="vyw50",fontsize=16,color="green",shape="box"];837[label="vyw300",fontsize=16,color="green",shape="box"];838[label="vyw50",fontsize=16,color="green",shape="box"];839[label="vyw300",fontsize=16,color="green",shape="box"];840[label="vyw50",fontsize=16,color="green",shape="box"];841[label="vyw300",fontsize=16,color="green",shape="box"];842[label="vyw50",fontsize=16,color="green",shape="box"];843[label="vyw300",fontsize=16,color="green",shape="box"];844[label="vyw50",fontsize=16,color="green",shape="box"];845[label="vyw300",fontsize=16,color="green",shape="box"];846[label="vyw50",fontsize=16,color="green",shape="box"];847[label="vyw300",fontsize=16,color="green",shape="box"];848[label="vyw50",fontsize=16,color="green",shape="box"];849[label="vyw300",fontsize=16,color="green",shape="box"];850[label="vyw50",fontsize=16,color="green",shape="box"];851[label="vyw300",fontsize=16,color="green",shape="box"];852[label="vyw50",fontsize=16,color="green",shape="box"];853 -> 1326[label="",style="dashed", color="red", weight=0]; 853[label="compare1 (Just vyw94) (Just vyw95) (Just vyw94 <= Just vyw95)",fontsize=16,color="magenta"];853 -> 1327[label="",style="dashed", color="magenta", weight=3]; 853 -> 1328[label="",style="dashed", color="magenta", weight=3]; 853 -> 1329[label="",style="dashed", color="magenta", weight=3]; 854[label="EQ",fontsize=16,color="green",shape="box"];855[label="vyw300",fontsize=16,color="green",shape="box"];856[label="Pos vyw510",fontsize=16,color="green",shape="box"];857[label="Pos vyw3010",fontsize=16,color="green",shape="box"];858[label="vyw50",fontsize=16,color="green",shape="box"];859[label="vyw300",fontsize=16,color="green",shape="box"];860[label="Neg vyw510",fontsize=16,color="green",shape="box"];861[label="Pos vyw3010",fontsize=16,color="green",shape="box"];862[label="vyw50",fontsize=16,color="green",shape="box"];863[label="vyw300",fontsize=16,color="green",shape="box"];864[label="Pos vyw510",fontsize=16,color="green",shape="box"];865[label="Neg vyw3010",fontsize=16,color="green",shape="box"];866[label="vyw50",fontsize=16,color="green",shape="box"];867[label="vyw300",fontsize=16,color="green",shape="box"];868[label="Neg vyw510",fontsize=16,color="green",shape="box"];869[label="Neg vyw3010",fontsize=16,color="green",shape="box"];870[label="vyw50",fontsize=16,color="green",shape="box"];871[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];871 -> 973[label="",style="solid", color="black", weight=3]; 872[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];872 -> 974[label="",style="solid", color="black", weight=3]; 873[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];873 -> 975[label="",style="solid", color="black", weight=3]; 874[label="primEqChar (Char vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3321[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];874 -> 3321[label="",style="solid", color="burlywood", weight=9]; 3321 -> 976[label="",style="solid", color="burlywood", weight=3]; 875[label="(vyw500,vyw501) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];875 -> 977[label="",style="solid", color="black", weight=3]; 876[label="Integer vyw500 == Integer vyw3000",fontsize=16,color="black",shape="box"];876 -> 978[label="",style="solid", color="black", weight=3]; 877[label="vyw500 :% vyw501 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];877 -> 979[label="",style="solid", color="black", weight=3]; 878[label="vyw500 : vyw501 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];878 -> 980[label="",style="solid", color="black", weight=3]; 879[label="vyw500 : vyw501 == []",fontsize=16,color="black",shape="box"];879 -> 981[label="",style="solid", color="black", weight=3]; 880[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];880 -> 982[label="",style="solid", color="black", weight=3]; 881[label="[] == []",fontsize=16,color="black",shape="box"];881 -> 983[label="",style="solid", color="black", weight=3]; 882[label="primEqDouble (Double vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];3322[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];882 -> 3322[label="",style="solid", color="burlywood", weight=9]; 3322 -> 984[label="",style="solid", color="burlywood", weight=3]; 883[label="False == False",fontsize=16,color="black",shape="box"];883 -> 985[label="",style="solid", color="black", weight=3]; 884[label="False == True",fontsize=16,color="black",shape="box"];884 -> 986[label="",style="solid", color="black", weight=3]; 885[label="True == False",fontsize=16,color="black",shape="box"];885 -> 987[label="",style="solid", color="black", weight=3]; 886[label="True == True",fontsize=16,color="black",shape="box"];886 -> 988[label="",style="solid", color="black", weight=3]; 887[label="primEqFloat (Float vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];3323[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];887 -> 3323[label="",style="solid", color="burlywood", weight=9]; 3323 -> 989[label="",style="solid", color="burlywood", weight=3]; 888[label="Left vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];888 -> 990[label="",style="solid", color="black", weight=3]; 889[label="Left vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];889 -> 991[label="",style="solid", color="black", weight=3]; 890[label="Right vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];890 -> 992[label="",style="solid", color="black", weight=3]; 891[label="Right vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];891 -> 993[label="",style="solid", color="black", weight=3]; 892[label="primEqInt (Pos vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3324[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];892 -> 3324[label="",style="solid", color="burlywood", weight=9]; 3324 -> 994[label="",style="solid", color="burlywood", weight=3]; 3325[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];892 -> 3325[label="",style="solid", color="burlywood", weight=9]; 3325 -> 995[label="",style="solid", color="burlywood", weight=3]; 893[label="primEqInt (Neg vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3326[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];893 -> 3326[label="",style="solid", color="burlywood", weight=9]; 3326 -> 996[label="",style="solid", color="burlywood", weight=3]; 3327[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];893 -> 3327[label="",style="solid", color="burlywood", weight=9]; 3327 -> 997[label="",style="solid", color="burlywood", weight=3]; 894[label="LT == LT",fontsize=16,color="black",shape="box"];894 -> 998[label="",style="solid", color="black", weight=3]; 895[label="LT == EQ",fontsize=16,color="black",shape="box"];895 -> 999[label="",style="solid", color="black", weight=3]; 896[label="LT == GT",fontsize=16,color="black",shape="box"];896 -> 1000[label="",style="solid", color="black", weight=3]; 897[label="EQ == LT",fontsize=16,color="black",shape="box"];897 -> 1001[label="",style="solid", color="black", weight=3]; 898[label="EQ == EQ",fontsize=16,color="black",shape="box"];898 -> 1002[label="",style="solid", color="black", weight=3]; 899[label="EQ == GT",fontsize=16,color="black",shape="box"];899 -> 1003[label="",style="solid", color="black", weight=3]; 900[label="GT == LT",fontsize=16,color="black",shape="box"];900 -> 1004[label="",style="solid", color="black", weight=3]; 901[label="GT == EQ",fontsize=16,color="black",shape="box"];901 -> 1005[label="",style="solid", color="black", weight=3]; 902[label="GT == GT",fontsize=16,color="black",shape="box"];902 -> 1006[label="",style="solid", color="black", weight=3]; 903[label="(vyw500,vyw501,vyw502) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];903 -> 1007[label="",style="solid", color="black", weight=3]; 904[label="() == ()",fontsize=16,color="black",shape="box"];904 -> 1008[label="",style="solid", color="black", weight=3]; 905[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];905 -> 1009[label="",style="solid", color="black", weight=3]; 906[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];906 -> 1010[label="",style="solid", color="black", weight=3]; 907[label="Just vyw500 == Nothing",fontsize=16,color="black",shape="box"];907 -> 1011[label="",style="solid", color="black", weight=3]; 908[label="Just vyw500 == Just vyw3000",fontsize=16,color="black",shape="box"];908 -> 1012[label="",style="solid", color="black", weight=3]; 1014[label="vyw50",fontsize=16,color="green",shape="box"];1015[label="Left vyw49 <= Left vyw50",fontsize=16,color="black",shape="box"];1015 -> 1052[label="",style="solid", color="black", weight=3]; 1016[label="vyw49",fontsize=16,color="green",shape="box"];1013[label="compare1 (Left vyw134) (Left vyw135) vyw136",fontsize=16,color="burlywood",shape="triangle"];3328[label="vyw136/False",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3328[label="",style="solid", color="burlywood", weight=9]; 3328 -> 1053[label="",style="solid", color="burlywood", weight=3]; 3329[label="vyw136/True",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3329[label="",style="solid", color="burlywood", weight=9]; 3329 -> 1054[label="",style="solid", color="burlywood", weight=3]; 910[label="compare0 (Right vyw50) (Left vyw300) True",fontsize=16,color="black",shape="box"];910 -> 1055[label="",style="solid", color="black", weight=3]; 1057[label="Right vyw56 <= Right vyw57",fontsize=16,color="black",shape="box"];1057 -> 1064[label="",style="solid", color="black", weight=3]; 1058[label="vyw56",fontsize=16,color="green",shape="box"];1059[label="vyw57",fontsize=16,color="green",shape="box"];1056[label="compare1 (Right vyw141) (Right vyw142) vyw143",fontsize=16,color="burlywood",shape="triangle"];3330[label="vyw143/False",fontsize=10,color="white",style="solid",shape="box"];1056 -> 3330[label="",style="solid", color="burlywood", weight=9]; 3330 -> 1065[label="",style="solid", color="burlywood", weight=3]; 3331[label="vyw143/True",fontsize=10,color="white",style="solid",shape="box"];1056 -> 3331[label="",style="solid", color="burlywood", weight=9]; 3331 -> 1066[label="",style="solid", color="burlywood", weight=3]; 912[label="Pos (primMulNat vyw3000 vyw510)",fontsize=16,color="green",shape="box"];912 -> 1067[label="",style="dashed", color="green", weight=3]; 913[label="Neg (primMulNat vyw3000 vyw510)",fontsize=16,color="green",shape="box"];913 -> 1068[label="",style="dashed", color="green", weight=3]; 914[label="Neg (primMulNat vyw3000 vyw510)",fontsize=16,color="green",shape="box"];914 -> 1069[label="",style="dashed", color="green", weight=3]; 915[label="Pos (primMulNat vyw3000 vyw510)",fontsize=16,color="green",shape="box"];915 -> 1070[label="",style="dashed", color="green", weight=3]; 916 -> 464[label="",style="dashed", color="red", weight=0]; 916[label="primMulInt vyw3000 vyw510",fontsize=16,color="magenta"];916 -> 1071[label="",style="dashed", color="magenta", weight=3]; 916 -> 1072[label="",style="dashed", color="magenta", weight=3]; 1209 -> 529[label="",style="dashed", color="red", weight=0]; 1209[label="vyw52 == vyw302",fontsize=16,color="magenta"];1209 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1210 -> 530[label="",style="dashed", color="red", weight=0]; 1210[label="vyw52 == vyw302",fontsize=16,color="magenta"];1210 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1211 -> 531[label="",style="dashed", color="red", weight=0]; 1211[label="vyw52 == vyw302",fontsize=16,color="magenta"];1211 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1212 -> 532[label="",style="dashed", color="red", weight=0]; 1212[label="vyw52 == vyw302",fontsize=16,color="magenta"];1212 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1213 -> 533[label="",style="dashed", color="red", weight=0]; 1213[label="vyw52 == vyw302",fontsize=16,color="magenta"];1213 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1214 -> 534[label="",style="dashed", color="red", weight=0]; 1214[label="vyw52 == vyw302",fontsize=16,color="magenta"];1214 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1215 -> 535[label="",style="dashed", color="red", weight=0]; 1215[label="vyw52 == vyw302",fontsize=16,color="magenta"];1215 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1216 -> 536[label="",style="dashed", color="red", weight=0]; 1216[label="vyw52 == vyw302",fontsize=16,color="magenta"];1216 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1217 -> 537[label="",style="dashed", color="red", weight=0]; 1217[label="vyw52 == vyw302",fontsize=16,color="magenta"];1217 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1218 -> 538[label="",style="dashed", color="red", weight=0]; 1218[label="vyw52 == vyw302",fontsize=16,color="magenta"];1218 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1219 -> 539[label="",style="dashed", color="red", weight=0]; 1219[label="vyw52 == vyw302",fontsize=16,color="magenta"];1219 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1220 -> 540[label="",style="dashed", color="red", weight=0]; 1220[label="vyw52 == vyw302",fontsize=16,color="magenta"];1220 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1221 -> 541[label="",style="dashed", color="red", weight=0]; 1221[label="vyw52 == vyw302",fontsize=16,color="magenta"];1221 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1222 -> 542[label="",style="dashed", color="red", weight=0]; 1222[label="vyw52 == vyw302",fontsize=16,color="magenta"];1222 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1223 -> 529[label="",style="dashed", color="red", weight=0]; 1223[label="vyw51 == vyw301",fontsize=16,color="magenta"];1223 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1224 -> 530[label="",style="dashed", color="red", weight=0]; 1224[label="vyw51 == vyw301",fontsize=16,color="magenta"];1224 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1225 -> 531[label="",style="dashed", color="red", weight=0]; 1225[label="vyw51 == vyw301",fontsize=16,color="magenta"];1225 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1226 -> 532[label="",style="dashed", color="red", weight=0]; 1226[label="vyw51 == vyw301",fontsize=16,color="magenta"];1226 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1227 -> 533[label="",style="dashed", color="red", weight=0]; 1227[label="vyw51 == vyw301",fontsize=16,color="magenta"];1227 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1228 -> 534[label="",style="dashed", color="red", weight=0]; 1228[label="vyw51 == vyw301",fontsize=16,color="magenta"];1228 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1229 -> 535[label="",style="dashed", color="red", weight=0]; 1229[label="vyw51 == vyw301",fontsize=16,color="magenta"];1229 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1230 -> 536[label="",style="dashed", color="red", weight=0]; 1230[label="vyw51 == vyw301",fontsize=16,color="magenta"];1230 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1231 -> 537[label="",style="dashed", color="red", weight=0]; 1231[label="vyw51 == vyw301",fontsize=16,color="magenta"];1231 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1232 -> 538[label="",style="dashed", color="red", weight=0]; 1232[label="vyw51 == vyw301",fontsize=16,color="magenta"];1232 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1233 -> 539[label="",style="dashed", color="red", weight=0]; 1233[label="vyw51 == vyw301",fontsize=16,color="magenta"];1233 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1234 -> 540[label="",style="dashed", color="red", weight=0]; 1234[label="vyw51 == vyw301",fontsize=16,color="magenta"];1234 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1235 -> 541[label="",style="dashed", color="red", weight=0]; 1235[label="vyw51 == vyw301",fontsize=16,color="magenta"];1235 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1236 -> 542[label="",style="dashed", color="red", weight=0]; 1236[label="vyw51 == vyw301",fontsize=16,color="magenta"];1236 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1237[label="vyw300",fontsize=16,color="green",shape="box"];1238[label="vyw50",fontsize=16,color="green",shape="box"];1239[label="vyw300",fontsize=16,color="green",shape="box"];1240[label="vyw50",fontsize=16,color="green",shape="box"];1241[label="vyw300",fontsize=16,color="green",shape="box"];1242[label="vyw50",fontsize=16,color="green",shape="box"];1243[label="vyw300",fontsize=16,color="green",shape="box"];1244[label="vyw50",fontsize=16,color="green",shape="box"];1245[label="vyw300",fontsize=16,color="green",shape="box"];1246[label="vyw50",fontsize=16,color="green",shape="box"];1247[label="vyw300",fontsize=16,color="green",shape="box"];1248[label="vyw50",fontsize=16,color="green",shape="box"];1249[label="vyw300",fontsize=16,color="green",shape="box"];1250[label="vyw50",fontsize=16,color="green",shape="box"];1251[label="vyw300",fontsize=16,color="green",shape="box"];1252[label="vyw50",fontsize=16,color="green",shape="box"];1253[label="vyw300",fontsize=16,color="green",shape="box"];1254[label="vyw50",fontsize=16,color="green",shape="box"];1255[label="vyw300",fontsize=16,color="green",shape="box"];1256[label="vyw50",fontsize=16,color="green",shape="box"];1257[label="vyw300",fontsize=16,color="green",shape="box"];1258[label="vyw50",fontsize=16,color="green",shape="box"];1259[label="vyw300",fontsize=16,color="green",shape="box"];1260[label="vyw50",fontsize=16,color="green",shape="box"];1261[label="vyw300",fontsize=16,color="green",shape="box"];1262[label="vyw50",fontsize=16,color="green",shape="box"];1263[label="vyw300",fontsize=16,color="green",shape="box"];1264[label="vyw50",fontsize=16,color="green",shape="box"];1265[label="False",fontsize=16,color="green",shape="box"];1266[label="vyw150",fontsize=16,color="green",shape="box"];1267 -> 1489[label="",style="dashed", color="red", weight=0]; 1267[label="compare1 (vyw105,vyw106,vyw107) (vyw108,vyw109,vyw110) (vyw105 < vyw108 || vyw105 == vyw108 && (vyw106 < vyw109 || vyw106 == vyw109 && vyw107 <= vyw110))",fontsize=16,color="magenta"];1267 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1268[label="vyw301",fontsize=16,color="green",shape="box"];1269[label="vyw51",fontsize=16,color="green",shape="box"];1270[label="vyw301",fontsize=16,color="green",shape="box"];1271[label="vyw51",fontsize=16,color="green",shape="box"];1272[label="vyw301",fontsize=16,color="green",shape="box"];1273[label="vyw51",fontsize=16,color="green",shape="box"];1274[label="vyw301",fontsize=16,color="green",shape="box"];1275[label="vyw51",fontsize=16,color="green",shape="box"];1276[label="vyw301",fontsize=16,color="green",shape="box"];1277[label="vyw51",fontsize=16,color="green",shape="box"];1278[label="vyw301",fontsize=16,color="green",shape="box"];1279[label="vyw51",fontsize=16,color="green",shape="box"];1280[label="vyw301",fontsize=16,color="green",shape="box"];1281[label="vyw51",fontsize=16,color="green",shape="box"];1282[label="vyw301",fontsize=16,color="green",shape="box"];1283[label="vyw51",fontsize=16,color="green",shape="box"];1284[label="vyw301",fontsize=16,color="green",shape="box"];1285[label="vyw51",fontsize=16,color="green",shape="box"];1286[label="vyw301",fontsize=16,color="green",shape="box"];1287[label="vyw51",fontsize=16,color="green",shape="box"];1288[label="vyw301",fontsize=16,color="green",shape="box"];1289[label="vyw51",fontsize=16,color="green",shape="box"];1290[label="vyw301",fontsize=16,color="green",shape="box"];1291[label="vyw51",fontsize=16,color="green",shape="box"];1292[label="vyw301",fontsize=16,color="green",shape="box"];1293[label="vyw51",fontsize=16,color="green",shape="box"];1294[label="vyw301",fontsize=16,color="green",shape="box"];1295[label="vyw51",fontsize=16,color="green",shape="box"];1296[label="vyw300",fontsize=16,color="green",shape="box"];1297[label="vyw50",fontsize=16,color="green",shape="box"];1298[label="vyw300",fontsize=16,color="green",shape="box"];1299[label="vyw50",fontsize=16,color="green",shape="box"];1300[label="vyw300",fontsize=16,color="green",shape="box"];1301[label="vyw50",fontsize=16,color="green",shape="box"];1302[label="vyw300",fontsize=16,color="green",shape="box"];1303[label="vyw50",fontsize=16,color="green",shape="box"];1304[label="vyw300",fontsize=16,color="green",shape="box"];1305[label="vyw50",fontsize=16,color="green",shape="box"];1306[label="vyw300",fontsize=16,color="green",shape="box"];1307[label="vyw50",fontsize=16,color="green",shape="box"];1308[label="vyw300",fontsize=16,color="green",shape="box"];1309[label="vyw50",fontsize=16,color="green",shape="box"];1310[label="vyw300",fontsize=16,color="green",shape="box"];1311[label="vyw50",fontsize=16,color="green",shape="box"];1312[label="vyw300",fontsize=16,color="green",shape="box"];1313[label="vyw50",fontsize=16,color="green",shape="box"];1314[label="vyw300",fontsize=16,color="green",shape="box"];1315[label="vyw50",fontsize=16,color="green",shape="box"];1316[label="vyw300",fontsize=16,color="green",shape="box"];1317[label="vyw50",fontsize=16,color="green",shape="box"];1318[label="vyw300",fontsize=16,color="green",shape="box"];1319[label="vyw50",fontsize=16,color="green",shape="box"];1320[label="vyw300",fontsize=16,color="green",shape="box"];1321[label="vyw50",fontsize=16,color="green",shape="box"];1322[label="vyw300",fontsize=16,color="green",shape="box"];1323[label="vyw50",fontsize=16,color="green",shape="box"];1063 -> 1526[label="",style="dashed", color="red", weight=0]; 1063[label="compare1 (vyw118,vyw119) (vyw120,vyw121) (vyw118 < vyw120 || vyw118 == vyw120 && vyw119 <= vyw121)",fontsize=16,color="magenta"];1063 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1532[label="",style="dashed", color="magenta", weight=3]; 970[label="compare0 True False True",fontsize=16,color="black",shape="box"];970 -> 1324[label="",style="solid", color="black", weight=3]; 971[label="compare0 (Just vyw50) Nothing True",fontsize=16,color="black",shape="box"];971 -> 1325[label="",style="solid", color="black", weight=3]; 1327[label="vyw95",fontsize=16,color="green",shape="box"];1328[label="Just vyw94 <= Just vyw95",fontsize=16,color="black",shape="box"];1328 -> 1391[label="",style="solid", color="black", weight=3]; 1329[label="vyw94",fontsize=16,color="green",shape="box"];1326[label="compare1 (Just vyw156) (Just vyw157) vyw158",fontsize=16,color="burlywood",shape="triangle"];3332[label="vyw158/False",fontsize=10,color="white",style="solid",shape="box"];1326 -> 3332[label="",style="solid", color="burlywood", weight=9]; 3332 -> 1392[label="",style="solid", color="burlywood", weight=3]; 3333[label="vyw158/True",fontsize=10,color="white",style="solid",shape="box"];1326 -> 3333[label="",style="solid", color="burlywood", weight=9]; 3333 -> 1393[label="",style="solid", color="burlywood", weight=3]; 973[label="GT",fontsize=16,color="green",shape="box"];974[label="GT",fontsize=16,color="green",shape="box"];975[label="GT",fontsize=16,color="green",shape="box"];976[label="primEqChar (Char vyw500) (Char vyw3000)",fontsize=16,color="black",shape="box"];976 -> 1394[label="",style="solid", color="black", weight=3]; 977 -> 1140[label="",style="dashed", color="red", weight=0]; 977[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];977 -> 1149[label="",style="dashed", color="magenta", weight=3]; 977 -> 1150[label="",style="dashed", color="magenta", weight=3]; 978 -> 683[label="",style="dashed", color="red", weight=0]; 978[label="primEqInt vyw500 vyw3000",fontsize=16,color="magenta"];978 -> 1395[label="",style="dashed", color="magenta", weight=3]; 978 -> 1396[label="",style="dashed", color="magenta", weight=3]; 979 -> 1140[label="",style="dashed", color="red", weight=0]; 979[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];979 -> 1151[label="",style="dashed", color="magenta", weight=3]; 979 -> 1152[label="",style="dashed", color="magenta", weight=3]; 980 -> 1140[label="",style="dashed", color="red", weight=0]; 980[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];980 -> 1153[label="",style="dashed", color="magenta", weight=3]; 980 -> 1154[label="",style="dashed", color="magenta", weight=3]; 981[label="False",fontsize=16,color="green",shape="box"];982[label="False",fontsize=16,color="green",shape="box"];983[label="True",fontsize=16,color="green",shape="box"];984[label="primEqDouble (Double vyw500 vyw501) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];984 -> 1397[label="",style="solid", color="black", weight=3]; 985[label="True",fontsize=16,color="green",shape="box"];986[label="False",fontsize=16,color="green",shape="box"];987[label="False",fontsize=16,color="green",shape="box"];988[label="True",fontsize=16,color="green",shape="box"];989[label="primEqFloat (Float vyw500 vyw501) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];989 -> 1398[label="",style="solid", color="black", weight=3]; 990[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3334[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 1399[label="",style="solid", color="blue", weight=3]; 3335[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 1400[label="",style="solid", color="blue", weight=3]; 3336[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 1401[label="",style="solid", color="blue", weight=3]; 3337[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 1402[label="",style="solid", color="blue", weight=3]; 3338[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 1403[label="",style="solid", color="blue", weight=3]; 3339[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 1404[label="",style="solid", color="blue", weight=3]; 3340[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 1405[label="",style="solid", color="blue", weight=3]; 3341[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 1406[label="",style="solid", color="blue", weight=3]; 3342[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 1407[label="",style="solid", color="blue", weight=3]; 3343[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 1408[label="",style="solid", color="blue", weight=3]; 3344[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 1409[label="",style="solid", color="blue", weight=3]; 3345[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 1410[label="",style="solid", color="blue", weight=3]; 3346[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 1411[label="",style="solid", color="blue", weight=3]; 3347[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1412[label="",style="solid", color="blue", weight=3]; 991[label="False",fontsize=16,color="green",shape="box"];992[label="False",fontsize=16,color="green",shape="box"];993[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3348[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1413[label="",style="solid", color="blue", weight=3]; 3349[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1414[label="",style="solid", color="blue", weight=3]; 3350[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1415[label="",style="solid", color="blue", weight=3]; 3351[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1416[label="",style="solid", color="blue", weight=3]; 3352[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1417[label="",style="solid", color="blue", weight=3]; 3353[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1418[label="",style="solid", color="blue", weight=3]; 3354[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1419[label="",style="solid", color="blue", weight=3]; 3355[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1420[label="",style="solid", color="blue", weight=3]; 3356[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1421[label="",style="solid", color="blue", weight=3]; 3357[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1422[label="",style="solid", color="blue", weight=3]; 3358[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1423[label="",style="solid", color="blue", weight=3]; 3359[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1424[label="",style="solid", color="blue", weight=3]; 3360[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1425[label="",style="solid", color="blue", weight=3]; 3361[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];993 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 1426[label="",style="solid", color="blue", weight=3]; 994[label="primEqInt (Pos (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];3362[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];994 -> 3362[label="",style="solid", color="burlywood", weight=9]; 3362 -> 1427[label="",style="solid", color="burlywood", weight=3]; 3363[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];994 -> 3363[label="",style="solid", color="burlywood", weight=9]; 3363 -> 1428[label="",style="solid", color="burlywood", weight=3]; 995[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3364[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];995 -> 3364[label="",style="solid", color="burlywood", weight=9]; 3364 -> 1429[label="",style="solid", color="burlywood", weight=3]; 3365[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];995 -> 3365[label="",style="solid", color="burlywood", weight=9]; 3365 -> 1430[label="",style="solid", color="burlywood", weight=3]; 996[label="primEqInt (Neg (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];3366[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];996 -> 3366[label="",style="solid", color="burlywood", weight=9]; 3366 -> 1431[label="",style="solid", color="burlywood", weight=3]; 3367[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];996 -> 3367[label="",style="solid", color="burlywood", weight=9]; 3367 -> 1432[label="",style="solid", color="burlywood", weight=3]; 997[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3368[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];997 -> 3368[label="",style="solid", color="burlywood", weight=9]; 3368 -> 1433[label="",style="solid", color="burlywood", weight=3]; 3369[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];997 -> 3369[label="",style="solid", color="burlywood", weight=9]; 3369 -> 1434[label="",style="solid", color="burlywood", weight=3]; 998[label="True",fontsize=16,color="green",shape="box"];999[label="False",fontsize=16,color="green",shape="box"];1000[label="False",fontsize=16,color="green",shape="box"];1001[label="False",fontsize=16,color="green",shape="box"];1002[label="True",fontsize=16,color="green",shape="box"];1003[label="False",fontsize=16,color="green",shape="box"];1004[label="False",fontsize=16,color="green",shape="box"];1005[label="False",fontsize=16,color="green",shape="box"];1006[label="True",fontsize=16,color="green",shape="box"];1007 -> 1140[label="",style="dashed", color="red", weight=0]; 1007[label="vyw500 == vyw3000 && vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];1007 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1008[label="True",fontsize=16,color="green",shape="box"];1009[label="True",fontsize=16,color="green",shape="box"];1010[label="False",fontsize=16,color="green",shape="box"];1011[label="False",fontsize=16,color="green",shape="box"];1012[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3370[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1435[label="",style="solid", color="blue", weight=3]; 3371[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1436[label="",style="solid", color="blue", weight=3]; 3372[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1437[label="",style="solid", color="blue", weight=3]; 3373[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1438[label="",style="solid", color="blue", weight=3]; 3374[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1439[label="",style="solid", color="blue", weight=3]; 3375[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1440[label="",style="solid", color="blue", weight=3]; 3376[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1441[label="",style="solid", color="blue", weight=3]; 3377[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1442[label="",style="solid", color="blue", weight=3]; 3378[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 1443[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 1444[label="",style="solid", color="blue", weight=3]; 3380[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1445[label="",style="solid", color="blue", weight=3]; 3381[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1446[label="",style="solid", color="blue", weight=3]; 3382[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1447[label="",style="solid", color="blue", weight=3]; 3383[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 1448[label="",style="solid", color="blue", weight=3]; 1052[label="vyw49 <= vyw50",fontsize=16,color="blue",shape="box"];3384[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 1449[label="",style="solid", color="blue", weight=3]; 3385[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 1450[label="",style="solid", color="blue", weight=3]; 3386[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 1451[label="",style="solid", color="blue", weight=3]; 3387[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 1452[label="",style="solid", color="blue", weight=3]; 3388[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 1453[label="",style="solid", color="blue", weight=3]; 3389[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 1454[label="",style="solid", color="blue", weight=3]; 3390[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 1455[label="",style="solid", color="blue", weight=3]; 3391[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 1456[label="",style="solid", color="blue", weight=3]; 3392[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 1457[label="",style="solid", color="blue", weight=3]; 3393[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 1458[label="",style="solid", color="blue", weight=3]; 3394[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 1459[label="",style="solid", color="blue", weight=3]; 3395[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 1460[label="",style="solid", color="blue", weight=3]; 3396[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 1461[label="",style="solid", color="blue", weight=3]; 3397[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 1462[label="",style="solid", color="blue", weight=3]; 1053[label="compare1 (Left vyw134) (Left vyw135) False",fontsize=16,color="black",shape="box"];1053 -> 1463[label="",style="solid", color="black", weight=3]; 1054[label="compare1 (Left vyw134) (Left vyw135) True",fontsize=16,color="black",shape="box"];1054 -> 1464[label="",style="solid", color="black", weight=3]; 1055[label="GT",fontsize=16,color="green",shape="box"];1064[label="vyw56 <= vyw57",fontsize=16,color="blue",shape="box"];3398[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 1465[label="",style="solid", color="blue", weight=3]; 3399[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 1466[label="",style="solid", color="blue", weight=3]; 3400[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 1467[label="",style="solid", color="blue", weight=3]; 3401[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 1468[label="",style="solid", color="blue", weight=3]; 3402[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 1469[label="",style="solid", color="blue", weight=3]; 3403[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 1470[label="",style="solid", color="blue", weight=3]; 3404[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 1471[label="",style="solid", color="blue", weight=3]; 3405[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 1472[label="",style="solid", color="blue", weight=3]; 3406[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1473[label="",style="solid", color="blue", weight=3]; 3407[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1474[label="",style="solid", color="blue", weight=3]; 3408[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1475[label="",style="solid", color="blue", weight=3]; 3409[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1476[label="",style="solid", color="blue", weight=3]; 3410[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1477[label="",style="solid", color="blue", weight=3]; 3411[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1064 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1478[label="",style="solid", color="blue", weight=3]; 1065[label="compare1 (Right vyw141) (Right vyw142) False",fontsize=16,color="black",shape="box"];1065 -> 1479[label="",style="solid", color="black", weight=3]; 1066[label="compare1 (Right vyw141) (Right vyw142) True",fontsize=16,color="black",shape="box"];1066 -> 1480[label="",style="solid", color="black", weight=3]; 1067[label="primMulNat vyw3000 vyw510",fontsize=16,color="burlywood",shape="triangle"];3412[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1067 -> 3412[label="",style="solid", color="burlywood", weight=9]; 3412 -> 1481[label="",style="solid", color="burlywood", weight=3]; 3413[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1067 -> 3413[label="",style="solid", color="burlywood", weight=9]; 3413 -> 1482[label="",style="solid", color="burlywood", weight=3]; 1068 -> 1067[label="",style="dashed", color="red", weight=0]; 1068[label="primMulNat vyw3000 vyw510",fontsize=16,color="magenta"];1068 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1069 -> 1067[label="",style="dashed", color="red", weight=0]; 1069[label="primMulNat vyw3000 vyw510",fontsize=16,color="magenta"];1069 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1070 -> 1067[label="",style="dashed", color="red", weight=0]; 1070[label="primMulNat vyw3000 vyw510",fontsize=16,color="magenta"];1070 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1070 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1071[label="vyw510",fontsize=16,color="green",shape="box"];1072[label="vyw3000",fontsize=16,color="green",shape="box"];1333[label="vyw302",fontsize=16,color="green",shape="box"];1334[label="vyw52",fontsize=16,color="green",shape="box"];1335[label="vyw302",fontsize=16,color="green",shape="box"];1336[label="vyw52",fontsize=16,color="green",shape="box"];1337[label="vyw302",fontsize=16,color="green",shape="box"];1338[label="vyw52",fontsize=16,color="green",shape="box"];1339[label="vyw302",fontsize=16,color="green",shape="box"];1340[label="vyw52",fontsize=16,color="green",shape="box"];1341[label="vyw302",fontsize=16,color="green",shape="box"];1342[label="vyw52",fontsize=16,color="green",shape="box"];1343[label="vyw302",fontsize=16,color="green",shape="box"];1344[label="vyw52",fontsize=16,color="green",shape="box"];1345[label="vyw302",fontsize=16,color="green",shape="box"];1346[label="vyw52",fontsize=16,color="green",shape="box"];1347[label="vyw302",fontsize=16,color="green",shape="box"];1348[label="vyw52",fontsize=16,color="green",shape="box"];1349[label="vyw302",fontsize=16,color="green",shape="box"];1350[label="vyw52",fontsize=16,color="green",shape="box"];1351[label="vyw302",fontsize=16,color="green",shape="box"];1352[label="vyw52",fontsize=16,color="green",shape="box"];1353[label="vyw302",fontsize=16,color="green",shape="box"];1354[label="vyw52",fontsize=16,color="green",shape="box"];1355[label="vyw302",fontsize=16,color="green",shape="box"];1356[label="vyw52",fontsize=16,color="green",shape="box"];1357[label="vyw302",fontsize=16,color="green",shape="box"];1358[label="vyw52",fontsize=16,color="green",shape="box"];1359[label="vyw302",fontsize=16,color="green",shape="box"];1360[label="vyw52",fontsize=16,color="green",shape="box"];1361[label="vyw301",fontsize=16,color="green",shape="box"];1362[label="vyw51",fontsize=16,color="green",shape="box"];1363[label="vyw301",fontsize=16,color="green",shape="box"];1364[label="vyw51",fontsize=16,color="green",shape="box"];1365[label="vyw301",fontsize=16,color="green",shape="box"];1366[label="vyw51",fontsize=16,color="green",shape="box"];1367[label="vyw301",fontsize=16,color="green",shape="box"];1368[label="vyw51",fontsize=16,color="green",shape="box"];1369[label="vyw301",fontsize=16,color="green",shape="box"];1370[label="vyw51",fontsize=16,color="green",shape="box"];1371[label="vyw301",fontsize=16,color="green",shape="box"];1372[label="vyw51",fontsize=16,color="green",shape="box"];1373[label="vyw301",fontsize=16,color="green",shape="box"];1374[label="vyw51",fontsize=16,color="green",shape="box"];1375[label="vyw301",fontsize=16,color="green",shape="box"];1376[label="vyw51",fontsize=16,color="green",shape="box"];1377[label="vyw301",fontsize=16,color="green",shape="box"];1378[label="vyw51",fontsize=16,color="green",shape="box"];1379[label="vyw301",fontsize=16,color="green",shape="box"];1380[label="vyw51",fontsize=16,color="green",shape="box"];1381[label="vyw301",fontsize=16,color="green",shape="box"];1382[label="vyw51",fontsize=16,color="green",shape="box"];1383[label="vyw301",fontsize=16,color="green",shape="box"];1384[label="vyw51",fontsize=16,color="green",shape="box"];1385[label="vyw301",fontsize=16,color="green",shape="box"];1386[label="vyw51",fontsize=16,color="green",shape="box"];1387[label="vyw301",fontsize=16,color="green",shape="box"];1388[label="vyw51",fontsize=16,color="green",shape="box"];1490[label="vyw109",fontsize=16,color="green",shape="box"];1491[label="vyw108",fontsize=16,color="green",shape="box"];1492 -> 1140[label="",style="dashed", color="red", weight=0]; 1492[label="vyw105 == vyw108 && (vyw106 < vyw109 || vyw106 == vyw109 && vyw107 <= vyw110)",fontsize=16,color="magenta"];1492 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1493[label="vyw110",fontsize=16,color="green",shape="box"];1494[label="vyw106",fontsize=16,color="green",shape="box"];1495[label="vyw107",fontsize=16,color="green",shape="box"];1496[label="vyw105 < vyw108",fontsize=16,color="blue",shape="box"];3414[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1508[label="",style="solid", color="blue", weight=3]; 3415[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1509[label="",style="solid", color="blue", weight=3]; 3416[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1510[label="",style="solid", color="blue", weight=3]; 3417[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1511[label="",style="solid", color="blue", weight=3]; 3418[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1512[label="",style="solid", color="blue", weight=3]; 3419[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 1513[label="",style="solid", color="blue", weight=3]; 3420[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 1514[label="",style="solid", color="blue", weight=3]; 3421[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 1515[label="",style="solid", color="blue", weight=3]; 3422[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 1516[label="",style="solid", color="blue", weight=3]; 3423[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 1517[label="",style="solid", color="blue", weight=3]; 3424[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 1518[label="",style="solid", color="blue", weight=3]; 3425[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3425[label="",style="solid", color="blue", weight=9]; 3425 -> 1519[label="",style="solid", color="blue", weight=3]; 3426[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3426[label="",style="solid", color="blue", weight=9]; 3426 -> 1520[label="",style="solid", color="blue", weight=3]; 3427[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1496 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 1521[label="",style="solid", color="blue", weight=3]; 1497[label="vyw105",fontsize=16,color="green",shape="box"];1489[label="compare1 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) (vyw176 || vyw177)",fontsize=16,color="burlywood",shape="triangle"];3428[label="vyw176/False",fontsize=10,color="white",style="solid",shape="box"];1489 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 1522[label="",style="solid", color="burlywood", weight=3]; 3429[label="vyw176/True",fontsize=10,color="white",style="solid",shape="box"];1489 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 1523[label="",style="solid", color="burlywood", weight=3]; 1527[label="vyw120",fontsize=16,color="green",shape="box"];1528 -> 1140[label="",style="dashed", color="red", weight=0]; 1528[label="vyw118 == vyw120 && vyw119 <= vyw121",fontsize=16,color="magenta"];1528 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1529[label="vyw118 < vyw120",fontsize=16,color="blue",shape="box"];3430[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 1541[label="",style="solid", color="blue", weight=3]; 3431[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 1542[label="",style="solid", color="blue", weight=3]; 3432[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 1543[label="",style="solid", color="blue", weight=3]; 3433[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 1544[label="",style="solid", color="blue", weight=3]; 3434[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 1545[label="",style="solid", color="blue", weight=3]; 3435[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 1546[label="",style="solid", color="blue", weight=3]; 3436[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 1547[label="",style="solid", color="blue", weight=3]; 3437[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 1548[label="",style="solid", color="blue", weight=3]; 3438[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 1549[label="",style="solid", color="blue", weight=3]; 3439[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 1550[label="",style="solid", color="blue", weight=3]; 3440[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 1551[label="",style="solid", color="blue", weight=3]; 3441[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 1552[label="",style="solid", color="blue", weight=3]; 3442[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 1553[label="",style="solid", color="blue", weight=3]; 3443[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 1554[label="",style="solid", color="blue", weight=3]; 1530[label="vyw119",fontsize=16,color="green",shape="box"];1531[label="vyw121",fontsize=16,color="green",shape="box"];1532[label="vyw118",fontsize=16,color="green",shape="box"];1526[label="compare1 (vyw185,vyw186) (vyw187,vyw188) (vyw189 || vyw190)",fontsize=16,color="burlywood",shape="triangle"];3444[label="vyw189/False",fontsize=10,color="white",style="solid",shape="box"];1526 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 1555[label="",style="solid", color="burlywood", weight=3]; 3445[label="vyw189/True",fontsize=10,color="white",style="solid",shape="box"];1526 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 1556[label="",style="solid", color="burlywood", weight=3]; 1324[label="GT",fontsize=16,color="green",shape="box"];1325[label="GT",fontsize=16,color="green",shape="box"];1391[label="vyw94 <= vyw95",fontsize=16,color="blue",shape="box"];3446[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 1557[label="",style="solid", color="blue", weight=3]; 3447[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 1558[label="",style="solid", color="blue", weight=3]; 3448[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 1559[label="",style="solid", color="blue", weight=3]; 3449[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 1560[label="",style="solid", color="blue", weight=3]; 3450[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 1561[label="",style="solid", color="blue", weight=3]; 3451[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 1562[label="",style="solid", color="blue", weight=3]; 3452[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 1563[label="",style="solid", color="blue", weight=3]; 3453[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 1564[label="",style="solid", color="blue", weight=3]; 3454[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 1565[label="",style="solid", color="blue", weight=3]; 3455[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 1566[label="",style="solid", color="blue", weight=3]; 3456[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 1567[label="",style="solid", color="blue", weight=3]; 3457[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 1568[label="",style="solid", color="blue", weight=3]; 3458[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 1569[label="",style="solid", color="blue", weight=3]; 3459[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 1570[label="",style="solid", color="blue", weight=3]; 1392[label="compare1 (Just vyw156) (Just vyw157) False",fontsize=16,color="black",shape="box"];1392 -> 1571[label="",style="solid", color="black", weight=3]; 1393[label="compare1 (Just vyw156) (Just vyw157) True",fontsize=16,color="black",shape="box"];1393 -> 1572[label="",style="solid", color="black", weight=3]; 1394[label="primEqNat vyw500 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3460[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];1394 -> 3460[label="",style="solid", color="burlywood", weight=9]; 3460 -> 1573[label="",style="solid", color="burlywood", weight=3]; 3461[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];1394 -> 3461[label="",style="solid", color="burlywood", weight=9]; 3461 -> 1574[label="",style="solid", color="burlywood", weight=3]; 1149[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3462[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 1575[label="",style="solid", color="blue", weight=3]; 3463[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 1576[label="",style="solid", color="blue", weight=3]; 3464[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 1577[label="",style="solid", color="blue", weight=3]; 3465[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 1578[label="",style="solid", color="blue", weight=3]; 3466[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 1579[label="",style="solid", color="blue", weight=3]; 3467[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 1580[label="",style="solid", color="blue", weight=3]; 3468[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 1581[label="",style="solid", color="blue", weight=3]; 3469[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 1582[label="",style="solid", color="blue", weight=3]; 3470[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 1583[label="",style="solid", color="blue", weight=3]; 3471[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 1584[label="",style="solid", color="blue", weight=3]; 3472[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 1585[label="",style="solid", color="blue", weight=3]; 3473[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 1586[label="",style="solid", color="blue", weight=3]; 3474[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 1587[label="",style="solid", color="blue", weight=3]; 3475[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 1588[label="",style="solid", color="blue", weight=3]; 1150[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3476[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 1589[label="",style="solid", color="blue", weight=3]; 3477[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 1590[label="",style="solid", color="blue", weight=3]; 3478[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 1591[label="",style="solid", color="blue", weight=3]; 3479[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 1592[label="",style="solid", color="blue", weight=3]; 3480[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 1593[label="",style="solid", color="blue", weight=3]; 3481[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 1594[label="",style="solid", color="blue", weight=3]; 3482[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 1595[label="",style="solid", color="blue", weight=3]; 3483[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 1596[label="",style="solid", color="blue", weight=3]; 3484[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 1597[label="",style="solid", color="blue", weight=3]; 3485[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 1598[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 1599[label="",style="solid", color="blue", weight=3]; 3487[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 1600[label="",style="solid", color="blue", weight=3]; 3488[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 1601[label="",style="solid", color="blue", weight=3]; 3489[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 1602[label="",style="solid", color="blue", weight=3]; 1395[label="vyw3000",fontsize=16,color="green",shape="box"];1396[label="vyw500",fontsize=16,color="green",shape="box"];1151[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3490[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 1603[label="",style="solid", color="blue", weight=3]; 3491[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1151 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 1604[label="",style="solid", color="blue", weight=3]; 1152[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3492[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 1605[label="",style="solid", color="blue", weight=3]; 3493[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1152 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 1606[label="",style="solid", color="blue", weight=3]; 1153 -> 533[label="",style="dashed", color="red", weight=0]; 1153[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1153 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1153 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1154[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3494[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 1609[label="",style="solid", color="blue", weight=3]; 3495[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 1610[label="",style="solid", color="blue", weight=3]; 3496[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 1611[label="",style="solid", color="blue", weight=3]; 3497[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 1612[label="",style="solid", color="blue", weight=3]; 3498[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 1613[label="",style="solid", color="blue", weight=3]; 3499[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 1614[label="",style="solid", color="blue", weight=3]; 3500[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 1615[label="",style="solid", color="blue", weight=3]; 3501[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 1616[label="",style="solid", color="blue", weight=3]; 3502[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 1617[label="",style="solid", color="blue", weight=3]; 3503[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 1618[label="",style="solid", color="blue", weight=3]; 3504[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 1619[label="",style="solid", color="blue", weight=3]; 3505[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1620[label="",style="solid", color="blue", weight=3]; 3506[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 1621[label="",style="solid", color="blue", weight=3]; 3507[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1154 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 1622[label="",style="solid", color="blue", weight=3]; 1397 -> 538[label="",style="dashed", color="red", weight=0]; 1397[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];1397 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1398 -> 538[label="",style="dashed", color="red", weight=0]; 1398[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];1398 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1399 -> 529[label="",style="dashed", color="red", weight=0]; 1399[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1399 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1400 -> 530[label="",style="dashed", color="red", weight=0]; 1400[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1400 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1401 -> 531[label="",style="dashed", color="red", weight=0]; 1401[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1401 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1402 -> 532[label="",style="dashed", color="red", weight=0]; 1402[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1402 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1403 -> 533[label="",style="dashed", color="red", weight=0]; 1403[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1403 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1404 -> 534[label="",style="dashed", color="red", weight=0]; 1404[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1404 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1405 -> 535[label="",style="dashed", color="red", weight=0]; 1405[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1405 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1406 -> 536[label="",style="dashed", color="red", weight=0]; 1406[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1406 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1407 -> 537[label="",style="dashed", color="red", weight=0]; 1407[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1407 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1408 -> 538[label="",style="dashed", color="red", weight=0]; 1408[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1408 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1409 -> 539[label="",style="dashed", color="red", weight=0]; 1409[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1409 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1410 -> 540[label="",style="dashed", color="red", weight=0]; 1410[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1410 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1411 -> 541[label="",style="dashed", color="red", weight=0]; 1411[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1411 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1412 -> 542[label="",style="dashed", color="red", weight=0]; 1412[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1412 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1413 -> 529[label="",style="dashed", color="red", weight=0]; 1413[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1413 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1414 -> 530[label="",style="dashed", color="red", weight=0]; 1414[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1414 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1415 -> 531[label="",style="dashed", color="red", weight=0]; 1415[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1415 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1416 -> 532[label="",style="dashed", color="red", weight=0]; 1416[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1416 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1417 -> 533[label="",style="dashed", color="red", weight=0]; 1417[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1417 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1418 -> 534[label="",style="dashed", color="red", weight=0]; 1418[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1418 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1419 -> 535[label="",style="dashed", color="red", weight=0]; 1419[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1419 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1420 -> 536[label="",style="dashed", color="red", weight=0]; 1420[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1420 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1421 -> 537[label="",style="dashed", color="red", weight=0]; 1421[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1421 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1422 -> 538[label="",style="dashed", color="red", weight=0]; 1422[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1422 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1423 -> 539[label="",style="dashed", color="red", weight=0]; 1423[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1423 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1424 -> 540[label="",style="dashed", color="red", weight=0]; 1424[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1424 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1425 -> 541[label="",style="dashed", color="red", weight=0]; 1425[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1425 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1426 -> 542[label="",style="dashed", color="red", weight=0]; 1426[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1426 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1427[label="primEqInt (Pos (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3508[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1427 -> 3508[label="",style="solid", color="burlywood", weight=9]; 3508 -> 1683[label="",style="solid", color="burlywood", weight=3]; 3509[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1427 -> 3509[label="",style="solid", color="burlywood", weight=9]; 3509 -> 1684[label="",style="solid", color="burlywood", weight=3]; 1428[label="primEqInt (Pos (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];1428 -> 1685[label="",style="solid", color="black", weight=3]; 1429[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3510[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3510[label="",style="solid", color="burlywood", weight=9]; 3510 -> 1686[label="",style="solid", color="burlywood", weight=3]; 3511[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3511[label="",style="solid", color="burlywood", weight=9]; 3511 -> 1687[label="",style="solid", color="burlywood", weight=3]; 1430[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3512[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3512[label="",style="solid", color="burlywood", weight=9]; 3512 -> 1688[label="",style="solid", color="burlywood", weight=3]; 3513[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3513[label="",style="solid", color="burlywood", weight=9]; 3513 -> 1689[label="",style="solid", color="burlywood", weight=3]; 1431[label="primEqInt (Neg (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];1431 -> 1690[label="",style="solid", color="black", weight=3]; 1432[label="primEqInt (Neg (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3514[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3514[label="",style="solid", color="burlywood", weight=9]; 3514 -> 1691[label="",style="solid", color="burlywood", weight=3]; 3515[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3515[label="",style="solid", color="burlywood", weight=9]; 3515 -> 1692[label="",style="solid", color="burlywood", weight=3]; 1433[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3516[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3516[label="",style="solid", color="burlywood", weight=9]; 3516 -> 1693[label="",style="solid", color="burlywood", weight=3]; 3517[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3517[label="",style="solid", color="burlywood", weight=9]; 3517 -> 1694[label="",style="solid", color="burlywood", weight=3]; 1434[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3518[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3518[label="",style="solid", color="burlywood", weight=9]; 3518 -> 1695[label="",style="solid", color="burlywood", weight=3]; 3519[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3519[label="",style="solid", color="burlywood", weight=9]; 3519 -> 1696[label="",style="solid", color="burlywood", weight=3]; 1155 -> 1140[label="",style="dashed", color="red", weight=0]; 1155[label="vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];1155 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1155 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1156[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3520[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 1699[label="",style="solid", color="blue", weight=3]; 3521[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 1700[label="",style="solid", color="blue", weight=3]; 3522[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 1701[label="",style="solid", color="blue", weight=3]; 3523[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 1702[label="",style="solid", color="blue", weight=3]; 3524[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 1703[label="",style="solid", color="blue", weight=3]; 3525[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 1704[label="",style="solid", color="blue", weight=3]; 3526[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 1705[label="",style="solid", color="blue", weight=3]; 3527[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 1706[label="",style="solid", color="blue", weight=3]; 3528[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 1707[label="",style="solid", color="blue", weight=3]; 3529[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 1708[label="",style="solid", color="blue", weight=3]; 3530[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 1709[label="",style="solid", color="blue", weight=3]; 3531[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 1710[label="",style="solid", color="blue", weight=3]; 3532[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 1711[label="",style="solid", color="blue", weight=3]; 3533[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 1712[label="",style="solid", color="blue", weight=3]; 1435 -> 529[label="",style="dashed", color="red", weight=0]; 1435[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1435 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1436 -> 530[label="",style="dashed", color="red", weight=0]; 1436[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1436 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1437 -> 531[label="",style="dashed", color="red", weight=0]; 1437[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1437 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1438 -> 532[label="",style="dashed", color="red", weight=0]; 1438[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1438 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1439 -> 533[label="",style="dashed", color="red", weight=0]; 1439[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1439 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1440 -> 534[label="",style="dashed", color="red", weight=0]; 1440[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1440 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1441 -> 535[label="",style="dashed", color="red", weight=0]; 1441[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1441 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1442 -> 536[label="",style="dashed", color="red", weight=0]; 1442[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1442 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1443 -> 537[label="",style="dashed", color="red", weight=0]; 1443[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1443 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1444 -> 538[label="",style="dashed", color="red", weight=0]; 1444[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1444 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1445 -> 539[label="",style="dashed", color="red", weight=0]; 1445[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1445 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1446 -> 540[label="",style="dashed", color="red", weight=0]; 1446[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1446 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1447 -> 541[label="",style="dashed", color="red", weight=0]; 1447[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1447 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1448 -> 542[label="",style="dashed", color="red", weight=0]; 1448[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1448 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1449[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1449 -> 1741[label="",style="solid", color="black", weight=3]; 1450[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1450 -> 1742[label="",style="solid", color="black", weight=3]; 1451[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3534[label="vyw49/LT",fontsize=10,color="white",style="solid",shape="box"];1451 -> 3534[label="",style="solid", color="burlywood", weight=9]; 3534 -> 1743[label="",style="solid", color="burlywood", weight=3]; 3535[label="vyw49/EQ",fontsize=10,color="white",style="solid",shape="box"];1451 -> 3535[label="",style="solid", color="burlywood", weight=9]; 3535 -> 1744[label="",style="solid", color="burlywood", weight=3]; 3536[label="vyw49/GT",fontsize=10,color="white",style="solid",shape="box"];1451 -> 3536[label="",style="solid", color="burlywood", weight=9]; 3536 -> 1745[label="",style="solid", color="burlywood", weight=3]; 1452[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3537[label="vyw49/Left vyw490",fontsize=10,color="white",style="solid",shape="box"];1452 -> 3537[label="",style="solid", color="burlywood", weight=9]; 3537 -> 1746[label="",style="solid", color="burlywood", weight=3]; 3538[label="vyw49/Right vyw490",fontsize=10,color="white",style="solid",shape="box"];1452 -> 3538[label="",style="solid", color="burlywood", weight=9]; 3538 -> 1747[label="",style="solid", color="burlywood", weight=3]; 1453[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1453 -> 1748[label="",style="solid", color="black", weight=3]; 1454[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1454 -> 1749[label="",style="solid", color="black", weight=3]; 1455[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3539[label="vyw49/(vyw490,vyw491,vyw492)",fontsize=10,color="white",style="solid",shape="box"];1455 -> 3539[label="",style="solid", color="burlywood", weight=9]; 3539 -> 1750[label="",style="solid", color="burlywood", weight=3]; 1456[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1456 -> 1751[label="",style="solid", color="black", weight=3]; 1457[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3540[label="vyw49/(vyw490,vyw491)",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3540[label="",style="solid", color="burlywood", weight=9]; 3540 -> 1752[label="",style="solid", color="burlywood", weight=3]; 1458[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3541[label="vyw49/False",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3541[label="",style="solid", color="burlywood", weight=9]; 3541 -> 1753[label="",style="solid", color="burlywood", weight=3]; 3542[label="vyw49/True",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3542[label="",style="solid", color="burlywood", weight=9]; 3542 -> 1754[label="",style="solid", color="burlywood", weight=3]; 1459[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3543[label="vyw49/Nothing",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3543[label="",style="solid", color="burlywood", weight=9]; 3543 -> 1755[label="",style="solid", color="burlywood", weight=3]; 3544[label="vyw49/Just vyw490",fontsize=10,color="white",style="solid",shape="box"];1459 -> 3544[label="",style="solid", color="burlywood", weight=9]; 3544 -> 1756[label="",style="solid", color="burlywood", weight=3]; 1460[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1460 -> 1757[label="",style="solid", color="black", weight=3]; 1461[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1461 -> 1758[label="",style="solid", color="black", weight=3]; 1462[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1462 -> 1759[label="",style="solid", color="black", weight=3]; 1463[label="compare0 (Left vyw134) (Left vyw135) otherwise",fontsize=16,color="black",shape="box"];1463 -> 1760[label="",style="solid", color="black", weight=3]; 1464[label="LT",fontsize=16,color="green",shape="box"];1465 -> 1449[label="",style="dashed", color="red", weight=0]; 1465[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1465 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1450[label="",style="dashed", color="red", weight=0]; 1466[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1466 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1451[label="",style="dashed", color="red", weight=0]; 1467[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1467 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1452[label="",style="dashed", color="red", weight=0]; 1468[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1468 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1453[label="",style="dashed", color="red", weight=0]; 1469[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1469 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1454[label="",style="dashed", color="red", weight=0]; 1470[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1470 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1455[label="",style="dashed", color="red", weight=0]; 1471[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1471 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1456[label="",style="dashed", color="red", weight=0]; 1472[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1472 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1457[label="",style="dashed", color="red", weight=0]; 1473[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1473 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1458[label="",style="dashed", color="red", weight=0]; 1474[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1474 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1459[label="",style="dashed", color="red", weight=0]; 1475[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1475 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1460[label="",style="dashed", color="red", weight=0]; 1476[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1476 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1461[label="",style="dashed", color="red", weight=0]; 1477[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1477 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1462[label="",style="dashed", color="red", weight=0]; 1478[label="vyw56 <= vyw57",fontsize=16,color="magenta"];1478 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1479[label="compare0 (Right vyw141) (Right vyw142) otherwise",fontsize=16,color="black",shape="box"];1479 -> 1789[label="",style="solid", color="black", weight=3]; 1480[label="LT",fontsize=16,color="green",shape="box"];1481[label="primMulNat (Succ vyw30000) vyw510",fontsize=16,color="burlywood",shape="box"];3545[label="vyw510/Succ vyw5100",fontsize=10,color="white",style="solid",shape="box"];1481 -> 3545[label="",style="solid", color="burlywood", weight=9]; 3545 -> 1790[label="",style="solid", color="burlywood", weight=3]; 3546[label="vyw510/Zero",fontsize=10,color="white",style="solid",shape="box"];1481 -> 3546[label="",style="solid", color="burlywood", weight=9]; 3546 -> 1791[label="",style="solid", color="burlywood", weight=3]; 1482[label="primMulNat Zero vyw510",fontsize=16,color="burlywood",shape="box"];3547[label="vyw510/Succ vyw5100",fontsize=10,color="white",style="solid",shape="box"];1482 -> 3547[label="",style="solid", color="burlywood", weight=9]; 3547 -> 1792[label="",style="solid", color="burlywood", weight=3]; 3548[label="vyw510/Zero",fontsize=10,color="white",style="solid",shape="box"];1482 -> 3548[label="",style="solid", color="burlywood", weight=9]; 3548 -> 1793[label="",style="solid", color="burlywood", weight=3]; 1483[label="vyw510",fontsize=16,color="green",shape="box"];1484[label="vyw3000",fontsize=16,color="green",shape="box"];1485[label="vyw510",fontsize=16,color="green",shape="box"];1486[label="vyw3000",fontsize=16,color="green",shape="box"];1506 -> 2139[label="",style="dashed", color="red", weight=0]; 1506[label="vyw106 < vyw109 || vyw106 == vyw109 && vyw107 <= vyw110",fontsize=16,color="magenta"];1506 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1506 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1507[label="vyw105 == vyw108",fontsize=16,color="blue",shape="box"];3549[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 1796[label="",style="solid", color="blue", weight=3]; 3550[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 1797[label="",style="solid", color="blue", weight=3]; 3551[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 1798[label="",style="solid", color="blue", weight=3]; 3552[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 1799[label="",style="solid", color="blue", weight=3]; 3553[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 1800[label="",style="solid", color="blue", weight=3]; 3554[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3554[label="",style="solid", color="blue", weight=9]; 3554 -> 1801[label="",style="solid", color="blue", weight=3]; 3555[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 1802[label="",style="solid", color="blue", weight=3]; 3556[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 1803[label="",style="solid", color="blue", weight=3]; 3557[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 1804[label="",style="solid", color="blue", weight=3]; 3558[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3558[label="",style="solid", color="blue", weight=9]; 3558 -> 1805[label="",style="solid", color="blue", weight=3]; 3559[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3559[label="",style="solid", color="blue", weight=9]; 3559 -> 1806[label="",style="solid", color="blue", weight=3]; 3560[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3560[label="",style="solid", color="blue", weight=9]; 3560 -> 1807[label="",style="solid", color="blue", weight=3]; 3561[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3561[label="",style="solid", color="blue", weight=9]; 3561 -> 1808[label="",style="solid", color="blue", weight=3]; 3562[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3562[label="",style="solid", color="blue", weight=9]; 3562 -> 1809[label="",style="solid", color="blue", weight=3]; 1508 -> 23[label="",style="dashed", color="red", weight=0]; 1508[label="vyw105 < vyw108",fontsize=16,color="magenta"];1508 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1509 -> 24[label="",style="dashed", color="red", weight=0]; 1509[label="vyw105 < vyw108",fontsize=16,color="magenta"];1509 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1510 -> 25[label="",style="dashed", color="red", weight=0]; 1510[label="vyw105 < vyw108",fontsize=16,color="magenta"];1510 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1511 -> 26[label="",style="dashed", color="red", weight=0]; 1511[label="vyw105 < vyw108",fontsize=16,color="magenta"];1511 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1512 -> 27[label="",style="dashed", color="red", weight=0]; 1512[label="vyw105 < vyw108",fontsize=16,color="magenta"];1512 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1513 -> 28[label="",style="dashed", color="red", weight=0]; 1513[label="vyw105 < vyw108",fontsize=16,color="magenta"];1513 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1514 -> 29[label="",style="dashed", color="red", weight=0]; 1514[label="vyw105 < vyw108",fontsize=16,color="magenta"];1514 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1515 -> 30[label="",style="dashed", color="red", weight=0]; 1515[label="vyw105 < vyw108",fontsize=16,color="magenta"];1515 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1516 -> 31[label="",style="dashed", color="red", weight=0]; 1516[label="vyw105 < vyw108",fontsize=16,color="magenta"];1516 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1517 -> 32[label="",style="dashed", color="red", weight=0]; 1517[label="vyw105 < vyw108",fontsize=16,color="magenta"];1517 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1518 -> 33[label="",style="dashed", color="red", weight=0]; 1518[label="vyw105 < vyw108",fontsize=16,color="magenta"];1518 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1519 -> 34[label="",style="dashed", color="red", weight=0]; 1519[label="vyw105 < vyw108",fontsize=16,color="magenta"];1519 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1520 -> 35[label="",style="dashed", color="red", weight=0]; 1520[label="vyw105 < vyw108",fontsize=16,color="magenta"];1520 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1521 -> 36[label="",style="dashed", color="red", weight=0]; 1521[label="vyw105 < vyw108",fontsize=16,color="magenta"];1521 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1522[label="compare1 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) (False || vyw177)",fontsize=16,color="black",shape="box"];1522 -> 1838[label="",style="solid", color="black", weight=3]; 1523[label="compare1 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) (True || vyw177)",fontsize=16,color="black",shape="box"];1523 -> 1839[label="",style="solid", color="black", weight=3]; 1539[label="vyw119 <= vyw121",fontsize=16,color="blue",shape="box"];3563[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3563[label="",style="solid", color="blue", weight=9]; 3563 -> 1840[label="",style="solid", color="blue", weight=3]; 3564[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3564[label="",style="solid", color="blue", weight=9]; 3564 -> 1841[label="",style="solid", color="blue", weight=3]; 3565[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3565[label="",style="solid", color="blue", weight=9]; 3565 -> 1842[label="",style="solid", color="blue", weight=3]; 3566[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3566[label="",style="solid", color="blue", weight=9]; 3566 -> 1843[label="",style="solid", color="blue", weight=3]; 3567[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3567[label="",style="solid", color="blue", weight=9]; 3567 -> 1844[label="",style="solid", color="blue", weight=3]; 3568[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3568[label="",style="solid", color="blue", weight=9]; 3568 -> 1845[label="",style="solid", color="blue", weight=3]; 3569[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3569[label="",style="solid", color="blue", weight=9]; 3569 -> 1846[label="",style="solid", color="blue", weight=3]; 3570[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3570[label="",style="solid", color="blue", weight=9]; 3570 -> 1847[label="",style="solid", color="blue", weight=3]; 3571[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 1848[label="",style="solid", color="blue", weight=3]; 3572[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 1849[label="",style="solid", color="blue", weight=3]; 3573[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 1850[label="",style="solid", color="blue", weight=3]; 3574[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 1851[label="",style="solid", color="blue", weight=3]; 3575[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 1852[label="",style="solid", color="blue", weight=3]; 3576[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 1853[label="",style="solid", color="blue", weight=3]; 1540[label="vyw118 == vyw120",fontsize=16,color="blue",shape="box"];3577[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 1854[label="",style="solid", color="blue", weight=3]; 3578[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 1855[label="",style="solid", color="blue", weight=3]; 3579[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 1856[label="",style="solid", color="blue", weight=3]; 3580[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 1857[label="",style="solid", color="blue", weight=3]; 3581[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 1858[label="",style="solid", color="blue", weight=3]; 3582[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 1859[label="",style="solid", color="blue", weight=3]; 3583[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 1860[label="",style="solid", color="blue", weight=3]; 3584[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 1861[label="",style="solid", color="blue", weight=3]; 3585[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 1862[label="",style="solid", color="blue", weight=3]; 3586[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 1863[label="",style="solid", color="blue", weight=3]; 3587[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 1864[label="",style="solid", color="blue", weight=3]; 3588[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 1865[label="",style="solid", color="blue", weight=3]; 3589[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 1866[label="",style="solid", color="blue", weight=3]; 3590[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 1867[label="",style="solid", color="blue", weight=3]; 1541 -> 23[label="",style="dashed", color="red", weight=0]; 1541[label="vyw118 < vyw120",fontsize=16,color="magenta"];1541 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1542 -> 24[label="",style="dashed", color="red", weight=0]; 1542[label="vyw118 < vyw120",fontsize=16,color="magenta"];1542 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1543 -> 25[label="",style="dashed", color="red", weight=0]; 1543[label="vyw118 < vyw120",fontsize=16,color="magenta"];1543 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1544 -> 26[label="",style="dashed", color="red", weight=0]; 1544[label="vyw118 < vyw120",fontsize=16,color="magenta"];1544 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1545 -> 27[label="",style="dashed", color="red", weight=0]; 1545[label="vyw118 < vyw120",fontsize=16,color="magenta"];1545 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1546 -> 28[label="",style="dashed", color="red", weight=0]; 1546[label="vyw118 < vyw120",fontsize=16,color="magenta"];1546 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1547 -> 29[label="",style="dashed", color="red", weight=0]; 1547[label="vyw118 < vyw120",fontsize=16,color="magenta"];1547 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1548 -> 30[label="",style="dashed", color="red", weight=0]; 1548[label="vyw118 < vyw120",fontsize=16,color="magenta"];1548 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1549 -> 31[label="",style="dashed", color="red", weight=0]; 1549[label="vyw118 < vyw120",fontsize=16,color="magenta"];1549 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1550 -> 32[label="",style="dashed", color="red", weight=0]; 1550[label="vyw118 < vyw120",fontsize=16,color="magenta"];1550 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1551 -> 33[label="",style="dashed", color="red", weight=0]; 1551[label="vyw118 < vyw120",fontsize=16,color="magenta"];1551 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1552 -> 34[label="",style="dashed", color="red", weight=0]; 1552[label="vyw118 < vyw120",fontsize=16,color="magenta"];1552 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1553 -> 35[label="",style="dashed", color="red", weight=0]; 1553[label="vyw118 < vyw120",fontsize=16,color="magenta"];1553 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1554 -> 36[label="",style="dashed", color="red", weight=0]; 1554[label="vyw118 < vyw120",fontsize=16,color="magenta"];1554 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1555[label="compare1 (vyw185,vyw186) (vyw187,vyw188) (False || vyw190)",fontsize=16,color="black",shape="box"];1555 -> 1896[label="",style="solid", color="black", weight=3]; 1556[label="compare1 (vyw185,vyw186) (vyw187,vyw188) (True || vyw190)",fontsize=16,color="black",shape="box"];1556 -> 1897[label="",style="solid", color="black", weight=3]; 1557 -> 1449[label="",style="dashed", color="red", weight=0]; 1557[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1557 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1450[label="",style="dashed", color="red", weight=0]; 1558[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1558 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1451[label="",style="dashed", color="red", weight=0]; 1559[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1559 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1452[label="",style="dashed", color="red", weight=0]; 1560[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1560 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1453[label="",style="dashed", color="red", weight=0]; 1561[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1561 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1454[label="",style="dashed", color="red", weight=0]; 1562[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1562 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1455[label="",style="dashed", color="red", weight=0]; 1563[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1563 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1456[label="",style="dashed", color="red", weight=0]; 1564[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1564 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1457[label="",style="dashed", color="red", weight=0]; 1565[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1565 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1458[label="",style="dashed", color="red", weight=0]; 1566[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1566 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1459[label="",style="dashed", color="red", weight=0]; 1567[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1567 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1460[label="",style="dashed", color="red", weight=0]; 1568[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1568 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1461[label="",style="dashed", color="red", weight=0]; 1569[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1569 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1462[label="",style="dashed", color="red", weight=0]; 1570[label="vyw94 <= vyw95",fontsize=16,color="magenta"];1570 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1571[label="compare0 (Just vyw156) (Just vyw157) otherwise",fontsize=16,color="black",shape="box"];1571 -> 1926[label="",style="solid", color="black", weight=3]; 1572[label="LT",fontsize=16,color="green",shape="box"];1573[label="primEqNat (Succ vyw5000) vyw3000",fontsize=16,color="burlywood",shape="box"];3591[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3591[label="",style="solid", color="burlywood", weight=9]; 3591 -> 1927[label="",style="solid", color="burlywood", weight=3]; 3592[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3592[label="",style="solid", color="burlywood", weight=9]; 3592 -> 1928[label="",style="solid", color="burlywood", weight=3]; 1574[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];3593[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3593[label="",style="solid", color="burlywood", weight=9]; 3593 -> 1929[label="",style="solid", color="burlywood", weight=3]; 3594[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3594[label="",style="solid", color="burlywood", weight=9]; 3594 -> 1930[label="",style="solid", color="burlywood", weight=3]; 1575 -> 529[label="",style="dashed", color="red", weight=0]; 1575[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1575 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1576 -> 530[label="",style="dashed", color="red", weight=0]; 1576[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1576 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1577 -> 531[label="",style="dashed", color="red", weight=0]; 1577[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1577 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1578 -> 532[label="",style="dashed", color="red", weight=0]; 1578[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1578 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1579 -> 533[label="",style="dashed", color="red", weight=0]; 1579[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1579 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1580 -> 534[label="",style="dashed", color="red", weight=0]; 1580[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1580 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1581 -> 535[label="",style="dashed", color="red", weight=0]; 1581[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1581 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1582 -> 536[label="",style="dashed", color="red", weight=0]; 1582[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1582 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1583 -> 537[label="",style="dashed", color="red", weight=0]; 1583[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1583 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1584 -> 538[label="",style="dashed", color="red", weight=0]; 1584[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1584 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1585 -> 539[label="",style="dashed", color="red", weight=0]; 1585[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1585 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1586 -> 540[label="",style="dashed", color="red", weight=0]; 1586[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1586 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1587 -> 541[label="",style="dashed", color="red", weight=0]; 1587[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1587 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1588 -> 542[label="",style="dashed", color="red", weight=0]; 1588[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1588 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1589 -> 529[label="",style="dashed", color="red", weight=0]; 1589[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1589 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1590 -> 530[label="",style="dashed", color="red", weight=0]; 1590[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1590 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1591 -> 531[label="",style="dashed", color="red", weight=0]; 1591[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1591 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1592 -> 532[label="",style="dashed", color="red", weight=0]; 1592[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1592 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1593 -> 533[label="",style="dashed", color="red", weight=0]; 1593[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1593 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1594 -> 534[label="",style="dashed", color="red", weight=0]; 1594[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1594 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1595 -> 535[label="",style="dashed", color="red", weight=0]; 1595[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1595 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1596 -> 536[label="",style="dashed", color="red", weight=0]; 1596[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1596 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1597 -> 537[label="",style="dashed", color="red", weight=0]; 1597[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1597 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1598 -> 538[label="",style="dashed", color="red", weight=0]; 1598[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1598 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1599 -> 539[label="",style="dashed", color="red", weight=0]; 1599[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1599 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1600 -> 540[label="",style="dashed", color="red", weight=0]; 1600[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1600 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1601 -> 541[label="",style="dashed", color="red", weight=0]; 1601[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1601 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1602 -> 542[label="",style="dashed", color="red", weight=0]; 1602[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1602 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1603 -> 531[label="",style="dashed", color="red", weight=0]; 1603[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1603 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1604 -> 538[label="",style="dashed", color="red", weight=0]; 1604[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1604 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1605 -> 531[label="",style="dashed", color="red", weight=0]; 1605[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1605 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1606 -> 538[label="",style="dashed", color="red", weight=0]; 1606[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1606 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1607[label="vyw3001",fontsize=16,color="green",shape="box"];1608[label="vyw501",fontsize=16,color="green",shape="box"];1609 -> 529[label="",style="dashed", color="red", weight=0]; 1609[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1609 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1610 -> 530[label="",style="dashed", color="red", weight=0]; 1610[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1610 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1611 -> 531[label="",style="dashed", color="red", weight=0]; 1611[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1611 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1611 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1612 -> 532[label="",style="dashed", color="red", weight=0]; 1612[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1612 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1612 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1613 -> 533[label="",style="dashed", color="red", weight=0]; 1613[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1613 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1613 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1614 -> 534[label="",style="dashed", color="red", weight=0]; 1614[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1614 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1614 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1615 -> 535[label="",style="dashed", color="red", weight=0]; 1615[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1615 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1615 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1616 -> 536[label="",style="dashed", color="red", weight=0]; 1616[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1616 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1616 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1617 -> 537[label="",style="dashed", color="red", weight=0]; 1617[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1617 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1617 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1618 -> 538[label="",style="dashed", color="red", weight=0]; 1618[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1618 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1618 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1619 -> 539[label="",style="dashed", color="red", weight=0]; 1619[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1619 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1619 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1620 -> 540[label="",style="dashed", color="red", weight=0]; 1620[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1620 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1620 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1621 -> 541[label="",style="dashed", color="red", weight=0]; 1621[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1621 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1621 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1622 -> 542[label="",style="dashed", color="red", weight=0]; 1622[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1622 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1622 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1623 -> 404[label="",style="dashed", color="red", weight=0]; 1623[label="vyw501 * vyw3000",fontsize=16,color="magenta"];1623 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1623 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1624 -> 404[label="",style="dashed", color="red", weight=0]; 1624[label="vyw500 * vyw3001",fontsize=16,color="magenta"];1624 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1624 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1625 -> 404[label="",style="dashed", color="red", weight=0]; 1625[label="vyw501 * vyw3000",fontsize=16,color="magenta"];1625 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1625 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1626 -> 404[label="",style="dashed", color="red", weight=0]; 1626[label="vyw500 * vyw3001",fontsize=16,color="magenta"];1626 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1626 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1627[label="vyw3000",fontsize=16,color="green",shape="box"];1628[label="vyw500",fontsize=16,color="green",shape="box"];1629[label="vyw3000",fontsize=16,color="green",shape="box"];1630[label="vyw500",fontsize=16,color="green",shape="box"];1631[label="vyw3000",fontsize=16,color="green",shape="box"];1632[label="vyw500",fontsize=16,color="green",shape="box"];1633[label="vyw3000",fontsize=16,color="green",shape="box"];1634[label="vyw500",fontsize=16,color="green",shape="box"];1635[label="vyw3000",fontsize=16,color="green",shape="box"];1636[label="vyw500",fontsize=16,color="green",shape="box"];1637[label="vyw3000",fontsize=16,color="green",shape="box"];1638[label="vyw500",fontsize=16,color="green",shape="box"];1639[label="vyw3000",fontsize=16,color="green",shape="box"];1640[label="vyw500",fontsize=16,color="green",shape="box"];1641[label="vyw3000",fontsize=16,color="green",shape="box"];1642[label="vyw500",fontsize=16,color="green",shape="box"];1643[label="vyw3000",fontsize=16,color="green",shape="box"];1644[label="vyw500",fontsize=16,color="green",shape="box"];1645[label="vyw3000",fontsize=16,color="green",shape="box"];1646[label="vyw500",fontsize=16,color="green",shape="box"];1647[label="vyw3000",fontsize=16,color="green",shape="box"];1648[label="vyw500",fontsize=16,color="green",shape="box"];1649[label="vyw3000",fontsize=16,color="green",shape="box"];1650[label="vyw500",fontsize=16,color="green",shape="box"];1651[label="vyw3000",fontsize=16,color="green",shape="box"];1652[label="vyw500",fontsize=16,color="green",shape="box"];1653[label="vyw3000",fontsize=16,color="green",shape="box"];1654[label="vyw500",fontsize=16,color="green",shape="box"];1655[label="vyw3000",fontsize=16,color="green",shape="box"];1656[label="vyw500",fontsize=16,color="green",shape="box"];1657[label="vyw3000",fontsize=16,color="green",shape="box"];1658[label="vyw500",fontsize=16,color="green",shape="box"];1659[label="vyw3000",fontsize=16,color="green",shape="box"];1660[label="vyw500",fontsize=16,color="green",shape="box"];1661[label="vyw3000",fontsize=16,color="green",shape="box"];1662[label="vyw500",fontsize=16,color="green",shape="box"];1663[label="vyw3000",fontsize=16,color="green",shape="box"];1664[label="vyw500",fontsize=16,color="green",shape="box"];1665[label="vyw3000",fontsize=16,color="green",shape="box"];1666[label="vyw500",fontsize=16,color="green",shape="box"];1667[label="vyw3000",fontsize=16,color="green",shape="box"];1668[label="vyw500",fontsize=16,color="green",shape="box"];1669[label="vyw3000",fontsize=16,color="green",shape="box"];1670[label="vyw500",fontsize=16,color="green",shape="box"];1671[label="vyw3000",fontsize=16,color="green",shape="box"];1672[label="vyw500",fontsize=16,color="green",shape="box"];1673[label="vyw3000",fontsize=16,color="green",shape="box"];1674[label="vyw500",fontsize=16,color="green",shape="box"];1675[label="vyw3000",fontsize=16,color="green",shape="box"];1676[label="vyw500",fontsize=16,color="green",shape="box"];1677[label="vyw3000",fontsize=16,color="green",shape="box"];1678[label="vyw500",fontsize=16,color="green",shape="box"];1679[label="vyw3000",fontsize=16,color="green",shape="box"];1680[label="vyw500",fontsize=16,color="green",shape="box"];1681[label="vyw3000",fontsize=16,color="green",shape="box"];1682[label="vyw500",fontsize=16,color="green",shape="box"];1683[label="primEqInt (Pos (Succ vyw5000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1683 -> 2031[label="",style="solid", color="black", weight=3]; 1684[label="primEqInt (Pos (Succ vyw5000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1684 -> 2032[label="",style="solid", color="black", weight=3]; 1685[label="False",fontsize=16,color="green",shape="box"];1686[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1686 -> 2033[label="",style="solid", color="black", weight=3]; 1687[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1687 -> 2034[label="",style="solid", color="black", weight=3]; 1688[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1688 -> 2035[label="",style="solid", color="black", weight=3]; 1689[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1689 -> 2036[label="",style="solid", color="black", weight=3]; 1690[label="False",fontsize=16,color="green",shape="box"];1691[label="primEqInt (Neg (Succ vyw5000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1691 -> 2037[label="",style="solid", color="black", weight=3]; 1692[label="primEqInt (Neg (Succ vyw5000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1692 -> 2038[label="",style="solid", color="black", weight=3]; 1693[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1693 -> 2039[label="",style="solid", color="black", weight=3]; 1694[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1694 -> 2040[label="",style="solid", color="black", weight=3]; 1695[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1695 -> 2041[label="",style="solid", color="black", weight=3]; 1696[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1696 -> 2042[label="",style="solid", color="black", weight=3]; 1697[label="vyw502 == vyw3002",fontsize=16,color="blue",shape="box"];3595[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2043[label="",style="solid", color="blue", weight=3]; 3596[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2044[label="",style="solid", color="blue", weight=3]; 3597[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2045[label="",style="solid", color="blue", weight=3]; 3598[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2046[label="",style="solid", color="blue", weight=3]; 3599[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2047[label="",style="solid", color="blue", weight=3]; 3600[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2048[label="",style="solid", color="blue", weight=3]; 3601[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2049[label="",style="solid", color="blue", weight=3]; 3602[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2050[label="",style="solid", color="blue", weight=3]; 3603[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 2051[label="",style="solid", color="blue", weight=3]; 3604[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 2052[label="",style="solid", color="blue", weight=3]; 3605[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2053[label="",style="solid", color="blue", weight=3]; 3606[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2054[label="",style="solid", color="blue", weight=3]; 3607[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2055[label="",style="solid", color="blue", weight=3]; 3608[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2056[label="",style="solid", color="blue", weight=3]; 1698[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3609[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2057[label="",style="solid", color="blue", weight=3]; 3610[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2058[label="",style="solid", color="blue", weight=3]; 3611[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2059[label="",style="solid", color="blue", weight=3]; 3612[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2060[label="",style="solid", color="blue", weight=3]; 3613[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2061[label="",style="solid", color="blue", weight=3]; 3614[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 2062[label="",style="solid", color="blue", weight=3]; 3615[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 2063[label="",style="solid", color="blue", weight=3]; 3616[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 2064[label="",style="solid", color="blue", weight=3]; 3617[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 2065[label="",style="solid", color="blue", weight=3]; 3618[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2066[label="",style="solid", color="blue", weight=3]; 3619[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 2067[label="",style="solid", color="blue", weight=3]; 3620[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 2068[label="",style="solid", color="blue", weight=3]; 3621[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 2069[label="",style="solid", color="blue", weight=3]; 3622[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1698 -> 3622[label="",style="solid", color="blue", weight=9]; 3622 -> 2070[label="",style="solid", color="blue", weight=3]; 1699 -> 529[label="",style="dashed", color="red", weight=0]; 1699[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1699 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1699 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1700 -> 530[label="",style="dashed", color="red", weight=0]; 1700[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1700 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1700 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1701 -> 531[label="",style="dashed", color="red", weight=0]; 1701[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1701 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1701 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1702 -> 532[label="",style="dashed", color="red", weight=0]; 1702[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1702 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1702 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1703 -> 533[label="",style="dashed", color="red", weight=0]; 1703[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1703 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1703 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1704 -> 534[label="",style="dashed", color="red", weight=0]; 1704[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1704 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1704 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1705 -> 535[label="",style="dashed", color="red", weight=0]; 1705[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1705 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1705 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1706 -> 536[label="",style="dashed", color="red", weight=0]; 1706[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1706 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1706 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1707 -> 537[label="",style="dashed", color="red", weight=0]; 1707[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1707 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1707 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1708 -> 538[label="",style="dashed", color="red", weight=0]; 1708[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1708 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1708 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1709 -> 539[label="",style="dashed", color="red", weight=0]; 1709[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1709 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1709 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1710 -> 540[label="",style="dashed", color="red", weight=0]; 1710[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1710 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1710 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1711 -> 541[label="",style="dashed", color="red", weight=0]; 1711[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1711 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1711 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1712 -> 542[label="",style="dashed", color="red", weight=0]; 1712[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1712 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1712 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1713[label="vyw3000",fontsize=16,color="green",shape="box"];1714[label="vyw500",fontsize=16,color="green",shape="box"];1715[label="vyw3000",fontsize=16,color="green",shape="box"];1716[label="vyw500",fontsize=16,color="green",shape="box"];1717[label="vyw3000",fontsize=16,color="green",shape="box"];1718[label="vyw500",fontsize=16,color="green",shape="box"];1719[label="vyw3000",fontsize=16,color="green",shape="box"];1720[label="vyw500",fontsize=16,color="green",shape="box"];1721[label="vyw3000",fontsize=16,color="green",shape="box"];1722[label="vyw500",fontsize=16,color="green",shape="box"];1723[label="vyw3000",fontsize=16,color="green",shape="box"];1724[label="vyw500",fontsize=16,color="green",shape="box"];1725[label="vyw3000",fontsize=16,color="green",shape="box"];1726[label="vyw500",fontsize=16,color="green",shape="box"];1727[label="vyw3000",fontsize=16,color="green",shape="box"];1728[label="vyw500",fontsize=16,color="green",shape="box"];1729[label="vyw3000",fontsize=16,color="green",shape="box"];1730[label="vyw500",fontsize=16,color="green",shape="box"];1731[label="vyw3000",fontsize=16,color="green",shape="box"];1732[label="vyw500",fontsize=16,color="green",shape="box"];1733[label="vyw3000",fontsize=16,color="green",shape="box"];1734[label="vyw500",fontsize=16,color="green",shape="box"];1735[label="vyw3000",fontsize=16,color="green",shape="box"];1736[label="vyw500",fontsize=16,color="green",shape="box"];1737[label="vyw3000",fontsize=16,color="green",shape="box"];1738[label="vyw500",fontsize=16,color="green",shape="box"];1739[label="vyw3000",fontsize=16,color="green",shape="box"];1740[label="vyw500",fontsize=16,color="green",shape="box"];1741 -> 2099[label="",style="dashed", color="red", weight=0]; 1741[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1741 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1742 -> 2099[label="",style="dashed", color="red", weight=0]; 1742[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1742 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1743[label="LT <= vyw50",fontsize=16,color="burlywood",shape="box"];3623[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3623[label="",style="solid", color="burlywood", weight=9]; 3623 -> 2108[label="",style="solid", color="burlywood", weight=3]; 3624[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3624[label="",style="solid", color="burlywood", weight=9]; 3624 -> 2109[label="",style="solid", color="burlywood", weight=3]; 3625[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3625[label="",style="solid", color="burlywood", weight=9]; 3625 -> 2110[label="",style="solid", color="burlywood", weight=3]; 1744[label="EQ <= vyw50",fontsize=16,color="burlywood",shape="box"];3626[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3626[label="",style="solid", color="burlywood", weight=9]; 3626 -> 2111[label="",style="solid", color="burlywood", weight=3]; 3627[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3627[label="",style="solid", color="burlywood", weight=9]; 3627 -> 2112[label="",style="solid", color="burlywood", weight=3]; 3628[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3628[label="",style="solid", color="burlywood", weight=9]; 3628 -> 2113[label="",style="solid", color="burlywood", weight=3]; 1745[label="GT <= vyw50",fontsize=16,color="burlywood",shape="box"];3629[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3629[label="",style="solid", color="burlywood", weight=9]; 3629 -> 2114[label="",style="solid", color="burlywood", weight=3]; 3630[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3630[label="",style="solid", color="burlywood", weight=9]; 3630 -> 2115[label="",style="solid", color="burlywood", weight=3]; 3631[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3631[label="",style="solid", color="burlywood", weight=9]; 3631 -> 2116[label="",style="solid", color="burlywood", weight=3]; 1746[label="Left vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3632[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];1746 -> 3632[label="",style="solid", color="burlywood", weight=9]; 3632 -> 2117[label="",style="solid", color="burlywood", weight=3]; 3633[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];1746 -> 3633[label="",style="solid", color="burlywood", weight=9]; 3633 -> 2118[label="",style="solid", color="burlywood", weight=3]; 1747[label="Right vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3634[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3634[label="",style="solid", color="burlywood", weight=9]; 3634 -> 2119[label="",style="solid", color="burlywood", weight=3]; 3635[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3635[label="",style="solid", color="burlywood", weight=9]; 3635 -> 2120[label="",style="solid", color="burlywood", weight=3]; 1748 -> 2099[label="",style="dashed", color="red", weight=0]; 1748[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1748 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1749 -> 2099[label="",style="dashed", color="red", weight=0]; 1749[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1749 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1750[label="(vyw490,vyw491,vyw492) <= vyw50",fontsize=16,color="burlywood",shape="box"];3636[label="vyw50/(vyw500,vyw501,vyw502)",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3636[label="",style="solid", color="burlywood", weight=9]; 3636 -> 2121[label="",style="solid", color="burlywood", weight=3]; 1751 -> 2099[label="",style="dashed", color="red", weight=0]; 1751[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1751 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1752[label="(vyw490,vyw491) <= vyw50",fontsize=16,color="burlywood",shape="box"];3637[label="vyw50/(vyw500,vyw501)",fontsize=10,color="white",style="solid",shape="box"];1752 -> 3637[label="",style="solid", color="burlywood", weight=9]; 3637 -> 2122[label="",style="solid", color="burlywood", weight=3]; 1753[label="False <= vyw50",fontsize=16,color="burlywood",shape="box"];3638[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3638[label="",style="solid", color="burlywood", weight=9]; 3638 -> 2123[label="",style="solid", color="burlywood", weight=3]; 3639[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];1753 -> 3639[label="",style="solid", color="burlywood", weight=9]; 3639 -> 2124[label="",style="solid", color="burlywood", weight=3]; 1754[label="True <= vyw50",fontsize=16,color="burlywood",shape="box"];3640[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];1754 -> 3640[label="",style="solid", color="burlywood", weight=9]; 3640 -> 2125[label="",style="solid", color="burlywood", weight=3]; 3641[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];1754 -> 3641[label="",style="solid", color="burlywood", weight=9]; 3641 -> 2126[label="",style="solid", color="burlywood", weight=3]; 1755[label="Nothing <= vyw50",fontsize=16,color="burlywood",shape="box"];3642[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];1755 -> 3642[label="",style="solid", color="burlywood", weight=9]; 3642 -> 2127[label="",style="solid", color="burlywood", weight=3]; 3643[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];1755 -> 3643[label="",style="solid", color="burlywood", weight=9]; 3643 -> 2128[label="",style="solid", color="burlywood", weight=3]; 1756[label="Just vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3644[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];1756 -> 3644[label="",style="solid", color="burlywood", weight=9]; 3644 -> 2129[label="",style="solid", color="burlywood", weight=3]; 3645[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];1756 -> 3645[label="",style="solid", color="burlywood", weight=9]; 3645 -> 2130[label="",style="solid", color="burlywood", weight=3]; 1757 -> 2099[label="",style="dashed", color="red", weight=0]; 1757[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1757 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1758 -> 2099[label="",style="dashed", color="red", weight=0]; 1758[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1758 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1759 -> 2099[label="",style="dashed", color="red", weight=0]; 1759[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1759 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1760[label="compare0 (Left vyw134) (Left vyw135) True",fontsize=16,color="black",shape="box"];1760 -> 2131[label="",style="solid", color="black", weight=3]; 1761[label="vyw57",fontsize=16,color="green",shape="box"];1762[label="vyw56",fontsize=16,color="green",shape="box"];1763[label="vyw57",fontsize=16,color="green",shape="box"];1764[label="vyw56",fontsize=16,color="green",shape="box"];1765[label="vyw57",fontsize=16,color="green",shape="box"];1766[label="vyw56",fontsize=16,color="green",shape="box"];1767[label="vyw57",fontsize=16,color="green",shape="box"];1768[label="vyw56",fontsize=16,color="green",shape="box"];1769[label="vyw57",fontsize=16,color="green",shape="box"];1770[label="vyw56",fontsize=16,color="green",shape="box"];1771[label="vyw57",fontsize=16,color="green",shape="box"];1772[label="vyw56",fontsize=16,color="green",shape="box"];1773[label="vyw57",fontsize=16,color="green",shape="box"];1774[label="vyw56",fontsize=16,color="green",shape="box"];1775[label="vyw57",fontsize=16,color="green",shape="box"];1776[label="vyw56",fontsize=16,color="green",shape="box"];1777[label="vyw57",fontsize=16,color="green",shape="box"];1778[label="vyw56",fontsize=16,color="green",shape="box"];1779[label="vyw57",fontsize=16,color="green",shape="box"];1780[label="vyw56",fontsize=16,color="green",shape="box"];1781[label="vyw57",fontsize=16,color="green",shape="box"];1782[label="vyw56",fontsize=16,color="green",shape="box"];1783[label="vyw57",fontsize=16,color="green",shape="box"];1784[label="vyw56",fontsize=16,color="green",shape="box"];1785[label="vyw57",fontsize=16,color="green",shape="box"];1786[label="vyw56",fontsize=16,color="green",shape="box"];1787[label="vyw57",fontsize=16,color="green",shape="box"];1788[label="vyw56",fontsize=16,color="green",shape="box"];1789[label="compare0 (Right vyw141) (Right vyw142) True",fontsize=16,color="black",shape="box"];1789 -> 2132[label="",style="solid", color="black", weight=3]; 1790[label="primMulNat (Succ vyw30000) (Succ vyw5100)",fontsize=16,color="black",shape="box"];1790 -> 2133[label="",style="solid", color="black", weight=3]; 1791[label="primMulNat (Succ vyw30000) Zero",fontsize=16,color="black",shape="box"];1791 -> 2134[label="",style="solid", color="black", weight=3]; 1792[label="primMulNat Zero (Succ vyw5100)",fontsize=16,color="black",shape="box"];1792 -> 2135[label="",style="solid", color="black", weight=3]; 1793[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1793 -> 2136[label="",style="solid", color="black", weight=3]; 2140 -> 1140[label="",style="dashed", color="red", weight=0]; 2140[label="vyw106 == vyw109 && vyw107 <= vyw110",fontsize=16,color="magenta"];2140 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2140 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2141[label="vyw106 < vyw109",fontsize=16,color="blue",shape="box"];3646[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 2146[label="",style="solid", color="blue", weight=3]; 3647[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 2147[label="",style="solid", color="blue", weight=3]; 3648[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 2148[label="",style="solid", color="blue", weight=3]; 3649[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 2149[label="",style="solid", color="blue", weight=3]; 3650[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 2150[label="",style="solid", color="blue", weight=3]; 3651[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 2151[label="",style="solid", color="blue", weight=3]; 3652[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3652[label="",style="solid", color="blue", weight=9]; 3652 -> 2152[label="",style="solid", color="blue", weight=3]; 3653[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3653[label="",style="solid", color="blue", weight=9]; 3653 -> 2153[label="",style="solid", color="blue", weight=3]; 3654[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3654[label="",style="solid", color="blue", weight=9]; 3654 -> 2154[label="",style="solid", color="blue", weight=3]; 3655[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3655[label="",style="solid", color="blue", weight=9]; 3655 -> 2155[label="",style="solid", color="blue", weight=3]; 3656[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3656[label="",style="solid", color="blue", weight=9]; 3656 -> 2156[label="",style="solid", color="blue", weight=3]; 3657[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3657[label="",style="solid", color="blue", weight=9]; 3657 -> 2157[label="",style="solid", color="blue", weight=3]; 3658[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3658[label="",style="solid", color="blue", weight=9]; 3658 -> 2158[label="",style="solid", color="blue", weight=3]; 3659[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3659[label="",style="solid", color="blue", weight=9]; 3659 -> 2159[label="",style="solid", color="blue", weight=3]; 2139[label="vyw196 || vyw197",fontsize=16,color="burlywood",shape="triangle"];3660[label="vyw196/False",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3660[label="",style="solid", color="burlywood", weight=9]; 3660 -> 2160[label="",style="solid", color="burlywood", weight=3]; 3661[label="vyw196/True",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3661[label="",style="solid", color="burlywood", weight=9]; 3661 -> 2161[label="",style="solid", color="burlywood", weight=3]; 1796 -> 529[label="",style="dashed", color="red", weight=0]; 1796[label="vyw105 == vyw108",fontsize=16,color="magenta"];1796 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1796 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1797 -> 534[label="",style="dashed", color="red", weight=0]; 1797[label="vyw105 == vyw108",fontsize=16,color="magenta"];1797 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1797 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1798 -> 539[label="",style="dashed", color="red", weight=0]; 1798[label="vyw105 == vyw108",fontsize=16,color="magenta"];1798 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1798 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1799 -> 537[label="",style="dashed", color="red", weight=0]; 1799[label="vyw105 == vyw108",fontsize=16,color="magenta"];1799 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1799 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1800 -> 533[label="",style="dashed", color="red", weight=0]; 1800[label="vyw105 == vyw108",fontsize=16,color="magenta"];1800 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1800 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1801 -> 532[label="",style="dashed", color="red", weight=0]; 1801[label="vyw105 == vyw108",fontsize=16,color="magenta"];1801 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1801 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1802 -> 540[label="",style="dashed", color="red", weight=0]; 1802[label="vyw105 == vyw108",fontsize=16,color="magenta"];1802 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1802 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1803 -> 538[label="",style="dashed", color="red", weight=0]; 1803[label="vyw105 == vyw108",fontsize=16,color="magenta"];1803 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1803 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1804 -> 530[label="",style="dashed", color="red", weight=0]; 1804[label="vyw105 == vyw108",fontsize=16,color="magenta"];1804 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1804 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1805 -> 535[label="",style="dashed", color="red", weight=0]; 1805[label="vyw105 == vyw108",fontsize=16,color="magenta"];1805 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1805 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1806 -> 542[label="",style="dashed", color="red", weight=0]; 1806[label="vyw105 == vyw108",fontsize=16,color="magenta"];1806 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1806 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1807 -> 536[label="",style="dashed", color="red", weight=0]; 1807[label="vyw105 == vyw108",fontsize=16,color="magenta"];1807 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1807 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1808 -> 531[label="",style="dashed", color="red", weight=0]; 1808[label="vyw105 == vyw108",fontsize=16,color="magenta"];1808 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1808 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1809 -> 541[label="",style="dashed", color="red", weight=0]; 1809[label="vyw105 == vyw108",fontsize=16,color="magenta"];1809 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1809 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1810[label="vyw108",fontsize=16,color="green",shape="box"];1811[label="vyw105",fontsize=16,color="green",shape="box"];1812[label="vyw108",fontsize=16,color="green",shape="box"];1813[label="vyw105",fontsize=16,color="green",shape="box"];1814[label="vyw108",fontsize=16,color="green",shape="box"];1815[label="vyw105",fontsize=16,color="green",shape="box"];1816[label="vyw108",fontsize=16,color="green",shape="box"];1817[label="vyw105",fontsize=16,color="green",shape="box"];1818[label="vyw108",fontsize=16,color="green",shape="box"];1819[label="vyw105",fontsize=16,color="green",shape="box"];1820[label="vyw108",fontsize=16,color="green",shape="box"];1821[label="vyw105",fontsize=16,color="green",shape="box"];1822[label="vyw108",fontsize=16,color="green",shape="box"];1823[label="vyw105",fontsize=16,color="green",shape="box"];1824[label="vyw108",fontsize=16,color="green",shape="box"];1825[label="vyw105",fontsize=16,color="green",shape="box"];1826[label="vyw108",fontsize=16,color="green",shape="box"];1827[label="vyw105",fontsize=16,color="green",shape="box"];1828[label="vyw108",fontsize=16,color="green",shape="box"];1829[label="vyw105",fontsize=16,color="green",shape="box"];1830[label="vyw108",fontsize=16,color="green",shape="box"];1831[label="vyw105",fontsize=16,color="green",shape="box"];1832[label="vyw108",fontsize=16,color="green",shape="box"];1833[label="vyw105",fontsize=16,color="green",shape="box"];1834[label="vyw108",fontsize=16,color="green",shape="box"];1835[label="vyw105",fontsize=16,color="green",shape="box"];1836[label="vyw108",fontsize=16,color="green",shape="box"];1837[label="vyw105",fontsize=16,color="green",shape="box"];1838[label="compare1 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) vyw177",fontsize=16,color="burlywood",shape="triangle"];3662[label="vyw177/False",fontsize=10,color="white",style="solid",shape="box"];1838 -> 3662[label="",style="solid", color="burlywood", weight=9]; 3662 -> 2190[label="",style="solid", color="burlywood", weight=3]; 3663[label="vyw177/True",fontsize=10,color="white",style="solid",shape="box"];1838 -> 3663[label="",style="solid", color="burlywood", weight=9]; 3663 -> 2191[label="",style="solid", color="burlywood", weight=3]; 1839 -> 1838[label="",style="dashed", color="red", weight=0]; 1839[label="compare1 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) True",fontsize=16,color="magenta"];1839 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1840 -> 1449[label="",style="dashed", color="red", weight=0]; 1840[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1840 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1840 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1841 -> 1450[label="",style="dashed", color="red", weight=0]; 1841[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1841 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1841 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1842 -> 1451[label="",style="dashed", color="red", weight=0]; 1842[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1842 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1842 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1843 -> 1452[label="",style="dashed", color="red", weight=0]; 1843[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1843 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1843 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1844 -> 1453[label="",style="dashed", color="red", weight=0]; 1844[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1844 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1844 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1845 -> 1454[label="",style="dashed", color="red", weight=0]; 1845[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1845 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1845 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1846 -> 1455[label="",style="dashed", color="red", weight=0]; 1846[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1846 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1846 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1847 -> 1456[label="",style="dashed", color="red", weight=0]; 1847[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1847 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1847 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1848 -> 1457[label="",style="dashed", color="red", weight=0]; 1848[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1848 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1848 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1849 -> 1458[label="",style="dashed", color="red", weight=0]; 1849[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1849 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1849 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1850 -> 1459[label="",style="dashed", color="red", weight=0]; 1850[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1850 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1850 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1851 -> 1460[label="",style="dashed", color="red", weight=0]; 1851[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1851 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1851 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1852 -> 1461[label="",style="dashed", color="red", weight=0]; 1852[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1852 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1852 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1853 -> 1462[label="",style="dashed", color="red", weight=0]; 1853[label="vyw119 <= vyw121",fontsize=16,color="magenta"];1853 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1853 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1854 -> 529[label="",style="dashed", color="red", weight=0]; 1854[label="vyw118 == vyw120",fontsize=16,color="magenta"];1854 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1854 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1855 -> 534[label="",style="dashed", color="red", weight=0]; 1855[label="vyw118 == vyw120",fontsize=16,color="magenta"];1855 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1855 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1856 -> 539[label="",style="dashed", color="red", weight=0]; 1856[label="vyw118 == vyw120",fontsize=16,color="magenta"];1856 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1856 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1857 -> 537[label="",style="dashed", color="red", weight=0]; 1857[label="vyw118 == vyw120",fontsize=16,color="magenta"];1857 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1857 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1858 -> 533[label="",style="dashed", color="red", weight=0]; 1858[label="vyw118 == vyw120",fontsize=16,color="magenta"];1858 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1858 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1859 -> 532[label="",style="dashed", color="red", weight=0]; 1859[label="vyw118 == vyw120",fontsize=16,color="magenta"];1859 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1859 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1860 -> 540[label="",style="dashed", color="red", weight=0]; 1860[label="vyw118 == vyw120",fontsize=16,color="magenta"];1860 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1860 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1861 -> 538[label="",style="dashed", color="red", weight=0]; 1861[label="vyw118 == vyw120",fontsize=16,color="magenta"];1861 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1862 -> 530[label="",style="dashed", color="red", weight=0]; 1862[label="vyw118 == vyw120",fontsize=16,color="magenta"];1862 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1862 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1863 -> 535[label="",style="dashed", color="red", weight=0]; 1863[label="vyw118 == vyw120",fontsize=16,color="magenta"];1863 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1864 -> 542[label="",style="dashed", color="red", weight=0]; 1864[label="vyw118 == vyw120",fontsize=16,color="magenta"];1864 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1864 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1865 -> 536[label="",style="dashed", color="red", weight=0]; 1865[label="vyw118 == vyw120",fontsize=16,color="magenta"];1865 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1865 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1866 -> 531[label="",style="dashed", color="red", weight=0]; 1866[label="vyw118 == vyw120",fontsize=16,color="magenta"];1866 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1866 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1867 -> 541[label="",style="dashed", color="red", weight=0]; 1867[label="vyw118 == vyw120",fontsize=16,color="magenta"];1867 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1868[label="vyw120",fontsize=16,color="green",shape="box"];1869[label="vyw118",fontsize=16,color="green",shape="box"];1870[label="vyw120",fontsize=16,color="green",shape="box"];1871[label="vyw118",fontsize=16,color="green",shape="box"];1872[label="vyw120",fontsize=16,color="green",shape="box"];1873[label="vyw118",fontsize=16,color="green",shape="box"];1874[label="vyw120",fontsize=16,color="green",shape="box"];1875[label="vyw118",fontsize=16,color="green",shape="box"];1876[label="vyw120",fontsize=16,color="green",shape="box"];1877[label="vyw118",fontsize=16,color="green",shape="box"];1878[label="vyw120",fontsize=16,color="green",shape="box"];1879[label="vyw118",fontsize=16,color="green",shape="box"];1880[label="vyw120",fontsize=16,color="green",shape="box"];1881[label="vyw118",fontsize=16,color="green",shape="box"];1882[label="vyw120",fontsize=16,color="green",shape="box"];1883[label="vyw118",fontsize=16,color="green",shape="box"];1884[label="vyw120",fontsize=16,color="green",shape="box"];1885[label="vyw118",fontsize=16,color="green",shape="box"];1886[label="vyw120",fontsize=16,color="green",shape="box"];1887[label="vyw118",fontsize=16,color="green",shape="box"];1888[label="vyw120",fontsize=16,color="green",shape="box"];1889[label="vyw118",fontsize=16,color="green",shape="box"];1890[label="vyw120",fontsize=16,color="green",shape="box"];1891[label="vyw118",fontsize=16,color="green",shape="box"];1892[label="vyw120",fontsize=16,color="green",shape="box"];1893[label="vyw118",fontsize=16,color="green",shape="box"];1894[label="vyw120",fontsize=16,color="green",shape="box"];1895[label="vyw118",fontsize=16,color="green",shape="box"];1896[label="compare1 (vyw185,vyw186) (vyw187,vyw188) vyw190",fontsize=16,color="burlywood",shape="triangle"];3664[label="vyw190/False",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3664[label="",style="solid", color="burlywood", weight=9]; 3664 -> 2249[label="",style="solid", color="burlywood", weight=3]; 3665[label="vyw190/True",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3665[label="",style="solid", color="burlywood", weight=9]; 3665 -> 2250[label="",style="solid", color="burlywood", weight=3]; 1897 -> 1896[label="",style="dashed", color="red", weight=0]; 1897[label="compare1 (vyw185,vyw186) (vyw187,vyw188) True",fontsize=16,color="magenta"];1897 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1898[label="vyw95",fontsize=16,color="green",shape="box"];1899[label="vyw94",fontsize=16,color="green",shape="box"];1900[label="vyw95",fontsize=16,color="green",shape="box"];1901[label="vyw94",fontsize=16,color="green",shape="box"];1902[label="vyw95",fontsize=16,color="green",shape="box"];1903[label="vyw94",fontsize=16,color="green",shape="box"];1904[label="vyw95",fontsize=16,color="green",shape="box"];1905[label="vyw94",fontsize=16,color="green",shape="box"];1906[label="vyw95",fontsize=16,color="green",shape="box"];1907[label="vyw94",fontsize=16,color="green",shape="box"];1908[label="vyw95",fontsize=16,color="green",shape="box"];1909[label="vyw94",fontsize=16,color="green",shape="box"];1910[label="vyw95",fontsize=16,color="green",shape="box"];1911[label="vyw94",fontsize=16,color="green",shape="box"];1912[label="vyw95",fontsize=16,color="green",shape="box"];1913[label="vyw94",fontsize=16,color="green",shape="box"];1914[label="vyw95",fontsize=16,color="green",shape="box"];1915[label="vyw94",fontsize=16,color="green",shape="box"];1916[label="vyw95",fontsize=16,color="green",shape="box"];1917[label="vyw94",fontsize=16,color="green",shape="box"];1918[label="vyw95",fontsize=16,color="green",shape="box"];1919[label="vyw94",fontsize=16,color="green",shape="box"];1920[label="vyw95",fontsize=16,color="green",shape="box"];1921[label="vyw94",fontsize=16,color="green",shape="box"];1922[label="vyw95",fontsize=16,color="green",shape="box"];1923[label="vyw94",fontsize=16,color="green",shape="box"];1924[label="vyw95",fontsize=16,color="green",shape="box"];1925[label="vyw94",fontsize=16,color="green",shape="box"];1926[label="compare0 (Just vyw156) (Just vyw157) True",fontsize=16,color="black",shape="box"];1926 -> 2252[label="",style="solid", color="black", weight=3]; 1927[label="primEqNat (Succ vyw5000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];1927 -> 2253[label="",style="solid", color="black", weight=3]; 1928[label="primEqNat (Succ vyw5000) Zero",fontsize=16,color="black",shape="box"];1928 -> 2254[label="",style="solid", color="black", weight=3]; 1929[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];1929 -> 2255[label="",style="solid", color="black", weight=3]; 1930[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1930 -> 2256[label="",style="solid", color="black", weight=3]; 1931[label="vyw3001",fontsize=16,color="green",shape="box"];1932[label="vyw501",fontsize=16,color="green",shape="box"];1933[label="vyw3001",fontsize=16,color="green",shape="box"];1934[label="vyw501",fontsize=16,color="green",shape="box"];1935[label="vyw3001",fontsize=16,color="green",shape="box"];1936[label="vyw501",fontsize=16,color="green",shape="box"];1937[label="vyw3001",fontsize=16,color="green",shape="box"];1938[label="vyw501",fontsize=16,color="green",shape="box"];1939[label="vyw3001",fontsize=16,color="green",shape="box"];1940[label="vyw501",fontsize=16,color="green",shape="box"];1941[label="vyw3001",fontsize=16,color="green",shape="box"];1942[label="vyw501",fontsize=16,color="green",shape="box"];1943[label="vyw3001",fontsize=16,color="green",shape="box"];1944[label="vyw501",fontsize=16,color="green",shape="box"];1945[label="vyw3001",fontsize=16,color="green",shape="box"];1946[label="vyw501",fontsize=16,color="green",shape="box"];1947[label="vyw3001",fontsize=16,color="green",shape="box"];1948[label="vyw501",fontsize=16,color="green",shape="box"];1949[label="vyw3001",fontsize=16,color="green",shape="box"];1950[label="vyw501",fontsize=16,color="green",shape="box"];1951[label="vyw3001",fontsize=16,color="green",shape="box"];1952[label="vyw501",fontsize=16,color="green",shape="box"];1953[label="vyw3001",fontsize=16,color="green",shape="box"];1954[label="vyw501",fontsize=16,color="green",shape="box"];1955[label="vyw3001",fontsize=16,color="green",shape="box"];1956[label="vyw501",fontsize=16,color="green",shape="box"];1957[label="vyw3001",fontsize=16,color="green",shape="box"];1958[label="vyw501",fontsize=16,color="green",shape="box"];1959[label="vyw3000",fontsize=16,color="green",shape="box"];1960[label="vyw500",fontsize=16,color="green",shape="box"];1961[label="vyw3000",fontsize=16,color="green",shape="box"];1962[label="vyw500",fontsize=16,color="green",shape="box"];1963[label="vyw3000",fontsize=16,color="green",shape="box"];1964[label="vyw500",fontsize=16,color="green",shape="box"];1965[label="vyw3000",fontsize=16,color="green",shape="box"];1966[label="vyw500",fontsize=16,color="green",shape="box"];1967[label="vyw3000",fontsize=16,color="green",shape="box"];1968[label="vyw500",fontsize=16,color="green",shape="box"];1969[label="vyw3000",fontsize=16,color="green",shape="box"];1970[label="vyw500",fontsize=16,color="green",shape="box"];1971[label="vyw3000",fontsize=16,color="green",shape="box"];1972[label="vyw500",fontsize=16,color="green",shape="box"];1973[label="vyw3000",fontsize=16,color="green",shape="box"];1974[label="vyw500",fontsize=16,color="green",shape="box"];1975[label="vyw3000",fontsize=16,color="green",shape="box"];1976[label="vyw500",fontsize=16,color="green",shape="box"];1977[label="vyw3000",fontsize=16,color="green",shape="box"];1978[label="vyw500",fontsize=16,color="green",shape="box"];1979[label="vyw3000",fontsize=16,color="green",shape="box"];1980[label="vyw500",fontsize=16,color="green",shape="box"];1981[label="vyw3000",fontsize=16,color="green",shape="box"];1982[label="vyw500",fontsize=16,color="green",shape="box"];1983[label="vyw3000",fontsize=16,color="green",shape="box"];1984[label="vyw500",fontsize=16,color="green",shape="box"];1985[label="vyw3000",fontsize=16,color="green",shape="box"];1986[label="vyw500",fontsize=16,color="green",shape="box"];1987[label="vyw3001",fontsize=16,color="green",shape="box"];1988[label="vyw501",fontsize=16,color="green",shape="box"];1989[label="vyw3001",fontsize=16,color="green",shape="box"];1990[label="vyw501",fontsize=16,color="green",shape="box"];1991[label="vyw3000",fontsize=16,color="green",shape="box"];1992[label="vyw500",fontsize=16,color="green",shape="box"];1993[label="vyw3000",fontsize=16,color="green",shape="box"];1994[label="vyw500",fontsize=16,color="green",shape="box"];1995[label="vyw3000",fontsize=16,color="green",shape="box"];1996[label="vyw500",fontsize=16,color="green",shape="box"];1997[label="vyw3000",fontsize=16,color="green",shape="box"];1998[label="vyw500",fontsize=16,color="green",shape="box"];1999[label="vyw3000",fontsize=16,color="green",shape="box"];2000[label="vyw500",fontsize=16,color="green",shape="box"];2001[label="vyw3000",fontsize=16,color="green",shape="box"];2002[label="vyw500",fontsize=16,color="green",shape="box"];2003[label="vyw3000",fontsize=16,color="green",shape="box"];2004[label="vyw500",fontsize=16,color="green",shape="box"];2005[label="vyw3000",fontsize=16,color="green",shape="box"];2006[label="vyw500",fontsize=16,color="green",shape="box"];2007[label="vyw3000",fontsize=16,color="green",shape="box"];2008[label="vyw500",fontsize=16,color="green",shape="box"];2009[label="vyw3000",fontsize=16,color="green",shape="box"];2010[label="vyw500",fontsize=16,color="green",shape="box"];2011[label="vyw3000",fontsize=16,color="green",shape="box"];2012[label="vyw500",fontsize=16,color="green",shape="box"];2013[label="vyw3000",fontsize=16,color="green",shape="box"];2014[label="vyw500",fontsize=16,color="green",shape="box"];2015[label="vyw3000",fontsize=16,color="green",shape="box"];2016[label="vyw500",fontsize=16,color="green",shape="box"];2017[label="vyw3000",fontsize=16,color="green",shape="box"];2018[label="vyw500",fontsize=16,color="green",shape="box"];2019[label="vyw3000",fontsize=16,color="green",shape="box"];2020[label="vyw500",fontsize=16,color="green",shape="box"];2021[label="vyw3000",fontsize=16,color="green",shape="box"];2022[label="vyw500",fontsize=16,color="green",shape="box"];2023[label="vyw3000",fontsize=16,color="green",shape="box"];2024[label="vyw501",fontsize=16,color="green",shape="box"];2025[label="vyw3001",fontsize=16,color="green",shape="box"];2026[label="vyw500",fontsize=16,color="green",shape="box"];2027[label="vyw3000",fontsize=16,color="green",shape="box"];2028[label="vyw501",fontsize=16,color="green",shape="box"];2029[label="vyw3001",fontsize=16,color="green",shape="box"];2030[label="vyw500",fontsize=16,color="green",shape="box"];2031 -> 1394[label="",style="dashed", color="red", weight=0]; 2031[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];2031 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2031 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2032[label="False",fontsize=16,color="green",shape="box"];2033[label="False",fontsize=16,color="green",shape="box"];2034[label="True",fontsize=16,color="green",shape="box"];2035[label="False",fontsize=16,color="green",shape="box"];2036[label="True",fontsize=16,color="green",shape="box"];2037 -> 1394[label="",style="dashed", color="red", weight=0]; 2037[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];2037 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2037 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2038[label="False",fontsize=16,color="green",shape="box"];2039[label="False",fontsize=16,color="green",shape="box"];2040[label="True",fontsize=16,color="green",shape="box"];2041[label="False",fontsize=16,color="green",shape="box"];2042[label="True",fontsize=16,color="green",shape="box"];2043 -> 529[label="",style="dashed", color="red", weight=0]; 2043[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2043 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2044 -> 530[label="",style="dashed", color="red", weight=0]; 2044[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2044 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2044 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2045 -> 531[label="",style="dashed", color="red", weight=0]; 2045[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2045 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2045 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2046 -> 532[label="",style="dashed", color="red", weight=0]; 2046[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2046 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2047 -> 533[label="",style="dashed", color="red", weight=0]; 2047[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2047 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2048 -> 534[label="",style="dashed", color="red", weight=0]; 2048[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2048 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2048 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2049 -> 535[label="",style="dashed", color="red", weight=0]; 2049[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2049 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2050 -> 536[label="",style="dashed", color="red", weight=0]; 2050[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2050 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2051 -> 537[label="",style="dashed", color="red", weight=0]; 2051[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2051 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2052 -> 538[label="",style="dashed", color="red", weight=0]; 2052[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2052 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2053 -> 539[label="",style="dashed", color="red", weight=0]; 2053[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2053 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2054 -> 540[label="",style="dashed", color="red", weight=0]; 2054[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2054 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2055 -> 541[label="",style="dashed", color="red", weight=0]; 2055[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2055 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2056 -> 542[label="",style="dashed", color="red", weight=0]; 2056[label="vyw502 == vyw3002",fontsize=16,color="magenta"];2056 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2057 -> 529[label="",style="dashed", color="red", weight=0]; 2057[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2057 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2058 -> 530[label="",style="dashed", color="red", weight=0]; 2058[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2058 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2059 -> 531[label="",style="dashed", color="red", weight=0]; 2059[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2059 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2060 -> 532[label="",style="dashed", color="red", weight=0]; 2060[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2060 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2061 -> 533[label="",style="dashed", color="red", weight=0]; 2061[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2061 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2062 -> 534[label="",style="dashed", color="red", weight=0]; 2062[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2062 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2063 -> 535[label="",style="dashed", color="red", weight=0]; 2063[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2063 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2064 -> 536[label="",style="dashed", color="red", weight=0]; 2064[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2064 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2065 -> 537[label="",style="dashed", color="red", weight=0]; 2065[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2065 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2066 -> 538[label="",style="dashed", color="red", weight=0]; 2066[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2066 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2067 -> 539[label="",style="dashed", color="red", weight=0]; 2067[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2067 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2068 -> 540[label="",style="dashed", color="red", weight=0]; 2068[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2068 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2069 -> 541[label="",style="dashed", color="red", weight=0]; 2069[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2069 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2070 -> 542[label="",style="dashed", color="red", weight=0]; 2070[label="vyw501 == vyw3001",fontsize=16,color="magenta"];2070 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2071[label="vyw3000",fontsize=16,color="green",shape="box"];2072[label="vyw500",fontsize=16,color="green",shape="box"];2073[label="vyw3000",fontsize=16,color="green",shape="box"];2074[label="vyw500",fontsize=16,color="green",shape="box"];2075[label="vyw3000",fontsize=16,color="green",shape="box"];2076[label="vyw500",fontsize=16,color="green",shape="box"];2077[label="vyw3000",fontsize=16,color="green",shape="box"];2078[label="vyw500",fontsize=16,color="green",shape="box"];2079[label="vyw3000",fontsize=16,color="green",shape="box"];2080[label="vyw500",fontsize=16,color="green",shape="box"];2081[label="vyw3000",fontsize=16,color="green",shape="box"];2082[label="vyw500",fontsize=16,color="green",shape="box"];2083[label="vyw3000",fontsize=16,color="green",shape="box"];2084[label="vyw500",fontsize=16,color="green",shape="box"];2085[label="vyw3000",fontsize=16,color="green",shape="box"];2086[label="vyw500",fontsize=16,color="green",shape="box"];2087[label="vyw3000",fontsize=16,color="green",shape="box"];2088[label="vyw500",fontsize=16,color="green",shape="box"];2089[label="vyw3000",fontsize=16,color="green",shape="box"];2090[label="vyw500",fontsize=16,color="green",shape="box"];2091[label="vyw3000",fontsize=16,color="green",shape="box"];2092[label="vyw500",fontsize=16,color="green",shape="box"];2093[label="vyw3000",fontsize=16,color="green",shape="box"];2094[label="vyw500",fontsize=16,color="green",shape="box"];2095[label="vyw3000",fontsize=16,color="green",shape="box"];2096[label="vyw500",fontsize=16,color="green",shape="box"];2097[label="vyw3000",fontsize=16,color="green",shape="box"];2098[label="vyw500",fontsize=16,color="green",shape="box"];2100 -> 180[label="",style="dashed", color="red", weight=0]; 2100[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2100 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2099[label="vyw192 /= GT",fontsize=16,color="black",shape="triangle"];2099 -> 2319[label="",style="solid", color="black", weight=3]; 2101 -> 181[label="",style="dashed", color="red", weight=0]; 2101[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2101 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2108[label="LT <= LT",fontsize=16,color="black",shape="box"];2108 -> 2322[label="",style="solid", color="black", weight=3]; 2109[label="LT <= EQ",fontsize=16,color="black",shape="box"];2109 -> 2323[label="",style="solid", color="black", weight=3]; 2110[label="LT <= GT",fontsize=16,color="black",shape="box"];2110 -> 2324[label="",style="solid", color="black", weight=3]; 2111[label="EQ <= LT",fontsize=16,color="black",shape="box"];2111 -> 2325[label="",style="solid", color="black", weight=3]; 2112[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2112 -> 2326[label="",style="solid", color="black", weight=3]; 2113[label="EQ <= GT",fontsize=16,color="black",shape="box"];2113 -> 2327[label="",style="solid", color="black", weight=3]; 2114[label="GT <= LT",fontsize=16,color="black",shape="box"];2114 -> 2328[label="",style="solid", color="black", weight=3]; 2115[label="GT <= EQ",fontsize=16,color="black",shape="box"];2115 -> 2329[label="",style="solid", color="black", weight=3]; 2116[label="GT <= GT",fontsize=16,color="black",shape="box"];2116 -> 2330[label="",style="solid", color="black", weight=3]; 2117[label="Left vyw490 <= Left vyw500",fontsize=16,color="black",shape="box"];2117 -> 2331[label="",style="solid", color="black", weight=3]; 2118[label="Left vyw490 <= Right vyw500",fontsize=16,color="black",shape="box"];2118 -> 2332[label="",style="solid", color="black", weight=3]; 2119[label="Right vyw490 <= Left vyw500",fontsize=16,color="black",shape="box"];2119 -> 2333[label="",style="solid", color="black", weight=3]; 2120[label="Right vyw490 <= Right vyw500",fontsize=16,color="black",shape="box"];2120 -> 2334[label="",style="solid", color="black", weight=3]; 2102 -> 184[label="",style="dashed", color="red", weight=0]; 2102[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2102 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2103 -> 185[label="",style="dashed", color="red", weight=0]; 2103[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2103 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2121[label="(vyw490,vyw491,vyw492) <= (vyw500,vyw501,vyw502)",fontsize=16,color="black",shape="box"];2121 -> 2339[label="",style="solid", color="black", weight=3]; 2104 -> 187[label="",style="dashed", color="red", weight=0]; 2104[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2104 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2122[label="(vyw490,vyw491) <= (vyw500,vyw501)",fontsize=16,color="black",shape="box"];2122 -> 2342[label="",style="solid", color="black", weight=3]; 2123[label="False <= False",fontsize=16,color="black",shape="box"];2123 -> 2343[label="",style="solid", color="black", weight=3]; 2124[label="False <= True",fontsize=16,color="black",shape="box"];2124 -> 2344[label="",style="solid", color="black", weight=3]; 2125[label="True <= False",fontsize=16,color="black",shape="box"];2125 -> 2345[label="",style="solid", color="black", weight=3]; 2126[label="True <= True",fontsize=16,color="black",shape="box"];2126 -> 2346[label="",style="solid", color="black", weight=3]; 2127[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2127 -> 2347[label="",style="solid", color="black", weight=3]; 2128[label="Nothing <= Just vyw500",fontsize=16,color="black",shape="box"];2128 -> 2348[label="",style="solid", color="black", weight=3]; 2129[label="Just vyw490 <= Nothing",fontsize=16,color="black",shape="box"];2129 -> 2349[label="",style="solid", color="black", weight=3]; 2130[label="Just vyw490 <= Just vyw500",fontsize=16,color="black",shape="box"];2130 -> 2350[label="",style="solid", color="black", weight=3]; 2105 -> 191[label="",style="dashed", color="red", weight=0]; 2105[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2105 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2106 -> 192[label="",style="dashed", color="red", weight=0]; 2106[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2106 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2107 -> 193[label="",style="dashed", color="red", weight=0]; 2107[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2107 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2131[label="GT",fontsize=16,color="green",shape="box"];2132[label="GT",fontsize=16,color="green",shape="box"];2133 -> 2357[label="",style="dashed", color="red", weight=0]; 2133[label="primPlusNat (primMulNat vyw30000 (Succ vyw5100)) (Succ vyw5100)",fontsize=16,color="magenta"];2133 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2134[label="Zero",fontsize=16,color="green",shape="box"];2135[label="Zero",fontsize=16,color="green",shape="box"];2136[label="Zero",fontsize=16,color="green",shape="box"];2144[label="vyw107 <= vyw110",fontsize=16,color="blue",shape="box"];3666[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 2359[label="",style="solid", color="blue", weight=3]; 3667[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 2360[label="",style="solid", color="blue", weight=3]; 3668[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 2361[label="",style="solid", color="blue", weight=3]; 3669[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 2362[label="",style="solid", color="blue", weight=3]; 3670[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 2363[label="",style="solid", color="blue", weight=3]; 3671[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 2364[label="",style="solid", color="blue", weight=3]; 3672[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 2365[label="",style="solid", color="blue", weight=3]; 3673[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 2366[label="",style="solid", color="blue", weight=3]; 3674[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 2367[label="",style="solid", color="blue", weight=3]; 3675[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 2368[label="",style="solid", color="blue", weight=3]; 3676[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3676[label="",style="solid", color="blue", weight=9]; 3676 -> 2369[label="",style="solid", color="blue", weight=3]; 3677[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 2370[label="",style="solid", color="blue", weight=3]; 3678[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 2371[label="",style="solid", color="blue", weight=3]; 3679[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3679[label="",style="solid", color="blue", weight=9]; 3679 -> 2372[label="",style="solid", color="blue", weight=3]; 2145[label="vyw106 == vyw109",fontsize=16,color="blue",shape="box"];3680[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3680[label="",style="solid", color="blue", weight=9]; 3680 -> 2373[label="",style="solid", color="blue", weight=3]; 3681[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3681[label="",style="solid", color="blue", weight=9]; 3681 -> 2374[label="",style="solid", color="blue", weight=3]; 3682[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3682[label="",style="solid", color="blue", weight=9]; 3682 -> 2375[label="",style="solid", color="blue", weight=3]; 3683[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3683[label="",style="solid", color="blue", weight=9]; 3683 -> 2376[label="",style="solid", color="blue", weight=3]; 3684[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3684[label="",style="solid", color="blue", weight=9]; 3684 -> 2377[label="",style="solid", color="blue", weight=3]; 3685[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3685[label="",style="solid", color="blue", weight=9]; 3685 -> 2378[label="",style="solid", color="blue", weight=3]; 3686[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3686[label="",style="solid", color="blue", weight=9]; 3686 -> 2379[label="",style="solid", color="blue", weight=3]; 3687[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3687[label="",style="solid", color="blue", weight=9]; 3687 -> 2380[label="",style="solid", color="blue", weight=3]; 3688[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3688[label="",style="solid", color="blue", weight=9]; 3688 -> 2381[label="",style="solid", color="blue", weight=3]; 3689[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3689[label="",style="solid", color="blue", weight=9]; 3689 -> 2382[label="",style="solid", color="blue", weight=3]; 3690[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3690[label="",style="solid", color="blue", weight=9]; 3690 -> 2383[label="",style="solid", color="blue", weight=3]; 3691[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3691[label="",style="solid", color="blue", weight=9]; 3691 -> 2384[label="",style="solid", color="blue", weight=3]; 3692[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3692[label="",style="solid", color="blue", weight=9]; 3692 -> 2385[label="",style="solid", color="blue", weight=3]; 3693[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3693[label="",style="solid", color="blue", weight=9]; 3693 -> 2386[label="",style="solid", color="blue", weight=3]; 2146 -> 23[label="",style="dashed", color="red", weight=0]; 2146[label="vyw106 < vyw109",fontsize=16,color="magenta"];2146 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2146 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2147 -> 24[label="",style="dashed", color="red", weight=0]; 2147[label="vyw106 < vyw109",fontsize=16,color="magenta"];2147 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2147 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2148 -> 25[label="",style="dashed", color="red", weight=0]; 2148[label="vyw106 < vyw109",fontsize=16,color="magenta"];2148 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2148 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2149 -> 26[label="",style="dashed", color="red", weight=0]; 2149[label="vyw106 < vyw109",fontsize=16,color="magenta"];2149 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2150 -> 27[label="",style="dashed", color="red", weight=0]; 2150[label="vyw106 < vyw109",fontsize=16,color="magenta"];2150 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2150 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2151 -> 28[label="",style="dashed", color="red", weight=0]; 2151[label="vyw106 < vyw109",fontsize=16,color="magenta"];2151 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2152 -> 29[label="",style="dashed", color="red", weight=0]; 2152[label="vyw106 < vyw109",fontsize=16,color="magenta"];2152 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2153 -> 30[label="",style="dashed", color="red", weight=0]; 2153[label="vyw106 < vyw109",fontsize=16,color="magenta"];2153 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2154 -> 31[label="",style="dashed", color="red", weight=0]; 2154[label="vyw106 < vyw109",fontsize=16,color="magenta"];2154 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2154 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2155 -> 32[label="",style="dashed", color="red", weight=0]; 2155[label="vyw106 < vyw109",fontsize=16,color="magenta"];2155 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2156 -> 33[label="",style="dashed", color="red", weight=0]; 2156[label="vyw106 < vyw109",fontsize=16,color="magenta"];2156 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2157 -> 34[label="",style="dashed", color="red", weight=0]; 2157[label="vyw106 < vyw109",fontsize=16,color="magenta"];2157 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2158 -> 35[label="",style="dashed", color="red", weight=0]; 2158[label="vyw106 < vyw109",fontsize=16,color="magenta"];2158 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2159 -> 36[label="",style="dashed", color="red", weight=0]; 2159[label="vyw106 < vyw109",fontsize=16,color="magenta"];2159 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2160[label="False || vyw197",fontsize=16,color="black",shape="box"];2160 -> 2415[label="",style="solid", color="black", weight=3]; 2161[label="True || vyw197",fontsize=16,color="black",shape="box"];2161 -> 2416[label="",style="solid", color="black", weight=3]; 2162[label="vyw108",fontsize=16,color="green",shape="box"];2163[label="vyw105",fontsize=16,color="green",shape="box"];2164[label="vyw108",fontsize=16,color="green",shape="box"];2165[label="vyw105",fontsize=16,color="green",shape="box"];2166[label="vyw108",fontsize=16,color="green",shape="box"];2167[label="vyw105",fontsize=16,color="green",shape="box"];2168[label="vyw108",fontsize=16,color="green",shape="box"];2169[label="vyw105",fontsize=16,color="green",shape="box"];2170[label="vyw108",fontsize=16,color="green",shape="box"];2171[label="vyw105",fontsize=16,color="green",shape="box"];2172[label="vyw108",fontsize=16,color="green",shape="box"];2173[label="vyw105",fontsize=16,color="green",shape="box"];2174[label="vyw108",fontsize=16,color="green",shape="box"];2175[label="vyw105",fontsize=16,color="green",shape="box"];2176[label="vyw108",fontsize=16,color="green",shape="box"];2177[label="vyw105",fontsize=16,color="green",shape="box"];2178[label="vyw108",fontsize=16,color="green",shape="box"];2179[label="vyw105",fontsize=16,color="green",shape="box"];2180[label="vyw108",fontsize=16,color="green",shape="box"];2181[label="vyw105",fontsize=16,color="green",shape="box"];2182[label="vyw108",fontsize=16,color="green",shape="box"];2183[label="vyw105",fontsize=16,color="green",shape="box"];2184[label="vyw108",fontsize=16,color="green",shape="box"];2185[label="vyw105",fontsize=16,color="green",shape="box"];2186[label="vyw108",fontsize=16,color="green",shape="box"];2187[label="vyw105",fontsize=16,color="green",shape="box"];2188[label="vyw108",fontsize=16,color="green",shape="box"];2189[label="vyw105",fontsize=16,color="green",shape="box"];2190[label="compare1 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) False",fontsize=16,color="black",shape="box"];2190 -> 2417[label="",style="solid", color="black", weight=3]; 2191[label="compare1 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) True",fontsize=16,color="black",shape="box"];2191 -> 2418[label="",style="solid", color="black", weight=3]; 2192[label="True",fontsize=16,color="green",shape="box"];2193[label="vyw121",fontsize=16,color="green",shape="box"];2194[label="vyw119",fontsize=16,color="green",shape="box"];2195[label="vyw121",fontsize=16,color="green",shape="box"];2196[label="vyw119",fontsize=16,color="green",shape="box"];2197[label="vyw121",fontsize=16,color="green",shape="box"];2198[label="vyw119",fontsize=16,color="green",shape="box"];2199[label="vyw121",fontsize=16,color="green",shape="box"];2200[label="vyw119",fontsize=16,color="green",shape="box"];2201[label="vyw121",fontsize=16,color="green",shape="box"];2202[label="vyw119",fontsize=16,color="green",shape="box"];2203[label="vyw121",fontsize=16,color="green",shape="box"];2204[label="vyw119",fontsize=16,color="green",shape="box"];2205[label="vyw121",fontsize=16,color="green",shape="box"];2206[label="vyw119",fontsize=16,color="green",shape="box"];2207[label="vyw121",fontsize=16,color="green",shape="box"];2208[label="vyw119",fontsize=16,color="green",shape="box"];2209[label="vyw121",fontsize=16,color="green",shape="box"];2210[label="vyw119",fontsize=16,color="green",shape="box"];2211[label="vyw121",fontsize=16,color="green",shape="box"];2212[label="vyw119",fontsize=16,color="green",shape="box"];2213[label="vyw121",fontsize=16,color="green",shape="box"];2214[label="vyw119",fontsize=16,color="green",shape="box"];2215[label="vyw121",fontsize=16,color="green",shape="box"];2216[label="vyw119",fontsize=16,color="green",shape="box"];2217[label="vyw121",fontsize=16,color="green",shape="box"];2218[label="vyw119",fontsize=16,color="green",shape="box"];2219[label="vyw121",fontsize=16,color="green",shape="box"];2220[label="vyw119",fontsize=16,color="green",shape="box"];2221[label="vyw120",fontsize=16,color="green",shape="box"];2222[label="vyw118",fontsize=16,color="green",shape="box"];2223[label="vyw120",fontsize=16,color="green",shape="box"];2224[label="vyw118",fontsize=16,color="green",shape="box"];2225[label="vyw120",fontsize=16,color="green",shape="box"];2226[label="vyw118",fontsize=16,color="green",shape="box"];2227[label="vyw120",fontsize=16,color="green",shape="box"];2228[label="vyw118",fontsize=16,color="green",shape="box"];2229[label="vyw120",fontsize=16,color="green",shape="box"];2230[label="vyw118",fontsize=16,color="green",shape="box"];2231[label="vyw120",fontsize=16,color="green",shape="box"];2232[label="vyw118",fontsize=16,color="green",shape="box"];2233[label="vyw120",fontsize=16,color="green",shape="box"];2234[label="vyw118",fontsize=16,color="green",shape="box"];2235[label="vyw120",fontsize=16,color="green",shape="box"];2236[label="vyw118",fontsize=16,color="green",shape="box"];2237[label="vyw120",fontsize=16,color="green",shape="box"];2238[label="vyw118",fontsize=16,color="green",shape="box"];2239[label="vyw120",fontsize=16,color="green",shape="box"];2240[label="vyw118",fontsize=16,color="green",shape="box"];2241[label="vyw120",fontsize=16,color="green",shape="box"];2242[label="vyw118",fontsize=16,color="green",shape="box"];2243[label="vyw120",fontsize=16,color="green",shape="box"];2244[label="vyw118",fontsize=16,color="green",shape="box"];2245[label="vyw120",fontsize=16,color="green",shape="box"];2246[label="vyw118",fontsize=16,color="green",shape="box"];2247[label="vyw120",fontsize=16,color="green",shape="box"];2248[label="vyw118",fontsize=16,color="green",shape="box"];2249[label="compare1 (vyw185,vyw186) (vyw187,vyw188) False",fontsize=16,color="black",shape="box"];2249 -> 2419[label="",style="solid", color="black", weight=3]; 2250[label="compare1 (vyw185,vyw186) (vyw187,vyw188) True",fontsize=16,color="black",shape="box"];2250 -> 2420[label="",style="solid", color="black", weight=3]; 2251[label="True",fontsize=16,color="green",shape="box"];2252[label="GT",fontsize=16,color="green",shape="box"];2253 -> 1394[label="",style="dashed", color="red", weight=0]; 2253[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];2253 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2253 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2254[label="False",fontsize=16,color="green",shape="box"];2255[label="False",fontsize=16,color="green",shape="box"];2256[label="True",fontsize=16,color="green",shape="box"];2257[label="vyw30000",fontsize=16,color="green",shape="box"];2258[label="vyw5000",fontsize=16,color="green",shape="box"];2259[label="vyw30000",fontsize=16,color="green",shape="box"];2260[label="vyw5000",fontsize=16,color="green",shape="box"];2261[label="vyw3002",fontsize=16,color="green",shape="box"];2262[label="vyw502",fontsize=16,color="green",shape="box"];2263[label="vyw3002",fontsize=16,color="green",shape="box"];2264[label="vyw502",fontsize=16,color="green",shape="box"];2265[label="vyw3002",fontsize=16,color="green",shape="box"];2266[label="vyw502",fontsize=16,color="green",shape="box"];2267[label="vyw3002",fontsize=16,color="green",shape="box"];2268[label="vyw502",fontsize=16,color="green",shape="box"];2269[label="vyw3002",fontsize=16,color="green",shape="box"];2270[label="vyw502",fontsize=16,color="green",shape="box"];2271[label="vyw3002",fontsize=16,color="green",shape="box"];2272[label="vyw502",fontsize=16,color="green",shape="box"];2273[label="vyw3002",fontsize=16,color="green",shape="box"];2274[label="vyw502",fontsize=16,color="green",shape="box"];2275[label="vyw3002",fontsize=16,color="green",shape="box"];2276[label="vyw502",fontsize=16,color="green",shape="box"];2277[label="vyw3002",fontsize=16,color="green",shape="box"];2278[label="vyw502",fontsize=16,color="green",shape="box"];2279[label="vyw3002",fontsize=16,color="green",shape="box"];2280[label="vyw502",fontsize=16,color="green",shape="box"];2281[label="vyw3002",fontsize=16,color="green",shape="box"];2282[label="vyw502",fontsize=16,color="green",shape="box"];2283[label="vyw3002",fontsize=16,color="green",shape="box"];2284[label="vyw502",fontsize=16,color="green",shape="box"];2285[label="vyw3002",fontsize=16,color="green",shape="box"];2286[label="vyw502",fontsize=16,color="green",shape="box"];2287[label="vyw3002",fontsize=16,color="green",shape="box"];2288[label="vyw502",fontsize=16,color="green",shape="box"];2289[label="vyw3001",fontsize=16,color="green",shape="box"];2290[label="vyw501",fontsize=16,color="green",shape="box"];2291[label="vyw3001",fontsize=16,color="green",shape="box"];2292[label="vyw501",fontsize=16,color="green",shape="box"];2293[label="vyw3001",fontsize=16,color="green",shape="box"];2294[label="vyw501",fontsize=16,color="green",shape="box"];2295[label="vyw3001",fontsize=16,color="green",shape="box"];2296[label="vyw501",fontsize=16,color="green",shape="box"];2297[label="vyw3001",fontsize=16,color="green",shape="box"];2298[label="vyw501",fontsize=16,color="green",shape="box"];2299[label="vyw3001",fontsize=16,color="green",shape="box"];2300[label="vyw501",fontsize=16,color="green",shape="box"];2301[label="vyw3001",fontsize=16,color="green",shape="box"];2302[label="vyw501",fontsize=16,color="green",shape="box"];2303[label="vyw3001",fontsize=16,color="green",shape="box"];2304[label="vyw501",fontsize=16,color="green",shape="box"];2305[label="vyw3001",fontsize=16,color="green",shape="box"];2306[label="vyw501",fontsize=16,color="green",shape="box"];2307[label="vyw3001",fontsize=16,color="green",shape="box"];2308[label="vyw501",fontsize=16,color="green",shape="box"];2309[label="vyw3001",fontsize=16,color="green",shape="box"];2310[label="vyw501",fontsize=16,color="green",shape="box"];2311[label="vyw3001",fontsize=16,color="green",shape="box"];2312[label="vyw501",fontsize=16,color="green",shape="box"];2313[label="vyw3001",fontsize=16,color="green",shape="box"];2314[label="vyw501",fontsize=16,color="green",shape="box"];2315[label="vyw3001",fontsize=16,color="green",shape="box"];2316[label="vyw501",fontsize=16,color="green",shape="box"];2317[label="vyw50",fontsize=16,color="green",shape="box"];2318[label="vyw49",fontsize=16,color="green",shape="box"];2319 -> 2423[label="",style="dashed", color="red", weight=0]; 2319[label="not (vyw192 == GT)",fontsize=16,color="magenta"];2319 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2320[label="vyw50",fontsize=16,color="green",shape="box"];2321[label="vyw49",fontsize=16,color="green",shape="box"];2322[label="True",fontsize=16,color="green",shape="box"];2323[label="True",fontsize=16,color="green",shape="box"];2324[label="True",fontsize=16,color="green",shape="box"];2325[label="False",fontsize=16,color="green",shape="box"];2326[label="True",fontsize=16,color="green",shape="box"];2327[label="True",fontsize=16,color="green",shape="box"];2328[label="False",fontsize=16,color="green",shape="box"];2329[label="False",fontsize=16,color="green",shape="box"];2330[label="True",fontsize=16,color="green",shape="box"];2331[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3694[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 2425[label="",style="solid", color="blue", weight=3]; 3695[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 2426[label="",style="solid", color="blue", weight=3]; 3696[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 2427[label="",style="solid", color="blue", weight=3]; 3697[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 2428[label="",style="solid", color="blue", weight=3]; 3698[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 2429[label="",style="solid", color="blue", weight=3]; 3699[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 2430[label="",style="solid", color="blue", weight=3]; 3700[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 2431[label="",style="solid", color="blue", weight=3]; 3701[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 2432[label="",style="solid", color="blue", weight=3]; 3702[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 2433[label="",style="solid", color="blue", weight=3]; 3703[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 2434[label="",style="solid", color="blue", weight=3]; 3704[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 2435[label="",style="solid", color="blue", weight=3]; 3705[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 2436[label="",style="solid", color="blue", weight=3]; 3706[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3706[label="",style="solid", color="blue", weight=9]; 3706 -> 2437[label="",style="solid", color="blue", weight=3]; 3707[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 2438[label="",style="solid", color="blue", weight=3]; 2332[label="True",fontsize=16,color="green",shape="box"];2333[label="False",fontsize=16,color="green",shape="box"];2334[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3708[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3708[label="",style="solid", color="blue", weight=9]; 3708 -> 2439[label="",style="solid", color="blue", weight=3]; 3709[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3709[label="",style="solid", color="blue", weight=9]; 3709 -> 2440[label="",style="solid", color="blue", weight=3]; 3710[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 2441[label="",style="solid", color="blue", weight=3]; 3711[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 2442[label="",style="solid", color="blue", weight=3]; 3712[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 2443[label="",style="solid", color="blue", weight=3]; 3713[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 2444[label="",style="solid", color="blue", weight=3]; 3714[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 2445[label="",style="solid", color="blue", weight=3]; 3715[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 2446[label="",style="solid", color="blue", weight=3]; 3716[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 2447[label="",style="solid", color="blue", weight=3]; 3717[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 2448[label="",style="solid", color="blue", weight=3]; 3718[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 2449[label="",style="solid", color="blue", weight=3]; 3719[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 2450[label="",style="solid", color="blue", weight=3]; 3720[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 2451[label="",style="solid", color="blue", weight=3]; 3721[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 2452[label="",style="solid", color="blue", weight=3]; 2335[label="vyw50",fontsize=16,color="green",shape="box"];2336[label="vyw49",fontsize=16,color="green",shape="box"];2337[label="vyw50",fontsize=16,color="green",shape="box"];2338[label="vyw49",fontsize=16,color="green",shape="box"];2339 -> 2139[label="",style="dashed", color="red", weight=0]; 2339[label="vyw490 < vyw500 || vyw490 == vyw500 && (vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502)",fontsize=16,color="magenta"];2339 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2340[label="vyw50",fontsize=16,color="green",shape="box"];2341[label="vyw49",fontsize=16,color="green",shape="box"];2342 -> 2139[label="",style="dashed", color="red", weight=0]; 2342[label="vyw490 < vyw500 || vyw490 == vyw500 && vyw491 <= vyw501",fontsize=16,color="magenta"];2342 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2343[label="True",fontsize=16,color="green",shape="box"];2344[label="True",fontsize=16,color="green",shape="box"];2345[label="False",fontsize=16,color="green",shape="box"];2346[label="True",fontsize=16,color="green",shape="box"];2347[label="True",fontsize=16,color="green",shape="box"];2348[label="True",fontsize=16,color="green",shape="box"];2349[label="False",fontsize=16,color="green",shape="box"];2350[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3722[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 2457[label="",style="solid", color="blue", weight=3]; 3723[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 2458[label="",style="solid", color="blue", weight=3]; 3724[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3724[label="",style="solid", color="blue", weight=9]; 3724 -> 2459[label="",style="solid", color="blue", weight=3]; 3725[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3725[label="",style="solid", color="blue", weight=9]; 3725 -> 2460[label="",style="solid", color="blue", weight=3]; 3726[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 2461[label="",style="solid", color="blue", weight=3]; 3727[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 2462[label="",style="solid", color="blue", weight=3]; 3728[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 2463[label="",style="solid", color="blue", weight=3]; 3729[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 2464[label="",style="solid", color="blue", weight=3]; 3730[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 2465[label="",style="solid", color="blue", weight=3]; 3731[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3731[label="",style="solid", color="blue", weight=9]; 3731 -> 2466[label="",style="solid", color="blue", weight=3]; 3732[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3732[label="",style="solid", color="blue", weight=9]; 3732 -> 2467[label="",style="solid", color="blue", weight=3]; 3733[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3733[label="",style="solid", color="blue", weight=9]; 3733 -> 2468[label="",style="solid", color="blue", weight=3]; 3734[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 2469[label="",style="solid", color="blue", weight=3]; 3735[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 2470[label="",style="solid", color="blue", weight=3]; 2351[label="vyw50",fontsize=16,color="green",shape="box"];2352[label="vyw49",fontsize=16,color="green",shape="box"];2353[label="vyw50",fontsize=16,color="green",shape="box"];2354[label="vyw49",fontsize=16,color="green",shape="box"];2355[label="vyw50",fontsize=16,color="green",shape="box"];2356[label="vyw49",fontsize=16,color="green",shape="box"];2358 -> 1067[label="",style="dashed", color="red", weight=0]; 2358[label="primMulNat vyw30000 (Succ vyw5100)",fontsize=16,color="magenta"];2358 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2357[label="primPlusNat vyw198 (Succ vyw5100)",fontsize=16,color="burlywood",shape="triangle"];3736[label="vyw198/Succ vyw1980",fontsize=10,color="white",style="solid",shape="box"];2357 -> 3736[label="",style="solid", color="burlywood", weight=9]; 3736 -> 2473[label="",style="solid", color="burlywood", weight=3]; 3737[label="vyw198/Zero",fontsize=10,color="white",style="solid",shape="box"];2357 -> 3737[label="",style="solid", color="burlywood", weight=9]; 3737 -> 2474[label="",style="solid", color="burlywood", weight=3]; 2359 -> 1449[label="",style="dashed", color="red", weight=0]; 2359[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2359 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2360 -> 1450[label="",style="dashed", color="red", weight=0]; 2360[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2360 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2361 -> 1451[label="",style="dashed", color="red", weight=0]; 2361[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2361 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2362 -> 1452[label="",style="dashed", color="red", weight=0]; 2362[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2362 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2363 -> 1453[label="",style="dashed", color="red", weight=0]; 2363[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2363 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2364 -> 1454[label="",style="dashed", color="red", weight=0]; 2364[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2364 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2365 -> 1455[label="",style="dashed", color="red", weight=0]; 2365[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2365 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2366 -> 1456[label="",style="dashed", color="red", weight=0]; 2366[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2366 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2367 -> 1457[label="",style="dashed", color="red", weight=0]; 2367[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2367 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2368 -> 1458[label="",style="dashed", color="red", weight=0]; 2368[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2368 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2369 -> 1459[label="",style="dashed", color="red", weight=0]; 2369[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2369 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2369 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2370 -> 1460[label="",style="dashed", color="red", weight=0]; 2370[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2370 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2370 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2371 -> 1461[label="",style="dashed", color="red", weight=0]; 2371[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2371 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2372 -> 1462[label="",style="dashed", color="red", weight=0]; 2372[label="vyw107 <= vyw110",fontsize=16,color="magenta"];2372 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2372 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2373 -> 529[label="",style="dashed", color="red", weight=0]; 2373[label="vyw106 == vyw109",fontsize=16,color="magenta"];2373 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2374 -> 534[label="",style="dashed", color="red", weight=0]; 2374[label="vyw106 == vyw109",fontsize=16,color="magenta"];2374 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2375 -> 539[label="",style="dashed", color="red", weight=0]; 2375[label="vyw106 == vyw109",fontsize=16,color="magenta"];2375 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2376 -> 537[label="",style="dashed", color="red", weight=0]; 2376[label="vyw106 == vyw109",fontsize=16,color="magenta"];2376 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2376 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2377 -> 533[label="",style="dashed", color="red", weight=0]; 2377[label="vyw106 == vyw109",fontsize=16,color="magenta"];2377 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2378 -> 532[label="",style="dashed", color="red", weight=0]; 2378[label="vyw106 == vyw109",fontsize=16,color="magenta"];2378 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2378 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2379 -> 540[label="",style="dashed", color="red", weight=0]; 2379[label="vyw106 == vyw109",fontsize=16,color="magenta"];2379 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2379 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2380 -> 538[label="",style="dashed", color="red", weight=0]; 2380[label="vyw106 == vyw109",fontsize=16,color="magenta"];2380 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2381 -> 530[label="",style="dashed", color="red", weight=0]; 2381[label="vyw106 == vyw109",fontsize=16,color="magenta"];2381 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2382 -> 535[label="",style="dashed", color="red", weight=0]; 2382[label="vyw106 == vyw109",fontsize=16,color="magenta"];2382 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2383 -> 542[label="",style="dashed", color="red", weight=0]; 2383[label="vyw106 == vyw109",fontsize=16,color="magenta"];2383 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2384 -> 536[label="",style="dashed", color="red", weight=0]; 2384[label="vyw106 == vyw109",fontsize=16,color="magenta"];2384 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2385 -> 531[label="",style="dashed", color="red", weight=0]; 2385[label="vyw106 == vyw109",fontsize=16,color="magenta"];2385 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2386 -> 541[label="",style="dashed", color="red", weight=0]; 2386[label="vyw106 == vyw109",fontsize=16,color="magenta"];2386 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2386 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2387[label="vyw109",fontsize=16,color="green",shape="box"];2388[label="vyw106",fontsize=16,color="green",shape="box"];2389[label="vyw109",fontsize=16,color="green",shape="box"];2390[label="vyw106",fontsize=16,color="green",shape="box"];2391[label="vyw109",fontsize=16,color="green",shape="box"];2392[label="vyw106",fontsize=16,color="green",shape="box"];2393[label="vyw109",fontsize=16,color="green",shape="box"];2394[label="vyw106",fontsize=16,color="green",shape="box"];2395[label="vyw109",fontsize=16,color="green",shape="box"];2396[label="vyw106",fontsize=16,color="green",shape="box"];2397[label="vyw109",fontsize=16,color="green",shape="box"];2398[label="vyw106",fontsize=16,color="green",shape="box"];2399[label="vyw109",fontsize=16,color="green",shape="box"];2400[label="vyw106",fontsize=16,color="green",shape="box"];2401[label="vyw109",fontsize=16,color="green",shape="box"];2402[label="vyw106",fontsize=16,color="green",shape="box"];2403[label="vyw109",fontsize=16,color="green",shape="box"];2404[label="vyw106",fontsize=16,color="green",shape="box"];2405[label="vyw109",fontsize=16,color="green",shape="box"];2406[label="vyw106",fontsize=16,color="green",shape="box"];2407[label="vyw109",fontsize=16,color="green",shape="box"];2408[label="vyw106",fontsize=16,color="green",shape="box"];2409[label="vyw109",fontsize=16,color="green",shape="box"];2410[label="vyw106",fontsize=16,color="green",shape="box"];2411[label="vyw109",fontsize=16,color="green",shape="box"];2412[label="vyw106",fontsize=16,color="green",shape="box"];2413[label="vyw109",fontsize=16,color="green",shape="box"];2414[label="vyw106",fontsize=16,color="green",shape="box"];2415[label="vyw197",fontsize=16,color="green",shape="box"];2416[label="True",fontsize=16,color="green",shape="box"];2417[label="compare0 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) otherwise",fontsize=16,color="black",shape="box"];2417 -> 2531[label="",style="solid", color="black", weight=3]; 2418[label="LT",fontsize=16,color="green",shape="box"];2419[label="compare0 (vyw185,vyw186) (vyw187,vyw188) otherwise",fontsize=16,color="black",shape="box"];2419 -> 2532[label="",style="solid", color="black", weight=3]; 2420[label="LT",fontsize=16,color="green",shape="box"];2421[label="vyw30000",fontsize=16,color="green",shape="box"];2422[label="vyw5000",fontsize=16,color="green",shape="box"];2424 -> 539[label="",style="dashed", color="red", weight=0]; 2424[label="vyw192 == GT",fontsize=16,color="magenta"];2424 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2423[label="not vyw199",fontsize=16,color="burlywood",shape="triangle"];3738[label="vyw199/False",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3738[label="",style="solid", color="burlywood", weight=9]; 3738 -> 2535[label="",style="solid", color="burlywood", weight=3]; 3739[label="vyw199/True",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3739[label="",style="solid", color="burlywood", weight=9]; 3739 -> 2536[label="",style="solid", color="burlywood", weight=3]; 2425 -> 1449[label="",style="dashed", color="red", weight=0]; 2425[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2425 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2426 -> 1450[label="",style="dashed", color="red", weight=0]; 2426[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2426 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2427 -> 1451[label="",style="dashed", color="red", weight=0]; 2427[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2427 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2428 -> 1452[label="",style="dashed", color="red", weight=0]; 2428[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2428 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2429 -> 1453[label="",style="dashed", color="red", weight=0]; 2429[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2429 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2430 -> 1454[label="",style="dashed", color="red", weight=0]; 2430[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2430 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2431 -> 1455[label="",style="dashed", color="red", weight=0]; 2431[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2431 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2432 -> 1456[label="",style="dashed", color="red", weight=0]; 2432[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2432 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2433 -> 1457[label="",style="dashed", color="red", weight=0]; 2433[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2433 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2434 -> 1458[label="",style="dashed", color="red", weight=0]; 2434[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2434 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2435 -> 1459[label="",style="dashed", color="red", weight=0]; 2435[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2435 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1460[label="",style="dashed", color="red", weight=0]; 2436[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2436 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1461[label="",style="dashed", color="red", weight=0]; 2437[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2437 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1462[label="",style="dashed", color="red", weight=0]; 2438[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2438 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1449[label="",style="dashed", color="red", weight=0]; 2439[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2439 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2440 -> 1450[label="",style="dashed", color="red", weight=0]; 2440[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2440 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2441 -> 1451[label="",style="dashed", color="red", weight=0]; 2441[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2441 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1452[label="",style="dashed", color="red", weight=0]; 2442[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2442 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2443 -> 1453[label="",style="dashed", color="red", weight=0]; 2443[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2443 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2444 -> 1454[label="",style="dashed", color="red", weight=0]; 2444[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2444 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2445 -> 1455[label="",style="dashed", color="red", weight=0]; 2445[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2445 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2446 -> 1456[label="",style="dashed", color="red", weight=0]; 2446[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2446 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2447 -> 1457[label="",style="dashed", color="red", weight=0]; 2447[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2447 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2448 -> 1458[label="",style="dashed", color="red", weight=0]; 2448[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2448 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2449 -> 1459[label="",style="dashed", color="red", weight=0]; 2449[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2449 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2450 -> 1460[label="",style="dashed", color="red", weight=0]; 2450[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2450 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2451 -> 1461[label="",style="dashed", color="red", weight=0]; 2451[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2451 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2452 -> 1462[label="",style="dashed", color="red", weight=0]; 2452[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2452 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2453 -> 1140[label="",style="dashed", color="red", weight=0]; 2453[label="vyw490 == vyw500 && (vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502)",fontsize=16,color="magenta"];2453 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2454[label="vyw490 < vyw500",fontsize=16,color="blue",shape="box"];3740[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 2595[label="",style="solid", color="blue", weight=3]; 3741[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 2596[label="",style="solid", color="blue", weight=3]; 3742[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 2597[label="",style="solid", color="blue", weight=3]; 3743[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 2598[label="",style="solid", color="blue", weight=3]; 3744[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 2599[label="",style="solid", color="blue", weight=3]; 3745[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 2600[label="",style="solid", color="blue", weight=3]; 3746[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 2601[label="",style="solid", color="blue", weight=3]; 3747[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 2602[label="",style="solid", color="blue", weight=3]; 3748[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 2603[label="",style="solid", color="blue", weight=3]; 3749[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 2604[label="",style="solid", color="blue", weight=3]; 3750[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 2605[label="",style="solid", color="blue", weight=3]; 3751[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 2606[label="",style="solid", color="blue", weight=3]; 3752[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 2607[label="",style="solid", color="blue", weight=3]; 3753[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 2608[label="",style="solid", color="blue", weight=3]; 2455 -> 1140[label="",style="dashed", color="red", weight=0]; 2455[label="vyw490 == vyw500 && vyw491 <= vyw501",fontsize=16,color="magenta"];2455 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2456[label="vyw490 < vyw500",fontsize=16,color="blue",shape="box"];3754[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 2611[label="",style="solid", color="blue", weight=3]; 3755[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 2612[label="",style="solid", color="blue", weight=3]; 3756[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 2613[label="",style="solid", color="blue", weight=3]; 3757[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3757[label="",style="solid", color="blue", weight=9]; 3757 -> 2614[label="",style="solid", color="blue", weight=3]; 3758[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3758[label="",style="solid", color="blue", weight=9]; 3758 -> 2615[label="",style="solid", color="blue", weight=3]; 3759[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3759[label="",style="solid", color="blue", weight=9]; 3759 -> 2616[label="",style="solid", color="blue", weight=3]; 3760[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3760[label="",style="solid", color="blue", weight=9]; 3760 -> 2617[label="",style="solid", color="blue", weight=3]; 3761[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3761[label="",style="solid", color="blue", weight=9]; 3761 -> 2618[label="",style="solid", color="blue", weight=3]; 3762[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3762[label="",style="solid", color="blue", weight=9]; 3762 -> 2619[label="",style="solid", color="blue", weight=3]; 3763[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3763[label="",style="solid", color="blue", weight=9]; 3763 -> 2620[label="",style="solid", color="blue", weight=3]; 3764[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3764[label="",style="solid", color="blue", weight=9]; 3764 -> 2621[label="",style="solid", color="blue", weight=3]; 3765[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3765[label="",style="solid", color="blue", weight=9]; 3765 -> 2622[label="",style="solid", color="blue", weight=3]; 3766[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3766[label="",style="solid", color="blue", weight=9]; 3766 -> 2623[label="",style="solid", color="blue", weight=3]; 3767[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3767[label="",style="solid", color="blue", weight=9]; 3767 -> 2624[label="",style="solid", color="blue", weight=3]; 2457 -> 1449[label="",style="dashed", color="red", weight=0]; 2457[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2457 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2458 -> 1450[label="",style="dashed", color="red", weight=0]; 2458[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2458 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2459 -> 1451[label="",style="dashed", color="red", weight=0]; 2459[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2459 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2460 -> 1452[label="",style="dashed", color="red", weight=0]; 2460[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2460 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2461 -> 1453[label="",style="dashed", color="red", weight=0]; 2461[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2461 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2462 -> 1454[label="",style="dashed", color="red", weight=0]; 2462[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2462 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2463 -> 1455[label="",style="dashed", color="red", weight=0]; 2463[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2463 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2464 -> 1456[label="",style="dashed", color="red", weight=0]; 2464[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2464 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2465 -> 1457[label="",style="dashed", color="red", weight=0]; 2465[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2465 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2466 -> 1458[label="",style="dashed", color="red", weight=0]; 2466[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2466 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2467 -> 1459[label="",style="dashed", color="red", weight=0]; 2467[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2467 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2468 -> 1460[label="",style="dashed", color="red", weight=0]; 2468[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2468 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2469 -> 1461[label="",style="dashed", color="red", weight=0]; 2469[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2469 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2470 -> 1462[label="",style="dashed", color="red", weight=0]; 2470[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2470 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2471[label="Succ vyw5100",fontsize=16,color="green",shape="box"];2472[label="vyw30000",fontsize=16,color="green",shape="box"];2473[label="primPlusNat (Succ vyw1980) (Succ vyw5100)",fontsize=16,color="black",shape="box"];2473 -> 2653[label="",style="solid", color="black", weight=3]; 2474[label="primPlusNat Zero (Succ vyw5100)",fontsize=16,color="black",shape="box"];2474 -> 2654[label="",style="solid", color="black", weight=3]; 2475[label="vyw110",fontsize=16,color="green",shape="box"];2476[label="vyw107",fontsize=16,color="green",shape="box"];2477[label="vyw110",fontsize=16,color="green",shape="box"];2478[label="vyw107",fontsize=16,color="green",shape="box"];2479[label="vyw110",fontsize=16,color="green",shape="box"];2480[label="vyw107",fontsize=16,color="green",shape="box"];2481[label="vyw110",fontsize=16,color="green",shape="box"];2482[label="vyw107",fontsize=16,color="green",shape="box"];2483[label="vyw110",fontsize=16,color="green",shape="box"];2484[label="vyw107",fontsize=16,color="green",shape="box"];2485[label="vyw110",fontsize=16,color="green",shape="box"];2486[label="vyw107",fontsize=16,color="green",shape="box"];2487[label="vyw110",fontsize=16,color="green",shape="box"];2488[label="vyw107",fontsize=16,color="green",shape="box"];2489[label="vyw110",fontsize=16,color="green",shape="box"];2490[label="vyw107",fontsize=16,color="green",shape="box"];2491[label="vyw110",fontsize=16,color="green",shape="box"];2492[label="vyw107",fontsize=16,color="green",shape="box"];2493[label="vyw110",fontsize=16,color="green",shape="box"];2494[label="vyw107",fontsize=16,color="green",shape="box"];2495[label="vyw110",fontsize=16,color="green",shape="box"];2496[label="vyw107",fontsize=16,color="green",shape="box"];2497[label="vyw110",fontsize=16,color="green",shape="box"];2498[label="vyw107",fontsize=16,color="green",shape="box"];2499[label="vyw110",fontsize=16,color="green",shape="box"];2500[label="vyw107",fontsize=16,color="green",shape="box"];2501[label="vyw110",fontsize=16,color="green",shape="box"];2502[label="vyw107",fontsize=16,color="green",shape="box"];2503[label="vyw109",fontsize=16,color="green",shape="box"];2504[label="vyw106",fontsize=16,color="green",shape="box"];2505[label="vyw109",fontsize=16,color="green",shape="box"];2506[label="vyw106",fontsize=16,color="green",shape="box"];2507[label="vyw109",fontsize=16,color="green",shape="box"];2508[label="vyw106",fontsize=16,color="green",shape="box"];2509[label="vyw109",fontsize=16,color="green",shape="box"];2510[label="vyw106",fontsize=16,color="green",shape="box"];2511[label="vyw109",fontsize=16,color="green",shape="box"];2512[label="vyw106",fontsize=16,color="green",shape="box"];2513[label="vyw109",fontsize=16,color="green",shape="box"];2514[label="vyw106",fontsize=16,color="green",shape="box"];2515[label="vyw109",fontsize=16,color="green",shape="box"];2516[label="vyw106",fontsize=16,color="green",shape="box"];2517[label="vyw109",fontsize=16,color="green",shape="box"];2518[label="vyw106",fontsize=16,color="green",shape="box"];2519[label="vyw109",fontsize=16,color="green",shape="box"];2520[label="vyw106",fontsize=16,color="green",shape="box"];2521[label="vyw109",fontsize=16,color="green",shape="box"];2522[label="vyw106",fontsize=16,color="green",shape="box"];2523[label="vyw109",fontsize=16,color="green",shape="box"];2524[label="vyw106",fontsize=16,color="green",shape="box"];2525[label="vyw109",fontsize=16,color="green",shape="box"];2526[label="vyw106",fontsize=16,color="green",shape="box"];2527[label="vyw109",fontsize=16,color="green",shape="box"];2528[label="vyw106",fontsize=16,color="green",shape="box"];2529[label="vyw109",fontsize=16,color="green",shape="box"];2530[label="vyw106",fontsize=16,color="green",shape="box"];2531[label="compare0 (vyw170,vyw171,vyw172) (vyw173,vyw174,vyw175) True",fontsize=16,color="black",shape="box"];2531 -> 2655[label="",style="solid", color="black", weight=3]; 2532[label="compare0 (vyw185,vyw186) (vyw187,vyw188) True",fontsize=16,color="black",shape="box"];2532 -> 2656[label="",style="solid", color="black", weight=3]; 2533[label="GT",fontsize=16,color="green",shape="box"];2534[label="vyw192",fontsize=16,color="green",shape="box"];2535[label="not False",fontsize=16,color="black",shape="box"];2535 -> 2657[label="",style="solid", color="black", weight=3]; 2536[label="not True",fontsize=16,color="black",shape="box"];2536 -> 2658[label="",style="solid", color="black", weight=3]; 2537[label="vyw500",fontsize=16,color="green",shape="box"];2538[label="vyw490",fontsize=16,color="green",shape="box"];2539[label="vyw500",fontsize=16,color="green",shape="box"];2540[label="vyw490",fontsize=16,color="green",shape="box"];2541[label="vyw500",fontsize=16,color="green",shape="box"];2542[label="vyw490",fontsize=16,color="green",shape="box"];2543[label="vyw500",fontsize=16,color="green",shape="box"];2544[label="vyw490",fontsize=16,color="green",shape="box"];2545[label="vyw500",fontsize=16,color="green",shape="box"];2546[label="vyw490",fontsize=16,color="green",shape="box"];2547[label="vyw500",fontsize=16,color="green",shape="box"];2548[label="vyw490",fontsize=16,color="green",shape="box"];2549[label="vyw500",fontsize=16,color="green",shape="box"];2550[label="vyw490",fontsize=16,color="green",shape="box"];2551[label="vyw500",fontsize=16,color="green",shape="box"];2552[label="vyw490",fontsize=16,color="green",shape="box"];2553[label="vyw500",fontsize=16,color="green",shape="box"];2554[label="vyw490",fontsize=16,color="green",shape="box"];2555[label="vyw500",fontsize=16,color="green",shape="box"];2556[label="vyw490",fontsize=16,color="green",shape="box"];2557[label="vyw500",fontsize=16,color="green",shape="box"];2558[label="vyw490",fontsize=16,color="green",shape="box"];2559[label="vyw500",fontsize=16,color="green",shape="box"];2560[label="vyw490",fontsize=16,color="green",shape="box"];2561[label="vyw500",fontsize=16,color="green",shape="box"];2562[label="vyw490",fontsize=16,color="green",shape="box"];2563[label="vyw500",fontsize=16,color="green",shape="box"];2564[label="vyw490",fontsize=16,color="green",shape="box"];2565[label="vyw500",fontsize=16,color="green",shape="box"];2566[label="vyw490",fontsize=16,color="green",shape="box"];2567[label="vyw500",fontsize=16,color="green",shape="box"];2568[label="vyw490",fontsize=16,color="green",shape="box"];2569[label="vyw500",fontsize=16,color="green",shape="box"];2570[label="vyw490",fontsize=16,color="green",shape="box"];2571[label="vyw500",fontsize=16,color="green",shape="box"];2572[label="vyw490",fontsize=16,color="green",shape="box"];2573[label="vyw500",fontsize=16,color="green",shape="box"];2574[label="vyw490",fontsize=16,color="green",shape="box"];2575[label="vyw500",fontsize=16,color="green",shape="box"];2576[label="vyw490",fontsize=16,color="green",shape="box"];2577[label="vyw500",fontsize=16,color="green",shape="box"];2578[label="vyw490",fontsize=16,color="green",shape="box"];2579[label="vyw500",fontsize=16,color="green",shape="box"];2580[label="vyw490",fontsize=16,color="green",shape="box"];2581[label="vyw500",fontsize=16,color="green",shape="box"];2582[label="vyw490",fontsize=16,color="green",shape="box"];2583[label="vyw500",fontsize=16,color="green",shape="box"];2584[label="vyw490",fontsize=16,color="green",shape="box"];2585[label="vyw500",fontsize=16,color="green",shape="box"];2586[label="vyw490",fontsize=16,color="green",shape="box"];2587[label="vyw500",fontsize=16,color="green",shape="box"];2588[label="vyw490",fontsize=16,color="green",shape="box"];2589[label="vyw500",fontsize=16,color="green",shape="box"];2590[label="vyw490",fontsize=16,color="green",shape="box"];2591[label="vyw500",fontsize=16,color="green",shape="box"];2592[label="vyw490",fontsize=16,color="green",shape="box"];2593 -> 2139[label="",style="dashed", color="red", weight=0]; 2593[label="vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502",fontsize=16,color="magenta"];2593 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2594[label="vyw490 == vyw500",fontsize=16,color="blue",shape="box"];3768[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3768[label="",style="solid", color="blue", weight=9]; 3768 -> 2661[label="",style="solid", color="blue", weight=3]; 3769[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3769[label="",style="solid", color="blue", weight=9]; 3769 -> 2662[label="",style="solid", color="blue", weight=3]; 3770[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3770[label="",style="solid", color="blue", weight=9]; 3770 -> 2663[label="",style="solid", color="blue", weight=3]; 3771[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3771[label="",style="solid", color="blue", weight=9]; 3771 -> 2664[label="",style="solid", color="blue", weight=3]; 3772[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 2665[label="",style="solid", color="blue", weight=3]; 3773[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 2666[label="",style="solid", color="blue", weight=3]; 3774[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 2667[label="",style="solid", color="blue", weight=3]; 3775[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 2668[label="",style="solid", color="blue", weight=3]; 3776[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3776[label="",style="solid", color="blue", weight=9]; 3776 -> 2669[label="",style="solid", color="blue", weight=3]; 3777[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3777[label="",style="solid", color="blue", weight=9]; 3777 -> 2670[label="",style="solid", color="blue", weight=3]; 3778[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 2671[label="",style="solid", color="blue", weight=3]; 3779[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3779[label="",style="solid", color="blue", weight=9]; 3779 -> 2672[label="",style="solid", color="blue", weight=3]; 3780[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 2673[label="",style="solid", color="blue", weight=3]; 3781[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 2674[label="",style="solid", color="blue", weight=3]; 2595 -> 23[label="",style="dashed", color="red", weight=0]; 2595[label="vyw490 < vyw500",fontsize=16,color="magenta"];2595 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2596 -> 24[label="",style="dashed", color="red", weight=0]; 2596[label="vyw490 < vyw500",fontsize=16,color="magenta"];2596 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2597 -> 25[label="",style="dashed", color="red", weight=0]; 2597[label="vyw490 < vyw500",fontsize=16,color="magenta"];2597 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2598 -> 26[label="",style="dashed", color="red", weight=0]; 2598[label="vyw490 < vyw500",fontsize=16,color="magenta"];2598 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2599 -> 27[label="",style="dashed", color="red", weight=0]; 2599[label="vyw490 < vyw500",fontsize=16,color="magenta"];2599 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2600 -> 28[label="",style="dashed", color="red", weight=0]; 2600[label="vyw490 < vyw500",fontsize=16,color="magenta"];2600 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2601 -> 29[label="",style="dashed", color="red", weight=0]; 2601[label="vyw490 < vyw500",fontsize=16,color="magenta"];2601 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2602 -> 30[label="",style="dashed", color="red", weight=0]; 2602[label="vyw490 < vyw500",fontsize=16,color="magenta"];2602 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2603 -> 31[label="",style="dashed", color="red", weight=0]; 2603[label="vyw490 < vyw500",fontsize=16,color="magenta"];2603 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2603 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2604 -> 32[label="",style="dashed", color="red", weight=0]; 2604[label="vyw490 < vyw500",fontsize=16,color="magenta"];2604 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2605 -> 33[label="",style="dashed", color="red", weight=0]; 2605[label="vyw490 < vyw500",fontsize=16,color="magenta"];2605 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2606 -> 34[label="",style="dashed", color="red", weight=0]; 2606[label="vyw490 < vyw500",fontsize=16,color="magenta"];2606 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2607 -> 35[label="",style="dashed", color="red", weight=0]; 2607[label="vyw490 < vyw500",fontsize=16,color="magenta"];2607 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2608 -> 36[label="",style="dashed", color="red", weight=0]; 2608[label="vyw490 < vyw500",fontsize=16,color="magenta"];2608 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2609[label="vyw491 <= vyw501",fontsize=16,color="blue",shape="box"];3782[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 2703[label="",style="solid", color="blue", weight=3]; 3783[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 2704[label="",style="solid", color="blue", weight=3]; 3784[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 2705[label="",style="solid", color="blue", weight=3]; 3785[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 2706[label="",style="solid", color="blue", weight=3]; 3786[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 2707[label="",style="solid", color="blue", weight=3]; 3787[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3787[label="",style="solid", color="blue", weight=9]; 3787 -> 2708[label="",style="solid", color="blue", weight=3]; 3788[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3788[label="",style="solid", color="blue", weight=9]; 3788 -> 2709[label="",style="solid", color="blue", weight=3]; 3789[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3789[label="",style="solid", color="blue", weight=9]; 3789 -> 2710[label="",style="solid", color="blue", weight=3]; 3790[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 2711[label="",style="solid", color="blue", weight=3]; 3791[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 2712[label="",style="solid", color="blue", weight=3]; 3792[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 2713[label="",style="solid", color="blue", weight=3]; 3793[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 2714[label="",style="solid", color="blue", weight=3]; 3794[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 2715[label="",style="solid", color="blue", weight=3]; 3795[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 2716[label="",style="solid", color="blue", weight=3]; 2610[label="vyw490 == vyw500",fontsize=16,color="blue",shape="box"];3796[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 2717[label="",style="solid", color="blue", weight=3]; 3797[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3797[label="",style="solid", color="blue", weight=9]; 3797 -> 2718[label="",style="solid", color="blue", weight=3]; 3798[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3798[label="",style="solid", color="blue", weight=9]; 3798 -> 2719[label="",style="solid", color="blue", weight=3]; 3799[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3799[label="",style="solid", color="blue", weight=9]; 3799 -> 2720[label="",style="solid", color="blue", weight=3]; 3800[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3800[label="",style="solid", color="blue", weight=9]; 3800 -> 2721[label="",style="solid", color="blue", weight=3]; 3801[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 2722[label="",style="solid", color="blue", weight=3]; 3802[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 2723[label="",style="solid", color="blue", weight=3]; 3803[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 2724[label="",style="solid", color="blue", weight=3]; 3804[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3804[label="",style="solid", color="blue", weight=9]; 3804 -> 2725[label="",style="solid", color="blue", weight=3]; 3805[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3805[label="",style="solid", color="blue", weight=9]; 3805 -> 2726[label="",style="solid", color="blue", weight=3]; 3806[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3806[label="",style="solid", color="blue", weight=9]; 3806 -> 2727[label="",style="solid", color="blue", weight=3]; 3807[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3807[label="",style="solid", color="blue", weight=9]; 3807 -> 2728[label="",style="solid", color="blue", weight=3]; 3808[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3808[label="",style="solid", color="blue", weight=9]; 3808 -> 2729[label="",style="solid", color="blue", weight=3]; 3809[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2610 -> 3809[label="",style="solid", color="blue", weight=9]; 3809 -> 2730[label="",style="solid", color="blue", weight=3]; 2611 -> 23[label="",style="dashed", color="red", weight=0]; 2611[label="vyw490 < vyw500",fontsize=16,color="magenta"];2611 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2612 -> 24[label="",style="dashed", color="red", weight=0]; 2612[label="vyw490 < vyw500",fontsize=16,color="magenta"];2612 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2613 -> 25[label="",style="dashed", color="red", weight=0]; 2613[label="vyw490 < vyw500",fontsize=16,color="magenta"];2613 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2614 -> 26[label="",style="dashed", color="red", weight=0]; 2614[label="vyw490 < vyw500",fontsize=16,color="magenta"];2614 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2615 -> 27[label="",style="dashed", color="red", weight=0]; 2615[label="vyw490 < vyw500",fontsize=16,color="magenta"];2615 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2616 -> 28[label="",style="dashed", color="red", weight=0]; 2616[label="vyw490 < vyw500",fontsize=16,color="magenta"];2616 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2617 -> 29[label="",style="dashed", color="red", weight=0]; 2617[label="vyw490 < vyw500",fontsize=16,color="magenta"];2617 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2618 -> 30[label="",style="dashed", color="red", weight=0]; 2618[label="vyw490 < vyw500",fontsize=16,color="magenta"];2618 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2619 -> 31[label="",style="dashed", color="red", weight=0]; 2619[label="vyw490 < vyw500",fontsize=16,color="magenta"];2619 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2620 -> 32[label="",style="dashed", color="red", weight=0]; 2620[label="vyw490 < vyw500",fontsize=16,color="magenta"];2620 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2621 -> 33[label="",style="dashed", color="red", weight=0]; 2621[label="vyw490 < vyw500",fontsize=16,color="magenta"];2621 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2622 -> 34[label="",style="dashed", color="red", weight=0]; 2622[label="vyw490 < vyw500",fontsize=16,color="magenta"];2622 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2623 -> 35[label="",style="dashed", color="red", weight=0]; 2623[label="vyw490 < vyw500",fontsize=16,color="magenta"];2623 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2624 -> 36[label="",style="dashed", color="red", weight=0]; 2624[label="vyw490 < vyw500",fontsize=16,color="magenta"];2624 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2625[label="vyw500",fontsize=16,color="green",shape="box"];2626[label="vyw490",fontsize=16,color="green",shape="box"];2627[label="vyw500",fontsize=16,color="green",shape="box"];2628[label="vyw490",fontsize=16,color="green",shape="box"];2629[label="vyw500",fontsize=16,color="green",shape="box"];2630[label="vyw490",fontsize=16,color="green",shape="box"];2631[label="vyw500",fontsize=16,color="green",shape="box"];2632[label="vyw490",fontsize=16,color="green",shape="box"];2633[label="vyw500",fontsize=16,color="green",shape="box"];2634[label="vyw490",fontsize=16,color="green",shape="box"];2635[label="vyw500",fontsize=16,color="green",shape="box"];2636[label="vyw490",fontsize=16,color="green",shape="box"];2637[label="vyw500",fontsize=16,color="green",shape="box"];2638[label="vyw490",fontsize=16,color="green",shape="box"];2639[label="vyw500",fontsize=16,color="green",shape="box"];2640[label="vyw490",fontsize=16,color="green",shape="box"];2641[label="vyw500",fontsize=16,color="green",shape="box"];2642[label="vyw490",fontsize=16,color="green",shape="box"];2643[label="vyw500",fontsize=16,color="green",shape="box"];2644[label="vyw490",fontsize=16,color="green",shape="box"];2645[label="vyw500",fontsize=16,color="green",shape="box"];2646[label="vyw490",fontsize=16,color="green",shape="box"];2647[label="vyw500",fontsize=16,color="green",shape="box"];2648[label="vyw490",fontsize=16,color="green",shape="box"];2649[label="vyw500",fontsize=16,color="green",shape="box"];2650[label="vyw490",fontsize=16,color="green",shape="box"];2651[label="vyw500",fontsize=16,color="green",shape="box"];2652[label="vyw490",fontsize=16,color="green",shape="box"];2653[label="Succ (Succ (primPlusNat vyw1980 vyw5100))",fontsize=16,color="green",shape="box"];2653 -> 2759[label="",style="dashed", color="green", weight=3]; 2654[label="Succ vyw5100",fontsize=16,color="green",shape="box"];2655[label="GT",fontsize=16,color="green",shape="box"];2656[label="GT",fontsize=16,color="green",shape="box"];2657[label="True",fontsize=16,color="green",shape="box"];2658[label="False",fontsize=16,color="green",shape="box"];2659 -> 1140[label="",style="dashed", color="red", weight=0]; 2659[label="vyw491 == vyw501 && vyw492 <= vyw502",fontsize=16,color="magenta"];2659 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2660[label="vyw491 < vyw501",fontsize=16,color="blue",shape="box"];3810[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3810[label="",style="solid", color="blue", weight=9]; 3810 -> 2762[label="",style="solid", color="blue", weight=3]; 3811[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3811[label="",style="solid", color="blue", weight=9]; 3811 -> 2763[label="",style="solid", color="blue", weight=3]; 3812[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3812[label="",style="solid", color="blue", weight=9]; 3812 -> 2764[label="",style="solid", color="blue", weight=3]; 3813[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3813[label="",style="solid", color="blue", weight=9]; 3813 -> 2765[label="",style="solid", color="blue", weight=3]; 3814[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3814[label="",style="solid", color="blue", weight=9]; 3814 -> 2766[label="",style="solid", color="blue", weight=3]; 3815[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3815[label="",style="solid", color="blue", weight=9]; 3815 -> 2767[label="",style="solid", color="blue", weight=3]; 3816[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3816[label="",style="solid", color="blue", weight=9]; 3816 -> 2768[label="",style="solid", color="blue", weight=3]; 3817[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3817[label="",style="solid", color="blue", weight=9]; 3817 -> 2769[label="",style="solid", color="blue", weight=3]; 3818[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3818[label="",style="solid", color="blue", weight=9]; 3818 -> 2770[label="",style="solid", color="blue", weight=3]; 3819[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3819[label="",style="solid", color="blue", weight=9]; 3819 -> 2771[label="",style="solid", color="blue", weight=3]; 3820[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3820[label="",style="solid", color="blue", weight=9]; 3820 -> 2772[label="",style="solid", color="blue", weight=3]; 3821[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 2773[label="",style="solid", color="blue", weight=3]; 3822[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 2774[label="",style="solid", color="blue", weight=3]; 3823[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2660 -> 3823[label="",style="solid", color="blue", weight=9]; 3823 -> 2775[label="",style="solid", color="blue", weight=3]; 2661 -> 529[label="",style="dashed", color="red", weight=0]; 2661[label="vyw490 == vyw500",fontsize=16,color="magenta"];2661 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2662 -> 534[label="",style="dashed", color="red", weight=0]; 2662[label="vyw490 == vyw500",fontsize=16,color="magenta"];2662 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2663 -> 539[label="",style="dashed", color="red", weight=0]; 2663[label="vyw490 == vyw500",fontsize=16,color="magenta"];2663 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2664 -> 537[label="",style="dashed", color="red", weight=0]; 2664[label="vyw490 == vyw500",fontsize=16,color="magenta"];2664 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2665 -> 533[label="",style="dashed", color="red", weight=0]; 2665[label="vyw490 == vyw500",fontsize=16,color="magenta"];2665 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2666 -> 532[label="",style="dashed", color="red", weight=0]; 2666[label="vyw490 == vyw500",fontsize=16,color="magenta"];2666 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2667 -> 540[label="",style="dashed", color="red", weight=0]; 2667[label="vyw490 == vyw500",fontsize=16,color="magenta"];2667 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2668 -> 538[label="",style="dashed", color="red", weight=0]; 2668[label="vyw490 == vyw500",fontsize=16,color="magenta"];2668 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2669 -> 530[label="",style="dashed", color="red", weight=0]; 2669[label="vyw490 == vyw500",fontsize=16,color="magenta"];2669 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2670 -> 535[label="",style="dashed", color="red", weight=0]; 2670[label="vyw490 == vyw500",fontsize=16,color="magenta"];2670 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2670 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2671 -> 542[label="",style="dashed", color="red", weight=0]; 2671[label="vyw490 == vyw500",fontsize=16,color="magenta"];2671 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2671 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2672 -> 536[label="",style="dashed", color="red", weight=0]; 2672[label="vyw490 == vyw500",fontsize=16,color="magenta"];2672 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2672 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2673 -> 531[label="",style="dashed", color="red", weight=0]; 2673[label="vyw490 == vyw500",fontsize=16,color="magenta"];2673 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2674 -> 541[label="",style="dashed", color="red", weight=0]; 2674[label="vyw490 == vyw500",fontsize=16,color="magenta"];2674 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2675[label="vyw500",fontsize=16,color="green",shape="box"];2676[label="vyw490",fontsize=16,color="green",shape="box"];2677[label="vyw500",fontsize=16,color="green",shape="box"];2678[label="vyw490",fontsize=16,color="green",shape="box"];2679[label="vyw500",fontsize=16,color="green",shape="box"];2680[label="vyw490",fontsize=16,color="green",shape="box"];2681[label="vyw500",fontsize=16,color="green",shape="box"];2682[label="vyw490",fontsize=16,color="green",shape="box"];2683[label="vyw500",fontsize=16,color="green",shape="box"];2684[label="vyw490",fontsize=16,color="green",shape="box"];2685[label="vyw500",fontsize=16,color="green",shape="box"];2686[label="vyw490",fontsize=16,color="green",shape="box"];2687[label="vyw500",fontsize=16,color="green",shape="box"];2688[label="vyw490",fontsize=16,color="green",shape="box"];2689[label="vyw500",fontsize=16,color="green",shape="box"];2690[label="vyw490",fontsize=16,color="green",shape="box"];2691[label="vyw500",fontsize=16,color="green",shape="box"];2692[label="vyw490",fontsize=16,color="green",shape="box"];2693[label="vyw500",fontsize=16,color="green",shape="box"];2694[label="vyw490",fontsize=16,color="green",shape="box"];2695[label="vyw500",fontsize=16,color="green",shape="box"];2696[label="vyw490",fontsize=16,color="green",shape="box"];2697[label="vyw500",fontsize=16,color="green",shape="box"];2698[label="vyw490",fontsize=16,color="green",shape="box"];2699[label="vyw500",fontsize=16,color="green",shape="box"];2700[label="vyw490",fontsize=16,color="green",shape="box"];2701[label="vyw500",fontsize=16,color="green",shape="box"];2702[label="vyw490",fontsize=16,color="green",shape="box"];2703 -> 1449[label="",style="dashed", color="red", weight=0]; 2703[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2703 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2704 -> 1450[label="",style="dashed", color="red", weight=0]; 2704[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2704 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2705 -> 1451[label="",style="dashed", color="red", weight=0]; 2705[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2705 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2706 -> 1452[label="",style="dashed", color="red", weight=0]; 2706[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2706 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2707 -> 1453[label="",style="dashed", color="red", weight=0]; 2707[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2707 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2708 -> 1454[label="",style="dashed", color="red", weight=0]; 2708[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2708 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2709 -> 1455[label="",style="dashed", color="red", weight=0]; 2709[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2709 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2710 -> 1456[label="",style="dashed", color="red", weight=0]; 2710[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2710 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2711 -> 1457[label="",style="dashed", color="red", weight=0]; 2711[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2711 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2712 -> 1458[label="",style="dashed", color="red", weight=0]; 2712[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2712 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2713 -> 1459[label="",style="dashed", color="red", weight=0]; 2713[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2713 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2714 -> 1460[label="",style="dashed", color="red", weight=0]; 2714[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2714 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2715 -> 1461[label="",style="dashed", color="red", weight=0]; 2715[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2715 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2716 -> 1462[label="",style="dashed", color="red", weight=0]; 2716[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2716 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2717 -> 529[label="",style="dashed", color="red", weight=0]; 2717[label="vyw490 == vyw500",fontsize=16,color="magenta"];2717 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2718 -> 534[label="",style="dashed", color="red", weight=0]; 2718[label="vyw490 == vyw500",fontsize=16,color="magenta"];2718 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2719 -> 539[label="",style="dashed", color="red", weight=0]; 2719[label="vyw490 == vyw500",fontsize=16,color="magenta"];2719 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2720 -> 537[label="",style="dashed", color="red", weight=0]; 2720[label="vyw490 == vyw500",fontsize=16,color="magenta"];2720 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2721 -> 533[label="",style="dashed", color="red", weight=0]; 2721[label="vyw490 == vyw500",fontsize=16,color="magenta"];2721 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2722 -> 532[label="",style="dashed", color="red", weight=0]; 2722[label="vyw490 == vyw500",fontsize=16,color="magenta"];2722 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2723 -> 540[label="",style="dashed", color="red", weight=0]; 2723[label="vyw490 == vyw500",fontsize=16,color="magenta"];2723 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2724 -> 538[label="",style="dashed", color="red", weight=0]; 2724[label="vyw490 == vyw500",fontsize=16,color="magenta"];2724 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2725 -> 530[label="",style="dashed", color="red", weight=0]; 2725[label="vyw490 == vyw500",fontsize=16,color="magenta"];2725 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2726 -> 535[label="",style="dashed", color="red", weight=0]; 2726[label="vyw490 == vyw500",fontsize=16,color="magenta"];2726 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2727 -> 542[label="",style="dashed", color="red", weight=0]; 2727[label="vyw490 == vyw500",fontsize=16,color="magenta"];2727 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2728 -> 536[label="",style="dashed", color="red", weight=0]; 2728[label="vyw490 == vyw500",fontsize=16,color="magenta"];2728 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2729 -> 531[label="",style="dashed", color="red", weight=0]; 2729[label="vyw490 == vyw500",fontsize=16,color="magenta"];2729 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2730 -> 541[label="",style="dashed", color="red", weight=0]; 2730[label="vyw490 == vyw500",fontsize=16,color="magenta"];2730 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2731[label="vyw500",fontsize=16,color="green",shape="box"];2732[label="vyw490",fontsize=16,color="green",shape="box"];2733[label="vyw500",fontsize=16,color="green",shape="box"];2734[label="vyw490",fontsize=16,color="green",shape="box"];2735[label="vyw500",fontsize=16,color="green",shape="box"];2736[label="vyw490",fontsize=16,color="green",shape="box"];2737[label="vyw500",fontsize=16,color="green",shape="box"];2738[label="vyw490",fontsize=16,color="green",shape="box"];2739[label="vyw500",fontsize=16,color="green",shape="box"];2740[label="vyw490",fontsize=16,color="green",shape="box"];2741[label="vyw500",fontsize=16,color="green",shape="box"];2742[label="vyw490",fontsize=16,color="green",shape="box"];2743[label="vyw500",fontsize=16,color="green",shape="box"];2744[label="vyw490",fontsize=16,color="green",shape="box"];2745[label="vyw500",fontsize=16,color="green",shape="box"];2746[label="vyw490",fontsize=16,color="green",shape="box"];2747[label="vyw500",fontsize=16,color="green",shape="box"];2748[label="vyw490",fontsize=16,color="green",shape="box"];2749[label="vyw500",fontsize=16,color="green",shape="box"];2750[label="vyw490",fontsize=16,color="green",shape="box"];2751[label="vyw500",fontsize=16,color="green",shape="box"];2752[label="vyw490",fontsize=16,color="green",shape="box"];2753[label="vyw500",fontsize=16,color="green",shape="box"];2754[label="vyw490",fontsize=16,color="green",shape="box"];2755[label="vyw500",fontsize=16,color="green",shape="box"];2756[label="vyw490",fontsize=16,color="green",shape="box"];2757[label="vyw500",fontsize=16,color="green",shape="box"];2758[label="vyw490",fontsize=16,color="green",shape="box"];2759[label="primPlusNat vyw1980 vyw5100",fontsize=16,color="burlywood",shape="triangle"];3824[label="vyw1980/Succ vyw19800",fontsize=10,color="white",style="solid",shape="box"];2759 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 2860[label="",style="solid", color="burlywood", weight=3]; 3825[label="vyw1980/Zero",fontsize=10,color="white",style="solid",shape="box"];2759 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 2861[label="",style="solid", color="burlywood", weight=3]; 2760[label="vyw492 <= vyw502",fontsize=16,color="blue",shape="box"];3826[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3826[label="",style="solid", color="blue", weight=9]; 3826 -> 2862[label="",style="solid", color="blue", weight=3]; 3827[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3827[label="",style="solid", color="blue", weight=9]; 3827 -> 2863[label="",style="solid", color="blue", weight=3]; 3828[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3828[label="",style="solid", color="blue", weight=9]; 3828 -> 2864[label="",style="solid", color="blue", weight=3]; 3829[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3829[label="",style="solid", color="blue", weight=9]; 3829 -> 2865[label="",style="solid", color="blue", weight=3]; 3830[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3830[label="",style="solid", color="blue", weight=9]; 3830 -> 2866[label="",style="solid", color="blue", weight=3]; 3831[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3831[label="",style="solid", color="blue", weight=9]; 3831 -> 2867[label="",style="solid", color="blue", weight=3]; 3832[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3832[label="",style="solid", color="blue", weight=9]; 3832 -> 2868[label="",style="solid", color="blue", weight=3]; 3833[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3833[label="",style="solid", color="blue", weight=9]; 3833 -> 2869[label="",style="solid", color="blue", weight=3]; 3834[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3834[label="",style="solid", color="blue", weight=9]; 3834 -> 2870[label="",style="solid", color="blue", weight=3]; 3835[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3835[label="",style="solid", color="blue", weight=9]; 3835 -> 2871[label="",style="solid", color="blue", weight=3]; 3836[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3836[label="",style="solid", color="blue", weight=9]; 3836 -> 2872[label="",style="solid", color="blue", weight=3]; 3837[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3837[label="",style="solid", color="blue", weight=9]; 3837 -> 2873[label="",style="solid", color="blue", weight=3]; 3838[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3838[label="",style="solid", color="blue", weight=9]; 3838 -> 2874[label="",style="solid", color="blue", weight=3]; 3839[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2760 -> 3839[label="",style="solid", color="blue", weight=9]; 3839 -> 2875[label="",style="solid", color="blue", weight=3]; 2761[label="vyw491 == vyw501",fontsize=16,color="blue",shape="box"];3840[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 2876[label="",style="solid", color="blue", weight=3]; 3841[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 2877[label="",style="solid", color="blue", weight=3]; 3842[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 2878[label="",style="solid", color="blue", weight=3]; 3843[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 2879[label="",style="solid", color="blue", weight=3]; 3844[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 2880[label="",style="solid", color="blue", weight=3]; 3845[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3845[label="",style="solid", color="blue", weight=9]; 3845 -> 2881[label="",style="solid", color="blue", weight=3]; 3846[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3846[label="",style="solid", color="blue", weight=9]; 3846 -> 2882[label="",style="solid", color="blue", weight=3]; 3847[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3847[label="",style="solid", color="blue", weight=9]; 3847 -> 2883[label="",style="solid", color="blue", weight=3]; 3848[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3848[label="",style="solid", color="blue", weight=9]; 3848 -> 2884[label="",style="solid", color="blue", weight=3]; 3849[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 2885[label="",style="solid", color="blue", weight=3]; 3850[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 2886[label="",style="solid", color="blue", weight=3]; 3851[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 2887[label="",style="solid", color="blue", weight=3]; 3852[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 2888[label="",style="solid", color="blue", weight=3]; 3853[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2761 -> 3853[label="",style="solid", color="blue", weight=9]; 3853 -> 2889[label="",style="solid", color="blue", weight=3]; 2762 -> 23[label="",style="dashed", color="red", weight=0]; 2762[label="vyw491 < vyw501",fontsize=16,color="magenta"];2762 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2763 -> 24[label="",style="dashed", color="red", weight=0]; 2763[label="vyw491 < vyw501",fontsize=16,color="magenta"];2763 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2764 -> 25[label="",style="dashed", color="red", weight=0]; 2764[label="vyw491 < vyw501",fontsize=16,color="magenta"];2764 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2765 -> 26[label="",style="dashed", color="red", weight=0]; 2765[label="vyw491 < vyw501",fontsize=16,color="magenta"];2765 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2766 -> 27[label="",style="dashed", color="red", weight=0]; 2766[label="vyw491 < vyw501",fontsize=16,color="magenta"];2766 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2767 -> 28[label="",style="dashed", color="red", weight=0]; 2767[label="vyw491 < vyw501",fontsize=16,color="magenta"];2767 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2768 -> 29[label="",style="dashed", color="red", weight=0]; 2768[label="vyw491 < vyw501",fontsize=16,color="magenta"];2768 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2768 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2769 -> 30[label="",style="dashed", color="red", weight=0]; 2769[label="vyw491 < vyw501",fontsize=16,color="magenta"];2769 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2770 -> 31[label="",style="dashed", color="red", weight=0]; 2770[label="vyw491 < vyw501",fontsize=16,color="magenta"];2770 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2771 -> 32[label="",style="dashed", color="red", weight=0]; 2771[label="vyw491 < vyw501",fontsize=16,color="magenta"];2771 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2771 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2772 -> 33[label="",style="dashed", color="red", weight=0]; 2772[label="vyw491 < vyw501",fontsize=16,color="magenta"];2772 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2773 -> 34[label="",style="dashed", color="red", weight=0]; 2773[label="vyw491 < vyw501",fontsize=16,color="magenta"];2773 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2773 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2774 -> 35[label="",style="dashed", color="red", weight=0]; 2774[label="vyw491 < vyw501",fontsize=16,color="magenta"];2774 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2775 -> 36[label="",style="dashed", color="red", weight=0]; 2775[label="vyw491 < vyw501",fontsize=16,color="magenta"];2775 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2776[label="vyw500",fontsize=16,color="green",shape="box"];2777[label="vyw490",fontsize=16,color="green",shape="box"];2778[label="vyw500",fontsize=16,color="green",shape="box"];2779[label="vyw490",fontsize=16,color="green",shape="box"];2780[label="vyw500",fontsize=16,color="green",shape="box"];2781[label="vyw490",fontsize=16,color="green",shape="box"];2782[label="vyw500",fontsize=16,color="green",shape="box"];2783[label="vyw490",fontsize=16,color="green",shape="box"];2784[label="vyw500",fontsize=16,color="green",shape="box"];2785[label="vyw490",fontsize=16,color="green",shape="box"];2786[label="vyw500",fontsize=16,color="green",shape="box"];2787[label="vyw490",fontsize=16,color="green",shape="box"];2788[label="vyw500",fontsize=16,color="green",shape="box"];2789[label="vyw490",fontsize=16,color="green",shape="box"];2790[label="vyw500",fontsize=16,color="green",shape="box"];2791[label="vyw490",fontsize=16,color="green",shape="box"];2792[label="vyw500",fontsize=16,color="green",shape="box"];2793[label="vyw490",fontsize=16,color="green",shape="box"];2794[label="vyw500",fontsize=16,color="green",shape="box"];2795[label="vyw490",fontsize=16,color="green",shape="box"];2796[label="vyw500",fontsize=16,color="green",shape="box"];2797[label="vyw490",fontsize=16,color="green",shape="box"];2798[label="vyw500",fontsize=16,color="green",shape="box"];2799[label="vyw490",fontsize=16,color="green",shape="box"];2800[label="vyw500",fontsize=16,color="green",shape="box"];2801[label="vyw490",fontsize=16,color="green",shape="box"];2802[label="vyw500",fontsize=16,color="green",shape="box"];2803[label="vyw490",fontsize=16,color="green",shape="box"];2804[label="vyw501",fontsize=16,color="green",shape="box"];2805[label="vyw491",fontsize=16,color="green",shape="box"];2806[label="vyw501",fontsize=16,color="green",shape="box"];2807[label="vyw491",fontsize=16,color="green",shape="box"];2808[label="vyw501",fontsize=16,color="green",shape="box"];2809[label="vyw491",fontsize=16,color="green",shape="box"];2810[label="vyw501",fontsize=16,color="green",shape="box"];2811[label="vyw491",fontsize=16,color="green",shape="box"];2812[label="vyw501",fontsize=16,color="green",shape="box"];2813[label="vyw491",fontsize=16,color="green",shape="box"];2814[label="vyw501",fontsize=16,color="green",shape="box"];2815[label="vyw491",fontsize=16,color="green",shape="box"];2816[label="vyw501",fontsize=16,color="green",shape="box"];2817[label="vyw491",fontsize=16,color="green",shape="box"];2818[label="vyw501",fontsize=16,color="green",shape="box"];2819[label="vyw491",fontsize=16,color="green",shape="box"];2820[label="vyw501",fontsize=16,color="green",shape="box"];2821[label="vyw491",fontsize=16,color="green",shape="box"];2822[label="vyw501",fontsize=16,color="green",shape="box"];2823[label="vyw491",fontsize=16,color="green",shape="box"];2824[label="vyw501",fontsize=16,color="green",shape="box"];2825[label="vyw491",fontsize=16,color="green",shape="box"];2826[label="vyw501",fontsize=16,color="green",shape="box"];2827[label="vyw491",fontsize=16,color="green",shape="box"];2828[label="vyw501",fontsize=16,color="green",shape="box"];2829[label="vyw491",fontsize=16,color="green",shape="box"];2830[label="vyw501",fontsize=16,color="green",shape="box"];2831[label="vyw491",fontsize=16,color="green",shape="box"];2832[label="vyw500",fontsize=16,color="green",shape="box"];2833[label="vyw490",fontsize=16,color="green",shape="box"];2834[label="vyw500",fontsize=16,color="green",shape="box"];2835[label="vyw490",fontsize=16,color="green",shape="box"];2836[label="vyw500",fontsize=16,color="green",shape="box"];2837[label="vyw490",fontsize=16,color="green",shape="box"];2838[label="vyw500",fontsize=16,color="green",shape="box"];2839[label="vyw490",fontsize=16,color="green",shape="box"];2840[label="vyw500",fontsize=16,color="green",shape="box"];2841[label="vyw490",fontsize=16,color="green",shape="box"];2842[label="vyw500",fontsize=16,color="green",shape="box"];2843[label="vyw490",fontsize=16,color="green",shape="box"];2844[label="vyw500",fontsize=16,color="green",shape="box"];2845[label="vyw490",fontsize=16,color="green",shape="box"];2846[label="vyw500",fontsize=16,color="green",shape="box"];2847[label="vyw490",fontsize=16,color="green",shape="box"];2848[label="vyw500",fontsize=16,color="green",shape="box"];2849[label="vyw490",fontsize=16,color="green",shape="box"];2850[label="vyw500",fontsize=16,color="green",shape="box"];2851[label="vyw490",fontsize=16,color="green",shape="box"];2852[label="vyw500",fontsize=16,color="green",shape="box"];2853[label="vyw490",fontsize=16,color="green",shape="box"];2854[label="vyw500",fontsize=16,color="green",shape="box"];2855[label="vyw490",fontsize=16,color="green",shape="box"];2856[label="vyw500",fontsize=16,color="green",shape="box"];2857[label="vyw490",fontsize=16,color="green",shape="box"];2858[label="vyw500",fontsize=16,color="green",shape="box"];2859[label="vyw490",fontsize=16,color="green",shape="box"];2860[label="primPlusNat (Succ vyw19800) vyw5100",fontsize=16,color="burlywood",shape="box"];3854[label="vyw5100/Succ vyw51000",fontsize=10,color="white",style="solid",shape="box"];2860 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 2918[label="",style="solid", color="burlywood", weight=3]; 3855[label="vyw5100/Zero",fontsize=10,color="white",style="solid",shape="box"];2860 -> 3855[label="",style="solid", color="burlywood", weight=9]; 3855 -> 2919[label="",style="solid", color="burlywood", weight=3]; 2861[label="primPlusNat Zero vyw5100",fontsize=16,color="burlywood",shape="box"];3856[label="vyw5100/Succ vyw51000",fontsize=10,color="white",style="solid",shape="box"];2861 -> 3856[label="",style="solid", color="burlywood", weight=9]; 3856 -> 2920[label="",style="solid", color="burlywood", weight=3]; 3857[label="vyw5100/Zero",fontsize=10,color="white",style="solid",shape="box"];2861 -> 3857[label="",style="solid", color="burlywood", weight=9]; 3857 -> 2921[label="",style="solid", color="burlywood", weight=3]; 2862 -> 1449[label="",style="dashed", color="red", weight=0]; 2862[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2862 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2863 -> 1450[label="",style="dashed", color="red", weight=0]; 2863[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2863 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2863 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2864 -> 1451[label="",style="dashed", color="red", weight=0]; 2864[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2864 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2864 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2865 -> 1452[label="",style="dashed", color="red", weight=0]; 2865[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2865 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2865 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2866 -> 1453[label="",style="dashed", color="red", weight=0]; 2866[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2866 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2866 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2867 -> 1454[label="",style="dashed", color="red", weight=0]; 2867[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2867 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2868 -> 1455[label="",style="dashed", color="red", weight=0]; 2868[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2868 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2868 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2869 -> 1456[label="",style="dashed", color="red", weight=0]; 2869[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2869 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2870 -> 1457[label="",style="dashed", color="red", weight=0]; 2870[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2870 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2870 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2871 -> 1458[label="",style="dashed", color="red", weight=0]; 2871[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2871 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2871 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2872 -> 1459[label="",style="dashed", color="red", weight=0]; 2872[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2872 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2872 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2873 -> 1460[label="",style="dashed", color="red", weight=0]; 2873[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2873 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2873 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2874 -> 1461[label="",style="dashed", color="red", weight=0]; 2874[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2874 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2874 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2875 -> 1462[label="",style="dashed", color="red", weight=0]; 2875[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2875 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2875 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2876 -> 529[label="",style="dashed", color="red", weight=0]; 2876[label="vyw491 == vyw501",fontsize=16,color="magenta"];2876 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2876 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2877 -> 534[label="",style="dashed", color="red", weight=0]; 2877[label="vyw491 == vyw501",fontsize=16,color="magenta"];2877 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2877 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2878 -> 539[label="",style="dashed", color="red", weight=0]; 2878[label="vyw491 == vyw501",fontsize=16,color="magenta"];2878 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2878 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2879 -> 537[label="",style="dashed", color="red", weight=0]; 2879[label="vyw491 == vyw501",fontsize=16,color="magenta"];2879 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2879 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2880 -> 533[label="",style="dashed", color="red", weight=0]; 2880[label="vyw491 == vyw501",fontsize=16,color="magenta"];2880 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2880 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2881 -> 532[label="",style="dashed", color="red", weight=0]; 2881[label="vyw491 == vyw501",fontsize=16,color="magenta"];2881 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2881 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2882 -> 540[label="",style="dashed", color="red", weight=0]; 2882[label="vyw491 == vyw501",fontsize=16,color="magenta"];2882 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2882 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2883 -> 538[label="",style="dashed", color="red", weight=0]; 2883[label="vyw491 == vyw501",fontsize=16,color="magenta"];2883 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2883 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2884 -> 530[label="",style="dashed", color="red", weight=0]; 2884[label="vyw491 == vyw501",fontsize=16,color="magenta"];2884 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2884 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2885 -> 535[label="",style="dashed", color="red", weight=0]; 2885[label="vyw491 == vyw501",fontsize=16,color="magenta"];2885 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2885 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2886 -> 542[label="",style="dashed", color="red", weight=0]; 2886[label="vyw491 == vyw501",fontsize=16,color="magenta"];2886 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2886 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2887 -> 536[label="",style="dashed", color="red", weight=0]; 2887[label="vyw491 == vyw501",fontsize=16,color="magenta"];2887 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2887 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2888 -> 531[label="",style="dashed", color="red", weight=0]; 2888[label="vyw491 == vyw501",fontsize=16,color="magenta"];2888 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2888 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2889 -> 541[label="",style="dashed", color="red", weight=0]; 2889[label="vyw491 == vyw501",fontsize=16,color="magenta"];2889 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2889 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2890[label="vyw501",fontsize=16,color="green",shape="box"];2891[label="vyw491",fontsize=16,color="green",shape="box"];2892[label="vyw501",fontsize=16,color="green",shape="box"];2893[label="vyw491",fontsize=16,color="green",shape="box"];2894[label="vyw501",fontsize=16,color="green",shape="box"];2895[label="vyw491",fontsize=16,color="green",shape="box"];2896[label="vyw501",fontsize=16,color="green",shape="box"];2897[label="vyw491",fontsize=16,color="green",shape="box"];2898[label="vyw501",fontsize=16,color="green",shape="box"];2899[label="vyw491",fontsize=16,color="green",shape="box"];2900[label="vyw501",fontsize=16,color="green",shape="box"];2901[label="vyw491",fontsize=16,color="green",shape="box"];2902[label="vyw501",fontsize=16,color="green",shape="box"];2903[label="vyw491",fontsize=16,color="green",shape="box"];2904[label="vyw501",fontsize=16,color="green",shape="box"];2905[label="vyw491",fontsize=16,color="green",shape="box"];2906[label="vyw501",fontsize=16,color="green",shape="box"];2907[label="vyw491",fontsize=16,color="green",shape="box"];2908[label="vyw501",fontsize=16,color="green",shape="box"];2909[label="vyw491",fontsize=16,color="green",shape="box"];2910[label="vyw501",fontsize=16,color="green",shape="box"];2911[label="vyw491",fontsize=16,color="green",shape="box"];2912[label="vyw501",fontsize=16,color="green",shape="box"];2913[label="vyw491",fontsize=16,color="green",shape="box"];2914[label="vyw501",fontsize=16,color="green",shape="box"];2915[label="vyw491",fontsize=16,color="green",shape="box"];2916[label="vyw501",fontsize=16,color="green",shape="box"];2917[label="vyw491",fontsize=16,color="green",shape="box"];2918[label="primPlusNat (Succ vyw19800) (Succ vyw51000)",fontsize=16,color="black",shape="box"];2918 -> 2978[label="",style="solid", color="black", weight=3]; 2919[label="primPlusNat (Succ vyw19800) Zero",fontsize=16,color="black",shape="box"];2919 -> 2979[label="",style="solid", color="black", weight=3]; 2920[label="primPlusNat Zero (Succ vyw51000)",fontsize=16,color="black",shape="box"];2920 -> 2980[label="",style="solid", color="black", weight=3]; 2921[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2921 -> 2981[label="",style="solid", color="black", weight=3]; 2922[label="vyw502",fontsize=16,color="green",shape="box"];2923[label="vyw492",fontsize=16,color="green",shape="box"];2924[label="vyw502",fontsize=16,color="green",shape="box"];2925[label="vyw492",fontsize=16,color="green",shape="box"];2926[label="vyw502",fontsize=16,color="green",shape="box"];2927[label="vyw492",fontsize=16,color="green",shape="box"];2928[label="vyw502",fontsize=16,color="green",shape="box"];2929[label="vyw492",fontsize=16,color="green",shape="box"];2930[label="vyw502",fontsize=16,color="green",shape="box"];2931[label="vyw492",fontsize=16,color="green",shape="box"];2932[label="vyw502",fontsize=16,color="green",shape="box"];2933[label="vyw492",fontsize=16,color="green",shape="box"];2934[label="vyw502",fontsize=16,color="green",shape="box"];2935[label="vyw492",fontsize=16,color="green",shape="box"];2936[label="vyw502",fontsize=16,color="green",shape="box"];2937[label="vyw492",fontsize=16,color="green",shape="box"];2938[label="vyw502",fontsize=16,color="green",shape="box"];2939[label="vyw492",fontsize=16,color="green",shape="box"];2940[label="vyw502",fontsize=16,color="green",shape="box"];2941[label="vyw492",fontsize=16,color="green",shape="box"];2942[label="vyw502",fontsize=16,color="green",shape="box"];2943[label="vyw492",fontsize=16,color="green",shape="box"];2944[label="vyw502",fontsize=16,color="green",shape="box"];2945[label="vyw492",fontsize=16,color="green",shape="box"];2946[label="vyw502",fontsize=16,color="green",shape="box"];2947[label="vyw492",fontsize=16,color="green",shape="box"];2948[label="vyw502",fontsize=16,color="green",shape="box"];2949[label="vyw492",fontsize=16,color="green",shape="box"];2950[label="vyw501",fontsize=16,color="green",shape="box"];2951[label="vyw491",fontsize=16,color="green",shape="box"];2952[label="vyw501",fontsize=16,color="green",shape="box"];2953[label="vyw491",fontsize=16,color="green",shape="box"];2954[label="vyw501",fontsize=16,color="green",shape="box"];2955[label="vyw491",fontsize=16,color="green",shape="box"];2956[label="vyw501",fontsize=16,color="green",shape="box"];2957[label="vyw491",fontsize=16,color="green",shape="box"];2958[label="vyw501",fontsize=16,color="green",shape="box"];2959[label="vyw491",fontsize=16,color="green",shape="box"];2960[label="vyw501",fontsize=16,color="green",shape="box"];2961[label="vyw491",fontsize=16,color="green",shape="box"];2962[label="vyw501",fontsize=16,color="green",shape="box"];2963[label="vyw491",fontsize=16,color="green",shape="box"];2964[label="vyw501",fontsize=16,color="green",shape="box"];2965[label="vyw491",fontsize=16,color="green",shape="box"];2966[label="vyw501",fontsize=16,color="green",shape="box"];2967[label="vyw491",fontsize=16,color="green",shape="box"];2968[label="vyw501",fontsize=16,color="green",shape="box"];2969[label="vyw491",fontsize=16,color="green",shape="box"];2970[label="vyw501",fontsize=16,color="green",shape="box"];2971[label="vyw491",fontsize=16,color="green",shape="box"];2972[label="vyw501",fontsize=16,color="green",shape="box"];2973[label="vyw491",fontsize=16,color="green",shape="box"];2974[label="vyw501",fontsize=16,color="green",shape="box"];2975[label="vyw491",fontsize=16,color="green",shape="box"];2976[label="vyw501",fontsize=16,color="green",shape="box"];2977[label="vyw491",fontsize=16,color="green",shape="box"];2978[label="Succ (Succ (primPlusNat vyw19800 vyw51000))",fontsize=16,color="green",shape="box"];2978 -> 2982[label="",style="dashed", color="green", weight=3]; 2979[label="Succ vyw19800",fontsize=16,color="green",shape="box"];2980[label="Succ vyw51000",fontsize=16,color="green",shape="box"];2981[label="Zero",fontsize=16,color="green",shape="box"];2982 -> 2759[label="",style="dashed", color="red", weight=0]; 2982[label="primPlusNat vyw19800 vyw51000",fontsize=16,color="magenta"];2982 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2982 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2983[label="vyw19800",fontsize=16,color="green",shape="box"];2984[label="vyw51000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vyw500), Succ(vyw3000)) -> new_primCmpNat(vyw500, vyw3000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vyw500), Succ(vyw3000)) -> new_primCmpNat(vyw500, vyw3000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Right(vyw490), Right(vyw500), cb, app(ty_Maybe, dd)) -> new_ltEs3(vyw490, vyw500, dd) new_lt0(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_primCompAux(vyw50, vyw300, new_compare0(vyw51, vyw301, df), df) new_primCompAux(vyw50, vyw300, vyw44, app(ty_Maybe, eg)) -> new_compare4(vyw50, vyw300, eg) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(ty_[], hb)), ha), fb) -> new_lt0(vyw491, vyw501, hb) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(ty_Maybe, cag), bfc, bgg) -> new_lt3(vyw105, vyw108, cag) new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), fb) -> new_ltEs(vyw490, vyw500, h, ba) new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(app(ty_@3, bd), be), bf)), bb), fb) -> new_ltEs1(vyw490, vyw500, bd, be, bf) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(ty_[], bgh), bgg) -> new_lt0(vyw106, vyw109, bgh) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(app(ty_@2, cae), caf), bfc, bgg) -> new_lt2(vyw105, vyw108, cae, caf) new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(app(ty_@3, bea), beb), bec)), fb) -> new_ltEs1(vyw490, vyw500, bea, beb, bec) new_compare24(vyw94, vyw95, False, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs1(vyw94, vyw95, ceb, cec, ced) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_Either, bcd), bce)), bcf), fb) -> new_lt(vyw490, vyw500, bcd, bce) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_Either, baa), bab), fd, ha) -> new_lt(vyw490, vyw500, baa, bab) new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(ty_[], ccg), ccf) -> new_lt0(vyw118, vyw120, ccg) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(app(ty_@3, bch), bda), bdb), bcf) -> new_lt1(vyw490, vyw500, bch, bda, bdb) new_ltEs3(Just(vyw490), Just(vyw500), app(ty_[], bdh)) -> new_ltEs0(vyw490, vyw500, bdh) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(app(ty_Either, bfd), bfe)) -> new_ltEs(vyw107, vyw110, bfd, bfe) new_ltEs(Left(vyw490), Left(vyw500), app(app(ty_@2, bg), bh), bb) -> new_ltEs2(vyw490, vyw500, bg, bh) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_ltEs1(vyw491, vyw501, bbf, bbg, bbh) new_lt1(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), beg, beh, bfa) -> new_compare22(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs8(vyw50, vyw300, beg), new_asAs(new_esEs7(vyw51, vyw301, beh), new_esEs6(vyw52, vyw302, bfa))), beg, beh, bfa) new_ltEs3(Just(vyw490), Just(vyw500), app(app(ty_@2, bed), bee)) -> new_ltEs2(vyw490, vyw500, bed, bee) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(app(app(ty_@3, hc), hd), he), ha) -> new_lt1(vyw491, vyw501, hc, hd, he) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(app(ty_@2, hf), hg), ha) -> new_lt2(vyw491, vyw501, hf, hg) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(ty_[], bff)) -> new_ltEs0(vyw107, vyw110, bff) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(ty_[], bbe)), fb) -> new_ltEs0(vyw491, vyw501, bbe) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(ty_[], fh)) -> new_ltEs0(vyw492, vyw502, fh) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs1(vyw107, vyw110, bfg, bfh, bga) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_[], bcg)), bcf), fb) -> new_lt0(vyw490, vyw500, bcg) new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(app(ty_@2, cdc), cdd), ccf) -> new_lt2(vyw118, vyw120, cdc, cdd) new_ltEs(Left(vyw490), Left(vyw500), app(ty_Maybe, ca), bb) -> new_ltEs3(vyw490, vyw500, ca) new_compare24(vyw94, vyw95, False, app(ty_[], cea)) -> new_ltEs0(vyw94, vyw95, cea) new_ltEs3(Just(vyw490), Just(vyw500), app(app(ty_Either, bdf), bdg)) -> new_ltEs(vyw490, vyw500, bdf, bdg) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(ty_Maybe, bcc)), fb) -> new_ltEs3(vyw491, vyw501, bcc) new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(ty_[], ce)), fb) -> new_ltEs0(vyw490, vyw500, ce) new_compare21(vyw56, vyw57, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyw56, vyw57, cga) new_compare3(@2(vyw50, vyw51), @2(vyw300, vyw301), cah, cba) -> new_compare23(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs10(vyw50, vyw300, cah), new_esEs9(vyw51, vyw301, cba)), cah, cba) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_Maybe, bba), fd, ha) -> new_lt3(vyw490, vyw500, bba) new_primCompAux(vyw50, vyw300, vyw44, app(app(ty_@2, ee), ef)) -> new_compare3(vyw50, vyw300, ee, ef) new_ltEs(Left(vyw490), Left(vyw500), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw490, vyw500, h, ba) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(ty_[], hb), ha) -> new_lt0(vyw491, vyw501, hb) new_compare21(vyw56, vyw57, False, ceh, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs1(vyw56, vyw57, cfd, cfe, cff) new_ltEs(Right(vyw490), Right(vyw500), cb, app(app(ty_@2, db), dc)) -> new_ltEs2(vyw490, vyw500, db, dc) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_[], bac), fd, ha) -> new_lt0(vyw490, vyw500, bac) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(app(app(ty_@3, bha), bhb), bhc), bgg) -> new_lt1(vyw106, vyw109, bha, bhb, bhc) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_[], bac)), fd), ha), fb) -> new_lt0(vyw490, vyw500, bac) new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(app(ty_@2, cca), ccb)) -> new_ltEs2(vyw119, vyw121, cca, ccb) new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(app(app(ty_@3, cf), cg), da)), fb) -> new_ltEs1(vyw490, vyw500, cf, cg, da) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(ty_Maybe, bcc)) -> new_ltEs3(vyw491, vyw501, bcc) new_compare24(vyw94, vyw95, False, app(app(ty_Either, cdg), cdh)) -> new_ltEs(vyw94, vyw95, cdg, cdh) new_lt0(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_compare(vyw51, vyw301, df) new_primCompAux(vyw50, vyw300, vyw44, app(app(ty_Either, dg), dh)) -> new_compare1(vyw50, vyw300, dg, dh) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_Either, baa), bab)), fd), ha), fb) -> new_lt(vyw490, vyw500, baa, bab) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(app(ty_@3, bch), bda), bdb)), bcf), fb) -> new_lt1(vyw490, vyw500, bch, bda, bdb) new_compare2(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), beg, beh, bfa) -> new_compare22(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs8(vyw50, vyw300, beg), new_asAs(new_esEs7(vyw51, vyw301, beh), new_esEs6(vyw52, vyw302, bfa))), beg, beh, bfa) new_compare1(Left(vyw50), Left(vyw300), eh, fa) -> new_compare20(vyw50, vyw300, new_esEs4(vyw50, vyw300, eh), eh, fa) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_@2, bag), bah)), fd), ha), fb) -> new_lt2(vyw490, vyw500, bag, bah) new_lt3(Just(vyw50), Just(vyw300), cdf) -> new_compare24(vyw50, vyw300, new_esEs11(vyw50, vyw300, cdf), cdf) new_ltEs0(vyw49, vyw50, de) -> new_compare(vyw49, vyw50, de) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_Maybe, bde), bcf) -> new_lt3(vyw490, vyw500, bde) new_lt(Right(vyw50), Right(vyw300), eh, fa) -> new_compare21(vyw50, vyw300, new_esEs5(vyw50, vyw300, fa), eh, fa) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(app(ty_@3, bad), bae), baf), fd, ha) -> new_lt1(vyw490, vyw500, bad, bae, baf) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(app(ty_Either, bhg), bhh), bfc, bgg) -> new_lt(vyw105, vyw108, bhg, bhh) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(app(ty_Either, bbc), bbd)) -> new_ltEs(vyw491, vyw501, bbc, bbd) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(app(ty_@2, gd), ge)), fb) -> new_ltEs2(vyw492, vyw502, gd, ge) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(app(ty_@2, bgb), bgc)) -> new_ltEs2(vyw107, vyw110, bgb, bgc) new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_[], bc)), bb), fb) -> new_ltEs0(vyw490, vyw500, bc) new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_[], bdh)), fb) -> new_ltEs0(vyw490, vyw500, bdh) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_Either, bcd), bce), bcf) -> new_lt(vyw490, vyw500, bcd, bce) new_compare21(vyw56, vyw57, False, ceh, app(ty_[], cfc)) -> new_ltEs0(vyw56, vyw57, cfc) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_Maybe, bde)), bcf), fb) -> new_lt3(vyw490, vyw500, bde) new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(app(ty_Either, ccd), cce), ccf) -> new_lt(vyw118, vyw120, ccd, cce) new_compare24(vyw94, vyw95, False, app(app(ty_@2, cee), cef)) -> new_ltEs2(vyw94, vyw95, cee, cef) new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(app(ty_Either, cbc), cbd)) -> new_ltEs(vyw119, vyw121, cbc, cbd) new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_Maybe, bef)), fb) -> new_ltEs3(vyw490, vyw500, bef) new_lt2(@2(vyw50, vyw51), @2(vyw300, vyw301), cah, cba) -> new_compare23(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs10(vyw50, vyw300, cah), new_esEs9(vyw51, vyw301, cba)), cah, cba) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(ty_[], caa), bfc, bgg) -> new_lt0(vyw105, vyw108, caa) new_compare21(vyw56, vyw57, False, ceh, app(app(ty_@2, cfg), cfh)) -> new_ltEs2(vyw56, vyw57, cfg, cfh) new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(app(app(ty_@3, cch), cda), cdb), ccf) -> new_lt1(vyw118, vyw120, cch, cda, cdb) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(app(ty_@2, bca), bcb)), fb) -> new_ltEs2(vyw491, vyw501, bca, bcb) new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs1(vyw119, vyw121, cbf, cbg, cbh) new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_Maybe, ca)), bb), fb) -> new_ltEs3(vyw490, vyw500, ca) new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_@2, bg), bh)), bb), fb) -> new_ltEs2(vyw490, vyw500, bg, bh) new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), fb) -> new_ltEs(vyw490, vyw500, cc, cd) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(ty_Maybe, bhf), bgg) -> new_lt3(vyw106, vyw109, bhf) new_ltEs(Left(vyw490), Left(vyw500), app(ty_[], bc), bb) -> new_ltEs0(vyw490, vyw500, bc) new_ltEs(Left(vyw490), Left(vyw500), app(app(app(ty_@3, bd), be), bf), bb) -> new_ltEs1(vyw490, vyw500, bd, be, bf) new_ltEs(Right(vyw490), Right(vyw500), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw490, vyw500, cc, cd) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(app(app(ty_@3, ga), gb), gc)), fb) -> new_ltEs1(vyw492, vyw502, ga, gb, gc) new_ltEs3(Just(vyw490), Just(vyw500), app(ty_Maybe, bef)) -> new_ltEs3(vyw490, vyw500, bef) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(app(ty_Either, bge), bgf), bgg) -> new_lt(vyw106, vyw109, bge, bgf) new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(ty_Maybe, cde), ccf) -> new_lt3(vyw118, vyw120, cde) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(app(ty_@3, bad), bae), baf)), fd), ha), fb) -> new_lt1(vyw490, vyw500, bad, bae, baf) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(ty_Maybe, bgd)) -> new_ltEs3(vyw107, vyw110, bgd) new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(ty_Maybe, dd)), fb) -> new_ltEs3(vyw490, vyw500, dd) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_Maybe, bba)), fd), ha), fb) -> new_lt3(vyw490, vyw500, bba) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_[], bcg), bcf) -> new_lt0(vyw490, vyw500, bcg) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(app(ty_@2, hf), hg)), ha), fb) -> new_lt2(vyw491, vyw501, hf, hg) new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_@2, bed), bee)), fb) -> new_ltEs2(vyw490, vyw500, bed, bee) new_compare21(vyw56, vyw57, False, ceh, app(app(ty_Either, cfa), cfb)) -> new_ltEs(vyw56, vyw57, cfa, cfb) new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(ty_Maybe, ccc)) -> new_ltEs3(vyw119, vyw121, ccc) new_ltEs(Right(vyw490), Right(vyw500), cb, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs1(vyw490, vyw500, cf, cg, da) new_primCompAux(vyw50, vyw300, vyw44, app(app(app(ty_@3, eb), ec), ed)) -> new_compare2(vyw50, vyw300, eb, ec, ed) new_compare(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_primCompAux(vyw50, vyw300, new_compare0(vyw51, vyw301, df), df) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_@2, bdc), bdd), bcf) -> new_lt2(vyw490, vyw500, bdc, bdd) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_@2, bdc), bdd)), bcf), fb) -> new_lt2(vyw490, vyw500, bdc, bdd) new_ltEs(Right(vyw490), Right(vyw500), cb, app(ty_[], ce)) -> new_ltEs0(vyw490, vyw500, ce) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(app(ty_@2, bca), bcb)) -> new_ltEs2(vyw491, vyw501, bca, bcb) new_compare1(Right(vyw50), Right(vyw300), eh, fa) -> new_compare21(vyw50, vyw300, new_esEs5(vyw50, vyw300, fa), eh, fa) new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(app(ty_@2, db), dc)), fb) -> new_ltEs2(vyw490, vyw500, db, dc) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(app(ty_@2, bhd), bhe), bgg) -> new_lt2(vyw106, vyw109, bhd, bhe) new_ltEs3(Just(vyw490), Just(vyw500), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs1(vyw490, vyw500, bea, beb, bec) new_primCompAux(vyw50, vyw300, vyw44, app(ty_[], ea)) -> new_compare(vyw50, vyw300, ea) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(app(ty_Either, bbc), bbd)), fb) -> new_ltEs(vyw491, vyw501, bbc, bbd) new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(ty_[], bbe)) -> new_ltEs0(vyw491, vyw501, bbe) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(ty_Maybe, hh)), ha), fb) -> new_lt3(vyw491, vyw501, hh) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(app(ty_Either, ff), fg)) -> new_ltEs(vyw492, vyw502, ff, fg) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(ty_Maybe, hh), ha) -> new_lt3(vyw491, vyw501, hh) new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(app(app(ty_@3, cab), cac), cad), bfc, bgg) -> new_lt1(vyw105, vyw108, cab, cac, cad) new_lt(Left(vyw50), Left(vyw300), eh, fa) -> new_compare20(vyw50, vyw300, new_esEs4(vyw50, vyw300, eh), eh, fa) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(ty_[], fh)), fb) -> new_ltEs0(vyw492, vyw502, fh) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_@2, bag), bah), fd, ha) -> new_lt2(vyw490, vyw500, bag, bah) new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(app(app(ty_@3, bbf), bbg), bbh)), fb) -> new_ltEs1(vyw491, vyw501, bbf, bbg, bbh) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(app(ty_Either, gg), gh)), ha), fb) -> new_lt(vyw491, vyw501, gg, gh) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(app(ty_Either, gg), gh), ha) -> new_lt(vyw491, vyw501, gg, gh) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(app(ty_Either, ff), fg)), fb) -> new_ltEs(vyw492, vyw502, ff, fg) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs1(vyw492, vyw502, ga, gb, gc) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(ty_Maybe, gf)) -> new_ltEs3(vyw492, vyw502, gf) new_compare(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_compare(vyw51, vyw301, df) new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(ty_[], cbe)) -> new_ltEs0(vyw119, vyw121, cbe) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(ty_Maybe, gf)), fb) -> new_ltEs3(vyw492, vyw502, gf) new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_Either, bdf), bdg)), fb) -> new_ltEs(vyw490, vyw500, bdf, bdg) new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(app(ty_@2, gd), ge)) -> new_ltEs2(vyw492, vyw502, gd, ge) new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(app(app(ty_@3, hc), hd), he)), ha), fb) -> new_lt1(vyw491, vyw501, hc, hd, he) new_compare4(Just(vyw50), Just(vyw300), cdf) -> new_compare24(vyw50, vyw300, new_esEs11(vyw50, vyw300, cdf), cdf) new_compare20(vyw49, vyw50, False, app(ty_[], de), fb) -> new_compare(vyw49, vyw50, de) new_compare24(vyw94, vyw95, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyw94, vyw95, ceg) The TRS R consists of the following rules: new_lt20(vyw490, vyw500, ty_Double) -> new_lt12(vyw490, vyw500) new_esEs37(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_lt9(vyw106, vyw109, ty_Int) -> new_lt16(vyw106, vyw109) new_esEs8(vyw50, vyw300, app(ty_Maybe, eab)) -> new_esEs26(vyw50, vyw300, eab) new_primCmpInt(Neg(Succ(vyw500)), Pos(vyw300)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs4(vyw94, vyw95, ty_Double) -> new_ltEs6(vyw94, vyw95) new_esEs36(vyw502, vyw3002, app(app(ty_@2, fba), fbb)) -> new_esEs14(vyw502, vyw3002, fba, fbb) new_pePe(True, vyw197) -> True new_esEs9(vyw51, vyw301, app(app(ty_@2, eda), edb)) -> new_esEs14(vyw51, vyw301, eda, edb) new_ltEs20(vyw107, vyw110, app(ty_Maybe, bgd)) -> new_ltEs15(vyw107, vyw110, bgd) new_esEs38(vyw500, vyw3000, ty_Bool) -> new_esEs19(vyw500, vyw3000) new_esEs31(vyw491, vyw501, ty_Char) -> new_esEs13(vyw491, vyw501) new_esEs39(vyw501, vyw3001, app(ty_Ratio, ffa)) -> new_esEs16(vyw501, vyw3001, ffa) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_lt10(vyw105, vyw108, ty_Float) -> new_lt5(vyw105, vyw108) new_esEs39(vyw501, vyw3001, ty_Double) -> new_esEs18(vyw501, vyw3001) new_ltEs8(Left(vyw490), Left(vyw500), ty_Ordering, bb) -> new_ltEs7(vyw490, vyw500) new_esEs4(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_compare33(vyw50, vyw300, ty_@0) -> new_compare7(vyw50, vyw300) new_esEs23(LT, LT) -> True new_esEs27(vyw106, vyw109, ty_Float) -> new_esEs20(vyw106, vyw109) new_lt22(vyw491, vyw501, ty_Bool) -> new_lt8(vyw491, vyw501) new_compare33(vyw50, vyw300, ty_Int) -> new_compare15(vyw50, vyw300) new_ltEs22(vyw119, vyw121, ty_Float) -> new_ltEs16(vyw119, vyw121) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vyw3000))) -> GT new_compare26(vyw49, vyw50, True, chf, fb) -> EQ new_lt10(vyw105, vyw108, app(ty_[], caa)) -> new_lt14(vyw105, vyw108, caa) new_lt23(vyw490, vyw500, ty_Ordering) -> new_lt4(vyw490, vyw500) new_esEs30(vyw118, vyw120, app(ty_Ratio, dcc)) -> new_esEs16(vyw118, vyw120, dcc) new_esEs37(vyw501, vyw3001, app(app(ty_Either, fcg), fch)) -> new_esEs21(vyw501, vyw3001, fcg, fch) new_compare5(GT, EQ) -> GT new_primCmpInt(Neg(Succ(vyw500)), Neg(vyw300)) -> new_primCmpNat0(vyw300, Succ(vyw500)) new_esEs10(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_esEs38(vyw500, vyw3000, app(ty_[], fdh)) -> new_esEs17(vyw500, vyw3000, fdh) new_compare0(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_primCompAux1(vyw50, vyw300, new_compare0(vyw51, vyw301, df), df) new_esEs9(vyw51, vyw301, app(app(app(ty_@3, edg), edh), eea)) -> new_esEs24(vyw51, vyw301, edg, edh, eea) new_esEs21(Left(vyw500), Left(vyw3000), ty_Bool, eac) -> new_esEs19(vyw500, vyw3000) new_esEs35(vyw500, vyw3000, app(ty_Maybe, fag)) -> new_esEs26(vyw500, vyw3000, fag) new_esEs36(vyw502, vyw3002, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs24(vyw502, vyw3002, fbg, fbh, fca) new_esEs29(vyw490, vyw500, app(ty_Maybe, bde)) -> new_esEs26(vyw490, vyw500, bde) new_lt10(vyw105, vyw108, app(ty_Maybe, cag)) -> new_lt18(vyw105, vyw108, cag) new_esEs37(vyw501, vyw3001, ty_@0) -> new_esEs25(vyw501, vyw3001) new_ltEs20(vyw107, vyw110, ty_@0) -> new_ltEs18(vyw107, vyw110) new_esEs6(vyw52, vyw302, ty_Ordering) -> new_esEs23(vyw52, vyw302) new_esEs6(vyw52, vyw302, app(ty_[], deh)) -> new_esEs17(vyw52, vyw302, deh) new_compare5(LT, GT) -> LT new_ltEs4(vyw94, vyw95, app(app(ty_@2, cee), cef)) -> new_ltEs13(vyw94, vyw95, cee, cef) new_ltEs20(vyw107, vyw110, ty_Char) -> new_ltEs5(vyw107, vyw110) new_lt20(vyw490, vyw500, ty_Float) -> new_lt5(vyw490, vyw500) new_lt4(vyw5, vyw30) -> new_esEs12(new_compare5(vyw5, vyw30)) new_compare28(vyw118, vyw119, vyw120, vyw121, True, cbb, ccf) -> EQ new_primCompAux0(vyw62, GT) -> GT new_esEs21(Right(vyw500), Right(vyw3000), ebf, ty_Char) -> new_esEs13(vyw500, vyw3000) new_ltEs20(vyw107, vyw110, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs11(vyw107, vyw110, bfg, bfh, bga) new_fsEs(vyw192) -> new_not(new_esEs23(vyw192, GT)) new_ltEs15(Just(vyw490), Just(vyw500), app(ty_Ratio, efe)) -> new_ltEs10(vyw490, vyw500, efe) new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_ltEs21(vyw491, vyw501, app(app(ty_@2, bca), bcb)) -> new_ltEs13(vyw491, vyw501, bca, bcb) new_esEs21(Left(vyw500), Right(vyw3000), ebf, eac) -> False new_esEs21(Right(vyw500), Left(vyw3000), ebf, eac) -> False new_esEs6(vyw52, vyw302, ty_Float) -> new_esEs20(vyw52, vyw302) new_ltEs19(vyw49, vyw50, ty_Int) -> new_ltEs12(vyw49, vyw50) new_ltEs15(Just(vyw490), Just(vyw500), ty_Bool) -> new_ltEs14(vyw490, vyw500) new_ltEs19(vyw49, vyw50, ty_Bool) -> new_ltEs14(vyw49, vyw50) new_ltEs15(Just(vyw490), Just(vyw500), ty_Int) -> new_ltEs12(vyw490, vyw500) new_esEs11(vyw50, vyw300, app(app(ty_@2, dcf), dcg)) -> new_esEs14(vyw50, vyw300, dcf, dcg) new_compare5(GT, LT) -> GT new_esEs27(vyw106, vyw109, app(ty_[], bgh)) -> new_esEs17(vyw106, vyw109, bgh) new_compare5(EQ, LT) -> GT new_lt22(vyw491, vyw501, ty_Int) -> new_lt16(vyw491, vyw501) new_compare19(vyw141, vyw142, True, ehb, ehc) -> LT new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) new_compare18(Nothing, Just(vyw300), cdf) -> LT new_esEs26(Just(vyw500), Just(vyw3000), app(app(ty_Either, dag), dah)) -> new_esEs21(vyw500, vyw3000, dag, dah) new_ltEs8(Left(vyw490), Left(vyw500), ty_Integer, bb) -> new_ltEs17(vyw490, vyw500) new_esEs36(vyw502, vyw3002, ty_Char) -> new_esEs13(vyw502, vyw3002) new_esEs27(vyw106, vyw109, ty_Integer) -> new_esEs15(vyw106, vyw109) new_esEs40(vyw500, vyw3000, ty_Double) -> new_esEs18(vyw500, vyw3000) new_lt10(vyw105, vyw108, ty_Double) -> new_lt12(vyw105, vyw108) new_ltEs22(vyw119, vyw121, ty_Double) -> new_ltEs6(vyw119, vyw121) new_ltEs8(Right(vyw490), Right(vyw500), cb, app(ty_Ratio, dce)) -> new_ltEs10(vyw490, vyw500, dce) new_primCompAux0(vyw62, LT) -> LT new_ltEs19(vyw49, vyw50, ty_Char) -> new_ltEs5(vyw49, vyw50) new_esEs6(vyw52, vyw302, ty_Integer) -> new_esEs15(vyw52, vyw302) new_esEs9(vyw51, vyw301, ty_Char) -> new_esEs13(vyw51, vyw301) new_ltEs20(vyw107, vyw110, app(app(ty_Either, bfd), bfe)) -> new_ltEs8(vyw107, vyw110, bfd, bfe) new_esEs35(vyw500, vyw3000, ty_Int) -> new_esEs22(vyw500, vyw3000) new_esEs29(vyw490, vyw500, ty_Int) -> new_esEs22(vyw490, vyw500) new_not(True) -> False new_esEs8(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_esEs33(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_esEs26(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs25(vyw500, vyw3000) new_lt9(vyw106, vyw109, ty_Bool) -> new_lt8(vyw106, vyw109) new_esEs26(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs22(vyw119, vyw121, app(ty_[], cbe)) -> new_ltEs9(vyw119, vyw121, cbe) new_ltEs19(vyw49, vyw50, ty_@0) -> new_ltEs18(vyw49, vyw50) new_esEs30(vyw118, vyw120, app(ty_Maybe, cde)) -> new_esEs26(vyw118, vyw120, cde) new_esEs4(vyw50, vyw300, app(app(ty_@2, egc), egd)) -> new_esEs14(vyw50, vyw300, egc, egd) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs8(Left(vyw490), Left(vyw500), app(ty_Ratio, dcd), bb) -> new_ltEs10(vyw490, vyw500, dcd) new_ltEs20(vyw107, vyw110, ty_Integer) -> new_ltEs17(vyw107, vyw110) new_esEs6(vyw52, vyw302, ty_@0) -> new_esEs25(vyw52, vyw302) new_ltEs15(Just(vyw490), Just(vyw500), ty_Double) -> new_ltEs6(vyw490, vyw500) new_esEs7(vyw51, vyw301, app(ty_Ratio, dga)) -> new_esEs16(vyw51, vyw301, dga) new_esEs35(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) new_esEs40(vyw500, vyw3000, ty_Bool) -> new_esEs19(vyw500, vyw3000) new_esEs27(vyw106, vyw109, app(app(ty_Either, bge), bgf)) -> new_esEs21(vyw106, vyw109, bge, bgf) new_lt9(vyw106, vyw109, app(app(ty_@2, bhd), bhe)) -> new_lt17(vyw106, vyw109, bhd, bhe) new_esEs11(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_esEs32(vyw490, vyw500, ty_@0) -> new_esEs25(vyw490, vyw500) new_esEs10(vyw50, vyw300, app(app(app(ty_@3, efa), efb), efc)) -> new_esEs24(vyw50, vyw300, efa, efb, efc) new_ltEs20(vyw107, vyw110, ty_Int) -> new_ltEs12(vyw107, vyw110) new_compare17(vyw185, vyw186, vyw187, vyw188, True, vyw190, eff, efg) -> new_compare110(vyw185, vyw186, vyw187, vyw188, True, eff, efg) new_ltEs21(vyw491, vyw501, ty_Double) -> new_ltEs6(vyw491, vyw501) new_lt20(vyw490, vyw500, app(app(app(ty_@3, bch), bda), bdb)) -> new_lt15(vyw490, vyw500, bch, bda, bdb) new_esEs32(vyw490, vyw500, ty_Integer) -> new_esEs15(vyw490, vyw500) new_ltEs24(vyw492, vyw502, ty_Ordering) -> new_ltEs7(vyw492, vyw502) new_esEs10(vyw50, vyw300, app(ty_Ratio, eee)) -> new_esEs16(vyw50, vyw300, eee) new_compare13(Double(vyw50, Pos(vyw510)), Double(vyw300, Pos(vyw3010))) -> new_compare15(new_sr(vyw50, Pos(vyw3010)), new_sr(Pos(vyw510), vyw300)) new_ltEs8(Left(vyw490), Left(vyw500), app(app(ty_Either, h), ba), bb) -> new_ltEs8(vyw490, vyw500, h, ba) new_esEs8(vyw50, vyw300, app(ty_Ratio, dhc)) -> new_esEs16(vyw50, vyw300, dhc) new_esEs27(vyw106, vyw109, ty_Bool) -> new_esEs19(vyw106, vyw109) new_esEs5(vyw50, vyw300, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs24(vyw50, vyw300, cgh, cha, chb) new_compare9(Char(vyw50), Char(vyw300)) -> new_primCmpNat0(vyw50, vyw300) new_esEs7(vyw51, vyw301, app(ty_[], dgb)) -> new_esEs17(vyw51, vyw301, dgb) new_primEqNat0(Succ(vyw5000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_lt13(vyw5, vyw30, eh, fa) -> new_esEs12(new_compare32(vyw5, vyw30, eh, fa)) new_compare33(vyw50, vyw300, app(ty_Maybe, eg)) -> new_compare18(vyw50, vyw300, eg) new_esEs27(vyw106, vyw109, ty_Ordering) -> new_esEs23(vyw106, vyw109) new_esEs7(vyw51, vyw301, ty_Ordering) -> new_esEs23(vyw51, vyw301) new_esEs32(vyw490, vyw500, app(app(ty_@2, bag), bah)) -> new_esEs14(vyw490, vyw500, bag, bah) new_esEs21(Left(vyw500), Left(vyw3000), ty_Ordering, eac) -> new_esEs23(vyw500, vyw3000) new_ltEs19(vyw49, vyw50, app(app(app(ty_@3, fc), fd), ha)) -> new_ltEs11(vyw49, vyw50, fc, fd, ha) new_lt20(vyw490, vyw500, app(ty_[], bcg)) -> new_lt14(vyw490, vyw500, bcg) new_esEs31(vyw491, vyw501, app(ty_Maybe, hh)) -> new_esEs26(vyw491, vyw501, hh) new_ltEs20(vyw107, vyw110, ty_Bool) -> new_ltEs14(vyw107, vyw110) new_lt20(vyw490, vyw500, ty_Integer) -> new_lt19(vyw490, vyw500) new_esEs37(vyw501, vyw3001, ty_Ordering) -> new_esEs23(vyw501, vyw3001) new_ltEs22(vyw119, vyw121, app(app(ty_@2, cca), ccb)) -> new_ltEs13(vyw119, vyw121, cca, ccb) new_compare12(Integer(vyw50), Integer(vyw300)) -> new_primCmpInt(vyw50, vyw300) new_esEs40(vyw500, vyw3000, ty_Int) -> new_esEs22(vyw500, vyw3000) new_esEs21(Right(vyw500), Right(vyw3000), ebf, ty_Int) -> new_esEs22(vyw500, vyw3000) new_compare6(Float(vyw50, Neg(vyw510)), Float(vyw300, Neg(vyw3010))) -> new_compare15(new_sr(vyw50, Neg(vyw3010)), new_sr(Neg(vyw510), vyw300)) new_ltEs21(vyw491, vyw501, ty_Float) -> new_ltEs16(vyw491, vyw501) new_lt11(vyw5, vyw30) -> new_esEs12(new_compare9(vyw5, vyw30)) new_lt10(vyw105, vyw108, app(app(app(ty_@3, cab), cac), cad)) -> new_lt15(vyw105, vyw108, cab, cac, cad) new_esEs29(vyw490, vyw500, ty_Double) -> new_esEs18(vyw490, vyw500) new_esEs38(vyw500, vyw3000, ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_primCmpInt(Pos(Succ(vyw500)), Neg(vyw300)) -> GT new_esEs19(False, False) -> True new_ltEs24(vyw492, vyw502, ty_Char) -> new_ltEs5(vyw492, vyw502) new_esEs4(vyw50, vyw300, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs24(vyw50, vyw300, egg, egh, eha) new_esEs28(vyw105, vyw108, ty_Bool) -> new_esEs19(vyw105, vyw108) new_lt23(vyw490, vyw500, app(ty_Ratio, ded)) -> new_lt6(vyw490, vyw500, ded) new_esEs10(vyw50, vyw300, app(app(ty_@2, eec), eed)) -> new_esEs14(vyw50, vyw300, eec, eed) new_ltEs21(vyw491, vyw501, ty_Bool) -> new_ltEs14(vyw491, vyw501) new_ltEs8(Left(vyw490), Left(vyw500), app(app(ty_@2, bg), bh), bb) -> new_ltEs13(vyw490, vyw500, bg, bh) new_esEs37(vyw501, vyw3001, app(ty_[], fcf)) -> new_esEs17(vyw501, vyw3001, fcf) new_esEs30(vyw118, vyw120, ty_Double) -> new_esEs18(vyw118, vyw120) new_esEs39(vyw501, vyw3001, ty_Bool) -> new_esEs19(vyw501, vyw3001) new_esEs36(vyw502, vyw3002, app(ty_Maybe, fcb)) -> new_esEs26(vyw502, vyw3002, fcb) new_esEs29(vyw490, vyw500, ty_Char) -> new_esEs13(vyw490, vyw500) new_ltEs24(vyw492, vyw502, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs11(vyw492, vyw502, ga, gb, gc) new_ltEs8(Right(vyw490), Right(vyw500), cb, ty_Char) -> new_ltEs5(vyw490, vyw500) new_ltEs7(GT, GT) -> True new_esEs34(vyw500, vyw3000, ty_Int) -> new_esEs22(vyw500, vyw3000) new_ltEs24(vyw492, vyw502, ty_Integer) -> new_ltEs17(vyw492, vyw502) new_esEs8(vyw50, vyw300, app(app(ty_@2, dha), dhb)) -> new_esEs14(vyw50, vyw300, dha, dhb) new_esEs35(vyw500, vyw3000, ty_Double) -> new_esEs18(vyw500, vyw3000) new_primPlusNat1(Succ(vyw19800), Succ(vyw51000)) -> Succ(Succ(new_primPlusNat1(vyw19800, vyw51000))) new_esEs39(vyw501, vyw3001, ty_Int) -> new_esEs22(vyw501, vyw3001) new_compare5(EQ, GT) -> LT new_compare32(Left(vyw50), Right(vyw300), eh, fa) -> LT new_ltEs4(vyw94, vyw95, app(ty_Ratio, che)) -> new_ltEs10(vyw94, vyw95, che) new_primCmpNat0(Zero, Succ(vyw3000)) -> LT new_lt21(vyw118, vyw120, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt15(vyw118, vyw120, cch, cda, cdb) new_lt21(vyw118, vyw120, ty_Float) -> new_lt5(vyw118, vyw120) new_ltEs21(vyw491, vyw501, ty_Int) -> new_ltEs12(vyw491, vyw501) new_compare6(Float(vyw50, Pos(vyw510)), Float(vyw300, Neg(vyw3010))) -> new_compare15(new_sr(vyw50, Pos(vyw3010)), new_sr(Neg(vyw510), vyw300)) new_compare6(Float(vyw50, Neg(vyw510)), Float(vyw300, Pos(vyw3010))) -> new_compare15(new_sr(vyw50, Neg(vyw3010)), new_sr(Pos(vyw510), vyw300)) new_esEs21(Left(vyw500), Left(vyw3000), app(app(ty_@2, ead), eae), eac) -> new_esEs14(vyw500, vyw3000, ead, eae) new_esEs11(vyw50, vyw300, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs24(vyw50, vyw300, ddd, dde, ddf) new_esEs32(vyw490, vyw500, app(app(ty_Either, baa), bab)) -> new_esEs21(vyw490, vyw500, baa, bab) new_esEs5(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_esEs4(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_lt23(vyw490, vyw500, ty_Char) -> new_lt11(vyw490, vyw500) new_esEs5(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_lt9(vyw106, vyw109, app(ty_Maybe, bhf)) -> new_lt18(vyw106, vyw109, bhf) new_ltEs19(vyw49, vyw50, ty_Double) -> new_ltEs6(vyw49, vyw50) new_primCmpNat0(Succ(vyw500), Zero) -> GT new_ltEs23(vyw56, vyw57, ty_Float) -> new_ltEs16(vyw56, vyw57) new_ltEs21(vyw491, vyw501, app(app(ty_Either, bbc), bbd)) -> new_ltEs8(vyw491, vyw501, bbc, bbd) new_esEs11(vyw50, vyw300, app(ty_Maybe, ddg)) -> new_esEs26(vyw50, vyw300, ddg) new_lt9(vyw106, vyw109, app(ty_[], bgh)) -> new_lt14(vyw106, vyw109, bgh) new_pePe(False, vyw197) -> vyw197 new_lt10(vyw105, vyw108, app(ty_Ratio, dbg)) -> new_lt6(vyw105, vyw108, dbg) new_esEs30(vyw118, vyw120, ty_Ordering) -> new_esEs23(vyw118, vyw120) new_esEs29(vyw490, vyw500, app(app(ty_@2, bdc), bdd)) -> new_esEs14(vyw490, vyw500, bdc, bdd) new_esEs11(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_esEs38(vyw500, vyw3000, app(app(ty_Either, fea), feb)) -> new_esEs21(vyw500, vyw3000, fea, feb) new_compare30(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), beg, beh, bfa) -> new_compare27(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs8(vyw50, vyw300, beg), new_asAs(new_esEs7(vyw51, vyw301, beh), new_esEs6(vyw52, vyw302, bfa))), beg, beh, bfa) new_lt10(vyw105, vyw108, ty_Int) -> new_lt16(vyw105, vyw108) new_esEs21(Right(vyw500), Right(vyw3000), ebf, app(ty_[], ecb)) -> new_esEs17(vyw500, vyw3000, ecb) new_esEs39(vyw501, vyw3001, app(ty_[], ffb)) -> new_esEs17(vyw501, vyw3001, ffb) new_esEs21(Right(vyw500), Right(vyw3000), ebf, ty_Double) -> new_esEs18(vyw500, vyw3000) new_esEs36(vyw502, vyw3002, ty_Int) -> new_esEs22(vyw502, vyw3002) new_lt20(vyw490, vyw500, ty_Char) -> new_lt11(vyw490, vyw500) new_esEs7(vyw51, vyw301, app(ty_Maybe, dgh)) -> new_esEs26(vyw51, vyw301, dgh) new_compare33(vyw50, vyw300, ty_Char) -> new_compare9(vyw50, vyw300) new_ltEs21(vyw491, vyw501, ty_@0) -> new_ltEs18(vyw491, vyw501) new_esEs9(vyw51, vyw301, app(ty_Maybe, eeb)) -> new_esEs26(vyw51, vyw301, eeb) new_ltEs15(Just(vyw490), Just(vyw500), app(app(ty_Either, bdf), bdg)) -> new_ltEs8(vyw490, vyw500, bdf, bdg) new_esEs36(vyw502, vyw3002, ty_@0) -> new_esEs25(vyw502, vyw3002) new_lt22(vyw491, vyw501, ty_Char) -> new_lt11(vyw491, vyw501) new_esEs24(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), egg, egh, eha) -> new_asAs(new_esEs38(vyw500, vyw3000, egg), new_asAs(new_esEs37(vyw501, vyw3001, egh), new_esEs36(vyw502, vyw3002, eha))) new_ltEs19(vyw49, vyw50, ty_Integer) -> new_ltEs17(vyw49, vyw50) new_esEs38(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs17([], [], egf) -> True new_compare10(vyw156, vyw157, False, fhc) -> GT new_esEs27(vyw106, vyw109, app(app(ty_@2, bhd), bhe)) -> new_esEs14(vyw106, vyw109, bhd, bhe) new_lt21(vyw118, vyw120, ty_Double) -> new_lt12(vyw118, vyw120) new_compare11(vyw134, vyw135, False, ehd, ehe) -> GT new_ltEs8(Left(vyw490), Left(vyw500), ty_Char, bb) -> new_ltEs5(vyw490, vyw500) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_lt9(vyw106, vyw109, ty_Ordering) -> new_lt4(vyw106, vyw109) new_lt9(vyw106, vyw109, app(app(app(ty_@3, bha), bhb), bhc)) -> new_lt15(vyw106, vyw109, bha, bhb, bhc) new_esEs30(vyw118, vyw120, app(ty_[], ccg)) -> new_esEs17(vyw118, vyw120, ccg) new_ltEs14(True, True) -> True new_esEs21(Left(vyw500), Left(vyw3000), ty_Int, eac) -> new_esEs22(vyw500, vyw3000) new_ltEs20(vyw107, vyw110, app(ty_Ratio, dbe)) -> new_ltEs10(vyw107, vyw110, dbe) new_esEs7(vyw51, vyw301, ty_Float) -> new_esEs20(vyw51, vyw301) new_ltEs8(Right(vyw490), Right(vyw500), cb, ty_Float) -> new_ltEs16(vyw490, vyw500) new_ltEs15(Nothing, Nothing, chh) -> True new_esEs36(vyw502, vyw3002, app(ty_Ratio, fbc)) -> new_esEs16(vyw502, vyw3002, fbc) new_esEs26(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs20(vyw500, vyw3000) new_esEs31(vyw491, vyw501, app(app(ty_Either, gg), gh)) -> new_esEs21(vyw491, vyw501, gg, gh) new_ltEs23(vyw56, vyw57, ty_Integer) -> new_ltEs17(vyw56, vyw57) new_ltEs15(Just(vyw490), Nothing, chh) -> False new_esEs38(vyw500, vyw3000, ty_Int) -> new_esEs22(vyw500, vyw3000) new_lt22(vyw491, vyw501, ty_Ordering) -> new_lt4(vyw491, vyw501) new_esEs9(vyw51, vyw301, app(ty_Ratio, edc)) -> new_esEs16(vyw51, vyw301, edc) new_esEs31(vyw491, vyw501, ty_Double) -> new_esEs18(vyw491, vyw501) new_compare26(vyw49, vyw50, False, chf, fb) -> new_compare11(vyw49, vyw50, new_ltEs19(vyw49, vyw50, chf), chf, fb) new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_esEs40(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) new_esEs9(vyw51, vyw301, ty_Double) -> new_esEs18(vyw51, vyw301) new_ltEs22(vyw119, vyw121, ty_Int) -> new_ltEs12(vyw119, vyw121) new_primCmpInt(Neg(Zero), Pos(Succ(vyw3000))) -> LT new_compare15(vyw5, vyw30) -> new_primCmpInt(vyw5, vyw30) new_lt22(vyw491, vyw501, app(app(app(ty_@3, hc), hd), he)) -> new_lt15(vyw491, vyw501, hc, hd, he) new_esEs30(vyw118, vyw120, ty_Bool) -> new_esEs19(vyw118, vyw120) new_compare33(vyw50, vyw300, ty_Ordering) -> new_compare5(vyw50, vyw300) new_esEs21(Right(vyw500), Right(vyw3000), ebf, ty_Float) -> new_esEs20(vyw500, vyw3000) new_primMulInt(Pos(vyw3000), Pos(vyw510)) -> Pos(new_primMulNat0(vyw3000, vyw510)) new_esEs8(vyw50, vyw300, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs24(vyw50, vyw300, dhg, dhh, eaa) new_esEs29(vyw490, vyw500, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs24(vyw490, vyw500, bch, bda, bdb) new_esEs4(vyw50, vyw300, app(app(ty_Either, ebf), eac)) -> new_esEs21(vyw50, vyw300, ebf, eac) new_esEs40(vyw500, vyw3000, ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_esEs5(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_ltEs19(vyw49, vyw50, app(ty_Ratio, chg)) -> new_ltEs10(vyw49, vyw50, chg) new_esEs26(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_lt9(vyw106, vyw109, app(app(ty_Either, bge), bgf)) -> new_lt13(vyw106, vyw109, bge, bgf) new_esEs32(vyw490, vyw500, app(ty_Maybe, bba)) -> new_esEs26(vyw490, vyw500, bba) new_esEs9(vyw51, vyw301, ty_Float) -> new_esEs20(vyw51, vyw301) new_lt21(vyw118, vyw120, app(app(ty_Either, ccd), cce)) -> new_lt13(vyw118, vyw120, ccd, cce) new_esEs11(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_lt9(vyw106, vyw109, ty_Double) -> new_lt12(vyw106, vyw109) new_esEs21(Left(vyw500), Left(vyw3000), ty_Integer, eac) -> new_esEs15(vyw500, vyw3000) new_ltEs8(Right(vyw490), Left(vyw500), cb, bb) -> False new_esEs39(vyw501, vyw3001, app(app(ty_@2, feg), feh)) -> new_esEs14(vyw501, vyw3001, feg, feh) new_compare10(vyw156, vyw157, True, fhc) -> LT new_esEs39(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) new_ltEs9(vyw49, vyw50, de) -> new_fsEs(new_compare0(vyw49, vyw50, de)) new_ltEs21(vyw491, vyw501, app(ty_Maybe, bcc)) -> new_ltEs15(vyw491, vyw501, bcc) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw5100)) -> Zero new_lt10(vyw105, vyw108, ty_Char) -> new_lt11(vyw105, vyw108) new_primPlusNat0(Zero, vyw5100) -> Succ(vyw5100) new_esEs30(vyw118, vyw120, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs24(vyw118, vyw120, cch, cda, cdb) new_esEs8(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs29(vyw490, vyw500, ty_Bool) -> new_esEs19(vyw490, vyw500) new_esEs26(Just(vyw500), Just(vyw3000), app(ty_[], daf)) -> new_esEs17(vyw500, vyw3000, daf) new_ltEs6(vyw49, vyw50) -> new_fsEs(new_compare13(vyw49, vyw50)) new_ltEs4(vyw94, vyw95, app(ty_Maybe, ceg)) -> new_ltEs15(vyw94, vyw95, ceg) new_ltEs22(vyw119, vyw121, app(ty_Ratio, dcb)) -> new_ltEs10(vyw119, vyw121, dcb) new_ltEs8(Right(vyw490), Right(vyw500), cb, app(ty_[], ce)) -> new_ltEs9(vyw490, vyw500, ce) new_esEs39(vyw501, vyw3001, ty_Ordering) -> new_esEs23(vyw501, vyw3001) new_lt21(vyw118, vyw120, app(ty_[], ccg)) -> new_lt14(vyw118, vyw120, ccg) new_compare14(False, True) -> LT new_esEs31(vyw491, vyw501, app(app(ty_@2, hf), hg)) -> new_esEs14(vyw491, vyw501, hf, hg) new_esEs10(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_esEs28(vyw105, vyw108, ty_Ordering) -> new_esEs23(vyw105, vyw108) new_lt21(vyw118, vyw120, ty_Int) -> new_lt16(vyw118, vyw120) new_esEs28(vyw105, vyw108, app(ty_[], caa)) -> new_esEs17(vyw105, vyw108, caa) new_esEs6(vyw52, vyw302, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs24(vyw52, vyw302, dfc, dfd, dfe) new_compare17(vyw185, vyw186, vyw187, vyw188, False, vyw190, eff, efg) -> new_compare110(vyw185, vyw186, vyw187, vyw188, vyw190, eff, efg) new_esEs7(vyw51, vyw301, ty_Double) -> new_esEs18(vyw51, vyw301) new_esEs20(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs22(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_ltEs8(Right(vyw490), Right(vyw500), cb, app(app(ty_Either, cc), cd)) -> new_ltEs8(vyw490, vyw500, cc, cd) new_esEs21(Left(vyw500), Left(vyw3000), app(ty_Maybe, ebe), eac) -> new_esEs26(vyw500, vyw3000, ebe) new_esEs40(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs8(Right(vyw490), Right(vyw500), cb, ty_Int) -> new_ltEs12(vyw490, vyw500) new_ltEs4(vyw94, vyw95, app(app(ty_Either, cdg), cdh)) -> new_ltEs8(vyw94, vyw95, cdg, cdh) new_esEs7(vyw51, vyw301, ty_Bool) -> new_esEs19(vyw51, vyw301) new_ltEs19(vyw49, vyw50, app(app(ty_Either, cb), bb)) -> new_ltEs8(vyw49, vyw50, cb, bb) new_lt21(vyw118, vyw120, app(ty_Ratio, dcc)) -> new_lt6(vyw118, vyw120, dcc) new_esEs21(Left(vyw500), Left(vyw3000), ty_Char, eac) -> new_esEs13(vyw500, vyw3000) new_esEs5(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_compare33(vyw50, vyw300, ty_Double) -> new_compare13(vyw50, vyw300) new_esEs6(vyw52, vyw302, app(app(ty_Either, dfa), dfb)) -> new_esEs21(vyw52, vyw302, dfa, dfb) new_esEs31(vyw491, vyw501, ty_Float) -> new_esEs20(vyw491, vyw501) new_esEs10(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_compare8(:%(vyw50, vyw51), :%(vyw300, vyw301), ty_Int) -> new_compare15(new_sr(vyw50, vyw301), new_sr(vyw300, vyw51)) new_ltEs16(vyw49, vyw50) -> new_fsEs(new_compare6(vyw49, vyw50)) new_esEs29(vyw490, vyw500, app(ty_[], bcg)) -> new_esEs17(vyw490, vyw500, bcg) new_primPlusNat1(Succ(vyw19800), Zero) -> Succ(vyw19800) new_primPlusNat1(Zero, Succ(vyw51000)) -> Succ(vyw51000) new_esEs27(vyw106, vyw109, ty_Char) -> new_esEs13(vyw106, vyw109) new_lt20(vyw490, vyw500, ty_Int) -> new_lt16(vyw490, vyw500) new_esEs32(vyw490, vyw500, ty_Bool) -> new_esEs19(vyw490, vyw500) new_esEs35(vyw500, vyw3000, app(ty_Ratio, ehh)) -> new_esEs16(vyw500, vyw3000, ehh) new_esEs5(vyw50, vyw300, app(app(ty_@2, cgb), cgc)) -> new_esEs14(vyw50, vyw300, cgb, cgc) new_lt20(vyw490, vyw500, app(ty_Ratio, dca)) -> new_lt6(vyw490, vyw500, dca) new_esEs32(vyw490, vyw500, ty_Double) -> new_esEs18(vyw490, vyw500) new_esEs26(Just(vyw500), Just(vyw3000), app(app(ty_@2, dac), dad)) -> new_esEs14(vyw500, vyw3000, dac, dad) new_lt23(vyw490, vyw500, app(app(ty_Either, baa), bab)) -> new_lt13(vyw490, vyw500, baa, bab) new_esEs12(LT) -> True new_esEs40(vyw500, vyw3000, app(app(ty_Either, fge), fgf)) -> new_esEs21(vyw500, vyw3000, fge, fgf) new_esEs26(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs19(vyw500, vyw3000) new_compare32(Right(vyw50), Left(vyw300), eh, fa) -> GT new_ltEs21(vyw491, vyw501, ty_Integer) -> new_ltEs17(vyw491, vyw501) new_compare31(@2(vyw50, vyw51), @2(vyw300, vyw301), cah, cba) -> new_compare28(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs10(vyw50, vyw300, cah), new_esEs9(vyw51, vyw301, cba)), cah, cba) new_esEs6(vyw52, vyw302, app(app(ty_@2, dee), def)) -> new_esEs14(vyw52, vyw302, dee, def) new_esEs28(vyw105, vyw108, app(app(ty_Either, bhg), bhh)) -> new_esEs21(vyw105, vyw108, bhg, bhh) new_esEs4(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_esEs26(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs24(vyw500, vyw3000, dba, dbb, dbc) new_esEs6(vyw52, vyw302, ty_Bool) -> new_esEs19(vyw52, vyw302) new_ltEs8(Left(vyw490), Left(vyw500), ty_Bool, bb) -> new_ltEs14(vyw490, vyw500) new_esEs32(vyw490, vyw500, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs24(vyw490, vyw500, bad, bae, baf) new_compare32(Left(vyw50), Left(vyw300), eh, fa) -> new_compare26(vyw50, vyw300, new_esEs4(vyw50, vyw300, eh), eh, fa) new_ltEs8(Left(vyw490), Left(vyw500), ty_Double, bb) -> new_ltEs6(vyw490, vyw500) new_esEs40(vyw500, vyw3000, app(ty_[], fgd)) -> new_esEs17(vyw500, vyw3000, fgd) new_esEs11(vyw50, vyw300, app(ty_Ratio, dch)) -> new_esEs16(vyw50, vyw300, dch) new_lt22(vyw491, vyw501, app(app(ty_Either, gg), gh)) -> new_lt13(vyw491, vyw501, gg, gh) new_compare19(vyw141, vyw142, False, ehb, ehc) -> GT new_ltEs24(vyw492, vyw502, ty_@0) -> new_ltEs18(vyw492, vyw502) new_esEs31(vyw491, vyw501, ty_Bool) -> new_esEs19(vyw491, vyw501) new_esEs29(vyw490, vyw500, app(app(ty_Either, bcd), bce)) -> new_esEs21(vyw490, vyw500, bcd, bce) new_compare5(LT, LT) -> EQ new_esEs37(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) new_compare111(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, True, efh, ega, egb) -> LT new_esEs38(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) new_primMulInt(Neg(vyw3000), Neg(vyw510)) -> Pos(new_primMulNat0(vyw3000, vyw510)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw3000))) -> new_primCmpNat0(Zero, Succ(vyw3000)) new_ltEs15(Just(vyw490), Just(vyw500), app(app(ty_@2, bed), bee)) -> new_ltEs13(vyw490, vyw500, bed, bee) new_compare25(vyw94, vyw95, True, chd) -> EQ new_esEs31(vyw491, vyw501, app(app(app(ty_@3, hc), hd), he)) -> new_esEs24(vyw491, vyw501, hc, hd, he) new_ltEs17(vyw49, vyw50) -> new_fsEs(new_compare12(vyw49, vyw50)) new_ltEs22(vyw119, vyw121, ty_Integer) -> new_ltEs17(vyw119, vyw121) new_esEs11(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_ltEs23(vyw56, vyw57, ty_@0) -> new_ltEs18(vyw56, vyw57) new_esEs28(vyw105, vyw108, ty_Integer) -> new_esEs15(vyw105, vyw108) new_ltEs19(vyw49, vyw50, app(app(ty_@2, bbb), bcf)) -> new_ltEs13(vyw49, vyw50, bbb, bcf) new_ltEs18(vyw49, vyw50) -> new_fsEs(new_compare7(vyw49, vyw50)) new_ltEs21(vyw491, vyw501, app(ty_Ratio, dbh)) -> new_ltEs10(vyw491, vyw501, dbh) new_esEs29(vyw490, vyw500, ty_Ordering) -> new_esEs23(vyw490, vyw500) new_esEs7(vyw51, vyw301, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs24(vyw51, vyw301, dge, dgf, dgg) new_ltEs24(vyw492, vyw502, ty_Int) -> new_ltEs12(vyw492, vyw502) new_esEs9(vyw51, vyw301, ty_@0) -> new_esEs25(vyw51, vyw301) new_esEs10(vyw50, vyw300, app(ty_Maybe, efd)) -> new_esEs26(vyw50, vyw300, efd) new_ltEs19(vyw49, vyw50, app(ty_Maybe, chh)) -> new_ltEs15(vyw49, vyw50, chh) new_esEs5(vyw50, vyw300, app(ty_[], cge)) -> new_esEs17(vyw50, vyw300, cge) new_esEs30(vyw118, vyw120, app(app(ty_@2, cdc), cdd)) -> new_esEs14(vyw118, vyw120, cdc, cdd) new_esEs8(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_ltEs4(vyw94, vyw95, ty_Bool) -> new_ltEs14(vyw94, vyw95) new_lt23(vyw490, vyw500, ty_Double) -> new_lt12(vyw490, vyw500) new_esEs5(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_esEs5(vyw50, vyw300, app(app(ty_Either, cgf), cgg)) -> new_esEs21(vyw50, vyw300, cgf, cgg) new_ltEs4(vyw94, vyw95, app(ty_[], cea)) -> new_ltEs9(vyw94, vyw95, cea) new_ltEs20(vyw107, vyw110, app(app(ty_@2, bgb), bgc)) -> new_ltEs13(vyw107, vyw110, bgb, bgc) new_lt18(vyw5, vyw30, cdf) -> new_esEs12(new_compare18(vyw5, vyw30, cdf)) new_ltEs8(Right(vyw490), Right(vyw500), cb, ty_@0) -> new_ltEs18(vyw490, vyw500) new_esEs18(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs22(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_esEs32(vyw490, vyw500, ty_Float) -> new_esEs20(vyw490, vyw500) new_ltEs15(Just(vyw490), Just(vyw500), app(ty_Maybe, bef)) -> new_ltEs15(vyw490, vyw500, bef) new_lt22(vyw491, vyw501, app(ty_[], hb)) -> new_lt14(vyw491, vyw501, hb) new_esEs21(Right(vyw500), Right(vyw3000), ebf, ty_@0) -> new_esEs25(vyw500, vyw3000) new_ltEs7(LT, LT) -> True new_esEs21(Right(vyw500), Right(vyw3000), ebf, ty_Bool) -> new_esEs19(vyw500, vyw3000) new_esEs4(vyw50, vyw300, app(ty_[], egf)) -> new_esEs17(vyw50, vyw300, egf) new_primMulInt(Pos(vyw3000), Neg(vyw510)) -> Neg(new_primMulNat0(vyw3000, vyw510)) new_primMulInt(Neg(vyw3000), Pos(vyw510)) -> Neg(new_primMulNat0(vyw3000, vyw510)) new_lt20(vyw490, vyw500, app(app(ty_Either, bcd), bce)) -> new_lt13(vyw490, vyw500, bcd, bce) new_compare13(Double(vyw50, Pos(vyw510)), Double(vyw300, Neg(vyw3010))) -> new_compare15(new_sr(vyw50, Pos(vyw3010)), new_sr(Neg(vyw510), vyw300)) new_compare13(Double(vyw50, Neg(vyw510)), Double(vyw300, Pos(vyw3010))) -> new_compare15(new_sr(vyw50, Neg(vyw3010)), new_sr(Pos(vyw510), vyw300)) new_esEs4(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_esEs12(GT) -> False new_esEs12(EQ) -> False new_ltEs19(vyw49, vyw50, app(ty_[], de)) -> new_ltEs9(vyw49, vyw50, de) new_esEs28(vyw105, vyw108, app(app(ty_@2, cae), caf)) -> new_esEs14(vyw105, vyw108, cae, caf) new_ltEs23(vyw56, vyw57, ty_Bool) -> new_ltEs14(vyw56, vyw57) new_esEs21(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ebb), ebc), ebd), eac) -> new_esEs24(vyw500, vyw3000, ebb, ebc, ebd) new_lt9(vyw106, vyw109, ty_Integer) -> new_lt19(vyw106, vyw109) new_esEs31(vyw491, vyw501, app(ty_[], hb)) -> new_esEs17(vyw491, vyw501, hb) new_esEs35(vyw500, vyw3000, ty_Float) -> new_esEs20(vyw500, vyw3000) new_ltEs24(vyw492, vyw502, ty_Float) -> new_ltEs16(vyw492, vyw502) new_compare8(:%(vyw50, vyw51), :%(vyw300, vyw301), ty_Integer) -> new_compare12(new_sr0(vyw50, vyw301), new_sr0(vyw300, vyw51)) new_lt16(vyw5, vyw30) -> new_esEs12(new_compare15(vyw5, vyw30)) new_esEs8(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_lt9(vyw106, vyw109, app(ty_Ratio, dbf)) -> new_lt6(vyw106, vyw109, dbf) new_ltEs4(vyw94, vyw95, ty_Integer) -> new_ltEs17(vyw94, vyw95) new_esEs21(Left(vyw500), Left(vyw3000), app(ty_Ratio, eaf), eac) -> new_esEs16(vyw500, vyw3000, eaf) new_esEs37(vyw501, vyw3001, ty_Double) -> new_esEs18(vyw501, vyw3001) new_esEs30(vyw118, vyw120, app(app(ty_Either, ccd), cce)) -> new_esEs21(vyw118, vyw120, ccd, cce) new_ltEs13(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, bcf) -> new_pePe(new_lt20(vyw490, vyw500, bbb), new_asAs(new_esEs29(vyw490, vyw500, bbb), new_ltEs21(vyw491, vyw501, bcf))) new_ltEs22(vyw119, vyw121, app(app(ty_Either, cbc), cbd)) -> new_ltEs8(vyw119, vyw121, cbc, cbd) new_ltEs22(vyw119, vyw121, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs11(vyw119, vyw121, cbf, cbg, cbh) new_compare33(vyw50, vyw300, app(app(ty_@2, ee), ef)) -> new_compare31(vyw50, vyw300, ee, ef) new_sr0(Integer(vyw3000), Integer(vyw510)) -> Integer(new_primMulInt(vyw3000, vyw510)) new_esEs10(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_ltEs4(vyw94, vyw95, ty_Ordering) -> new_ltEs7(vyw94, vyw95) new_esEs37(vyw501, vyw3001, ty_Int) -> new_esEs22(vyw501, vyw3001) new_ltEs24(vyw492, vyw502, ty_Double) -> new_ltEs6(vyw492, vyw502) new_ltEs23(vyw56, vyw57, ty_Int) -> new_ltEs12(vyw56, vyw57) new_esEs39(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_esEs29(vyw490, vyw500, ty_Integer) -> new_esEs15(vyw490, vyw500) new_lt23(vyw490, vyw500, app(app(app(ty_@3, bad), bae), baf)) -> new_lt15(vyw490, vyw500, bad, bae, baf) new_esEs35(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_lt21(vyw118, vyw120, ty_Char) -> new_lt11(vyw118, vyw120) new_ltEs8(Right(vyw490), Right(vyw500), cb, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs11(vyw490, vyw500, cf, cg, da) new_esEs27(vyw106, vyw109, ty_Int) -> new_esEs22(vyw106, vyw109) new_lt20(vyw490, vyw500, app(app(ty_@2, bdc), bdd)) -> new_lt17(vyw490, vyw500, bdc, bdd) new_esEs30(vyw118, vyw120, ty_Integer) -> new_esEs15(vyw118, vyw120) new_esEs21(Right(vyw500), Right(vyw3000), ebf, ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_esEs30(vyw118, vyw120, ty_@0) -> new_esEs25(vyw118, vyw120) new_esEs6(vyw52, vyw302, ty_Char) -> new_esEs13(vyw52, vyw302) new_esEs37(vyw501, vyw3001, app(ty_Maybe, fdd)) -> new_esEs26(vyw501, vyw3001, fdd) new_esEs8(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_esEs33(vyw501, vyw3001, ty_Int) -> new_esEs22(vyw501, vyw3001) new_esEs15(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) new_ltEs8(Right(vyw490), Right(vyw500), cb, ty_Ordering) -> new_ltEs7(vyw490, vyw500) new_esEs8(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_lt22(vyw491, vyw501, ty_Double) -> new_lt12(vyw491, vyw501) new_compare0([], :(vyw300, vyw301), df) -> LT new_esEs40(vyw500, vyw3000, app(app(ty_@2, fga), fgb)) -> new_esEs14(vyw500, vyw3000, fga, fgb) new_asAs(True, vyw150) -> vyw150 new_compare32(Right(vyw50), Right(vyw300), eh, fa) -> new_compare29(vyw50, vyw300, new_esEs5(vyw50, vyw300, fa), eh, fa) new_esEs7(vyw51, vyw301, app(app(ty_@2, dfg), dfh)) -> new_esEs14(vyw51, vyw301, dfg, dfh) new_lt10(vyw105, vyw108, app(app(ty_Either, bhg), bhh)) -> new_lt13(vyw105, vyw108, bhg, bhh) new_esEs21(Right(vyw500), Right(vyw3000), ebf, app(app(ty_@2, ebg), ebh)) -> new_esEs14(vyw500, vyw3000, ebg, ebh) new_ltEs12(vyw49, vyw50) -> new_fsEs(new_compare15(vyw49, vyw50)) new_lt23(vyw490, vyw500, app(ty_[], bac)) -> new_lt14(vyw490, vyw500, bac) new_esEs10(vyw50, vyw300, app(ty_[], eef)) -> new_esEs17(vyw50, vyw300, eef) new_ltEs11(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, ha) -> new_pePe(new_lt23(vyw490, vyw500, fc), new_asAs(new_esEs32(vyw490, vyw500, fc), new_pePe(new_lt22(vyw491, vyw501, fd), new_asAs(new_esEs31(vyw491, vyw501, fd), new_ltEs24(vyw492, vyw502, ha))))) new_lt20(vyw490, vyw500, ty_Bool) -> new_lt8(vyw490, vyw500) new_esEs10(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_esEs29(vyw490, vyw500, ty_@0) -> new_esEs25(vyw490, vyw500) new_compare33(vyw50, vyw300, app(ty_Ratio, fah)) -> new_compare8(vyw50, vyw300, fah) new_ltEs20(vyw107, vyw110, ty_Float) -> new_ltEs16(vyw107, vyw110) new_esEs39(vyw501, vyw3001, app(app(ty_Either, ffc), ffd)) -> new_esEs21(vyw501, vyw3001, ffc, ffd) new_lt10(vyw105, vyw108, ty_@0) -> new_lt7(vyw105, vyw108) new_esEs31(vyw491, vyw501, ty_Ordering) -> new_esEs23(vyw491, vyw501) new_compare33(vyw50, vyw300, ty_Float) -> new_compare6(vyw50, vyw300) new_esEs38(vyw500, vyw3000, app(app(app(ty_@3, fec), fed), fee)) -> new_esEs24(vyw500, vyw3000, fec, fed, fee) new_ltEs22(vyw119, vyw121, ty_@0) -> new_ltEs18(vyw119, vyw121) new_primCmpInt(Pos(Succ(vyw500)), Pos(vyw300)) -> new_primCmpNat0(Succ(vyw500), vyw300) new_esEs9(vyw51, vyw301, app(ty_[], edd)) -> new_esEs17(vyw51, vyw301, edd) new_lt22(vyw491, vyw501, app(ty_Ratio, dec)) -> new_lt6(vyw491, vyw501, dec) new_compare5(EQ, EQ) -> EQ new_esEs35(vyw500, vyw3000, ty_@0) -> new_esEs25(vyw500, vyw3000) new_lt9(vyw106, vyw109, ty_Char) -> new_lt11(vyw106, vyw109) new_esEs26(Just(vyw500), Just(vyw3000), app(ty_Ratio, dae)) -> new_esEs16(vyw500, vyw3000, dae) new_esEs21(Right(vyw500), Right(vyw3000), ebf, app(app(ty_Either, ecc), ecd)) -> new_esEs21(vyw500, vyw3000, ecc, ecd) new_compare0([], [], df) -> EQ new_sr(vyw300, vyw51) -> new_primMulInt(vyw300, vyw51) new_esEs36(vyw502, vyw3002, app(ty_[], fbd)) -> new_esEs17(vyw502, vyw3002, fbd) new_esEs28(vyw105, vyw108, ty_Char) -> new_esEs13(vyw105, vyw108) new_lt21(vyw118, vyw120, ty_@0) -> new_lt7(vyw118, vyw120) new_esEs10(vyw50, vyw300, app(app(ty_Either, eeg), eeh)) -> new_esEs21(vyw50, vyw300, eeg, eeh) new_compare29(vyw56, vyw57, False, ceh, ddh) -> new_compare19(vyw56, vyw57, new_ltEs23(vyw56, vyw57, ddh), ceh, ddh) new_esEs8(vyw50, vyw300, app(ty_[], dhd)) -> new_esEs17(vyw50, vyw300, dhd) new_primMulNat0(Zero, Zero) -> Zero new_esEs39(vyw501, vyw3001, ty_Float) -> new_esEs20(vyw501, vyw3001) new_compare25(vyw94, vyw95, False, chd) -> new_compare10(vyw94, vyw95, new_ltEs4(vyw94, vyw95, chd), chd) new_esEs8(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_esEs21(Left(vyw500), Left(vyw3000), app(app(ty_Either, eah), eba), eac) -> new_esEs21(vyw500, vyw3000, eah, eba) new_esEs10(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs27(vyw106, vyw109, app(ty_Ratio, dbf)) -> new_esEs16(vyw106, vyw109, dbf) new_esEs9(vyw51, vyw301, ty_Ordering) -> new_esEs23(vyw51, vyw301) new_ltEs15(Just(vyw490), Just(vyw500), app(ty_[], bdh)) -> new_ltEs9(vyw490, vyw500, bdh) new_ltEs8(Right(vyw490), Right(vyw500), cb, ty_Integer) -> new_ltEs17(vyw490, vyw500) new_ltEs23(vyw56, vyw57, app(ty_Ratio, dea)) -> new_ltEs10(vyw56, vyw57, dea) new_esEs4(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_ltEs7(LT, EQ) -> True new_ltEs20(vyw107, vyw110, ty_Double) -> new_ltEs6(vyw107, vyw110) new_ltEs8(Right(vyw490), Right(vyw500), cb, app(app(ty_@2, db), dc)) -> new_ltEs13(vyw490, vyw500, db, dc) new_esEs27(vyw106, vyw109, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs24(vyw106, vyw109, bha, bhb, bhc) new_esEs26(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs18(vyw500, vyw3000) new_ltEs23(vyw56, vyw57, ty_Char) -> new_ltEs5(vyw56, vyw57) new_esEs7(vyw51, vyw301, ty_@0) -> new_esEs25(vyw51, vyw301) new_compare33(vyw50, vyw300, ty_Bool) -> new_compare14(vyw50, vyw300) new_compare6(Float(vyw50, Pos(vyw510)), Float(vyw300, Pos(vyw3010))) -> new_compare15(new_sr(vyw50, Pos(vyw3010)), new_sr(Pos(vyw510), vyw300)) new_lt22(vyw491, vyw501, ty_Float) -> new_lt5(vyw491, vyw501) new_lt12(vyw5, vyw30) -> new_esEs12(new_compare13(vyw5, vyw30)) new_esEs6(vyw52, vyw302, ty_Double) -> new_esEs18(vyw52, vyw302) new_lt20(vyw490, vyw500, ty_Ordering) -> new_lt4(vyw490, vyw500) new_ltEs23(vyw56, vyw57, app(ty_Maybe, cga)) -> new_ltEs15(vyw56, vyw57, cga) new_ltEs24(vyw492, vyw502, app(ty_Ratio, deb)) -> new_ltEs10(vyw492, vyw502, deb) new_lt6(vyw5, vyw30, daa) -> new_esEs12(new_compare8(vyw5, vyw30, daa)) new_ltEs15(Just(vyw490), Just(vyw500), ty_Ordering) -> new_ltEs7(vyw490, vyw500) new_ltEs14(False, True) -> True new_ltEs4(vyw94, vyw95, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs11(vyw94, vyw95, ceb, cec, ced) new_ltEs20(vyw107, vyw110, app(ty_[], bff)) -> new_ltEs9(vyw107, vyw110, bff) new_esEs7(vyw51, vyw301, app(app(ty_Either, dgc), dgd)) -> new_esEs21(vyw51, vyw301, dgc, dgd) new_ltEs15(Just(vyw490), Just(vyw500), ty_Integer) -> new_ltEs17(vyw490, vyw500) new_esEs31(vyw491, vyw501, ty_Integer) -> new_esEs15(vyw491, vyw501) new_esEs30(vyw118, vyw120, ty_Float) -> new_esEs20(vyw118, vyw120) new_lt10(vyw105, vyw108, ty_Ordering) -> new_lt4(vyw105, vyw108) new_esEs10(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_esEs28(vyw105, vyw108, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs24(vyw105, vyw108, cab, cac, cad) new_esEs4(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs26(Just(vyw500), Just(vyw3000), app(ty_Maybe, dbd)) -> new_esEs26(vyw500, vyw3000, dbd) new_esEs38(vyw500, vyw3000, app(app(ty_@2, fde), fdf)) -> new_esEs14(vyw500, vyw3000, fde, fdf) new_compare14(False, False) -> EQ new_primCompAux0(vyw62, EQ) -> vyw62 new_compare111(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, False, efh, ega, egb) -> GT new_ltEs22(vyw119, vyw121, app(ty_Maybe, ccc)) -> new_ltEs15(vyw119, vyw121, ccc) new_lt23(vyw490, vyw500, app(ty_Maybe, bba)) -> new_lt18(vyw490, vyw500, bba) new_esEs21(Right(vyw500), Right(vyw3000), ebf, app(ty_Ratio, eca)) -> new_esEs16(vyw500, vyw3000, eca) new_compare33(vyw50, vyw300, app(app(app(ty_@3, eb), ec), ed)) -> new_compare30(vyw50, vyw300, eb, ec, ed) new_lt21(vyw118, vyw120, ty_Ordering) -> new_lt4(vyw118, vyw120) new_esEs23(GT, GT) -> True new_esEs5(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_ltEs8(Left(vyw490), Left(vyw500), app(ty_Maybe, ca), bb) -> new_ltEs15(vyw490, vyw500, ca) new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_esEs32(vyw490, vyw500, ty_Ordering) -> new_esEs23(vyw490, vyw500) new_esEs39(vyw501, vyw3001, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs24(vyw501, vyw3001, ffe, fff, ffg) new_esEs9(vyw51, vyw301, ty_Bool) -> new_esEs19(vyw51, vyw301) new_esEs29(vyw490, vyw500, ty_Float) -> new_esEs20(vyw490, vyw500) new_esEs7(vyw51, vyw301, ty_Integer) -> new_esEs15(vyw51, vyw301) new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_esEs37(vyw501, vyw3001, app(ty_Ratio, fce)) -> new_esEs16(vyw501, vyw3001, fce) new_compare33(vyw50, vyw300, ty_Integer) -> new_compare12(vyw50, vyw300) new_ltEs23(vyw56, vyw57, app(app(ty_@2, cfg), cfh)) -> new_ltEs13(vyw56, vyw57, cfg, cfh) new_esEs8(vyw50, vyw300, app(app(ty_Either, dhe), dhf)) -> new_esEs21(vyw50, vyw300, dhe, dhf) new_ltEs21(vyw491, vyw501, app(ty_[], bbe)) -> new_ltEs9(vyw491, vyw501, bbe) new_lt20(vyw490, vyw500, ty_@0) -> new_lt7(vyw490, vyw500) new_esEs31(vyw491, vyw501, ty_@0) -> new_esEs25(vyw491, vyw501) new_ltEs8(Right(vyw490), Right(vyw500), cb, app(ty_Maybe, dd)) -> new_ltEs15(vyw490, vyw500, dd) new_esEs11(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs11(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False new_esEs16(:%(vyw500, vyw501), :%(vyw3000, vyw3001), ege) -> new_asAs(new_esEs34(vyw500, vyw3000, ege), new_esEs33(vyw501, vyw3001, ege)) new_ltEs4(vyw94, vyw95, ty_Char) -> new_ltEs5(vyw94, vyw95) new_primCmpInt(Neg(Zero), Neg(Succ(vyw3000))) -> new_primCmpNat0(Succ(vyw3000), Zero) new_esEs32(vyw490, vyw500, app(ty_Ratio, ded)) -> new_esEs16(vyw490, vyw500, ded) new_lt23(vyw490, vyw500, ty_Int) -> new_lt16(vyw490, vyw500) new_esEs32(vyw490, vyw500, app(ty_[], bac)) -> new_esEs17(vyw490, vyw500, bac) new_esEs6(vyw52, vyw302, app(ty_Maybe, dff)) -> new_esEs26(vyw52, vyw302, dff) new_esEs40(vyw500, vyw3000, app(app(app(ty_@3, fgg), fgh), fha)) -> new_esEs24(vyw500, vyw3000, fgg, fgh, fha) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs23(vyw56, vyw57, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs11(vyw56, vyw57, cfd, cfe, cff) new_lt9(vyw106, vyw109, ty_@0) -> new_lt7(vyw106, vyw109) new_lt21(vyw118, vyw120, ty_Bool) -> new_lt8(vyw118, vyw120) new_compare16(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, True, vyw177, efh, ega, egb) -> new_compare111(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, True, efh, ega, egb) new_esEs21(Left(vyw500), Left(vyw3000), app(ty_[], eag), eac) -> new_esEs17(vyw500, vyw3000, eag) new_esEs38(vyw500, vyw3000, ty_Double) -> new_esEs18(vyw500, vyw3000) new_ltEs15(Just(vyw490), Just(vyw500), ty_@0) -> new_ltEs18(vyw490, vyw500) new_ltEs10(vyw49, vyw50, chg) -> new_fsEs(new_compare8(vyw49, vyw50, chg)) new_esEs21(Right(vyw500), Right(vyw3000), ebf, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs24(vyw500, vyw3000, ece, ecf, ecg) new_lt10(vyw105, vyw108, ty_Integer) -> new_lt19(vyw105, vyw108) new_esEs13(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) new_lt21(vyw118, vyw120, app(app(ty_@2, cdc), cdd)) -> new_lt17(vyw118, vyw120, cdc, cdd) new_lt15(vyw5, vyw30, beg, beh, bfa) -> new_esEs12(new_compare30(vyw5, vyw30, beg, beh, bfa)) new_esEs35(vyw500, vyw3000, app(app(ty_@2, ehf), ehg)) -> new_esEs14(vyw500, vyw3000, ehf, ehg) new_esEs9(vyw51, vyw301, ty_Int) -> new_esEs22(vyw51, vyw301) new_esEs25(@0, @0) -> True new_lt8(vyw5, vyw30) -> new_esEs12(new_compare14(vyw5, vyw30)) new_ltEs5(vyw49, vyw50) -> new_fsEs(new_compare9(vyw49, vyw50)) new_esEs28(vyw105, vyw108, app(ty_Maybe, cag)) -> new_esEs26(vyw105, vyw108, cag) new_esEs37(vyw501, vyw3001, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs24(vyw501, vyw3001, fda, fdb, fdc) new_lt5(vyw5, vyw30) -> new_esEs12(new_compare6(vyw5, vyw30)) new_compare18(Just(vyw50), Just(vyw300), cdf) -> new_compare25(vyw50, vyw300, new_esEs11(vyw50, vyw300, cdf), cdf) new_esEs36(vyw502, vyw3002, ty_Integer) -> new_esEs15(vyw502, vyw3002) new_esEs28(vyw105, vyw108, ty_Int) -> new_esEs22(vyw105, vyw108) new_esEs38(vyw500, vyw3000, ty_@0) -> new_esEs25(vyw500, vyw3000) new_ltEs7(EQ, GT) -> True new_esEs9(vyw51, vyw301, ty_Integer) -> new_esEs15(vyw51, vyw301) new_ltEs8(Left(vyw490), Right(vyw500), cb, bb) -> True new_not(False) -> True new_esEs23(EQ, GT) -> False new_esEs23(GT, EQ) -> False new_esEs23(EQ, EQ) -> True new_esEs37(vyw501, vyw3001, app(app(ty_@2, fcc), fcd)) -> new_esEs14(vyw501, vyw3001, fcc, fcd) new_esEs21(Left(vyw500), Left(vyw3000), ty_@0, eac) -> new_esEs25(vyw500, vyw3000) new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), egf) -> new_asAs(new_esEs35(vyw500, vyw3000, egf), new_esEs17(vyw501, vyw3001, egf)) new_esEs37(vyw501, vyw3001, ty_Bool) -> new_esEs19(vyw501, vyw3001) new_esEs4(vyw50, vyw300, app(ty_Ratio, ege)) -> new_esEs16(vyw50, vyw300, ege) new_esEs40(vyw500, vyw3000, ty_Float) -> new_esEs20(vyw500, vyw3000) new_ltEs15(Nothing, Just(vyw500), chh) -> True new_ltEs15(Just(vyw490), Just(vyw500), ty_Float) -> new_ltEs16(vyw490, vyw500) new_compare14(True, False) -> GT new_lt7(vyw5, vyw30) -> new_esEs12(new_compare7(vyw5, vyw30)) new_compare0(:(vyw50, vyw51), [], df) -> GT new_esEs30(vyw118, vyw120, ty_Char) -> new_esEs13(vyw118, vyw120) new_lt17(vyw5, vyw30, cah, cba) -> new_esEs12(new_compare31(vyw5, vyw30, cah, cba)) new_ltEs24(vyw492, vyw502, ty_Bool) -> new_ltEs14(vyw492, vyw502) new_ltEs7(EQ, EQ) -> True new_esEs38(vyw500, vyw3000, app(ty_Ratio, fdg)) -> new_esEs16(vyw500, vyw3000, fdg) new_esEs21(Right(vyw500), Right(vyw3000), ebf, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs15(Just(vyw490), Just(vyw500), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs11(vyw490, vyw500, bea, beb, bec) new_ltEs19(vyw49, vyw50, ty_Ordering) -> new_ltEs7(vyw49, vyw50) new_esEs28(vyw105, vyw108, ty_Float) -> new_esEs20(vyw105, vyw108) new_ltEs7(GT, EQ) -> False new_compare18(Just(vyw50), Nothing, cdf) -> GT new_esEs36(vyw502, vyw3002, ty_Double) -> new_esEs18(vyw502, vyw3002) new_esEs9(vyw51, vyw301, app(app(ty_Either, ede), edf)) -> new_esEs21(vyw51, vyw301, ede, edf) new_esEs26(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs13(vyw500, vyw3000) new_esEs31(vyw491, vyw501, app(ty_Ratio, dec)) -> new_esEs16(vyw491, vyw501, dec) new_compare16(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, False, vyw177, efh, ega, egb) -> new_compare111(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, vyw177, efh, ega, egb) new_esEs36(vyw502, vyw3002, app(app(ty_Either, fbe), fbf)) -> new_esEs21(vyw502, vyw3002, fbe, fbf) new_compare110(vyw185, vyw186, vyw187, vyw188, False, eff, efg) -> GT new_esEs40(vyw500, vyw3000, app(ty_Maybe, fhb)) -> new_esEs26(vyw500, vyw3000, fhb) new_primPlusNat0(Succ(vyw1980), vyw5100) -> Succ(Succ(new_primPlusNat1(vyw1980, vyw5100))) new_esEs5(vyw50, vyw300, app(ty_Maybe, chc)) -> new_esEs26(vyw50, vyw300, chc) new_compare11(vyw134, vyw135, True, ehd, ehe) -> LT new_compare27(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, bgg) -> new_compare16(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, new_lt10(vyw105, vyw108, bfb), new_asAs(new_esEs28(vyw105, vyw108, bfb), new_pePe(new_lt9(vyw106, vyw109, bfc), new_asAs(new_esEs27(vyw106, vyw109, bfc), new_ltEs20(vyw107, vyw110, bgg)))), bfb, bfc, bgg) new_ltEs23(vyw56, vyw57, app(app(ty_Either, cfa), cfb)) -> new_ltEs8(vyw56, vyw57, cfa, cfb) new_esEs32(vyw490, vyw500, ty_Int) -> new_esEs22(vyw490, vyw500) new_lt23(vyw490, vyw500, app(app(ty_@2, bag), bah)) -> new_lt17(vyw490, vyw500, bag, bah) new_lt14(vyw5, vyw30, df) -> new_esEs12(new_compare0(vyw5, vyw30, df)) new_ltEs20(vyw107, vyw110, ty_Ordering) -> new_ltEs7(vyw107, vyw110) new_lt23(vyw490, vyw500, ty_Integer) -> new_lt19(vyw490, vyw500) new_esEs35(vyw500, vyw3000, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs24(vyw500, vyw3000, fad, fae, faf) new_esEs5(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_esEs21(Left(vyw500), Left(vyw3000), ty_Float, eac) -> new_esEs20(vyw500, vyw3000) new_lt22(vyw491, vyw501, app(ty_Maybe, hh)) -> new_lt18(vyw491, vyw501, hh) new_esEs36(vyw502, vyw3002, ty_Float) -> new_esEs20(vyw502, vyw3002) new_esEs26(Nothing, Nothing, dab) -> True new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare18(Nothing, Nothing, cdf) -> EQ new_esEs26(Nothing, Just(vyw3000), dab) -> False new_esEs26(Just(vyw500), Nothing, dab) -> False new_primPlusNat1(Zero, Zero) -> Zero new_esEs28(vyw105, vyw108, ty_Double) -> new_esEs18(vyw105, vyw108) new_ltEs8(Left(vyw490), Left(vyw500), ty_Float, bb) -> new_ltEs16(vyw490, vyw500) new_esEs6(vyw52, vyw302, app(ty_Ratio, deg)) -> new_esEs16(vyw52, vyw302, deg) new_ltEs22(vyw119, vyw121, ty_Bool) -> new_ltEs14(vyw119, vyw121) new_esEs35(vyw500, vyw3000, ty_Bool) -> new_esEs19(vyw500, vyw3000) new_esEs4(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_esEs23(LT, GT) -> False new_esEs23(GT, LT) -> False new_ltEs15(Just(vyw490), Just(vyw500), ty_Char) -> new_ltEs5(vyw490, vyw500) new_ltEs24(vyw492, vyw502, app(app(ty_@2, gd), ge)) -> new_ltEs13(vyw492, vyw502, gd, ge) new_ltEs7(EQ, LT) -> False new_lt23(vyw490, vyw500, ty_Bool) -> new_lt8(vyw490, vyw500) new_ltEs23(vyw56, vyw57, ty_Ordering) -> new_ltEs7(vyw56, vyw57) new_ltEs4(vyw94, vyw95, ty_@0) -> new_ltEs18(vyw94, vyw95) new_lt21(vyw118, vyw120, app(ty_Maybe, cde)) -> new_lt18(vyw118, vyw120, cde) new_esEs35(vyw500, vyw3000, app(ty_[], faa)) -> new_esEs17(vyw500, vyw3000, faa) new_primCompAux1(vyw50, vyw300, vyw44, df) -> new_primCompAux0(vyw44, new_compare33(vyw50, vyw300, df)) new_esEs35(vyw500, vyw3000, ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_ltEs22(vyw119, vyw121, ty_Char) -> new_ltEs5(vyw119, vyw121) new_esEs8(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt23(vyw490, vyw500, ty_Float) -> new_lt5(vyw490, vyw500) new_esEs5(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_lt21(vyw118, vyw120, ty_Integer) -> new_lt19(vyw118, vyw120) new_primMulNat0(Succ(vyw30000), Succ(vyw5100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw5100)), vyw5100) new_esEs11(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_ltEs24(vyw492, vyw502, app(ty_Maybe, gf)) -> new_ltEs15(vyw492, vyw502, gf) new_ltEs14(False, False) -> True new_ltEs7(GT, LT) -> False new_esEs23(LT, EQ) -> False new_esEs23(EQ, LT) -> False new_compare29(vyw56, vyw57, True, ceh, ddh) -> EQ new_esEs36(vyw502, vyw3002, ty_Ordering) -> new_esEs23(vyw502, vyw3002) new_primCmpNat0(Succ(vyw500), Succ(vyw3000)) -> new_primCmpNat0(vyw500, vyw3000) new_lt22(vyw491, vyw501, ty_@0) -> new_lt7(vyw491, vyw501) new_ltEs22(vyw119, vyw121, ty_Ordering) -> new_ltEs7(vyw119, vyw121) new_esEs40(vyw500, vyw3000, ty_@0) -> new_esEs25(vyw500, vyw3000) new_esEs30(vyw118, vyw120, ty_Int) -> new_esEs22(vyw118, vyw120) new_ltEs8(Left(vyw490), Left(vyw500), ty_Int, bb) -> new_ltEs12(vyw490, vyw500) new_compare13(Double(vyw50, Neg(vyw510)), Double(vyw300, Neg(vyw3010))) -> new_compare15(new_sr(vyw50, Neg(vyw3010)), new_sr(Neg(vyw510), vyw300)) new_compare110(vyw185, vyw186, vyw187, vyw188, True, eff, efg) -> LT new_esEs38(vyw500, vyw3000, ty_Float) -> new_esEs20(vyw500, vyw3000) new_lt10(vyw105, vyw108, app(app(ty_@2, cae), caf)) -> new_lt17(vyw105, vyw108, cae, caf) new_ltEs23(vyw56, vyw57, app(ty_[], cfc)) -> new_ltEs9(vyw56, vyw57, cfc) new_lt20(vyw490, vyw500, app(ty_Maybe, bde)) -> new_lt18(vyw490, vyw500, bde) new_esEs7(vyw51, vyw301, ty_Char) -> new_esEs13(vyw51, vyw301) new_esEs21(Right(vyw500), Right(vyw3000), ebf, app(ty_Maybe, ech)) -> new_esEs26(vyw500, vyw3000, ech) new_ltEs8(Left(vyw490), Left(vyw500), app(ty_[], bc), bb) -> new_ltEs9(vyw490, vyw500, bc) new_esEs28(vyw105, vyw108, app(ty_Ratio, dbg)) -> new_esEs16(vyw105, vyw108, dbg) new_esEs10(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_esEs11(vyw50, vyw300, app(app(ty_Either, ddb), ddc)) -> new_esEs21(vyw50, vyw300, ddb, ddc) new_compare5(GT, GT) -> EQ new_esEs22(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) new_ltEs19(vyw49, vyw50, ty_Float) -> new_ltEs16(vyw49, vyw50) new_esEs27(vyw106, vyw109, ty_Double) -> new_esEs18(vyw106, vyw109) new_esEs27(vyw106, vyw109, ty_@0) -> new_esEs25(vyw106, vyw109) new_ltEs4(vyw94, vyw95, ty_Float) -> new_ltEs16(vyw94, vyw95) new_esEs4(vyw50, vyw300, app(ty_Maybe, dab)) -> new_esEs26(vyw50, vyw300, dab) new_esEs39(vyw501, vyw3001, app(ty_Maybe, ffh)) -> new_esEs26(vyw501, vyw3001, ffh) new_esEs11(vyw50, vyw300, app(ty_[], dda)) -> new_esEs17(vyw50, vyw300, dda) new_compare27(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, True, bfb, bfc, bgg) -> EQ new_ltEs24(vyw492, vyw502, app(ty_[], fh)) -> new_ltEs9(vyw492, vyw502, fh) new_ltEs7(LT, GT) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs40(vyw500, vyw3000, app(ty_Ratio, fgc)) -> new_esEs16(vyw500, vyw3000, fgc) new_esEs6(vyw52, vyw302, ty_Int) -> new_esEs22(vyw52, vyw302) new_ltEs21(vyw491, vyw501, ty_Ordering) -> new_ltEs7(vyw491, vyw501) new_ltEs8(Left(vyw490), Left(vyw500), ty_@0, bb) -> new_ltEs18(vyw490, vyw500) new_esEs37(vyw501, vyw3001, ty_Float) -> new_esEs20(vyw501, vyw3001) new_esEs21(Left(vyw500), Left(vyw3000), ty_Double, eac) -> new_esEs18(vyw500, vyw3000) new_esEs29(vyw490, vyw500, app(ty_Ratio, dca)) -> new_esEs16(vyw490, vyw500, dca) new_compare14(True, True) -> EQ new_esEs11(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_primEqNat0(Zero, Zero) -> True new_compare28(vyw118, vyw119, vyw120, vyw121, False, cbb, ccf) -> new_compare17(vyw118, vyw119, vyw120, vyw121, new_lt21(vyw118, vyw120, cbb), new_asAs(new_esEs30(vyw118, vyw120, cbb), new_ltEs22(vyw119, vyw121, ccf)), cbb, ccf) new_ltEs21(vyw491, vyw501, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_ltEs11(vyw491, vyw501, bbf, bbg, bbh) new_compare5(LT, EQ) -> LT new_esEs5(vyw50, vyw300, app(ty_Ratio, cgd)) -> new_esEs16(vyw50, vyw300, cgd) new_esEs26(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs22(vyw500, vyw3000) new_ltEs23(vyw56, vyw57, ty_Double) -> new_ltEs6(vyw56, vyw57) new_esEs36(vyw502, vyw3002, ty_Bool) -> new_esEs19(vyw502, vyw3002) new_ltEs8(Left(vyw490), Left(vyw500), app(app(app(ty_@3, bd), be), bf), bb) -> new_ltEs11(vyw490, vyw500, bd, be, bf) new_esEs28(vyw105, vyw108, ty_@0) -> new_esEs25(vyw105, vyw108) new_ltEs14(True, False) -> False new_lt9(vyw106, vyw109, ty_Float) -> new_lt5(vyw106, vyw109) new_esEs38(vyw500, vyw3000, app(ty_Maybe, fef)) -> new_esEs26(vyw500, vyw3000, fef) new_compare33(vyw50, vyw300, app(app(ty_Either, dg), dh)) -> new_compare32(vyw50, vyw300, dg, dh) new_esEs17(:(vyw500, vyw501), [], egf) -> False new_esEs17([], :(vyw3000, vyw3001), egf) -> False new_asAs(False, vyw150) -> False new_compare33(vyw50, vyw300, app(ty_[], ea)) -> new_compare0(vyw50, vyw300, ea) new_compare7(@0, @0) -> EQ new_esEs34(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs7(vyw51, vyw301, ty_Int) -> new_esEs22(vyw51, vyw301) new_ltEs4(vyw94, vyw95, ty_Int) -> new_ltEs12(vyw94, vyw95) new_ltEs21(vyw491, vyw501, ty_Char) -> new_ltEs5(vyw491, vyw501) new_esEs14(@2(vyw500, vyw501), @2(vyw3000, vyw3001), egc, egd) -> new_asAs(new_esEs40(vyw500, vyw3000, egc), new_esEs39(vyw501, vyw3001, egd)) new_lt19(vyw5, vyw30) -> new_esEs12(new_compare12(vyw5, vyw30)) new_esEs35(vyw500, vyw3000, app(app(ty_Either, fab), fac)) -> new_esEs21(vyw500, vyw3000, fab, fac) new_esEs4(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_lt10(vyw105, vyw108, ty_Bool) -> new_lt8(vyw105, vyw108) new_esEs27(vyw106, vyw109, app(ty_Maybe, bhf)) -> new_esEs26(vyw106, vyw109, bhf) new_ltEs8(Right(vyw490), Right(vyw500), cb, ty_Double) -> new_ltEs6(vyw490, vyw500) new_esEs32(vyw490, vyw500, ty_Char) -> new_esEs13(vyw490, vyw500) new_ltEs8(Right(vyw490), Right(vyw500), cb, ty_Bool) -> new_ltEs14(vyw490, vyw500) new_lt23(vyw490, vyw500, ty_@0) -> new_lt7(vyw490, vyw500) new_esEs19(True, True) -> True new_lt22(vyw491, vyw501, app(app(ty_@2, hf), hg)) -> new_lt17(vyw491, vyw501, hf, hg) new_ltEs24(vyw492, vyw502, app(app(ty_Either, ff), fg)) -> new_ltEs8(vyw492, vyw502, ff, fg) new_esEs31(vyw491, vyw501, ty_Int) -> new_esEs22(vyw491, vyw501) new_esEs39(vyw501, vyw3001, ty_@0) -> new_esEs25(vyw501, vyw3001) new_lt22(vyw491, vyw501, ty_Integer) -> new_lt19(vyw491, vyw501) The set Q consists of the following terms: new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(x0, x1, x2) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Nothing, Just(x0), x1) new_compare18(Nothing, Nothing, x0) new_ltEs4(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Double) new_compare33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs39(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Bool) new_compare110(x0, x1, x2, x3, False, x4, x5) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs10(x0, x1, x2) new_esEs30(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare33(x0, x1, ty_Bool) new_primPlusNat1(Zero, Zero) new_esEs35(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs22(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, ty_@0) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Int) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_compare33(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Ordering) new_esEs19(False, False) new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs24(x0, x1, ty_Int) new_lt23(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Double) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_lt22(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare33(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs37(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs22(x0, x1, ty_Double) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Ordering) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_compare29(x0, x1, True, x2, x3) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(Nothing, Just(x0), x1) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_lt10(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_lt9(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, x2, x3, False, x4, x5) new_lt10(x0, x1, ty_Float) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Char) new_primCompAux0(x0, LT) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Char) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_@0) new_compare18(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(ty_[], x2)) new_compare32(Left(x0), Right(x1), x2, x3) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Int) new_esEs26(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Double) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs8(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Double) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Char) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_pePe(False, x0) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Double) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs23(x0, x1, ty_Bool) new_compare32(Left(x0), Left(x1), x2, x3) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(EQ, LT) new_esEs29(x0, x1, ty_Double) new_compare5(LT, EQ) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs4(x0, x1, ty_Integer) new_compare5(GT, GT) new_lt17(x0, x1, x2, x3) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs17(x0, x1) new_esEs38(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, True, x2, x3) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Just(x0), Nothing, x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs4(x0, x1, ty_Double) new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(x0, x1, ty_Integer) new_ltEs7(EQ, EQ) new_lt21(x0, x1, ty_Double) new_esEs26(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs23(LT, LT) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare14(True, True) new_lt9(x0, x1, ty_Bool) new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs35(x0, x1, ty_Int) new_compare25(x0, x1, True, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_compare19(x0, x1, False, x2, x3) new_lt10(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs35(x0, x1, ty_@0) new_esEs23(EQ, GT) new_esEs23(GT, EQ) new_lt8(x0, x1) new_lt9(x0, x1, ty_@0) new_esEs26(Just(x0), Just(x1), ty_Float) new_ltEs4(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_compare33(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt7(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1) new_lt13(x0, x1, x2, x3) new_ltEs21(x0, x1, ty_Integer) new_compare17(x0, x1, x2, x3, True, x4, x5, x6) new_primMulInt(Neg(x0), Neg(x1)) new_compare33(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_lt14(x0, x1, x2) new_esEs35(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Nothing, Nothing, x0) new_lt20(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_@0) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Ordering) new_compare18(Just(x0), Just(x1), x2) new_esEs26(Just(x0), Just(x1), ty_Double) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Ordering) new_ltEs4(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Bool) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs12(GT) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare11(x0, x1, False, x2, x3) new_compare19(x0, x1, True, x2, x3) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_ltEs18(x0, x1) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs19(False, True) new_esEs19(True, False) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, ty_Float) new_esEs26(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Double) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Integer) new_esEs26(Just(x0), Nothing, x1) new_esEs7(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Bool) new_primEqNat0(Zero, Succ(x0)) new_ltEs8(Left(x0), Left(x1), ty_Double, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(:(x0, x1), :(x2, x3), x4) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Integer) new_ltEs12(x0, x1) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_asAs(True, x0) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_esEs30(x0, x1, ty_@0) new_ltEs14(False, False) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt6(x0, x1, x2) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs4(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs8(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Succ(x1)) new_compare5(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1) new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs24(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_fsEs(x0) new_lt22(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs30(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_@0) new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt22(x0, x1, ty_Bool) new_ltEs8(Right(x0), Right(x1), x2, ty_@0) new_esEs31(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs4(x0, x1, ty_Int) new_lt10(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs11(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Integer) new_compare33(x0, x1, ty_Char) new_lt22(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1) new_esEs27(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_compare33(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Ordering) new_ltEs8(Right(x0), Right(x1), x2, ty_Double) new_lt22(x0, x1, ty_Char) new_compare31(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_compare14(False, False) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Float) new_sr0(Integer(x0), Integer(x1)) new_compare33(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Integer) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_primCompAux0(x0, GT) new_esEs9(x0, x1, ty_Integer) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Integer) new_ltEs8(Right(x0), Left(x1), x2, x3) new_primPlusNat0(Zero, x0) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Left(x0), Right(x1), x2, x3) new_esEs29(x0, x1, ty_Integer) new_esEs26(Just(x0), Just(x1), ty_Bool) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Int) new_esEs26(Nothing, Nothing, x0) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Zero) new_sr(x0, x1) new_esEs10(x0, x1, ty_Bool) new_esEs26(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_lt9(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Bool) new_compare7(@0, @0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Char) new_compare0([], [], x0) new_esEs17([], :(x0, x1), x2) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Int) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, ty_@0) new_esEs26(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs31(x0, x1, ty_@0) new_compare18(Nothing, Just(x0), x1) new_ltEs7(LT, LT) new_esEs17(:(x0, x1), :(x2, x3), x4) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare10(x0, x1, False, x2) new_esEs9(x0, x1, ty_Bool) new_esEs23(LT, GT) new_esEs23(GT, LT) new_esEs36(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Ordering) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(Float(x0, x1), Float(x2, x3)) new_esEs34(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Integer) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs37(x0, x1, ty_Char) new_lt10(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt10(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_ltEs8(Left(x0), Left(x1), ty_Char, x2) new_compare14(False, True) new_compare14(True, False) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare5(LT, GT) new_compare5(GT, LT) new_esEs30(x0, x1, ty_Float) new_pePe(True, x0) new_esEs32(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_compare0(:(x0, x1), [], x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs24(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Double) new_ltEs14(True, True) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs36(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_[], x2)) new_esEs25(@0, @0) new_esEs7(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(Integer(x0), Integer(x1)) new_esEs40(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs17([], [], x0) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_@0) new_esEs26(Just(x0), Just(x1), ty_Char) new_lt9(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), x1) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Float) new_ltEs19(x0, x1, ty_Float) new_lt10(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_[], x2)) new_compare0([], :(x0, x1), x2) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_lt22(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_@0) new_ltEs4(x0, x1, app(ty_[], x2)) new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs8(Left(x0), Left(x1), ty_@0, x2) new_lt10(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Char) new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs40(x0, x1, ty_Char) new_esEs4(x0, x1, ty_@0) new_compare15(x0, x1) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare5(GT, EQ) new_compare5(EQ, GT) new_compare10(x0, x1, True, x2) new_esEs26(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Char) new_compare9(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt21(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_@0) new_esEs17(:(x0, x1), [], x2) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs26(Just(x0), Just(x1), ty_@0) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Integer) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs19(True, True) new_esEs9(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Ordering) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs38(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs40(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Int) new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs7(GT, GT) new_esEs26(Just(x0), Just(x1), ty_Ordering) new_lt11(x0, x1) new_lt12(x0, x1) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Char) new_ltEs6(x0, x1) new_esEs33(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Char) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Bool) new_ltEs8(Right(x0), Right(x1), x2, ty_Int) new_esEs30(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_esEs8(x0, x1, ty_Ordering) new_compare33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Char(x0), Char(x1)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Double) new_compare5(EQ, EQ) new_esEs7(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_esEs10(x0, x1, ty_Int) new_primCmpNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs15(Integer(x0), Integer(x1)) new_esEs4(x0, x1, ty_Float) new_ltEs16(x0, x1) new_lt21(x0, x1, ty_Int) new_esEs38(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_lt16(x0, x1) new_lt23(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt23(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs36(x0, x1, ty_Integer) new_primCompAux1(x0, x1, x2, x3) new_esEs10(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_Float) new_compare33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(Right(x0), Right(x1), x2, x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1, x2, x3, x4) new_ltEs23(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Integer) new_lt5(x0, x1) new_lt23(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs7(x0, x1, ty_Float) new_esEs12(EQ) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Float) new_compare25(x0, x1, False, x2) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs23(GT, GT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_lt21(x0, x1, ty_Float) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs23(LT, EQ) new_esEs23(EQ, LT) new_ltEs14(False, True) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs23(x0, x1, ty_Float) new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_not(False) new_primCompAux0(x0, EQ) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare26(x0, x1, False, x2, x3) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_asAs(False, x0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs23(EQ, EQ) new_esEs12(LT) new_lt20(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) new_esEs40(x0, x1, ty_Ordering) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_primPlusNat1(Zero, Succ(x0)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs26(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(Just(x0), Just(x1), ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0, x1, ty_@0) new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) new_compare33(x0, x1, ty_Double) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs8(Right(x0), Right(x1), x2, ty_Char) new_esEs30(x0, x1, ty_Bool) new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Float) new_lt9(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare17(x0, x1, x2, x3, False, x4, x5, x6) new_compare33(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_lt18(x0, x1, x2) new_lt22(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Int) new_primCmpNat0(Zero, Zero) new_esEs29(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False, x2, x3) new_esEs6(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Bool) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_ltEs3(Just(vyw490), Just(vyw500), app(app(ty_Either, bdf), bdg)) -> new_ltEs(vyw490, vyw500, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare4(Just(vyw50), Just(vyw300), cdf) -> new_compare24(vyw50, vyw300, new_esEs11(vyw50, vyw300, cdf), cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt0(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_primCompAux(vyw50, vyw300, new_compare0(vyw51, vyw301, df), df) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_primCompAux(vyw50, vyw300, new_compare0(vyw51, vyw301, df), df) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt0(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_compare(vyw51, vyw301, df) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt3(Just(vyw50), Just(vyw300), cdf) -> new_compare24(vyw50, vyw300, new_esEs11(vyw50, vyw300, cdf), cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(app(ty_Either, ff), fg)) -> new_ltEs(vyw492, vyw502, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_lt2(@2(vyw50, vyw51), @2(vyw300, vyw301), cah, cba) -> new_compare23(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs10(vyw50, vyw300, cah), new_esEs9(vyw51, vyw301, cba)), cah, cba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_lt(Left(vyw50), Left(vyw300), eh, fa) -> new_compare20(vyw50, vyw300, new_esEs4(vyw50, vyw300, eh), eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare1(Left(vyw50), Left(vyw300), eh, fa) -> new_compare20(vyw50, vyw300, new_esEs4(vyw50, vyw300, eh), eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt(Right(vyw50), Right(vyw300), eh, fa) -> new_compare21(vyw50, vyw300, new_esEs5(vyw50, vyw300, fa), eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vyw490), Just(vyw500), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs1(vyw490, vyw500, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs1(vyw492, vyw502, ga, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare3(@2(vyw50, vyw51), @2(vyw300, vyw301), cah, cba) -> new_compare23(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs10(vyw50, vyw300, cah), new_esEs9(vyw51, vyw301, cba)), cah, cba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs3(Just(vyw490), Just(vyw500), app(app(ty_@2, bed), bee)) -> new_ltEs2(vyw490, vyw500, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt1(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), beg, beh, bfa) -> new_compare22(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs8(vyw50, vyw300, beg), new_asAs(new_esEs7(vyw51, vyw301, beh), new_esEs6(vyw52, vyw302, bfa))), beg, beh, bfa) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_compare2(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), beg, beh, bfa) -> new_compare22(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs8(vyw50, vyw300, beg), new_asAs(new_esEs7(vyw51, vyw301, beh), new_esEs6(vyw52, vyw302, bfa))), beg, beh, bfa) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(app(ty_@2, gd), ge)) -> new_ltEs2(vyw492, vyw502, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(Just(vyw490), Just(vyw500), app(ty_Maybe, bef)) -> new_ltEs3(vyw490, vyw500, bef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vyw490), Just(vyw500), app(ty_[], bdh)) -> new_ltEs0(vyw490, vyw500, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(ty_Maybe, gf)) -> new_ltEs3(vyw492, vyw502, gf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(vyw49, vyw50, de) -> new_compare(vyw49, vyw50, de) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(app(ty_Either, bbc), bbd)) -> new_ltEs(vyw491, vyw501, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_[], bcg), bcf) -> new_lt0(vyw490, vyw500, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_ltEs1(vyw491, vyw501, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(app(ty_@2, bca), bcb)) -> new_ltEs2(vyw491, vyw501, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(ty_Maybe, bcc)) -> new_ltEs3(vyw491, vyw501, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(app(ty_Either, bfd), bfe)) -> new_ltEs(vyw107, vyw110, bfd, bfe) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs1(vyw107, vyw110, bfg, bfh, bga) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(app(ty_@2, bgb), bgc)) -> new_ltEs2(vyw107, vyw110, bgb, bgc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(ty_Maybe, bgd)) -> new_ltEs3(vyw107, vyw110, bgd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(app(ty_@3, bch), bda), bdb), bcf) -> new_lt1(vyw490, vyw500, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare1(Right(vyw50), Right(vyw300), eh, fa) -> new_compare21(vyw50, vyw300, new_esEs5(vyw50, vyw300, fa), eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(app(ty_Either, cbc), cbd)) -> new_ltEs(vyw119, vyw121, cbc, cbd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_primCompAux(vyw50, vyw300, vyw44, app(app(ty_@2, ee), ef)) -> new_compare3(vyw50, vyw300, ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(ty_[], ccg), ccf) -> new_lt0(vyw118, vyw120, ccg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs1(vyw119, vyw121, cbf, cbg, cbh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(app(ty_@2, cca), ccb)) -> new_ltEs2(vyw119, vyw121, cca, ccb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(ty_Maybe, ccc)) -> new_ltEs3(vyw119, vyw121, ccc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(app(app(ty_@3, cch), cda), cdb), ccf) -> new_lt1(vyw118, vyw120, cch, cda, cdb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare(:(vyw50, vyw51), :(vyw300, vyw301), df) -> new_compare(vyw51, vyw301, df) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_primCompAux(vyw50, vyw300, vyw44, app(app(app(ty_@3, eb), ec), ed)) -> new_compare2(vyw50, vyw300, eb, ec, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vyw50, vyw300, vyw44, app(app(ty_Either, dg), dh)) -> new_compare1(vyw50, vyw300, dg, dh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(vyw94, vyw95, False, app(app(ty_Either, cdg), cdh)) -> new_ltEs(vyw94, vyw95, cdg, cdh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vyw56, vyw57, False, ceh, app(app(ty_Either, cfa), cfb)) -> new_ltEs(vyw56, vyw57, cfa, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare24(vyw94, vyw95, False, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs1(vyw94, vyw95, ceb, cec, ced) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vyw56, vyw57, False, ceh, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs1(vyw56, vyw57, cfd, cfe, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare24(vyw94, vyw95, False, app(app(ty_@2, cee), cef)) -> new_ltEs2(vyw94, vyw95, cee, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vyw56, vyw57, False, ceh, app(app(ty_@2, cfg), cfh)) -> new_ltEs2(vyw56, vyw57, cfg, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare24(vyw94, vyw95, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyw94, vyw95, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vyw56, vyw57, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyw56, vyw57, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_Maybe, bde), bcf) -> new_lt3(vyw490, vyw500, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(ty_Maybe, cde), ccf) -> new_lt3(vyw118, vyw120, cde) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare24(vyw94, vyw95, False, app(ty_[], cea)) -> new_ltEs0(vyw94, vyw95, cea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vyw56, vyw57, False, ceh, app(ty_[], cfc)) -> new_ltEs0(vyw56, vyw57, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, fd, app(ty_[], fh)) -> new_ltEs0(vyw492, vyw502, fh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), bbb, app(ty_[], bbe)) -> new_ltEs0(vyw491, vyw501, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, bfc, app(ty_[], bff)) -> new_ltEs0(vyw107, vyw110, bff) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, cbb, app(ty_[], cbe)) -> new_ltEs0(vyw119, vyw121, cbe) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_Either, bcd), bce), bcf) -> new_lt(vyw490, vyw500, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_@2, bdc), bdd), bcf) -> new_lt2(vyw490, vyw500, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(app(ty_Either, ccd), cce), ccf) -> new_lt(vyw118, vyw120, ccd, cce) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare23(vyw118, vyw119, vyw120, vyw121, False, app(app(ty_@2, cdc), cdd), ccf) -> new_lt2(vyw118, vyw120, cdc, cdd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare20(vyw49, vyw50, False, app(ty_[], de), fb) -> new_compare(vyw49, vyw50, de) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw50, vyw300, vyw44, app(ty_[], ea)) -> new_compare(vyw50, vyw300, ea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw50, vyw300, vyw44, app(ty_Maybe, eg)) -> new_compare4(vyw50, vyw300, eg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(Left(vyw490), Left(vyw500), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw490, vyw500, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw490), Right(vyw500), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw490, vyw500, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), fb) -> new_ltEs(vyw490, vyw500, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), fb) -> new_ltEs(vyw490, vyw500, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(app(ty_Either, bbc), bbd)), fb) -> new_ltEs(vyw491, vyw501, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(app(ty_Either, ff), fg)), fb) -> new_ltEs(vyw492, vyw502, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_Either, bdf), bdg)), fb) -> new_ltEs(vyw490, vyw500, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(ty_[], hb), ha) -> new_lt0(vyw491, vyw501, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_[], bac), fd, ha) -> new_lt0(vyw490, vyw500, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(ty_[], bgh), bgg) -> new_lt0(vyw106, vyw109, bgh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(ty_[], caa), bfc, bgg) -> new_lt0(vyw105, vyw108, caa) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(ty_[], hb)), ha), fb) -> new_lt0(vyw491, vyw501, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_[], bcg)), bcf), fb) -> new_lt0(vyw490, vyw500, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_[], bac)), fd), ha), fb) -> new_lt0(vyw490, vyw500, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vyw490), Left(vyw500), app(app(app(ty_@3, bd), be), bf), bb) -> new_ltEs1(vyw490, vyw500, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vyw490), Right(vyw500), cb, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs1(vyw490, vyw500, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Left(vyw490), Left(vyw500), app(app(ty_@2, bg), bh), bb) -> new_ltEs2(vyw490, vyw500, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw490), Right(vyw500), cb, app(app(ty_@2, db), dc)) -> new_ltEs2(vyw490, vyw500, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Right(vyw490), Right(vyw500), cb, app(ty_Maybe, dd)) -> new_ltEs3(vyw490, vyw500, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vyw490), Left(vyw500), app(ty_Maybe, ca), bb) -> new_ltEs3(vyw490, vyw500, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Left(vyw490), Left(vyw500), app(ty_[], bc), bb) -> new_ltEs0(vyw490, vyw500, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw490), Right(vyw500), cb, app(ty_[], ce)) -> new_ltEs0(vyw490, vyw500, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(app(app(ty_@3, hc), hd), he), ha) -> new_lt1(vyw491, vyw501, hc, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(app(ty_@3, bad), bae), baf), fd, ha) -> new_lt1(vyw490, vyw500, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_Maybe, bba), fd, ha) -> new_lt3(vyw490, vyw500, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(ty_Maybe, hh), ha) -> new_lt3(vyw491, vyw501, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_Either, baa), bab), fd, ha) -> new_lt(vyw490, vyw500, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(app(ty_Either, gg), gh), ha) -> new_lt(vyw491, vyw501, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fc, app(app(ty_@2, hf), hg), ha) -> new_lt2(vyw491, vyw501, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_@2, bag), bah), fd, ha) -> new_lt2(vyw490, vyw500, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(app(ty_@3, bd), be), bf)), bb), fb) -> new_ltEs1(vyw490, vyw500, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(app(ty_@3, bea), beb), bec)), fb) -> new_ltEs1(vyw490, vyw500, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(app(app(ty_@3, cf), cg), da)), fb) -> new_ltEs1(vyw490, vyw500, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(app(app(ty_@3, ga), gb), gc)), fb) -> new_ltEs1(vyw492, vyw502, ga, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(app(app(ty_@3, bbf), bbg), bbh)), fb) -> new_ltEs1(vyw491, vyw501, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(app(ty_@2, gd), ge)), fb) -> new_ltEs2(vyw492, vyw502, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(app(ty_@2, bca), bcb)), fb) -> new_ltEs2(vyw491, vyw501, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_@2, bg), bh)), bb), fb) -> new_ltEs2(vyw490, vyw500, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_@2, bed), bee)), fb) -> new_ltEs2(vyw490, vyw500, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(app(ty_@2, db), dc)), fb) -> new_ltEs2(vyw490, vyw500, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(ty_Maybe, bcc)), fb) -> new_ltEs3(vyw491, vyw501, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_Maybe, bef)), fb) -> new_ltEs3(vyw490, vyw500, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_Maybe, ca)), bb), fb) -> new_ltEs3(vyw490, vyw500, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(ty_Maybe, dd)), fb) -> new_ltEs3(vyw490, vyw500, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(ty_Maybe, gf)), fb) -> new_ltEs3(vyw492, vyw502, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(app(app(ty_@3, bha), bhb), bhc), bgg) -> new_lt1(vyw106, vyw109, bha, bhb, bhc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(app(app(ty_@3, cab), cac), cad), bfc, bgg) -> new_lt1(vyw105, vyw108, cab, cac, cad) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(ty_Maybe, cag), bfc, bgg) -> new_lt3(vyw105, vyw108, cag) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(ty_Maybe, bhf), bgg) -> new_lt3(vyw106, vyw109, bhf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(app(ty_Either, bhg), bhh), bfc, bgg) -> new_lt(vyw105, vyw108, bhg, bhh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(app(ty_Either, bge), bgf), bgg) -> new_lt(vyw106, vyw109, bge, bgf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, app(app(ty_@2, cae), caf), bfc, bgg) -> new_lt2(vyw105, vyw108, cae, caf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare22(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, bfb, app(app(ty_@2, bhd), bhe), bgg) -> new_lt2(vyw106, vyw109, bhd, bhe) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(app(ty_@3, bch), bda), bdb)), bcf), fb) -> new_lt1(vyw490, vyw500, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(app(ty_@3, bad), bae), baf)), fd), ha), fb) -> new_lt1(vyw490, vyw500, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(app(app(ty_@3, hc), hd), he)), ha), fb) -> new_lt1(vyw491, vyw501, hc, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_Maybe, bde)), bcf), fb) -> new_lt3(vyw490, vyw500, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_Maybe, bba)), fd), ha), fb) -> new_lt3(vyw490, vyw500, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(ty_Maybe, hh)), ha), fb) -> new_lt3(vyw491, vyw501, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bbb), app(ty_[], bbe)), fb) -> new_ltEs0(vyw491, vyw501, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, cb), app(ty_[], ce)), fb) -> new_ltEs0(vyw490, vyw500, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_[], bc)), bb), fb) -> new_ltEs0(vyw490, vyw500, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_[], bdh)), fb) -> new_ltEs0(vyw490, vyw500, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), fd), app(ty_[], fh)), fb) -> new_ltEs0(vyw492, vyw502, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_Either, bcd), bce)), bcf), fb) -> new_lt(vyw490, vyw500, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_Either, baa), bab)), fd), ha), fb) -> new_lt(vyw490, vyw500, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(app(ty_Either, gg), gh)), ha), fb) -> new_lt(vyw491, vyw501, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_@2, bag), bah)), fd), ha), fb) -> new_lt2(vyw490, vyw500, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fc), app(app(ty_@2, hf), hg)), ha), fb) -> new_lt2(vyw491, vyw501, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_@2, bdc), bdd)), bcf), fb) -> new_lt2(vyw490, vyw500, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyw30000), Succ(vyw5100)) -> new_primMulNat(vyw30000, Succ(vyw5100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vyw30000), Succ(vyw5100)) -> new_primMulNat(vyw30000, Succ(vyw5100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs3(Just(vyw500), Just(vyw3000), app(app(ty_Either, bde), bdf)) -> new_esEs1(vyw500, vyw3000, bde, bdf) new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_Either, fc), fd), fa) -> new_esEs1(vyw500, vyw3000, fc, fd) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bda), he, bba) -> new_esEs3(vyw500, vyw3000, bda) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, ec), ed), ee), dg) -> new_esEs2(vyw500, vyw3000, ec, ed, ee) new_esEs1(Right(vyw500), Right(vyw3000), gb, app(ty_Maybe, hc)) -> new_esEs3(vyw500, vyw3000, hc) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(app(ty_@2, hf), hg)) -> new_esEs0(vyw502, vyw3002, hf, hg) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(ty_Maybe, baf)) -> new_esEs3(vyw502, vyw3002, baf) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ef), dg) -> new_esEs3(vyw500, vyw3000, ef) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(ty_Maybe, bbh), bba) -> new_esEs3(vyw501, vyw3001, bbh) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(app(ty_@2, cc), cd)) -> new_esEs0(vyw501, vyw3001, cc, cd) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(ty_Maybe, dd)) -> new_esEs3(vyw501, vyw3001, dd) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bca), bcb), he, bba) -> new_esEs0(vyw500, vyw3000, bca, bcb) new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), h) -> new_esEs(vyw501, vyw3001, h) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(ty_[], hh)) -> new_esEs(vyw502, vyw3002, hh) new_esEs3(Just(vyw500), Just(vyw3000), app(ty_Maybe, beb)) -> new_esEs3(vyw500, vyw3000, beb) new_esEs1(Right(vyw500), Right(vyw3000), gb, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs2(vyw500, vyw3000, gh, ha, hb) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(ty_[], bbb), bba) -> new_esEs(vyw501, vyw3001, bbb) new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], bc)) -> new_esEs(vyw500, vyw3000, bc) new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_@2, eg), eh), fa) -> new_esEs0(vyw500, vyw3000, eg, eh) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bcc), he, bba) -> new_esEs(vyw500, vyw3000, bcc) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(app(app(ty_@3, bbe), bbf), bbg), bba) -> new_esEs2(vyw501, vyw3001, bbe, bbf, bbg) new_esEs1(Left(vyw500), Left(vyw3000), app(ty_Maybe, ga), fa) -> new_esEs3(vyw500, vyw3000, ga) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bcd), bce), he, bba) -> new_esEs1(vyw500, vyw3000, bcd, bce) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bcf), bcg), bch), he, bba) -> new_esEs2(vyw500, vyw3000, bcf, bcg, bch) new_esEs1(Left(vyw500), Left(vyw3000), app(ty_[], fb), fa) -> new_esEs(vyw500, vyw3000, fb) new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, bd), be)) -> new_esEs1(vyw500, vyw3000, bd, be) new_esEs3(Just(vyw500), Just(vyw3000), app(ty_[], bdd)) -> new_esEs(vyw500, vyw3000, bdd) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(app(app(ty_@3, da), db), dc)) -> new_esEs2(vyw501, vyw3001, da, db, dc) new_esEs3(Just(vyw500), Just(vyw3000), app(app(ty_@2, bdb), bdc)) -> new_esEs0(vyw500, vyw3000, bdb, bdc) new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, ca)) -> new_esEs3(vyw500, vyw3000, ca) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], dh), dg) -> new_esEs(vyw500, vyw3000, dh) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(app(ty_Either, bbc), bbd), bba) -> new_esEs1(vyw501, vyw3001, bbc, bbd) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(ty_[], ce)) -> new_esEs(vyw501, vyw3001, ce) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(app(ty_Either, cf), cg)) -> new_esEs1(vyw501, vyw3001, cf, cg) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, ea), eb), dg) -> new_esEs1(vyw500, vyw3000, ea, eb) new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, ba), bb)) -> new_esEs0(vyw500, vyw3000, ba, bb) new_esEs1(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ff), fg), fh), fa) -> new_esEs2(vyw500, vyw3000, ff, fg, fh) new_esEs1(Right(vyw500), Right(vyw3000), gb, app(ty_[], ge)) -> new_esEs(vyw500, vyw3000, ge) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs2(vyw502, vyw3002, bac, bad, bae) new_esEs1(Right(vyw500), Right(vyw3000), gb, app(app(ty_@2, gc), gd)) -> new_esEs0(vyw500, vyw3000, gc, gd) new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, de), df), dg) -> new_esEs0(vyw500, vyw3000, de, df) new_esEs1(Right(vyw500), Right(vyw3000), gb, app(app(ty_Either, gf), gg)) -> new_esEs1(vyw500, vyw3000, gf, gg) new_esEs3(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs2(vyw500, vyw3000, bdg, bdh, bea) new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs2(vyw500, vyw3000, bf, bg, bh) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(app(ty_Either, baa), bab)) -> new_esEs1(vyw502, vyw3002, baa, bab) new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(app(ty_@2, bag), bah), bba) -> new_esEs0(vyw501, vyw3001, bag, bah) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs3(Just(vyw500), Just(vyw3000), app(ty_Maybe, beb)) -> new_esEs3(vyw500, vyw3000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(vyw500), Just(vyw3000), app(app(ty_Either, bde), bdf)) -> new_esEs1(vyw500, vyw3000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs2(vyw500, vyw3000, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(vyw500), Just(vyw3000), app(app(ty_@2, bdb), bdc)) -> new_esEs0(vyw500, vyw3000, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vyw500), Just(vyw3000), app(ty_[], bdd)) -> new_esEs(vyw500, vyw3000, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, ca)) -> new_esEs3(vyw500, vyw3000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, bd), be)) -> new_esEs1(vyw500, vyw3000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs2(vyw500, vyw3000, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, ba), bb)) -> new_esEs0(vyw500, vyw3000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vyw500), Right(vyw3000), gb, app(ty_Maybe, hc)) -> new_esEs3(vyw500, vyw3000, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(vyw500), Left(vyw3000), app(ty_Maybe, ga), fa) -> new_esEs3(vyw500, vyw3000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_Either, fc), fd), fa) -> new_esEs1(vyw500, vyw3000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vyw500), Right(vyw3000), gb, app(app(ty_Either, gf), gg)) -> new_esEs1(vyw500, vyw3000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Right(vyw500), Right(vyw3000), gb, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs2(vyw500, vyw3000, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ff), fg), fh), fa) -> new_esEs2(vyw500, vyw3000, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_@2, eg), eh), fa) -> new_esEs0(vyw500, vyw3000, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vyw500), Right(vyw3000), gb, app(app(ty_@2, gc), gd)) -> new_esEs0(vyw500, vyw3000, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vyw500), Left(vyw3000), app(ty_[], fb), fa) -> new_esEs(vyw500, vyw3000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Right(vyw500), Right(vyw3000), gb, app(ty_[], ge)) -> new_esEs(vyw500, vyw3000, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bda), he, bba) -> new_esEs3(vyw500, vyw3000, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(ty_Maybe, baf)) -> new_esEs3(vyw502, vyw3002, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(ty_Maybe, bbh), bba) -> new_esEs3(vyw501, vyw3001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ef), dg) -> new_esEs3(vyw500, vyw3000, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(ty_Maybe, dd)) -> new_esEs3(vyw501, vyw3001, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bcd), bce), he, bba) -> new_esEs1(vyw500, vyw3000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(app(ty_Either, bbc), bbd), bba) -> new_esEs1(vyw501, vyw3001, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(app(ty_Either, baa), bab)) -> new_esEs1(vyw502, vyw3002, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(app(ty_Either, cf), cg)) -> new_esEs1(vyw501, vyw3001, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, ea), eb), dg) -> new_esEs1(vyw500, vyw3000, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(app(app(ty_@3, bbe), bbf), bbg), bba) -> new_esEs2(vyw501, vyw3001, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bcf), bcg), bch), he, bba) -> new_esEs2(vyw500, vyw3000, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs2(vyw502, vyw3002, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, ec), ed), ee), dg) -> new_esEs2(vyw500, vyw3000, ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(app(app(ty_@3, da), db), dc)) -> new_esEs2(vyw501, vyw3001, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(app(ty_@2, hf), hg)) -> new_esEs0(vyw502, vyw3002, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bca), bcb), he, bba) -> new_esEs0(vyw500, vyw3000, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(app(ty_@2, bag), bah), bba) -> new_esEs0(vyw501, vyw3001, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, he, app(ty_[], hh)) -> new_esEs(vyw502, vyw3002, hh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), hd, app(ty_[], bbb), bba) -> new_esEs(vyw501, vyw3001, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bcc), he, bba) -> new_esEs(vyw500, vyw3000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(app(ty_@2, cc), cd)) -> new_esEs0(vyw501, vyw3001, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, de), df), dg) -> new_esEs0(vyw500, vyw3000, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], dh), dg) -> new_esEs(vyw500, vyw3000, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cb, app(ty_[], ce)) -> new_esEs(vyw501, vyw3001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), h) -> new_esEs(vyw501, vyw3001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], bc)) -> new_esEs(vyw500, vyw3000, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupWithDefaultFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, h, ba) -> new_lookupWithDefaultFM01(vyw15, vyw19, vyw21, h, ba) new_lookupWithDefaultFM01(vyw4, Branch(vyw30, vyw31, vyw32, vyw33, vyw34), vyw5, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw30, vyw31, vyw32, vyw33, vyw34, vyw5, new_lt24(vyw5, vyw30, be), bd, be) new_lookupWithDefaultFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, h, ba) -> new_lookupWithDefaultFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_gt(vyw21, vyw16, ba), h, ba) new_lookupWithDefaultFM00(vyw32, vyw33, vyw34, vyw35, vyw36, vyw37, vyw38, True, bb, bc) -> new_lookupWithDefaultFM01(vyw32, vyw37, vyw38, bb, bc) The TRS R consists of the following rules: new_lt20(vyw490, vyw500, ty_Double) -> new_lt12(vyw490, vyw500) new_esEs37(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_lt9(vyw106, vyw109, ty_Int) -> new_lt16(vyw106, vyw109) new_esEs8(vyw50, vyw300, app(ty_Maybe, deg)) -> new_esEs26(vyw50, vyw300, deg) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_pePe(True, vyw197) -> True new_esEs9(vyw51, vyw301, app(app(ty_@2, dhh), eaa)) -> new_esEs14(vyw51, vyw301, dhh, eaa) new_ltEs20(vyw107, vyw110, app(ty_Maybe, hg)) -> new_ltEs15(vyw107, vyw110, hg) new_esEs38(vyw500, vyw3000, ty_Bool) -> new_esEs19(vyw500, vyw3000) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_lt10(vyw105, vyw108, ty_Float) -> new_lt5(vyw105, vyw108) new_ltEs8(Left(vyw490), Left(vyw500), ty_Ordering, de) -> new_ltEs7(vyw490, vyw500) new_esEs4(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_esEs23(LT, LT) -> True new_esEs27(vyw106, vyw109, ty_Float) -> new_esEs20(vyw106, vyw109) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare26(vyw49, vyw50, True, db, dc) -> EQ new_esEs30(vyw118, vyw120, app(ty_Ratio, bgg)) -> new_esEs16(vyw118, vyw120, bgg) new_compare5(GT, EQ) -> GT new_esEs10(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_esEs38(vyw500, vyw3000, app(ty_[], fed)) -> new_esEs17(vyw500, vyw3000, fed) new_esEs36(vyw502, vyw3002, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs24(vyw502, vyw3002, fcc, fcd, fce) new_lt24(vyw5, vyw30, app(ty_Ratio, ef)) -> new_lt6(vyw5, vyw30, ef) new_esEs29(vyw490, vyw500, app(ty_Maybe, beg)) -> new_esEs26(vyw490, vyw500, beg) new_lt20(vyw490, vyw500, ty_Float) -> new_lt5(vyw490, vyw500) new_ltEs20(vyw107, vyw110, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs11(vyw107, vyw110, hb, hc, hd) new_fsEs(vyw192) -> new_not(new_esEs23(vyw192, GT)) new_esEs21(Left(vyw500), Right(vyw3000), dgc, deh) -> False new_esEs21(Right(vyw500), Left(vyw3000), dgc, deh) -> False new_esEs6(vyw52, vyw302, ty_Float) -> new_esEs20(vyw52, vyw302) new_ltEs15(Just(vyw490), Just(vyw500), ty_Bool) -> new_ltEs14(vyw490, vyw500) new_ltEs19(vyw49, vyw50, ty_Bool) -> new_ltEs14(vyw49, vyw50) new_compare5(GT, LT) -> GT new_compare5(EQ, LT) -> GT new_lt22(vyw491, vyw501, ty_Int) -> new_lt16(vyw491, vyw501) new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) new_compare18(Nothing, Just(vyw300), ccb) -> LT new_ltEs8(Left(vyw490), Left(vyw500), ty_Integer, de) -> new_ltEs17(vyw490, vyw500) new_esEs27(vyw106, vyw109, ty_Integer) -> new_esEs15(vyw106, vyw109) new_esEs40(vyw500, vyw3000, ty_Double) -> new_esEs18(vyw500, vyw3000) new_lt10(vyw105, vyw108, ty_Double) -> new_lt12(vyw105, vyw108) new_ltEs22(vyw119, vyw121, ty_Double) -> new_ltEs6(vyw119, vyw121) new_primCompAux0(vyw62, LT) -> LT new_ltEs19(vyw49, vyw50, ty_Char) -> new_ltEs5(vyw49, vyw50) new_esEs6(vyw52, vyw302, ty_Integer) -> new_esEs15(vyw52, vyw302) new_esEs9(vyw51, vyw301, ty_Char) -> new_esEs13(vyw51, vyw301) new_esEs35(vyw500, vyw3000, ty_Int) -> new_esEs22(vyw500, vyw3000) new_not(True) -> False new_esEs26(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs22(vyw119, vyw121, app(ty_[], bfd)) -> new_ltEs9(vyw119, vyw121, bfd) new_ltEs19(vyw49, vyw50, ty_@0) -> new_ltEs18(vyw49, vyw50) new_esEs4(vyw50, vyw300, app(app(ty_@2, ffc), ffd)) -> new_esEs14(vyw50, vyw300, ffc, ffd) new_ltEs8(Left(vyw490), Left(vyw500), app(ty_Ratio, caa), de) -> new_ltEs10(vyw490, vyw500, caa) new_ltEs20(vyw107, vyw110, ty_Integer) -> new_ltEs17(vyw107, vyw110) new_esEs7(vyw51, vyw301, app(ty_Ratio, dcf)) -> new_esEs16(vyw51, vyw301, dcf) new_esEs35(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) new_esEs40(vyw500, vyw3000, ty_Bool) -> new_esEs19(vyw500, vyw3000) new_lt9(vyw106, vyw109, app(app(ty_@2, bag), bah)) -> new_lt17(vyw106, vyw109, bag, bah) new_ltEs20(vyw107, vyw110, ty_Int) -> new_ltEs12(vyw107, vyw110) new_compare17(vyw185, vyw186, vyw187, vyw188, True, vyw190, efb, efc) -> new_compare110(vyw185, vyw186, vyw187, vyw188, True, efb, efc) new_lt20(vyw490, vyw500, app(app(app(ty_@3, beb), bec), bed)) -> new_lt15(vyw490, vyw500, beb, bec, bed) new_esEs32(vyw490, vyw500, ty_Integer) -> new_esEs15(vyw490, vyw500) new_esEs10(vyw50, vyw300, app(ty_Ratio, ebd)) -> new_esEs16(vyw50, vyw300, ebd) new_ltEs8(Left(vyw490), Left(vyw500), app(app(ty_Either, bhf), bhg), de) -> new_ltEs8(vyw490, vyw500, bhf, bhg) new_esEs7(vyw51, vyw301, app(ty_[], dcg)) -> new_esEs17(vyw51, vyw301, dcg) new_esEs5(vyw50, vyw300, app(app(app(ty_@3, fgc), fgd), fge)) -> new_esEs24(vyw50, vyw300, fgc, fgd, fge) new_primEqNat0(Succ(vyw5000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_esEs7(vyw51, vyw301, ty_Ordering) -> new_esEs23(vyw51, vyw301) new_esEs32(vyw490, vyw500, app(app(ty_@2, dad), dae)) -> new_esEs14(vyw490, vyw500, dad, dae) new_esEs31(vyw491, vyw501, app(ty_Maybe, chd)) -> new_esEs26(vyw491, vyw501, chd) new_lt20(vyw490, vyw500, ty_Integer) -> new_lt19(vyw490, vyw500) new_ltEs22(vyw119, vyw121, app(app(ty_@2, bga), bgb)) -> new_ltEs13(vyw119, vyw121, bga, bgb) new_compare12(Integer(vyw50), Integer(vyw300)) -> new_primCmpInt(vyw50, vyw300) new_esEs40(vyw500, vyw3000, ty_Int) -> new_esEs22(vyw500, vyw3000) new_ltEs21(vyw491, vyw501, ty_Float) -> new_ltEs16(vyw491, vyw501) new_lt11(vyw5, vyw30) -> new_esEs12(new_compare9(vyw5, vyw30)) new_lt10(vyw105, vyw108, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt15(vyw105, vyw108, bbf, bbg, bbh) new_esEs38(vyw500, vyw3000, ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_primCmpInt(Pos(Succ(vyw500)), Neg(vyw300)) -> GT new_esEs19(False, False) -> True new_ltEs24(vyw492, vyw502, ty_Char) -> new_ltEs5(vyw492, vyw502) new_esEs28(vyw105, vyw108, ty_Bool) -> new_esEs19(vyw105, vyw108) new_esEs10(vyw50, vyw300, app(app(ty_@2, ebb), ebc)) -> new_esEs14(vyw50, vyw300, ebb, ebc) new_ltEs21(vyw491, vyw501, ty_Bool) -> new_ltEs14(vyw491, vyw501) new_esEs30(vyw118, vyw120, ty_Double) -> new_esEs18(vyw118, vyw120) new_esEs36(vyw502, vyw3002, app(ty_Maybe, fcf)) -> new_esEs26(vyw502, vyw3002, fcf) new_ltEs7(GT, GT) -> True new_esEs35(vyw500, vyw3000, ty_Double) -> new_esEs18(vyw500, vyw3000) new_primPlusNat1(Succ(vyw19800), Succ(vyw51000)) -> Succ(Succ(new_primPlusNat1(vyw19800, vyw51000))) new_compare32(Left(vyw50), Right(vyw300), eeh, efa) -> LT new_primCmpNat0(Zero, Succ(vyw3000)) -> LT new_esEs21(Left(vyw500), Left(vyw3000), app(app(ty_@2, dfa), dfb), deh) -> new_esEs14(vyw500, vyw3000, dfa, dfb) new_esEs11(vyw50, vyw300, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs24(vyw50, vyw300, cda, cdb, cdc) new_esEs4(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_ltEs23(vyw56, vyw57, ty_Float) -> new_ltEs16(vyw56, vyw57) new_ltEs21(vyw491, vyw501, app(app(ty_Either, bcd), bce)) -> new_ltEs8(vyw491, vyw501, bcd, bce) new_esEs11(vyw50, vyw300, app(ty_Maybe, cdd)) -> new_esEs26(vyw50, vyw300, cdd) new_esEs30(vyw118, vyw120, ty_Ordering) -> new_esEs23(vyw118, vyw120) new_lt24(vyw5, vyw30, ty_Ordering) -> new_lt4(vyw5, vyw30) new_esEs38(vyw500, vyw3000, app(app(ty_Either, fee), fef)) -> new_esEs21(vyw500, vyw3000, fee, fef) new_lt10(vyw105, vyw108, ty_Int) -> new_lt16(vyw105, vyw108) new_ltEs21(vyw491, vyw501, ty_@0) -> new_ltEs18(vyw491, vyw501) new_ltEs15(Just(vyw490), Just(vyw500), app(app(ty_Either, ecd), ece)) -> new_ltEs8(vyw490, vyw500, ecd, ece) new_esEs36(vyw502, vyw3002, ty_@0) -> new_esEs25(vyw502, vyw3002) new_lt22(vyw491, vyw501, ty_Char) -> new_lt11(vyw491, vyw501) new_esEs17([], [], ege) -> True new_esEs27(vyw106, vyw109, app(app(ty_@2, bag), bah)) -> new_esEs14(vyw106, vyw109, bag, bah) new_lt24(vyw5, vyw30, app(ty_Maybe, ccb)) -> new_lt18(vyw5, vyw30, ccb) new_lt9(vyw106, vyw109, ty_Ordering) -> new_lt4(vyw106, vyw109) new_lt9(vyw106, vyw109, app(app(app(ty_@3, bad), bae), baf)) -> new_lt15(vyw106, vyw109, bad, bae, baf) new_esEs30(vyw118, vyw120, app(ty_[], bgf)) -> new_esEs17(vyw118, vyw120, bgf) new_ltEs14(True, True) -> True new_lt24(vyw5, vyw30, app(ty_[], efg)) -> new_lt14(vyw5, vyw30, efg) new_ltEs20(vyw107, vyw110, app(ty_Ratio, ha)) -> new_ltEs10(vyw107, vyw110, ha) new_esEs26(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs20(vyw500, vyw3000) new_esEs31(vyw491, vyw501, app(app(ty_Either, cgc), cgd)) -> new_esEs21(vyw491, vyw501, cgc, cgd) new_ltEs23(vyw56, vyw57, ty_Integer) -> new_ltEs17(vyw56, vyw57) new_esEs38(vyw500, vyw3000, ty_Int) -> new_esEs22(vyw500, vyw3000) new_lt22(vyw491, vyw501, ty_Ordering) -> new_lt4(vyw491, vyw501) new_esEs9(vyw51, vyw301, app(ty_Ratio, eab)) -> new_esEs16(vyw51, vyw301, eab) new_compare26(vyw49, vyw50, False, db, dc) -> new_compare11(vyw49, vyw50, new_ltEs19(vyw49, vyw50, db), db, dc) new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_esEs40(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) new_esEs9(vyw51, vyw301, ty_Double) -> new_esEs18(vyw51, vyw301) new_ltEs22(vyw119, vyw121, ty_Int) -> new_ltEs12(vyw119, vyw121) new_primCmpInt(Neg(Zero), Pos(Succ(vyw3000))) -> LT new_compare15(vyw5, vyw30) -> new_primCmpInt(vyw5, vyw30) new_lt22(vyw491, vyw501, app(app(app(ty_@3, cgg), cgh), cha)) -> new_lt15(vyw491, vyw501, cgg, cgh, cha) new_esEs30(vyw118, vyw120, ty_Bool) -> new_esEs19(vyw118, vyw120) new_primMulInt(Pos(vyw3000), Pos(vyw510)) -> Pos(new_primMulNat0(vyw3000, vyw510)) new_esEs8(vyw50, vyw300, app(app(app(ty_@3, ded), dee), def)) -> new_esEs24(vyw50, vyw300, ded, dee, def) new_esEs29(vyw490, vyw500, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs24(vyw490, vyw500, beb, bec, bed) new_esEs40(vyw500, vyw3000, ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_esEs5(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs9(vyw51, vyw301, ty_Float) -> new_esEs20(vyw51, vyw301) new_lt21(vyw118, vyw120, app(app(ty_Either, bgd), bge)) -> new_lt13(vyw118, vyw120, bgd, bge) new_lt9(vyw106, vyw109, ty_Double) -> new_lt12(vyw106, vyw109) new_esEs21(Left(vyw500), Left(vyw3000), ty_Integer, deh) -> new_esEs15(vyw500, vyw3000) new_ltEs8(Right(vyw490), Left(vyw500), dd, de) -> False new_compare10(vyw156, vyw157, True, gbc) -> LT new_ltEs9(vyw49, vyw50, df) -> new_fsEs(new_compare0(vyw49, vyw50, df)) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw5100)) -> Zero new_ltEs6(vyw49, vyw50) -> new_fsEs(new_compare13(vyw49, vyw50)) new_ltEs22(vyw119, vyw121, app(ty_Ratio, bfe)) -> new_ltEs10(vyw119, vyw121, bfe) new_lt21(vyw118, vyw120, app(ty_[], bgf)) -> new_lt14(vyw118, vyw120, bgf) new_esEs10(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_esEs28(vyw105, vyw108, ty_Ordering) -> new_esEs23(vyw105, vyw108) new_esEs28(vyw105, vyw108, app(ty_[], bbd)) -> new_esEs17(vyw105, vyw108, bbd) new_compare17(vyw185, vyw186, vyw187, vyw188, False, vyw190, efb, efc) -> new_compare110(vyw185, vyw186, vyw187, vyw188, vyw190, efb, efc) new_esEs7(vyw51, vyw301, ty_Double) -> new_esEs18(vyw51, vyw301) new_esEs20(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs22(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_esEs21(Left(vyw500), Left(vyw3000), app(ty_Maybe, dgb), deh) -> new_esEs26(vyw500, vyw3000, dgb) new_ltEs8(Right(vyw490), Right(vyw500), dd, ty_Int) -> new_ltEs12(vyw490, vyw500) new_ltEs4(vyw94, vyw95, app(app(ty_Either, bg), bh)) -> new_ltEs8(vyw94, vyw95, bg, bh) new_esEs7(vyw51, vyw301, ty_Bool) -> new_esEs19(vyw51, vyw301) new_ltEs19(vyw49, vyw50, app(app(ty_Either, dd), de)) -> new_ltEs8(vyw49, vyw50, dd, de) new_lt21(vyw118, vyw120, app(ty_Ratio, bgg)) -> new_lt6(vyw118, vyw120, bgg) new_ltEs16(vyw49, vyw50) -> new_fsEs(new_compare6(vyw49, vyw50)) new_primPlusNat1(Succ(vyw19800), Zero) -> Succ(vyw19800) new_primPlusNat1(Zero, Succ(vyw51000)) -> Succ(vyw51000) new_esEs27(vyw106, vyw109, ty_Char) -> new_esEs13(vyw106, vyw109) new_lt20(vyw490, vyw500, ty_Int) -> new_lt16(vyw490, vyw500) new_esEs35(vyw500, vyw3000, app(ty_Ratio, egh)) -> new_esEs16(vyw500, vyw3000, egh) new_esEs32(vyw490, vyw500, ty_Double) -> new_esEs18(vyw490, vyw500) new_esEs26(Just(vyw500), Just(vyw3000), app(app(ty_@2, eh), fa)) -> new_esEs14(vyw500, vyw3000, eh, fa) new_lt23(vyw490, vyw500, app(app(ty_Either, che), chf)) -> new_lt13(vyw490, vyw500, che, chf) new_esEs12(LT) -> True new_esEs40(vyw500, vyw3000, app(app(ty_Either, gae), gaf)) -> new_esEs21(vyw500, vyw3000, gae, gaf) new_compare31(@2(vyw50, vyw51), @2(vyw300, vyw301), dhf, dhg) -> new_compare28(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs10(vyw50, vyw300, dhf), new_esEs9(vyw51, vyw301, dhg)), dhf, dhg) new_esEs6(vyw52, vyw302, app(app(ty_@2, dbb), dbc)) -> new_esEs14(vyw52, vyw302, dbb, dbc) new_esEs28(vyw105, vyw108, app(app(ty_Either, bbb), bbc)) -> new_esEs21(vyw105, vyw108, bbb, bbc) new_esEs4(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_compare32(Left(vyw50), Left(vyw300), eeh, efa) -> new_compare26(vyw50, vyw300, new_esEs4(vyw50, vyw300, eeh), eeh, efa) new_esEs40(vyw500, vyw3000, app(ty_[], gad)) -> new_esEs17(vyw500, vyw3000, gad) new_ltEs24(vyw492, vyw502, ty_@0) -> new_ltEs18(vyw492, vyw502) new_esEs29(vyw490, vyw500, app(app(ty_Either, bdf), bdg)) -> new_esEs21(vyw490, vyw500, bdf, bdg) new_gt(vyw21, vyw16, app(app(ty_Either, edf), edg)) -> new_esEs41(new_compare32(vyw21, vyw16, edf, edg)) new_compare5(LT, LT) -> EQ new_esEs37(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) new_esEs38(vyw500, vyw3000, ty_Char) -> new_esEs13(vyw500, vyw3000) new_compare25(vyw94, vyw95, True, bf) -> EQ new_esEs31(vyw491, vyw501, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs24(vyw491, vyw501, cgg, cgh, cha) new_ltEs17(vyw49, vyw50) -> new_fsEs(new_compare12(vyw49, vyw50)) new_esEs11(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_ltEs18(vyw49, vyw50) -> new_fsEs(new_compare7(vyw49, vyw50)) new_esEs30(vyw118, vyw120, app(app(ty_@2, bhc), bhd)) -> new_esEs14(vyw118, vyw120, bhc, bhd) new_esEs5(vyw50, vyw300, app(ty_[], ffh)) -> new_esEs17(vyw50, vyw300, ffh) new_ltEs4(vyw94, vyw95, ty_Bool) -> new_ltEs14(vyw94, vyw95) new_lt23(vyw490, vyw500, ty_Double) -> new_lt12(vyw490, vyw500) new_esEs5(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_esEs5(vyw50, vyw300, app(app(ty_Either, fga), fgb)) -> new_esEs21(vyw50, vyw300, fga, fgb) new_ltEs20(vyw107, vyw110, app(app(ty_@2, he), hf)) -> new_ltEs13(vyw107, vyw110, he, hf) new_lt18(vyw5, vyw30, ccb) -> new_esEs12(new_compare18(vyw5, vyw30, ccb)) new_esEs18(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs22(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) new_esEs32(vyw490, vyw500, ty_Float) -> new_esEs20(vyw490, vyw500) new_esEs21(Right(vyw500), Right(vyw3000), dgc, ty_@0) -> new_esEs25(vyw500, vyw3000) new_lt20(vyw490, vyw500, app(app(ty_Either, bdf), bdg)) -> new_lt13(vyw490, vyw500, bdf, bdg) new_compare13(Double(vyw50, Pos(vyw510)), Double(vyw300, Neg(vyw3010))) -> new_compare15(new_sr(vyw50, Pos(vyw3010)), new_sr(Neg(vyw510), vyw300)) new_compare13(Double(vyw50, Neg(vyw510)), Double(vyw300, Pos(vyw3010))) -> new_compare15(new_sr(vyw50, Neg(vyw3010)), new_sr(Pos(vyw510), vyw300)) new_esEs4(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_esEs12(GT) -> False new_esEs12(EQ) -> False new_ltEs19(vyw49, vyw50, app(ty_[], df)) -> new_ltEs9(vyw49, vyw50, df) new_esEs28(vyw105, vyw108, app(app(ty_@2, bca), bcb)) -> new_esEs14(vyw105, vyw108, bca, bcb) new_lt9(vyw106, vyw109, ty_Integer) -> new_lt19(vyw106, vyw109) new_esEs35(vyw500, vyw3000, ty_Float) -> new_esEs20(vyw500, vyw3000) new_ltEs24(vyw492, vyw502, ty_Float) -> new_ltEs16(vyw492, vyw502) new_lt16(vyw5, vyw30) -> new_esEs12(new_compare15(vyw5, vyw30)) new_ltEs4(vyw94, vyw95, ty_Integer) -> new_ltEs17(vyw94, vyw95) new_esEs21(Left(vyw500), Left(vyw3000), app(ty_Ratio, dfc), deh) -> new_esEs16(vyw500, vyw3000, dfc) new_esEs30(vyw118, vyw120, app(app(ty_Either, bgd), bge)) -> new_esEs21(vyw118, vyw120, bgd, bge) new_esEs10(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_ltEs24(vyw492, vyw502, ty_Double) -> new_ltEs6(vyw492, vyw502) new_esEs39(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_esEs29(vyw490, vyw500, ty_Integer) -> new_esEs15(vyw490, vyw500) new_lt23(vyw490, vyw500, app(app(app(ty_@3, daa), dab), dac)) -> new_lt15(vyw490, vyw500, daa, dab, dac) new_esEs35(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs27(vyw106, vyw109, ty_Int) -> new_esEs22(vyw106, vyw109) new_esEs30(vyw118, vyw120, ty_Integer) -> new_esEs15(vyw118, vyw120) new_esEs37(vyw501, vyw3001, app(ty_Maybe, fdh)) -> new_esEs26(vyw501, vyw3001, fdh) new_esEs33(vyw501, vyw3001, ty_Int) -> new_esEs22(vyw501, vyw3001) new_esEs15(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) new_esEs8(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_compare0([], :(vyw300, vyw301), efg) -> LT new_esEs7(vyw51, vyw301, app(app(ty_@2, dcd), dce)) -> new_esEs14(vyw51, vyw301, dcd, dce) new_esEs21(Right(vyw500), Right(vyw3000), dgc, app(app(ty_@2, dgd), dge)) -> new_esEs14(vyw500, vyw3000, dgd, dge) new_ltEs12(vyw49, vyw50) -> new_fsEs(new_compare15(vyw49, vyw50)) new_lt23(vyw490, vyw500, app(ty_[], chg)) -> new_lt14(vyw490, vyw500, chg) new_lt20(vyw490, vyw500, ty_Bool) -> new_lt8(vyw490, vyw500) new_esEs10(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_ltEs20(vyw107, vyw110, ty_Float) -> new_ltEs16(vyw107, vyw110) new_esEs39(vyw501, vyw3001, app(app(ty_Either, fhc), fhd)) -> new_esEs21(vyw501, vyw3001, fhc, fhd) new_esEs31(vyw491, vyw501, ty_Ordering) -> new_esEs23(vyw491, vyw501) new_compare33(vyw50, vyw300, ty_Float) -> new_compare6(vyw50, vyw300) new_esEs38(vyw500, vyw3000, app(app(app(ty_@3, feg), feh), ffa)) -> new_esEs24(vyw500, vyw3000, feg, feh, ffa) new_ltEs22(vyw119, vyw121, ty_@0) -> new_ltEs18(vyw119, vyw121) new_primCmpInt(Pos(Succ(vyw500)), Pos(vyw300)) -> new_primCmpNat0(Succ(vyw500), vyw300) new_esEs9(vyw51, vyw301, app(ty_[], eac)) -> new_esEs17(vyw51, vyw301, eac) new_esEs35(vyw500, vyw3000, ty_@0) -> new_esEs25(vyw500, vyw3000) new_esEs28(vyw105, vyw108, ty_Char) -> new_esEs13(vyw105, vyw108) new_lt21(vyw118, vyw120, ty_@0) -> new_lt7(vyw118, vyw120) new_esEs10(vyw50, vyw300, app(app(ty_Either, ebf), ebg)) -> new_esEs21(vyw50, vyw300, ebf, ebg) new_compare29(vyw56, vyw57, False, cde, cdf) -> new_compare19(vyw56, vyw57, new_ltEs23(vyw56, vyw57, cdf), cde, cdf) new_esEs8(vyw50, vyw300, app(ty_[], dea)) -> new_esEs17(vyw50, vyw300, dea) new_esEs39(vyw501, vyw3001, ty_Float) -> new_esEs20(vyw501, vyw3001) new_gt(vyw21, vyw16, app(ty_[], edh)) -> new_esEs41(new_compare0(vyw21, vyw16, edh)) new_esEs10(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs27(vyw106, vyw109, app(ty_Ratio, bac)) -> new_esEs16(vyw106, vyw109, bac) new_ltEs23(vyw56, vyw57, app(ty_Ratio, ceb)) -> new_ltEs10(vyw56, vyw57, ceb) new_esEs4(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_ltEs7(LT, EQ) -> True new_ltEs20(vyw107, vyw110, ty_Double) -> new_ltEs6(vyw107, vyw110) new_ltEs8(Right(vyw490), Right(vyw500), dd, app(app(ty_@2, cbg), cbh)) -> new_ltEs13(vyw490, vyw500, cbg, cbh) new_esEs7(vyw51, vyw301, ty_@0) -> new_esEs25(vyw51, vyw301) new_lt22(vyw491, vyw501, ty_Float) -> new_lt5(vyw491, vyw501) new_lt12(vyw5, vyw30) -> new_esEs12(new_compare13(vyw5, vyw30)) new_lt20(vyw490, vyw500, ty_Ordering) -> new_lt4(vyw490, vyw500) new_ltEs24(vyw492, vyw502, app(ty_Ratio, cfd)) -> new_ltEs10(vyw492, vyw502, cfd) new_ltEs15(Just(vyw490), Just(vyw500), ty_Ordering) -> new_ltEs7(vyw490, vyw500) new_ltEs14(False, True) -> True new_ltEs20(vyw107, vyw110, app(ty_[], gh)) -> new_ltEs9(vyw107, vyw110, gh) new_esEs31(vyw491, vyw501, ty_Integer) -> new_esEs15(vyw491, vyw501) new_esEs10(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_esEs4(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs26(Just(vyw500), Just(vyw3000), app(ty_Maybe, gb)) -> new_esEs26(vyw500, vyw3000, gb) new_lt23(vyw490, vyw500, app(ty_Maybe, daf)) -> new_lt18(vyw490, vyw500, daf) new_esEs21(Right(vyw500), Right(vyw3000), dgc, app(ty_Ratio, dgf)) -> new_esEs16(vyw500, vyw3000, dgf) new_compare33(vyw50, vyw300, app(app(app(ty_@3, fad), fae), faf)) -> new_compare30(vyw50, vyw300, fad, fae, faf) new_lt21(vyw118, vyw120, ty_Ordering) -> new_lt4(vyw118, vyw120) new_lt24(vyw5, vyw30, ty_Bool) -> new_lt8(vyw5, vyw30) new_ltEs8(Left(vyw490), Left(vyw500), app(ty_Maybe, cag), de) -> new_ltEs15(vyw490, vyw500, cag) new_esEs32(vyw490, vyw500, ty_Ordering) -> new_esEs23(vyw490, vyw500) new_esEs39(vyw501, vyw3001, app(app(app(ty_@3, fhe), fhf), fhg)) -> new_esEs24(vyw501, vyw3001, fhe, fhf, fhg) new_ltEs23(vyw56, vyw57, app(app(ty_@2, cef), ceg)) -> new_ltEs13(vyw56, vyw57, cef, ceg) new_ltEs21(vyw491, vyw501, app(ty_[], bcf)) -> new_ltEs9(vyw491, vyw501, bcf) new_lt20(vyw490, vyw500, ty_@0) -> new_lt7(vyw490, vyw500) new_esEs11(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs11(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_esEs16(:%(vyw500, vyw501), :%(vyw3000, vyw3001), egb) -> new_asAs(new_esEs34(vyw500, vyw3000, egb), new_esEs33(vyw501, vyw3001, egb)) new_esEs41(GT) -> True new_esEs32(vyw490, vyw500, app(ty_Ratio, chh)) -> new_esEs16(vyw490, vyw500, chh) new_esEs6(vyw52, vyw302, app(ty_Maybe, dcc)) -> new_esEs26(vyw52, vyw302, dcc) new_esEs40(vyw500, vyw3000, app(app(app(ty_@3, gag), gah), gba)) -> new_esEs24(vyw500, vyw3000, gag, gah, gba) new_lt9(vyw106, vyw109, ty_@0) -> new_lt7(vyw106, vyw109) new_lt21(vyw118, vyw120, ty_Bool) -> new_lt8(vyw118, vyw120) new_compare16(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, True, vyw177, efd, efe, eff) -> new_compare111(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, True, efd, efe, eff) new_ltEs10(vyw49, vyw50, dg) -> new_fsEs(new_compare8(vyw49, vyw50, dg)) new_esEs13(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) new_ltEs5(vyw49, vyw50) -> new_fsEs(new_compare9(vyw49, vyw50)) new_esEs37(vyw501, vyw3001, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs24(vyw501, vyw3001, fde, fdf, fdg) new_esEs36(vyw502, vyw3002, ty_Integer) -> new_esEs15(vyw502, vyw3002) new_esEs28(vyw105, vyw108, ty_Int) -> new_esEs22(vyw105, vyw108) new_esEs38(vyw500, vyw3000, ty_@0) -> new_esEs25(vyw500, vyw3000) new_ltEs8(Left(vyw490), Right(vyw500), dd, de) -> True new_esEs21(Left(vyw500), Left(vyw3000), ty_@0, deh) -> new_esEs25(vyw500, vyw3000) new_esEs37(vyw501, vyw3001, ty_Bool) -> new_esEs19(vyw501, vyw3001) new_esEs40(vyw500, vyw3000, ty_Float) -> new_esEs20(vyw500, vyw3000) new_ltEs15(Nothing, Just(vyw500), ee) -> True new_compare14(True, False) -> GT new_compare0(:(vyw50, vyw51), [], efg) -> GT new_esEs30(vyw118, vyw120, ty_Char) -> new_esEs13(vyw118, vyw120) new_lt17(vyw5, vyw30, dhf, dhg) -> new_esEs12(new_compare31(vyw5, vyw30, dhf, dhg)) new_ltEs15(Just(vyw490), Just(vyw500), app(app(app(ty_@3, ech), eda), edb)) -> new_ltEs11(vyw490, vyw500, ech, eda, edb) new_esEs31(vyw491, vyw501, app(ty_Ratio, cgf)) -> new_esEs16(vyw491, vyw501, cgf) new_compare16(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, False, vyw177, efd, efe, eff) -> new_compare111(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, vyw177, efd, efe, eff) new_esEs36(vyw502, vyw3002, app(app(ty_Either, fca), fcb)) -> new_esEs21(vyw502, vyw3002, fca, fcb) new_compare110(vyw185, vyw186, vyw187, vyw188, False, efb, efc) -> GT new_esEs40(vyw500, vyw3000, app(ty_Maybe, gbb)) -> new_esEs26(vyw500, vyw3000, gbb) new_primPlusNat0(Succ(vyw1980), vyw5100) -> Succ(Succ(new_primPlusNat1(vyw1980, vyw5100))) new_compare11(vyw134, vyw135, True, egc, egd) -> LT new_esEs5(vyw50, vyw300, app(ty_Maybe, fgf)) -> new_esEs26(vyw50, vyw300, fgf) new_esEs32(vyw490, vyw500, ty_Int) -> new_esEs22(vyw490, vyw500) new_lt14(vyw5, vyw30, efg) -> new_esEs12(new_compare0(vyw5, vyw30, efg)) new_lt23(vyw490, vyw500, ty_Integer) -> new_lt19(vyw490, vyw500) new_esEs35(vyw500, vyw3000, app(app(app(ty_@3, ehd), ehe), ehf)) -> new_esEs24(vyw500, vyw3000, ehd, ehe, ehf) new_lt24(vyw5, vyw30, ty_@0) -> new_lt7(vyw5, vyw30) new_esEs21(Left(vyw500), Left(vyw3000), ty_Float, deh) -> new_esEs20(vyw500, vyw3000) new_lt22(vyw491, vyw501, app(ty_Maybe, chd)) -> new_lt18(vyw491, vyw501, chd) new_esEs36(vyw502, vyw3002, ty_Float) -> new_esEs20(vyw502, vyw3002) new_compare18(Nothing, Nothing, ccb) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_esEs28(vyw105, vyw108, ty_Double) -> new_esEs18(vyw105, vyw108) new_ltEs8(Left(vyw490), Left(vyw500), ty_Float, de) -> new_ltEs16(vyw490, vyw500) new_esEs35(vyw500, vyw3000, ty_Bool) -> new_esEs19(vyw500, vyw3000) new_esEs23(LT, GT) -> False new_esEs23(GT, LT) -> False new_ltEs15(Just(vyw490), Just(vyw500), ty_Char) -> new_ltEs5(vyw490, vyw500) new_ltEs24(vyw492, vyw502, app(app(ty_@2, cfh), cga)) -> new_ltEs13(vyw492, vyw502, cfh, cga) new_ltEs7(EQ, LT) -> False new_lt23(vyw490, vyw500, ty_Bool) -> new_lt8(vyw490, vyw500) new_ltEs4(vyw94, vyw95, ty_@0) -> new_ltEs18(vyw94, vyw95) new_lt21(vyw118, vyw120, app(ty_Maybe, bhe)) -> new_lt18(vyw118, vyw120, bhe) new_primCompAux1(vyw50, vyw300, vyw44, efg) -> new_primCompAux0(vyw44, new_compare33(vyw50, vyw300, efg)) new_esEs35(vyw500, vyw3000, ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_lt23(vyw490, vyw500, ty_Float) -> new_lt5(vyw490, vyw500) new_lt21(vyw118, vyw120, ty_Integer) -> new_lt19(vyw118, vyw120) new_esEs5(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_esEs11(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_gt(vyw21, vyw16, app(ty_Ratio, eea)) -> new_esEs41(new_compare8(vyw21, vyw16, eea)) new_ltEs14(False, False) -> True new_ltEs7(GT, LT) -> False new_esEs23(LT, EQ) -> False new_esEs23(EQ, LT) -> False new_compare29(vyw56, vyw57, True, cde, cdf) -> EQ new_esEs36(vyw502, vyw3002, ty_Ordering) -> new_esEs23(vyw502, vyw3002) new_primCmpNat0(Succ(vyw500), Succ(vyw3000)) -> new_primCmpNat0(vyw500, vyw3000) new_lt22(vyw491, vyw501, ty_@0) -> new_lt7(vyw491, vyw501) new_esEs40(vyw500, vyw3000, ty_@0) -> new_esEs25(vyw500, vyw3000) new_esEs30(vyw118, vyw120, ty_Int) -> new_esEs22(vyw118, vyw120) new_compare13(Double(vyw50, Neg(vyw510)), Double(vyw300, Neg(vyw3010))) -> new_compare15(new_sr(vyw50, Neg(vyw3010)), new_sr(Neg(vyw510), vyw300)) new_compare110(vyw185, vyw186, vyw187, vyw188, True, efb, efc) -> LT new_esEs38(vyw500, vyw3000, ty_Float) -> new_esEs20(vyw500, vyw3000) new_lt10(vyw105, vyw108, app(app(ty_@2, bca), bcb)) -> new_lt17(vyw105, vyw108, bca, bcb) new_ltEs23(vyw56, vyw57, app(ty_[], cea)) -> new_ltEs9(vyw56, vyw57, cea) new_lt20(vyw490, vyw500, app(ty_Maybe, beg)) -> new_lt18(vyw490, vyw500, beg) new_esEs28(vyw105, vyw108, app(ty_Ratio, bbe)) -> new_esEs16(vyw105, vyw108, bbe) new_esEs10(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_esEs11(vyw50, vyw300, app(app(ty_Either, ccg), cch)) -> new_esEs21(vyw50, vyw300, ccg, cch) new_ltEs19(vyw49, vyw50, ty_Float) -> new_ltEs16(vyw49, vyw50) new_esEs27(vyw106, vyw109, ty_Double) -> new_esEs18(vyw106, vyw109) new_ltEs4(vyw94, vyw95, ty_Float) -> new_ltEs16(vyw94, vyw95) new_esEs4(vyw50, vyw300, app(ty_Maybe, eg)) -> new_esEs26(vyw50, vyw300, eg) new_esEs39(vyw501, vyw3001, app(ty_Maybe, fhh)) -> new_esEs26(vyw501, vyw3001, fhh) new_compare27(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, True, gc, gd, ge) -> EQ new_ltEs24(vyw492, vyw502, app(ty_[], cfc)) -> new_ltEs9(vyw492, vyw502, cfc) new_ltEs7(LT, GT) -> True new_ltEs8(Left(vyw490), Left(vyw500), ty_@0, de) -> new_ltEs18(vyw490, vyw500) new_esEs37(vyw501, vyw3001, ty_Float) -> new_esEs20(vyw501, vyw3001) new_esEs29(vyw490, vyw500, app(ty_Ratio, bea)) -> new_esEs16(vyw490, vyw500, bea) new_esEs11(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_gt(vyw21, vyw16, ty_Double) -> new_esEs41(new_compare13(vyw21, vyw16)) new_ltEs23(vyw56, vyw57, ty_Double) -> new_ltEs6(vyw56, vyw57) new_esEs36(vyw502, vyw3002, ty_Bool) -> new_esEs19(vyw502, vyw3002) new_ltEs14(True, False) -> False new_lt9(vyw106, vyw109, ty_Float) -> new_lt5(vyw106, vyw109) new_esEs38(vyw500, vyw3000, app(ty_Maybe, ffb)) -> new_esEs26(vyw500, vyw3000, ffb) new_compare33(vyw50, vyw300, app(app(ty_Either, ehh), faa)) -> new_compare32(vyw50, vyw300, ehh, faa) new_compare33(vyw50, vyw300, app(ty_[], fab)) -> new_compare0(vyw50, vyw300, fab) new_esEs34(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs14(@2(vyw500, vyw501), @2(vyw3000, vyw3001), ffc, ffd) -> new_asAs(new_esEs40(vyw500, vyw3000, ffc), new_esEs39(vyw501, vyw3001, ffd)) new_esEs35(vyw500, vyw3000, app(app(ty_Either, ehb), ehc)) -> new_esEs21(vyw500, vyw3000, ehb, ehc) new_lt24(vyw5, vyw30, ty_Float) -> new_lt5(vyw5, vyw30) new_esEs4(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_ltEs8(Right(vyw490), Right(vyw500), dd, ty_Double) -> new_ltEs6(vyw490, vyw500) new_esEs32(vyw490, vyw500, ty_Char) -> new_esEs13(vyw490, vyw500) new_lt23(vyw490, vyw500, ty_@0) -> new_lt7(vyw490, vyw500) new_esEs19(True, True) -> True new_esEs31(vyw491, vyw501, ty_Int) -> new_esEs22(vyw491, vyw501) new_esEs39(vyw501, vyw3001, ty_@0) -> new_esEs25(vyw501, vyw3001) new_lt22(vyw491, vyw501, ty_Integer) -> new_lt19(vyw491, vyw501) new_primCmpInt(Neg(Succ(vyw500)), Pos(vyw300)) -> LT new_ltEs4(vyw94, vyw95, ty_Double) -> new_ltEs6(vyw94, vyw95) new_esEs36(vyw502, vyw3002, app(app(ty_@2, fbe), fbf)) -> new_esEs14(vyw502, vyw3002, fbe, fbf) new_esEs31(vyw491, vyw501, ty_Char) -> new_esEs13(vyw491, vyw501) new_esEs39(vyw501, vyw3001, app(ty_Ratio, fha)) -> new_esEs16(vyw501, vyw3001, fha) new_esEs39(vyw501, vyw3001, ty_Double) -> new_esEs18(vyw501, vyw3001) new_compare33(vyw50, vyw300, ty_@0) -> new_compare7(vyw50, vyw300) new_lt22(vyw491, vyw501, ty_Bool) -> new_lt8(vyw491, vyw501) new_compare33(vyw50, vyw300, ty_Int) -> new_compare15(vyw50, vyw300) new_ltEs22(vyw119, vyw121, ty_Float) -> new_ltEs16(vyw119, vyw121) new_primCmpInt(Pos(Zero), Neg(Succ(vyw3000))) -> GT new_lt10(vyw105, vyw108, app(ty_[], bbd)) -> new_lt14(vyw105, vyw108, bbd) new_lt23(vyw490, vyw500, ty_Ordering) -> new_lt4(vyw490, vyw500) new_esEs37(vyw501, vyw3001, app(app(ty_Either, fdc), fdd)) -> new_esEs21(vyw501, vyw3001, fdc, fdd) new_primCmpInt(Neg(Succ(vyw500)), Neg(vyw300)) -> new_primCmpNat0(vyw300, Succ(vyw500)) new_compare0(:(vyw50, vyw51), :(vyw300, vyw301), efg) -> new_primCompAux1(vyw50, vyw300, new_compare0(vyw51, vyw301, efg), efg) new_esEs9(vyw51, vyw301, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs24(vyw51, vyw301, eaf, eag, eah) new_esEs21(Left(vyw500), Left(vyw3000), ty_Bool, deh) -> new_esEs19(vyw500, vyw3000) new_esEs35(vyw500, vyw3000, app(ty_Maybe, ehg)) -> new_esEs26(vyw500, vyw3000, ehg) new_lt10(vyw105, vyw108, app(ty_Maybe, bcc)) -> new_lt18(vyw105, vyw108, bcc) new_esEs37(vyw501, vyw3001, ty_@0) -> new_esEs25(vyw501, vyw3001) new_ltEs20(vyw107, vyw110, ty_@0) -> new_ltEs18(vyw107, vyw110) new_esEs6(vyw52, vyw302, ty_Ordering) -> new_esEs23(vyw52, vyw302) new_lt24(vyw5, vyw30, ty_Integer) -> new_lt19(vyw5, vyw30) new_esEs6(vyw52, vyw302, app(ty_[], dbe)) -> new_esEs17(vyw52, vyw302, dbe) new_compare5(LT, GT) -> LT new_ltEs4(vyw94, vyw95, app(app(ty_@2, cf), cg)) -> new_ltEs13(vyw94, vyw95, cf, cg) new_ltEs20(vyw107, vyw110, ty_Char) -> new_ltEs5(vyw107, vyw110) new_esEs41(EQ) -> False new_lt4(vyw5, vyw30) -> new_esEs12(new_compare5(vyw5, vyw30)) new_compare28(vyw118, vyw119, vyw120, vyw121, True, beh, bfa) -> EQ new_primCompAux0(vyw62, GT) -> GT new_esEs21(Right(vyw500), Right(vyw3000), dgc, ty_Char) -> new_esEs13(vyw500, vyw3000) new_ltEs15(Just(vyw490), Just(vyw500), app(ty_Ratio, ecg)) -> new_ltEs10(vyw490, vyw500, ecg) new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_ltEs21(vyw491, vyw501, app(app(ty_@2, bdc), bdd)) -> new_ltEs13(vyw491, vyw501, bdc, bdd) new_ltEs19(vyw49, vyw50, ty_Int) -> new_ltEs12(vyw49, vyw50) new_ltEs15(Just(vyw490), Just(vyw500), ty_Int) -> new_ltEs12(vyw490, vyw500) new_esEs11(vyw50, vyw300, app(app(ty_@2, ccc), ccd)) -> new_esEs14(vyw50, vyw300, ccc, ccd) new_esEs27(vyw106, vyw109, app(ty_[], bab)) -> new_esEs17(vyw106, vyw109, bab) new_compare19(vyw141, vyw142, True, efh, ega) -> LT new_lt24(vyw5, vyw30, ty_Double) -> new_lt12(vyw5, vyw30) new_esEs26(Just(vyw500), Just(vyw3000), app(app(ty_Either, fd), ff)) -> new_esEs21(vyw500, vyw3000, fd, ff) new_esEs36(vyw502, vyw3002, ty_Char) -> new_esEs13(vyw502, vyw3002) new_ltEs8(Right(vyw490), Right(vyw500), dd, app(ty_Ratio, cbc)) -> new_ltEs10(vyw490, vyw500, cbc) new_ltEs20(vyw107, vyw110, app(app(ty_Either, gf), gg)) -> new_ltEs8(vyw107, vyw110, gf, gg) new_esEs29(vyw490, vyw500, ty_Int) -> new_esEs22(vyw490, vyw500) new_esEs8(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_esEs33(vyw501, vyw3001, ty_Integer) -> new_esEs15(vyw501, vyw3001) new_esEs26(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs25(vyw500, vyw3000) new_lt9(vyw106, vyw109, ty_Bool) -> new_lt8(vyw106, vyw109) new_esEs30(vyw118, vyw120, app(ty_Maybe, bhe)) -> new_esEs26(vyw118, vyw120, bhe) new_primCmpNat0(Zero, Zero) -> EQ new_esEs6(vyw52, vyw302, ty_@0) -> new_esEs25(vyw52, vyw302) new_ltEs15(Just(vyw490), Just(vyw500), ty_Double) -> new_ltEs6(vyw490, vyw500) new_esEs27(vyw106, vyw109, app(app(ty_Either, hh), baa)) -> new_esEs21(vyw106, vyw109, hh, baa) new_esEs11(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_esEs32(vyw490, vyw500, ty_@0) -> new_esEs25(vyw490, vyw500) new_esEs10(vyw50, vyw300, app(app(app(ty_@3, ebh), eca), ecb)) -> new_esEs24(vyw50, vyw300, ebh, eca, ecb) new_ltEs21(vyw491, vyw501, ty_Double) -> new_ltEs6(vyw491, vyw501) new_ltEs24(vyw492, vyw502, ty_Ordering) -> new_ltEs7(vyw492, vyw502) new_compare13(Double(vyw50, Pos(vyw510)), Double(vyw300, Pos(vyw3010))) -> new_compare15(new_sr(vyw50, Pos(vyw3010)), new_sr(Pos(vyw510), vyw300)) new_esEs8(vyw50, vyw300, app(ty_Ratio, ddh)) -> new_esEs16(vyw50, vyw300, ddh) new_esEs27(vyw106, vyw109, ty_Bool) -> new_esEs19(vyw106, vyw109) new_compare9(Char(vyw50), Char(vyw300)) -> new_primCmpNat0(vyw50, vyw300) new_lt13(vyw5, vyw30, eeh, efa) -> new_esEs12(new_compare32(vyw5, vyw30, eeh, efa)) new_compare33(vyw50, vyw300, app(ty_Maybe, fba)) -> new_compare18(vyw50, vyw300, fba) new_esEs27(vyw106, vyw109, ty_Ordering) -> new_esEs23(vyw106, vyw109) new_esEs21(Left(vyw500), Left(vyw3000), ty_Ordering, deh) -> new_esEs23(vyw500, vyw3000) new_ltEs19(vyw49, vyw50, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs11(vyw49, vyw50, dh, ea, eb) new_lt20(vyw490, vyw500, app(ty_[], bdh)) -> new_lt14(vyw490, vyw500, bdh) new_ltEs20(vyw107, vyw110, ty_Bool) -> new_ltEs14(vyw107, vyw110) new_esEs37(vyw501, vyw3001, ty_Ordering) -> new_esEs23(vyw501, vyw3001) new_esEs21(Right(vyw500), Right(vyw3000), dgc, ty_Int) -> new_esEs22(vyw500, vyw3000) new_compare6(Float(vyw50, Neg(vyw510)), Float(vyw300, Neg(vyw3010))) -> new_compare15(new_sr(vyw50, Neg(vyw3010)), new_sr(Neg(vyw510), vyw300)) new_esEs29(vyw490, vyw500, ty_Double) -> new_esEs18(vyw490, vyw500) new_esEs4(vyw50, vyw300, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs24(vyw50, vyw300, fbb, fbc, fbd) new_lt23(vyw490, vyw500, app(ty_Ratio, chh)) -> new_lt6(vyw490, vyw500, chh) new_ltEs8(Left(vyw490), Left(vyw500), app(app(ty_@2, cae), caf), de) -> new_ltEs13(vyw490, vyw500, cae, caf) new_esEs37(vyw501, vyw3001, app(ty_[], fdb)) -> new_esEs17(vyw501, vyw3001, fdb) new_esEs39(vyw501, vyw3001, ty_Bool) -> new_esEs19(vyw501, vyw3001) new_esEs29(vyw490, vyw500, ty_Char) -> new_esEs13(vyw490, vyw500) new_ltEs24(vyw492, vyw502, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs11(vyw492, vyw502, cfe, cff, cfg) new_ltEs8(Right(vyw490), Right(vyw500), dd, ty_Char) -> new_ltEs5(vyw490, vyw500) new_esEs34(vyw500, vyw3000, ty_Int) -> new_esEs22(vyw500, vyw3000) new_ltEs24(vyw492, vyw502, ty_Integer) -> new_ltEs17(vyw492, vyw502) new_esEs8(vyw50, vyw300, app(app(ty_@2, ddf), ddg)) -> new_esEs14(vyw50, vyw300, ddf, ddg) new_esEs39(vyw501, vyw3001, ty_Int) -> new_esEs22(vyw501, vyw3001) new_compare5(EQ, GT) -> LT new_ltEs4(vyw94, vyw95, app(ty_Ratio, cb)) -> new_ltEs10(vyw94, vyw95, cb) new_lt21(vyw118, vyw120, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt15(vyw118, vyw120, bgh, bha, bhb) new_lt21(vyw118, vyw120, ty_Float) -> new_lt5(vyw118, vyw120) new_ltEs21(vyw491, vyw501, ty_Int) -> new_ltEs12(vyw491, vyw501) new_compare6(Float(vyw50, Pos(vyw510)), Float(vyw300, Neg(vyw3010))) -> new_compare15(new_sr(vyw50, Pos(vyw3010)), new_sr(Neg(vyw510), vyw300)) new_compare6(Float(vyw50, Neg(vyw510)), Float(vyw300, Pos(vyw3010))) -> new_compare15(new_sr(vyw50, Neg(vyw3010)), new_sr(Pos(vyw510), vyw300)) new_esEs32(vyw490, vyw500, app(app(ty_Either, che), chf)) -> new_esEs21(vyw490, vyw500, che, chf) new_esEs5(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_lt23(vyw490, vyw500, ty_Char) -> new_lt11(vyw490, vyw500) new_esEs5(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_lt9(vyw106, vyw109, app(ty_Maybe, bba)) -> new_lt18(vyw106, vyw109, bba) new_ltEs19(vyw49, vyw50, ty_Double) -> new_ltEs6(vyw49, vyw50) new_primCmpNat0(Succ(vyw500), Zero) -> GT new_lt9(vyw106, vyw109, app(ty_[], bab)) -> new_lt14(vyw106, vyw109, bab) new_pePe(False, vyw197) -> vyw197 new_lt10(vyw105, vyw108, app(ty_Ratio, bbe)) -> new_lt6(vyw105, vyw108, bbe) new_esEs29(vyw490, vyw500, app(app(ty_@2, bee), bef)) -> new_esEs14(vyw490, vyw500, bee, bef) new_gt(vyw21, vyw16, app(app(ty_@2, eee), eef)) -> new_esEs41(new_compare31(vyw21, vyw16, eee, eef)) new_esEs11(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_compare30(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), dag, dah, dba) -> new_compare27(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs8(vyw50, vyw300, dag), new_asAs(new_esEs7(vyw51, vyw301, dah), new_esEs6(vyw52, vyw302, dba))), dag, dah, dba) new_esEs21(Right(vyw500), Right(vyw3000), dgc, app(ty_[], dgg)) -> new_esEs17(vyw500, vyw3000, dgg) new_esEs39(vyw501, vyw3001, app(ty_[], fhb)) -> new_esEs17(vyw501, vyw3001, fhb) new_esEs21(Right(vyw500), Right(vyw3000), dgc, ty_Double) -> new_esEs18(vyw500, vyw3000) new_esEs36(vyw502, vyw3002, ty_Int) -> new_esEs22(vyw502, vyw3002) new_lt20(vyw490, vyw500, ty_Char) -> new_lt11(vyw490, vyw500) new_esEs7(vyw51, vyw301, app(ty_Maybe, dde)) -> new_esEs26(vyw51, vyw301, dde) new_compare33(vyw50, vyw300, ty_Char) -> new_compare9(vyw50, vyw300) new_lt24(vyw5, vyw30, app(app(app(ty_@3, dag), dah), dba)) -> new_lt15(vyw5, vyw30, dag, dah, dba) new_esEs9(vyw51, vyw301, app(ty_Maybe, eba)) -> new_esEs26(vyw51, vyw301, eba) new_esEs24(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), fbb, fbc, fbd) -> new_asAs(new_esEs38(vyw500, vyw3000, fbb), new_asAs(new_esEs37(vyw501, vyw3001, fbc), new_esEs36(vyw502, vyw3002, fbd))) new_ltEs19(vyw49, vyw50, ty_Integer) -> new_ltEs17(vyw49, vyw50) new_esEs38(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_compare10(vyw156, vyw157, False, gbc) -> GT new_lt21(vyw118, vyw120, ty_Double) -> new_lt12(vyw118, vyw120) new_compare11(vyw134, vyw135, False, egc, egd) -> GT new_ltEs8(Left(vyw490), Left(vyw500), ty_Char, de) -> new_ltEs5(vyw490, vyw500) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_gt(vyw21, vyw16, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs41(new_compare30(vyw21, vyw16, eeb, eec, eed)) new_esEs21(Left(vyw500), Left(vyw3000), ty_Int, deh) -> new_esEs22(vyw500, vyw3000) new_esEs7(vyw51, vyw301, ty_Float) -> new_esEs20(vyw51, vyw301) new_ltEs8(Right(vyw490), Right(vyw500), dd, ty_Float) -> new_ltEs16(vyw490, vyw500) new_ltEs15(Nothing, Nothing, ee) -> True new_esEs36(vyw502, vyw3002, app(ty_Ratio, fbg)) -> new_esEs16(vyw502, vyw3002, fbg) new_ltEs15(Just(vyw490), Nothing, ee) -> False new_esEs31(vyw491, vyw501, ty_Double) -> new_esEs18(vyw491, vyw501) new_compare33(vyw50, vyw300, ty_Ordering) -> new_compare5(vyw50, vyw300) new_esEs21(Right(vyw500), Right(vyw3000), dgc, ty_Float) -> new_esEs20(vyw500, vyw3000) new_esEs4(vyw50, vyw300, app(app(ty_Either, dgc), deh)) -> new_esEs21(vyw50, vyw300, dgc, deh) new_ltEs19(vyw49, vyw50, app(ty_Ratio, dg)) -> new_ltEs10(vyw49, vyw50, dg) new_esEs26(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_lt9(vyw106, vyw109, app(app(ty_Either, hh), baa)) -> new_lt13(vyw106, vyw109, hh, baa) new_esEs32(vyw490, vyw500, app(ty_Maybe, daf)) -> new_esEs26(vyw490, vyw500, daf) new_esEs11(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_esEs39(vyw501, vyw3001, app(app(ty_@2, fgg), fgh)) -> new_esEs14(vyw501, vyw3001, fgg, fgh) new_esEs39(vyw501, vyw3001, ty_Char) -> new_esEs13(vyw501, vyw3001) new_ltEs21(vyw491, vyw501, app(ty_Maybe, bde)) -> new_ltEs15(vyw491, vyw501, bde) new_lt10(vyw105, vyw108, ty_Char) -> new_lt11(vyw105, vyw108) new_primPlusNat0(Zero, vyw5100) -> Succ(vyw5100) new_esEs30(vyw118, vyw120, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs24(vyw118, vyw120, bgh, bha, bhb) new_esEs8(vyw50, vyw300, ty_Bool) -> new_esEs19(vyw50, vyw300) new_esEs29(vyw490, vyw500, ty_Bool) -> new_esEs19(vyw490, vyw500) new_esEs26(Just(vyw500), Just(vyw3000), app(ty_[], fc)) -> new_esEs17(vyw500, vyw3000, fc) new_ltEs4(vyw94, vyw95, app(ty_Maybe, da)) -> new_ltEs15(vyw94, vyw95, da) new_ltEs8(Right(vyw490), Right(vyw500), dd, app(ty_[], cbb)) -> new_ltEs9(vyw490, vyw500, cbb) new_esEs39(vyw501, vyw3001, ty_Ordering) -> new_esEs23(vyw501, vyw3001) new_compare14(False, True) -> LT new_esEs31(vyw491, vyw501, app(app(ty_@2, chb), chc)) -> new_esEs14(vyw491, vyw501, chb, chc) new_lt21(vyw118, vyw120, ty_Int) -> new_lt16(vyw118, vyw120) new_esEs6(vyw52, vyw302, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs24(vyw52, vyw302, dbh, dca, dcb) new_ltEs8(Right(vyw490), Right(vyw500), dd, app(app(ty_Either, cah), cba)) -> new_ltEs8(vyw490, vyw500, cah, cba) new_esEs40(vyw500, vyw3000, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_esEs21(Left(vyw500), Left(vyw3000), ty_Char, deh) -> new_esEs13(vyw500, vyw3000) new_esEs5(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_compare33(vyw50, vyw300, ty_Double) -> new_compare13(vyw50, vyw300) new_esEs6(vyw52, vyw302, app(app(ty_Either, dbf), dbg)) -> new_esEs21(vyw52, vyw302, dbf, dbg) new_esEs31(vyw491, vyw501, ty_Float) -> new_esEs20(vyw491, vyw501) new_esEs10(vyw50, vyw300, ty_@0) -> new_esEs25(vyw50, vyw300) new_compare8(:%(vyw50, vyw51), :%(vyw300, vyw301), ty_Int) -> new_compare15(new_sr(vyw50, vyw301), new_sr(vyw300, vyw51)) new_esEs29(vyw490, vyw500, app(ty_[], bdh)) -> new_esEs17(vyw490, vyw500, bdh) new_esEs32(vyw490, vyw500, ty_Bool) -> new_esEs19(vyw490, vyw500) new_lt20(vyw490, vyw500, app(ty_Ratio, bea)) -> new_lt6(vyw490, vyw500, bea) new_esEs5(vyw50, vyw300, app(app(ty_@2, ffe), fff)) -> new_esEs14(vyw50, vyw300, ffe, fff) new_esEs26(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs19(vyw500, vyw3000) new_compare32(Right(vyw50), Left(vyw300), eeh, efa) -> GT new_ltEs21(vyw491, vyw501, ty_Integer) -> new_ltEs17(vyw491, vyw501) new_esEs26(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, fg), fh), ga)) -> new_esEs24(vyw500, vyw3000, fg, fh, ga) new_esEs6(vyw52, vyw302, ty_Bool) -> new_esEs19(vyw52, vyw302) new_ltEs8(Left(vyw490), Left(vyw500), ty_Bool, de) -> new_ltEs14(vyw490, vyw500) new_esEs32(vyw490, vyw500, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs24(vyw490, vyw500, daa, dab, dac) new_ltEs8(Left(vyw490), Left(vyw500), ty_Double, de) -> new_ltEs6(vyw490, vyw500) new_esEs11(vyw50, vyw300, app(ty_Ratio, cce)) -> new_esEs16(vyw50, vyw300, cce) new_lt22(vyw491, vyw501, app(app(ty_Either, cgc), cgd)) -> new_lt13(vyw491, vyw501, cgc, cgd) new_compare19(vyw141, vyw142, False, efh, ega) -> GT new_esEs31(vyw491, vyw501, ty_Bool) -> new_esEs19(vyw491, vyw501) new_gt(vyw21, vyw16, ty_Ordering) -> new_esEs41(new_compare5(vyw21, vyw16)) new_compare111(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, True, efd, efe, eff) -> LT new_primMulInt(Neg(vyw3000), Neg(vyw510)) -> Pos(new_primMulNat0(vyw3000, vyw510)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw3000))) -> new_primCmpNat0(Zero, Succ(vyw3000)) new_ltEs15(Just(vyw490), Just(vyw500), app(app(ty_@2, edc), edd)) -> new_ltEs13(vyw490, vyw500, edc, edd) new_ltEs22(vyw119, vyw121, ty_Integer) -> new_ltEs17(vyw119, vyw121) new_ltEs23(vyw56, vyw57, ty_@0) -> new_ltEs18(vyw56, vyw57) new_esEs28(vyw105, vyw108, ty_Integer) -> new_esEs15(vyw105, vyw108) new_ltEs19(vyw49, vyw50, app(app(ty_@2, ec), ed)) -> new_ltEs13(vyw49, vyw50, ec, ed) new_ltEs21(vyw491, vyw501, app(ty_Ratio, bcg)) -> new_ltEs10(vyw491, vyw501, bcg) new_esEs29(vyw490, vyw500, ty_Ordering) -> new_esEs23(vyw490, vyw500) new_esEs7(vyw51, vyw301, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs24(vyw51, vyw301, ddb, ddc, ddd) new_ltEs24(vyw492, vyw502, ty_Int) -> new_ltEs12(vyw492, vyw502) new_esEs9(vyw51, vyw301, ty_@0) -> new_esEs25(vyw51, vyw301) new_esEs10(vyw50, vyw300, app(ty_Maybe, ecc)) -> new_esEs26(vyw50, vyw300, ecc) new_ltEs19(vyw49, vyw50, app(ty_Maybe, ee)) -> new_ltEs15(vyw49, vyw50, ee) new_esEs8(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_ltEs4(vyw94, vyw95, app(ty_[], ca)) -> new_ltEs9(vyw94, vyw95, ca) new_ltEs8(Right(vyw490), Right(vyw500), dd, ty_@0) -> new_ltEs18(vyw490, vyw500) new_ltEs15(Just(vyw490), Just(vyw500), app(ty_Maybe, ede)) -> new_ltEs15(vyw490, vyw500, ede) new_lt22(vyw491, vyw501, app(ty_[], cge)) -> new_lt14(vyw491, vyw501, cge) new_ltEs7(LT, LT) -> True new_esEs21(Right(vyw500), Right(vyw3000), dgc, ty_Bool) -> new_esEs19(vyw500, vyw3000) new_primMulInt(Pos(vyw3000), Neg(vyw510)) -> Neg(new_primMulNat0(vyw3000, vyw510)) new_primMulInt(Neg(vyw3000), Pos(vyw510)) -> Neg(new_primMulNat0(vyw3000, vyw510)) new_esEs4(vyw50, vyw300, app(ty_[], ege)) -> new_esEs17(vyw50, vyw300, ege) new_ltEs23(vyw56, vyw57, ty_Bool) -> new_ltEs14(vyw56, vyw57) new_esEs21(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, dfg), dfh), dga), deh) -> new_esEs24(vyw500, vyw3000, dfg, dfh, dga) new_esEs31(vyw491, vyw501, app(ty_[], cge)) -> new_esEs17(vyw491, vyw501, cge) new_compare8(:%(vyw50, vyw51), :%(vyw300, vyw301), ty_Integer) -> new_compare12(new_sr0(vyw50, vyw301), new_sr0(vyw300, vyw51)) new_esEs8(vyw50, vyw300, ty_Float) -> new_esEs20(vyw50, vyw300) new_lt9(vyw106, vyw109, app(ty_Ratio, bac)) -> new_lt6(vyw106, vyw109, bac) new_esEs37(vyw501, vyw3001, ty_Double) -> new_esEs18(vyw501, vyw3001) new_ltEs13(@2(vyw490, vyw491), @2(vyw500, vyw501), ec, ed) -> new_pePe(new_lt20(vyw490, vyw500, ec), new_asAs(new_esEs29(vyw490, vyw500, ec), new_ltEs21(vyw491, vyw501, ed))) new_ltEs22(vyw119, vyw121, app(app(ty_Either, bfb), bfc)) -> new_ltEs8(vyw119, vyw121, bfb, bfc) new_ltEs22(vyw119, vyw121, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs11(vyw119, vyw121, bff, bfg, bfh) new_compare33(vyw50, vyw300, app(app(ty_@2, fag), fah)) -> new_compare31(vyw50, vyw300, fag, fah) new_sr0(Integer(vyw3000), Integer(vyw510)) -> Integer(new_primMulInt(vyw3000, vyw510)) new_ltEs4(vyw94, vyw95, ty_Ordering) -> new_ltEs7(vyw94, vyw95) new_esEs37(vyw501, vyw3001, ty_Int) -> new_esEs22(vyw501, vyw3001) new_ltEs23(vyw56, vyw57, ty_Int) -> new_ltEs12(vyw56, vyw57) new_lt21(vyw118, vyw120, ty_Char) -> new_lt11(vyw118, vyw120) new_ltEs8(Right(vyw490), Right(vyw500), dd, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs11(vyw490, vyw500, cbd, cbe, cbf) new_lt20(vyw490, vyw500, app(app(ty_@2, bee), bef)) -> new_lt17(vyw490, vyw500, bee, bef) new_esEs21(Right(vyw500), Right(vyw3000), dgc, ty_Ordering) -> new_esEs23(vyw500, vyw3000) new_esEs30(vyw118, vyw120, ty_@0) -> new_esEs25(vyw118, vyw120) new_esEs6(vyw52, vyw302, ty_Char) -> new_esEs13(vyw52, vyw302) new_esEs8(vyw50, vyw300, ty_Integer) -> new_esEs15(vyw50, vyw300) new_ltEs8(Right(vyw490), Right(vyw500), dd, ty_Ordering) -> new_ltEs7(vyw490, vyw500) new_lt22(vyw491, vyw501, ty_Double) -> new_lt12(vyw491, vyw501) new_esEs40(vyw500, vyw3000, app(app(ty_@2, gaa), gab)) -> new_esEs14(vyw500, vyw3000, gaa, gab) new_asAs(True, vyw150) -> vyw150 new_compare32(Right(vyw50), Right(vyw300), eeh, efa) -> new_compare29(vyw50, vyw300, new_esEs5(vyw50, vyw300, efa), eeh, efa) new_lt24(vyw5, vyw30, ty_Int) -> new_lt16(vyw5, vyw30) new_lt10(vyw105, vyw108, app(app(ty_Either, bbb), bbc)) -> new_lt13(vyw105, vyw108, bbb, bbc) new_esEs10(vyw50, vyw300, app(ty_[], ebe)) -> new_esEs17(vyw50, vyw300, ebe) new_ltEs11(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), dh, ea, eb) -> new_pePe(new_lt23(vyw490, vyw500, dh), new_asAs(new_esEs32(vyw490, vyw500, dh), new_pePe(new_lt22(vyw491, vyw501, ea), new_asAs(new_esEs31(vyw491, vyw501, ea), new_ltEs24(vyw492, vyw502, eb))))) new_esEs29(vyw490, vyw500, ty_@0) -> new_esEs25(vyw490, vyw500) new_compare33(vyw50, vyw300, app(ty_Ratio, fac)) -> new_compare8(vyw50, vyw300, fac) new_lt10(vyw105, vyw108, ty_@0) -> new_lt7(vyw105, vyw108) new_lt22(vyw491, vyw501, app(ty_Ratio, cgf)) -> new_lt6(vyw491, vyw501, cgf) new_lt24(vyw5, vyw30, app(app(ty_Either, eeh), efa)) -> new_lt13(vyw5, vyw30, eeh, efa) new_compare5(EQ, EQ) -> EQ new_lt9(vyw106, vyw109, ty_Char) -> new_lt11(vyw106, vyw109) new_esEs26(Just(vyw500), Just(vyw3000), app(ty_Ratio, fb)) -> new_esEs16(vyw500, vyw3000, fb) new_esEs21(Right(vyw500), Right(vyw3000), dgc, app(app(ty_Either, dgh), dha)) -> new_esEs21(vyw500, vyw3000, dgh, dha) new_compare0([], [], efg) -> EQ new_sr(vyw300, vyw51) -> new_primMulInt(vyw300, vyw51) new_esEs36(vyw502, vyw3002, app(ty_[], fbh)) -> new_esEs17(vyw502, vyw3002, fbh) new_primMulNat0(Zero, Zero) -> Zero new_compare25(vyw94, vyw95, False, bf) -> new_compare10(vyw94, vyw95, new_ltEs4(vyw94, vyw95, bf), bf) new_esEs8(vyw50, vyw300, ty_Ordering) -> new_esEs23(vyw50, vyw300) new_esEs21(Left(vyw500), Left(vyw3000), app(app(ty_Either, dfe), dff), deh) -> new_esEs21(vyw500, vyw3000, dfe, dff) new_esEs9(vyw51, vyw301, ty_Ordering) -> new_esEs23(vyw51, vyw301) new_ltEs15(Just(vyw490), Just(vyw500), app(ty_[], ecf)) -> new_ltEs9(vyw490, vyw500, ecf) new_ltEs8(Right(vyw490), Right(vyw500), dd, ty_Integer) -> new_ltEs17(vyw490, vyw500) new_gt(vyw21, vyw16, ty_Float) -> new_esEs41(new_compare6(vyw21, vyw16)) new_gt(vyw21, vyw16, ty_Integer) -> new_esEs41(new_compare12(vyw21, vyw16)) new_esEs27(vyw106, vyw109, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs24(vyw106, vyw109, bad, bae, baf) new_lt24(vyw5, vyw30, app(app(ty_@2, dhf), dhg)) -> new_lt17(vyw5, vyw30, dhf, dhg) new_esEs26(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs18(vyw500, vyw3000) new_ltEs23(vyw56, vyw57, ty_Char) -> new_ltEs5(vyw56, vyw57) new_compare33(vyw50, vyw300, ty_Bool) -> new_compare14(vyw50, vyw300) new_compare6(Float(vyw50, Pos(vyw510)), Float(vyw300, Pos(vyw3010))) -> new_compare15(new_sr(vyw50, Pos(vyw3010)), new_sr(Pos(vyw510), vyw300)) new_gt(vyw21, vyw16, ty_Char) -> new_esEs41(new_compare9(vyw21, vyw16)) new_esEs6(vyw52, vyw302, ty_Double) -> new_esEs18(vyw52, vyw302) new_ltEs23(vyw56, vyw57, app(ty_Maybe, ceh)) -> new_ltEs15(vyw56, vyw57, ceh) new_lt6(vyw5, vyw30, ef) -> new_esEs12(new_compare8(vyw5, vyw30, ef)) new_ltEs4(vyw94, vyw95, app(app(app(ty_@3, cc), cd), ce)) -> new_ltEs11(vyw94, vyw95, cc, cd, ce) new_esEs7(vyw51, vyw301, app(app(ty_Either, dch), dda)) -> new_esEs21(vyw51, vyw301, dch, dda) new_ltEs15(Just(vyw490), Just(vyw500), ty_Integer) -> new_ltEs17(vyw490, vyw500) new_esEs30(vyw118, vyw120, ty_Float) -> new_esEs20(vyw118, vyw120) new_lt10(vyw105, vyw108, ty_Ordering) -> new_lt4(vyw105, vyw108) new_esEs28(vyw105, vyw108, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs24(vyw105, vyw108, bbf, bbg, bbh) new_esEs38(vyw500, vyw3000, app(app(ty_@2, fea), feb)) -> new_esEs14(vyw500, vyw3000, fea, feb) new_compare14(False, False) -> EQ new_primCompAux0(vyw62, EQ) -> vyw62 new_compare111(vyw170, vyw171, vyw172, vyw173, vyw174, vyw175, False, efd, efe, eff) -> GT new_ltEs22(vyw119, vyw121, app(ty_Maybe, bgc)) -> new_ltEs15(vyw119, vyw121, bgc) new_esEs23(GT, GT) -> True new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_esEs5(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_esEs9(vyw51, vyw301, ty_Bool) -> new_esEs19(vyw51, vyw301) new_esEs29(vyw490, vyw500, ty_Float) -> new_esEs20(vyw490, vyw500) new_esEs7(vyw51, vyw301, ty_Integer) -> new_esEs15(vyw51, vyw301) new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) new_esEs37(vyw501, vyw3001, app(ty_Ratio, fda)) -> new_esEs16(vyw501, vyw3001, fda) new_compare33(vyw50, vyw300, ty_Integer) -> new_compare12(vyw50, vyw300) new_esEs8(vyw50, vyw300, app(app(ty_Either, deb), dec)) -> new_esEs21(vyw50, vyw300, deb, dec) new_esEs31(vyw491, vyw501, ty_@0) -> new_esEs25(vyw491, vyw501) new_ltEs8(Right(vyw490), Right(vyw500), dd, app(ty_Maybe, cca)) -> new_ltEs15(vyw490, vyw500, cca) new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False new_ltEs4(vyw94, vyw95, ty_Char) -> new_ltEs5(vyw94, vyw95) new_primCmpInt(Neg(Zero), Neg(Succ(vyw3000))) -> new_primCmpNat0(Succ(vyw3000), Zero) new_lt23(vyw490, vyw500, ty_Int) -> new_lt16(vyw490, vyw500) new_esEs32(vyw490, vyw500, app(ty_[], chg)) -> new_esEs17(vyw490, vyw500, chg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs23(vyw56, vyw57, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs11(vyw56, vyw57, cec, ced, cee) new_esEs21(Left(vyw500), Left(vyw3000), app(ty_[], dfd), deh) -> new_esEs17(vyw500, vyw3000, dfd) new_esEs38(vyw500, vyw3000, ty_Double) -> new_esEs18(vyw500, vyw3000) new_ltEs15(Just(vyw490), Just(vyw500), ty_@0) -> new_ltEs18(vyw490, vyw500) new_esEs21(Right(vyw500), Right(vyw3000), dgc, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs24(vyw500, vyw3000, dhb, dhc, dhd) new_lt10(vyw105, vyw108, ty_Integer) -> new_lt19(vyw105, vyw108) new_lt21(vyw118, vyw120, app(app(ty_@2, bhc), bhd)) -> new_lt17(vyw118, vyw120, bhc, bhd) new_lt15(vyw5, vyw30, dag, dah, dba) -> new_esEs12(new_compare30(vyw5, vyw30, dag, dah, dba)) new_esEs35(vyw500, vyw3000, app(app(ty_@2, egf), egg)) -> new_esEs14(vyw500, vyw3000, egf, egg) new_esEs9(vyw51, vyw301, ty_Int) -> new_esEs22(vyw51, vyw301) new_esEs25(@0, @0) -> True new_lt8(vyw5, vyw30) -> new_esEs12(new_compare14(vyw5, vyw30)) new_esEs28(vyw105, vyw108, app(ty_Maybe, bcc)) -> new_esEs26(vyw105, vyw108, bcc) new_lt5(vyw5, vyw30) -> new_esEs12(new_compare6(vyw5, vyw30)) new_compare18(Just(vyw50), Just(vyw300), ccb) -> new_compare25(vyw50, vyw300, new_esEs11(vyw50, vyw300, ccb), ccb) new_ltEs7(EQ, GT) -> True new_gt(vyw21, vyw16, ty_Int) -> new_esEs41(new_compare15(vyw21, vyw16)) new_esEs9(vyw51, vyw301, ty_Integer) -> new_esEs15(vyw51, vyw301) new_not(False) -> True new_esEs23(EQ, GT) -> False new_esEs23(GT, EQ) -> False new_esEs23(EQ, EQ) -> True new_esEs37(vyw501, vyw3001, app(app(ty_@2, fcg), fch)) -> new_esEs14(vyw501, vyw3001, fcg, fch) new_esEs17(:(vyw500, vyw501), :(vyw3000, vyw3001), ege) -> new_asAs(new_esEs35(vyw500, vyw3000, ege), new_esEs17(vyw501, vyw3001, ege)) new_esEs4(vyw50, vyw300, app(ty_Ratio, egb)) -> new_esEs16(vyw50, vyw300, egb) new_ltEs15(Just(vyw490), Just(vyw500), ty_Float) -> new_ltEs16(vyw490, vyw500) new_lt7(vyw5, vyw30) -> new_esEs12(new_compare7(vyw5, vyw30)) new_ltEs24(vyw492, vyw502, ty_Bool) -> new_ltEs14(vyw492, vyw502) new_ltEs7(EQ, EQ) -> True new_esEs38(vyw500, vyw3000, app(ty_Ratio, fec)) -> new_esEs16(vyw500, vyw3000, fec) new_esEs21(Right(vyw500), Right(vyw3000), dgc, ty_Integer) -> new_esEs15(vyw500, vyw3000) new_ltEs19(vyw49, vyw50, ty_Ordering) -> new_ltEs7(vyw49, vyw50) new_esEs28(vyw105, vyw108, ty_Float) -> new_esEs20(vyw105, vyw108) new_ltEs7(GT, EQ) -> False new_compare18(Just(vyw50), Nothing, ccb) -> GT new_esEs36(vyw502, vyw3002, ty_Double) -> new_esEs18(vyw502, vyw3002) new_esEs9(vyw51, vyw301, app(app(ty_Either, ead), eae)) -> new_esEs21(vyw51, vyw301, ead, eae) new_esEs41(LT) -> False new_esEs26(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs13(vyw500, vyw3000) new_compare27(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, False, gc, gd, ge) -> new_compare16(vyw105, vyw106, vyw107, vyw108, vyw109, vyw110, new_lt10(vyw105, vyw108, gc), new_asAs(new_esEs28(vyw105, vyw108, gc), new_pePe(new_lt9(vyw106, vyw109, gd), new_asAs(new_esEs27(vyw106, vyw109, gd), new_ltEs20(vyw107, vyw110, ge)))), gc, gd, ge) new_ltEs23(vyw56, vyw57, app(app(ty_Either, cdg), cdh)) -> new_ltEs8(vyw56, vyw57, cdg, cdh) new_lt23(vyw490, vyw500, app(app(ty_@2, dad), dae)) -> new_lt17(vyw490, vyw500, dad, dae) new_ltEs20(vyw107, vyw110, ty_Ordering) -> new_ltEs7(vyw107, vyw110) new_lt24(vyw5, vyw30, ty_Char) -> new_lt11(vyw5, vyw30) new_esEs5(vyw50, vyw300, ty_Int) -> new_esEs22(vyw50, vyw300) new_esEs26(Nothing, Nothing, eg) -> True new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs26(Nothing, Just(vyw3000), eg) -> False new_esEs26(Just(vyw500), Nothing, eg) -> False new_esEs6(vyw52, vyw302, app(ty_Ratio, dbd)) -> new_esEs16(vyw52, vyw302, dbd) new_ltEs22(vyw119, vyw121, ty_Bool) -> new_ltEs14(vyw119, vyw121) new_esEs4(vyw50, vyw300, ty_Double) -> new_esEs18(vyw50, vyw300) new_ltEs23(vyw56, vyw57, ty_Ordering) -> new_ltEs7(vyw56, vyw57) new_esEs35(vyw500, vyw3000, app(ty_[], eha)) -> new_esEs17(vyw500, vyw3000, eha) new_ltEs22(vyw119, vyw121, ty_Char) -> new_ltEs5(vyw119, vyw121) new_esEs8(vyw50, vyw300, ty_Char) -> new_esEs13(vyw50, vyw300) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_primMulNat0(Succ(vyw30000), Succ(vyw5100)) -> new_primPlusNat0(new_primMulNat0(vyw30000, Succ(vyw5100)), vyw5100) new_ltEs24(vyw492, vyw502, app(ty_Maybe, cgb)) -> new_ltEs15(vyw492, vyw502, cgb) new_ltEs22(vyw119, vyw121, ty_Ordering) -> new_ltEs7(vyw119, vyw121) new_ltEs8(Left(vyw490), Left(vyw500), ty_Int, de) -> new_ltEs12(vyw490, vyw500) new_esEs7(vyw51, vyw301, ty_Char) -> new_esEs13(vyw51, vyw301) new_esEs21(Right(vyw500), Right(vyw3000), dgc, app(ty_Maybe, dhe)) -> new_esEs26(vyw500, vyw3000, dhe) new_ltEs8(Left(vyw490), Left(vyw500), app(ty_[], bhh), de) -> new_ltEs9(vyw490, vyw500, bhh) new_compare5(GT, GT) -> EQ new_esEs22(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) new_esEs27(vyw106, vyw109, ty_@0) -> new_esEs25(vyw106, vyw109) new_esEs11(vyw50, vyw300, app(ty_[], ccf)) -> new_esEs17(vyw50, vyw300, ccf) new_gt(vyw21, vyw16, ty_@0) -> new_esEs41(new_compare7(vyw21, vyw16)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs40(vyw500, vyw3000, app(ty_Ratio, gac)) -> new_esEs16(vyw500, vyw3000, gac) new_esEs6(vyw52, vyw302, ty_Int) -> new_esEs22(vyw52, vyw302) new_ltEs21(vyw491, vyw501, ty_Ordering) -> new_ltEs7(vyw491, vyw501) new_esEs21(Left(vyw500), Left(vyw3000), ty_Double, deh) -> new_esEs18(vyw500, vyw3000) new_compare14(True, True) -> EQ new_primEqNat0(Zero, Zero) -> True new_compare28(vyw118, vyw119, vyw120, vyw121, False, beh, bfa) -> new_compare17(vyw118, vyw119, vyw120, vyw121, new_lt21(vyw118, vyw120, beh), new_asAs(new_esEs30(vyw118, vyw120, beh), new_ltEs22(vyw119, vyw121, bfa)), beh, bfa) new_ltEs21(vyw491, vyw501, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs11(vyw491, vyw501, bch, bda, bdb) new_compare5(LT, EQ) -> LT new_esEs5(vyw50, vyw300, app(ty_Ratio, ffg)) -> new_esEs16(vyw50, vyw300, ffg) new_gt(vyw21, vyw16, ty_Bool) -> new_esEs41(new_compare14(vyw21, vyw16)) new_esEs26(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs22(vyw500, vyw3000) new_ltEs8(Left(vyw490), Left(vyw500), app(app(app(ty_@3, cab), cac), cad), de) -> new_ltEs11(vyw490, vyw500, cab, cac, cad) new_esEs28(vyw105, vyw108, ty_@0) -> new_esEs25(vyw105, vyw108) new_esEs17(:(vyw500, vyw501), [], ege) -> False new_esEs17([], :(vyw3000, vyw3001), ege) -> False new_asAs(False, vyw150) -> False new_compare7(@0, @0) -> EQ new_esEs7(vyw51, vyw301, ty_Int) -> new_esEs22(vyw51, vyw301) new_ltEs4(vyw94, vyw95, ty_Int) -> new_ltEs12(vyw94, vyw95) new_ltEs21(vyw491, vyw501, ty_Char) -> new_ltEs5(vyw491, vyw501) new_lt19(vyw5, vyw30) -> new_esEs12(new_compare12(vyw5, vyw30)) new_lt10(vyw105, vyw108, ty_Bool) -> new_lt8(vyw105, vyw108) new_esEs27(vyw106, vyw109, app(ty_Maybe, bba)) -> new_esEs26(vyw106, vyw109, bba) new_gt(vyw21, vyw16, app(ty_Maybe, eeg)) -> new_esEs41(new_compare18(vyw21, vyw16, eeg)) new_ltEs8(Right(vyw490), Right(vyw500), dd, ty_Bool) -> new_ltEs14(vyw490, vyw500) new_lt22(vyw491, vyw501, app(app(ty_@2, chb), chc)) -> new_lt17(vyw491, vyw501, chb, chc) new_ltEs24(vyw492, vyw502, app(app(ty_Either, cfa), cfb)) -> new_ltEs8(vyw492, vyw502, cfa, cfb) The set Q consists of the following terms: new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs8(Right(x0), Right(x1), x2, ty_Double) new_esEs35(x0, x1, ty_Double) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, ty_Int) new_primPlusNat1(Zero, Zero) new_esEs35(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs27(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Char) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs19(False, False) new_ltEs24(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_[], x2)) new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs38(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(Just(x0), Nothing, x1) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2) new_compare18(Just(x0), Just(x1), x2) new_lt10(x0, x1, ty_Integer) new_lt9(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs26(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare33(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Int) new_ltEs8(Right(x0), Right(x1), x2, ty_Char) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Double) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_pePe(False, x0) new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_@0) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Double) new_compare5(GT, GT) new_ltEs17(x0, x1) new_esEs38(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, ty_Bool) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, True, x2, x3) new_ltEs24(x0, x1, ty_Bool) new_compare31(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, x2, x3, False, x4, x5, x6) new_lt10(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_compare26(x0, x1, False, x2, x3) new_lt8(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs4(x0, x1, ty_Ordering) new_compare33(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1) new_ltEs21(x0, x1, ty_Integer) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Double) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, ty_@0) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Bool) new_esEs12(GT) new_ltEs21(x0, x1, ty_Bool) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Double) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Ordering) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_primEqNat0(Zero, Succ(x0)) new_esEs26(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_lt9(x0, x1, ty_Integer) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs24(x0, x1, ty_Integer) new_ltEs12(x0, x1) new_asAs(True, x0) new_esEs27(x0, x1, ty_Int) new_compare110(x0, x1, x2, x3, True, x4, x5) new_ltEs14(False, False) new_ltEs19(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs36(x0, x1, ty_Double) new_ltEs8(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare33(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Char) new_compare14(False, False) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare0([], [], x0) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Ordering) new_lt24(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3) new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, GT) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_lt9(x0, x1, ty_Double) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Zero, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(Just(x0), Just(x1), ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_sr(x0, x1) new_esEs35(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare7(@0, @0) new_esEs36(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs40(x0, x1, ty_@0) new_esEs31(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_@0) new_compare14(True, False) new_compare14(False, True) new_compare5(GT, LT) new_compare5(LT, GT) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_esEs32(x0, x1, ty_Double) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_not(True) new_lt24(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_@0) new_gt(x0, x1, ty_Double) new_lt9(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_@0) new_esEs26(Just(x0), Just(x1), ty_Char) new_lt9(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), x1) new_ltEs19(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), ty_Float) new_lt10(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Just(x0), Nothing, x1) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs10(x0, x1, ty_@0) new_lt10(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, ty_Char) new_esEs4(x0, x1, ty_@0) new_esEs26(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs6(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_esEs40(x0, x1, ty_Bool) new_ltEs15(Nothing, Nothing, x0) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs26(Just(x0), Just(x1), ty_@0) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_esEs19(True, True) new_compare33(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, x2, x3) new_compare25(x0, x1, True, x2) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(GT, GT) new_lt11(x0, x1) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_esEs33(x0, x1, ty_Integer) new_esEs17([], :(x0, x1), x2) new_gt(x0, x1, ty_Char) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs13(Char(x0), Char(x1)) new_lt24(x0, x1, ty_Integer) new_esEs26(Nothing, Nothing, x0) new_ltEs4(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Int) new_esEs15(Integer(x0), Integer(x1)) new_lt4(x0, x1) new_ltEs16(x0, x1) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_lt16(x0, x1) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_[], x2)) new_compare18(Nothing, Just(x0), x1) new_esEs6(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Integer) new_compare25(x0, x1, False, x2) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, True, x2, x3) new_esEs40(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_gt(x0, x1, ty_Float) new_not(False) new_primCompAux0(x0, EQ) new_lt24(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Integer) new_asAs(False, x0) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_esEs23(EQ, EQ) new_esEs12(LT) new_lt20(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17([], [], x0) new_esEs38(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Left(x0), Left(x1), ty_Double, x2) new_esEs26(Just(x0), Just(x1), ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_compare33(x0, x1, ty_@0) new_esEs41(LT) new_lt24(x0, x1, ty_Int) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Int) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Float) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Int) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_@0) new_esEs17(:(x0, x1), [], x2) new_esEs39(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_[], x2)) new_gt(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Integer) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare33(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_compare33(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs22(x0, x1, ty_Double) new_ltEs8(Right(x0), Right(x1), x2, ty_Int) new_lt23(x0, x1, ty_@0) new_lt9(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_primCompAux0(x0, LT) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs10(x0, x1, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_gt(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_lt24(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_compare5(EQ, LT) new_esEs17(:(x0, x1), :(x2, x3), x4) new_compare5(LT, EQ) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs4(x0, x1, ty_Integer) new_lt10(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs7(EQ, EQ) new_lt21(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Integer) new_ltEs15(Just(x0), Nothing, x1) new_esEs23(LT, LT) new_compare14(True, True) new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs35(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Int) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_@0) new_esEs23(EQ, GT) new_esEs23(GT, EQ) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs41(GT) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(Just(x0), Just(x1), ty_Float) new_lt17(x0, x1, x2, x3) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt7(x0, x1) new_compare29(x0, x1, False, x2, x3) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_compare33(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Bool) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs26(Just(x0), Just(x1), ty_Double) new_compare18(Nothing, Nothing, x0) new_esEs39(x0, x1, ty_@0) new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Float) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Ordering) new_esEs26(Just(x0), Just(x1), app(ty_[], x2)) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare28(x0, x1, x2, x3, False, x4, x5) new_ltEs18(x0, x1) new_esEs19(False, True) new_esEs19(True, False) new_esEs40(x0, x1, ty_Float) new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Int) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt14(x0, x1, x2) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs8(Left(x0), Left(x1), ty_Float, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Double) new_primMulInt(Pos(x0), Pos(x1)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare17(x0, x1, x2, x3, True, x4, x5, x6) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, ty_@0) new_gt(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_esEs26(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare32(Left(x0), Right(x1), x2, x3) new_compare32(Right(x0), Left(x1), x2, x3) new_compare19(x0, x1, False, x2, x3) new_esEs8(x0, x1, ty_Char) new_compare5(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1) new_ltEs24(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Integer) new_fsEs(x0) new_lt22(x0, x1, ty_Float) new_esEs26(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare32(Right(x0), Right(x1), x2, x3) new_ltEs23(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt22(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_ltEs8(Left(x0), Left(x1), ty_Char, x2) new_esEs26(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Int) new_esEs11(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1) new_compare32(Left(x0), Left(x1), x2, x3) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_lt24(x0, x1, ty_Double) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, False, x2, x3) new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) new_esEs39(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Float) new_sr0(Integer(x0), Integer(x1)) new_compare33(x0, x1, ty_Int) new_compare30(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Right(x0), Right(x1), x2, ty_Float) new_lt20(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Integer) new_primMulNat0(Zero, Zero) new_esEs10(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Bool) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(:(x0, x1), [], x2) new_esEs37(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs7(LT, LT) new_ltEs8(Left(x0), Left(x1), ty_@0, x2) new_esEs9(x0, x1, ty_Bool) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs23(LT, GT) new_esEs23(GT, LT) new_gt(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs20(Float(x0, x1), Float(x2, x3)) new_esEs34(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Char) new_compare33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_lt10(x0, x1, ty_Ordering) new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_lt20(x0, x1, ty_@0) new_lt21(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Double) new_ltEs14(True, True) new_esEs36(x0, x1, ty_Ordering) new_esEs25(@0, @0) new_lt22(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_compare12(Integer(x0), Integer(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Int) new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) new_lt24(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Char) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs10(x0, x1, ty_Char) new_esEs26(Nothing, Just(x0), x1) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1) new_compare5(GT, EQ) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(EQ, GT) new_lt21(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_lt10(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_compare9(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs38(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Integer) new_ltEs15(Just(x0), Just(x1), ty_@0) new_primMulNat0(Succ(x0), Zero) new_esEs31(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs40(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt24(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(Just(x0), Just(x1), ty_Ordering) new_lt12(x0, x1) new_esEs7(x0, x1, ty_Char) new_ltEs6(x0, x1) new_esEs29(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Integer) new_ltEs8(Right(x0), Right(x1), x2, ty_@0) new_compare33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Integer) new_compare5(EQ, EQ) new_esEs7(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Int) new_primCmpNat0(Succ(x0), Zero) new_lt15(x0, x1, x2, x3, x4) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_esEs38(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_lt23(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_compare10(x0, x1, True, x2) new_esEs10(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Float) new_ltEs4(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_lt5(x0, x1) new_ltEs8(Right(x0), Left(x1), x2, x3) new_ltEs8(Left(x0), Right(x1), x2, x3) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(EQ) new_esEs7(x0, x1, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs41(EQ) new_lt23(x0, x1, ty_Int) new_ltEs9(x0, x1, x2) new_esEs23(GT, GT) new_ltEs23(x0, x1, ty_Char) new_lt21(x0, x1, ty_Float) new_esEs23(LT, EQ) new_esEs23(EQ, LT) new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs14(False, True) new_ltEs14(True, False) new_primCompAux1(x0, x1, x2, x3) new_ltEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs15(Nothing, Just(x0), x1) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primPlusNat1(Succ(x0), Zero) new_primPlusNat1(Zero, Succ(x0)) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Int) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_compare33(x0, x1, ty_Double) new_compare33(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Double) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Ordering) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_lookupWithDefaultFM01(vyw4, Branch(vyw30, vyw31, vyw32, vyw33, vyw34), vyw5, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw30, vyw31, vyw32, vyw33, vyw34, vyw5, new_lt24(vyw5, vyw30, be), bd, be) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_lookupWithDefaultFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, h, ba) -> new_lookupWithDefaultFM01(vyw15, vyw19, vyw21, h, ba) The graph contains the following edges 1 >= 1, 5 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 *new_lookupWithDefaultFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, h, ba) -> new_lookupWithDefaultFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_gt(vyw21, vyw16, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 *new_lookupWithDefaultFM00(vyw32, vyw33, vyw34, vyw35, vyw36, vyw37, vyw38, True, bb, bc) -> new_lookupWithDefaultFM01(vyw32, vyw37, vyw38, bb, bc) The graph contains the following edges 1 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, vyw30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, vyw30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyw19800), Succ(vyw51000)) -> new_primPlusNat(vyw19800, vyw51000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vyw19800), Succ(vyw51000)) -> new_primPlusNat(vyw19800, vyw51000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES