26.77/13.71 YES 29.71/14.50 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 29.71/14.50 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 29.71/14.50 29.71/14.50 29.71/14.50 H-Termination with start terms of the given HASKELL could be proven: 29.71/14.50 29.71/14.50 (0) HASKELL 29.71/14.50 (1) LR [EQUIVALENT, 0 ms] 29.71/14.50 (2) HASKELL 29.71/14.50 (3) CR [EQUIVALENT, 0 ms] 29.71/14.50 (4) HASKELL 29.71/14.50 (5) IFR [EQUIVALENT, 0 ms] 29.71/14.50 (6) HASKELL 29.71/14.50 (7) BR [EQUIVALENT, 0 ms] 29.71/14.50 (8) HASKELL 29.71/14.50 (9) COR [EQUIVALENT, 4 ms] 29.71/14.50 (10) HASKELL 29.71/14.50 (11) LetRed [EQUIVALENT, 0 ms] 29.71/14.50 (12) HASKELL 29.71/14.50 (13) NumRed [SOUND, 10 ms] 29.71/14.50 (14) HASKELL 29.71/14.50 (15) Narrow [SOUND, 0 ms] 29.71/14.50 (16) AND 29.71/14.50 (17) QDP 29.71/14.50 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.71/14.50 (19) YES 29.71/14.50 (20) QDP 29.71/14.50 (21) QDPSizeChangeProof [EQUIVALENT, 11 ms] 29.71/14.50 (22) YES 29.71/14.50 (23) QDP 29.71/14.50 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.71/14.50 (25) YES 29.71/14.50 (26) QDP 29.71/14.50 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.71/14.50 (28) YES 29.71/14.50 (29) QDP 29.71/14.50 (30) QDPSizeChangeProof [EQUIVALENT, 155 ms] 29.71/14.50 (31) YES 29.71/14.50 (32) QDP 29.71/14.50 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.71/14.50 (34) YES 29.71/14.50 (35) QDP 29.71/14.50 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 29.71/14.50 (37) YES 29.71/14.50 29.71/14.50 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (0) 29.71/14.50 Obligation: 29.71/14.50 mainModule Main 29.71/14.50 module FiniteMap where { 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.71/14.50 29.71/14.50 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.71/14.50 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.71/14.50 } 29.71/14.50 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 29.71/14.50 elemFM key fm = case lookupFM fm key of { 29.71/14.50 Nothing-> False; 29.71/14.50 Just elt-> True; 29.71/14.50 } ; 29.71/14.50 29.71/14.50 fmToList :: FiniteMap b a -> [(b,a)]; 29.71/14.50 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 29.71/14.50 29.71/14.50 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 29.71/14.50 foldFM k z EmptyFM = z; 29.71/14.50 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.71/14.50 29.71/14.50 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 29.71/14.50 lookupFM EmptyFM key = Nothing; 29.71/14.50 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 29.71/14.50 | key_to_find > key = lookupFM fm_r key_to_find 29.71/14.50 | otherwise = Just elt; 29.71/14.50 29.71/14.50 sizeFM :: FiniteMap a b -> Int; 29.71/14.50 sizeFM EmptyFM = 0; 29.71/14.50 sizeFM (Branch _ _ size _ _) = size; 29.71/14.50 29.71/14.50 } 29.71/14.50 module Maybe where { 29.71/14.50 import qualified FiniteMap; 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Prelude; 29.71/14.50 } 29.71/14.50 module Main where { 29.71/14.50 import qualified FiniteMap; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 } 29.71/14.50 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (1) LR (EQUIVALENT) 29.71/14.50 Lambda Reductions: 29.71/14.50 The following Lambda expression 29.71/14.50 "\keyeltrest->(key,elt) : rest" 29.71/14.50 is transformed to 29.71/14.50 "fmToList0 key elt rest = (key,elt) : rest; 29.71/14.50 " 29.71/14.50 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (2) 29.71/14.50 Obligation: 29.71/14.50 mainModule Main 29.71/14.50 module FiniteMap where { 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.71/14.50 29.71/14.50 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.71/14.50 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.71/14.50 } 29.71/14.50 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 29.71/14.50 elemFM key fm = case lookupFM fm key of { 29.71/14.50 Nothing-> False; 29.71/14.50 Just elt-> True; 29.71/14.50 } ; 29.71/14.50 29.71/14.50 fmToList :: FiniteMap a b -> [(a,b)]; 29.71/14.50 fmToList fm = foldFM fmToList0 [] fm; 29.71/14.50 29.71/14.50 fmToList0 key elt rest = (key,elt) : rest; 29.71/14.50 29.71/14.50 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 29.71/14.50 foldFM k z EmptyFM = z; 29.71/14.50 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.71/14.50 29.71/14.50 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 29.71/14.50 lookupFM EmptyFM key = Nothing; 29.71/14.50 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 29.71/14.50 | key_to_find > key = lookupFM fm_r key_to_find 29.71/14.50 | otherwise = Just elt; 29.71/14.50 29.71/14.50 sizeFM :: FiniteMap a b -> Int; 29.71/14.50 sizeFM EmptyFM = 0; 29.71/14.50 sizeFM (Branch _ _ size _ _) = size; 29.71/14.50 29.71/14.50 } 29.71/14.50 module Maybe where { 29.71/14.50 import qualified FiniteMap; 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Prelude; 29.71/14.50 } 29.71/14.50 module Main where { 29.71/14.50 import qualified FiniteMap; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 } 29.71/14.50 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (3) CR (EQUIVALENT) 29.71/14.50 Case Reductions: 29.71/14.50 The following Case expression 29.71/14.50 "case compare x y of { 29.71/14.50 EQ -> o; 29.71/14.50 LT -> LT; 29.71/14.50 GT -> GT} 29.71/14.50 " 29.71/14.50 is transformed to 29.71/14.50 "primCompAux0 o EQ = o; 29.71/14.50 primCompAux0 o LT = LT; 29.71/14.50 primCompAux0 o GT = GT; 29.71/14.50 " 29.71/14.50 The following Case expression 29.71/14.50 "case lookupFM fm key of { 29.71/14.50 Nothing -> False; 29.71/14.50 Just elt -> True} 29.71/14.50 " 29.71/14.50 is transformed to 29.71/14.50 "elemFM0 Nothing = False; 29.71/14.50 elemFM0 (Just elt) = True; 29.71/14.50 " 29.71/14.50 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (4) 29.71/14.50 Obligation: 29.71/14.50 mainModule Main 29.71/14.50 module FiniteMap where { 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.71/14.50 29.71/14.50 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.71/14.50 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.71/14.50 } 29.71/14.50 elemFM :: Ord b => b -> FiniteMap b a -> Bool; 29.71/14.50 elemFM key fm = elemFM0 (lookupFM fm key); 29.71/14.50 29.71/14.50 elemFM0 Nothing = False; 29.71/14.50 elemFM0 (Just elt) = True; 29.71/14.50 29.71/14.50 fmToList :: FiniteMap b a -> [(b,a)]; 29.71/14.50 fmToList fm = foldFM fmToList0 [] fm; 29.71/14.50 29.71/14.50 fmToList0 key elt rest = (key,elt) : rest; 29.71/14.50 29.71/14.50 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 29.71/14.50 foldFM k z EmptyFM = z; 29.71/14.50 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.71/14.50 29.71/14.50 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 29.71/14.50 lookupFM EmptyFM key = Nothing; 29.71/14.50 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 29.71/14.50 | key_to_find > key = lookupFM fm_r key_to_find 29.71/14.50 | otherwise = Just elt; 29.71/14.50 29.71/14.50 sizeFM :: FiniteMap b a -> Int; 29.71/14.50 sizeFM EmptyFM = 0; 29.71/14.50 sizeFM (Branch _ _ size _ _) = size; 29.71/14.50 29.71/14.50 } 29.71/14.50 module Maybe where { 29.71/14.50 import qualified FiniteMap; 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Prelude; 29.71/14.50 } 29.71/14.50 module Main where { 29.71/14.50 import qualified FiniteMap; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 } 29.71/14.50 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (5) IFR (EQUIVALENT) 29.71/14.50 If Reductions: 29.71/14.50 The following If expression 29.71/14.50 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 29.71/14.50 is transformed to 29.71/14.50 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 29.71/14.50 primDivNatS0 x y False = Zero; 29.71/14.50 " 29.71/14.50 The following If expression 29.71/14.50 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 29.71/14.50 is transformed to 29.71/14.50 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 29.71/14.50 primModNatS0 x y False = Succ x; 29.71/14.50 " 29.71/14.50 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (6) 29.71/14.50 Obligation: 29.71/14.50 mainModule Main 29.71/14.50 module FiniteMap where { 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.71/14.50 29.71/14.50 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.71/14.50 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.71/14.50 } 29.71/14.50 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 29.71/14.50 elemFM key fm = elemFM0 (lookupFM fm key); 29.71/14.50 29.71/14.50 elemFM0 Nothing = False; 29.71/14.50 elemFM0 (Just elt) = True; 29.71/14.50 29.71/14.50 fmToList :: FiniteMap a b -> [(a,b)]; 29.71/14.50 fmToList fm = foldFM fmToList0 [] fm; 29.71/14.50 29.71/14.50 fmToList0 key elt rest = (key,elt) : rest; 29.71/14.50 29.71/14.50 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 29.71/14.50 foldFM k z EmptyFM = z; 29.71/14.50 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.71/14.50 29.71/14.50 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 29.71/14.50 lookupFM EmptyFM key = Nothing; 29.71/14.50 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 29.71/14.50 | key_to_find > key = lookupFM fm_r key_to_find 29.71/14.50 | otherwise = Just elt; 29.71/14.50 29.71/14.50 sizeFM :: FiniteMap a b -> Int; 29.71/14.50 sizeFM EmptyFM = 0; 29.71/14.50 sizeFM (Branch _ _ size _ _) = size; 29.71/14.50 29.71/14.50 } 29.71/14.50 module Maybe where { 29.71/14.50 import qualified FiniteMap; 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Prelude; 29.71/14.50 } 29.71/14.50 module Main where { 29.71/14.50 import qualified FiniteMap; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 } 29.71/14.50 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (7) BR (EQUIVALENT) 29.71/14.50 Replaced joker patterns by fresh variables and removed binding patterns. 29.71/14.50 ---------------------------------------- 29.71/14.50 29.71/14.50 (8) 29.71/14.50 Obligation: 29.71/14.50 mainModule Main 29.71/14.50 module FiniteMap where { 29.71/14.50 import qualified Main; 29.71/14.50 import qualified Maybe; 29.71/14.50 import qualified Prelude; 29.71/14.50 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.71/14.51 29.71/14.51 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.71/14.51 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.71/14.51 } 29.71/14.51 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 29.71/14.51 elemFM key fm = elemFM0 (lookupFM fm key); 29.71/14.51 29.71/14.51 elemFM0 Nothing = False; 29.71/14.51 elemFM0 (Just elt) = True; 29.71/14.51 29.71/14.51 fmToList :: FiniteMap a b -> [(a,b)]; 29.71/14.51 fmToList fm = foldFM fmToList0 [] fm; 29.71/14.51 29.71/14.51 fmToList0 key elt rest = (key,elt) : rest; 29.71/14.51 29.71/14.51 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 29.71/14.51 foldFM k z EmptyFM = z; 29.71/14.51 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.71/14.51 29.71/14.51 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 29.71/14.51 lookupFM EmptyFM key = Nothing; 29.71/14.51 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 29.71/14.51 | key_to_find > key = lookupFM fm_r key_to_find 29.71/14.51 | otherwise = Just elt; 29.71/14.51 29.71/14.51 sizeFM :: FiniteMap a b -> Int; 29.71/14.51 sizeFM EmptyFM = 0; 29.71/14.51 sizeFM (Branch zz vuu size vuv vuw) = size; 29.71/14.51 29.71/14.51 } 29.71/14.51 module Maybe where { 29.71/14.51 import qualified FiniteMap; 29.71/14.51 import qualified Main; 29.71/14.51 import qualified Prelude; 29.71/14.51 } 29.71/14.51 module Main where { 29.71/14.51 import qualified FiniteMap; 29.71/14.51 import qualified Maybe; 29.71/14.51 import qualified Prelude; 29.71/14.51 } 29.71/14.51 29.71/14.51 ---------------------------------------- 29.71/14.51 29.71/14.51 (9) COR (EQUIVALENT) 29.71/14.51 Cond Reductions: 29.71/14.51 The following Function with conditions 29.71/14.51 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 29.71/14.51 " 29.71/14.51 is transformed to 29.71/14.51 "compare x y = compare3 x y; 29.71/14.51 " 29.71/14.51 "compare1 x y True = LT; 29.71/14.51 compare1 x y False = compare0 x y otherwise; 29.71/14.51 " 29.71/14.51 "compare2 x y True = EQ; 29.71/14.51 compare2 x y False = compare1 x y (x <= y); 29.71/14.51 " 29.71/14.51 "compare0 x y True = GT; 29.71/14.51 " 29.71/14.51 "compare3 x y = compare2 x y (x == y); 29.71/14.51 " 29.71/14.51 The following Function with conditions 29.71/14.51 "absReal x|x >= 0x|otherwise`negate` x; 29.71/14.51 " 29.71/14.51 is transformed to 29.71/14.51 "absReal x = absReal2 x; 29.71/14.51 " 29.71/14.51 "absReal0 x True = `negate` x; 29.71/14.51 " 29.71/14.51 "absReal1 x True = x; 29.71/14.51 absReal1 x False = absReal0 x otherwise; 29.71/14.51 " 29.71/14.51 "absReal2 x = absReal1 x (x >= 0); 29.71/14.51 " 29.71/14.51 The following Function with conditions 29.71/14.51 "gcd' x 0 = x; 29.71/14.51 gcd' x y = gcd' y (x `rem` y); 29.71/14.51 " 29.71/14.51 is transformed to 29.71/14.51 "gcd' x vuy = gcd'2 x vuy; 29.71/14.51 gcd' x y = gcd'0 x y; 29.71/14.51 " 29.71/14.51 "gcd'0 x y = gcd' y (x `rem` y); 29.71/14.51 " 29.71/14.51 "gcd'1 True x vuy = x; 29.71/14.51 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 29.71/14.51 " 29.71/14.51 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 29.71/14.51 gcd'2 vvw vvx = gcd'0 vvw vvx; 29.71/14.51 " 29.71/14.51 The following Function with conditions 29.71/14.51 "gcd 0 0 = error []; 29.71/14.51 gcd x y = gcd' (abs x) (abs y) where { 29.71/14.51 gcd' x 0 = x; 29.71/14.51 gcd' x y = gcd' y (x `rem` y); 29.71/14.51 } 29.71/14.51 ; 29.71/14.51 " 29.71/14.51 is transformed to 29.71/14.51 "gcd vvy vvz = gcd3 vvy vvz; 29.71/14.51 gcd x y = gcd0 x y; 29.71/14.51 " 29.71/14.51 "gcd0 x y = gcd' (abs x) (abs y) where { 29.71/14.51 gcd' x vuy = gcd'2 x vuy; 29.71/14.51 gcd' x y = gcd'0 x y; 29.71/14.51 ; 29.71/14.51 gcd'0 x y = gcd' y (x `rem` y); 29.71/14.51 ; 29.71/14.51 gcd'1 True x vuy = x; 29.71/14.51 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 29.71/14.51 ; 29.71/14.51 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 29.71/14.51 gcd'2 vvw vvx = gcd'0 vvw vvx; 29.71/14.51 } 29.71/14.51 ; 29.71/14.51 " 29.71/14.51 "gcd1 True vvy vvz = error []; 29.71/14.51 gcd1 vwu vwv vww = gcd0 vwv vww; 29.71/14.51 " 29.71/14.51 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 29.71/14.51 gcd2 vwx vwy vwz = gcd0 vwy vwz; 29.71/14.51 " 29.71/14.51 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 29.71/14.51 gcd3 vxu vxv = gcd0 vxu vxv; 29.71/14.51 " 29.71/14.51 The following Function with conditions 29.71/14.51 "undefined |Falseundefined; 29.71/14.51 " 29.71/14.51 is transformed to 29.71/14.51 "undefined = undefined1; 29.71/14.51 " 29.71/14.51 "undefined0 True = undefined; 29.71/14.51 " 29.71/14.51 "undefined1 = undefined0 False; 29.71/14.51 " 29.71/14.51 The following Function with conditions 29.71/14.51 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 29.71/14.51 d = gcd x y; 29.71/14.51 } 29.71/14.51 ; 29.71/14.51 " 29.71/14.51 is transformed to 29.71/14.51 "reduce x y = reduce2 x y; 29.71/14.51 " 29.71/14.51 "reduce2 x y = reduce1 x y (y == 0) where { 29.71/14.51 d = gcd x y; 29.71/14.51 ; 29.71/14.51 reduce0 x y True = x `quot` d :% (y `quot` d); 29.71/14.51 ; 29.71/14.51 reduce1 x y True = error []; 29.71/14.51 reduce1 x y False = reduce0 x y otherwise; 29.71/14.51 } 29.71/14.51 ; 29.71/14.51 " 29.71/14.51 The following Function with conditions 29.71/14.51 "lookupFM EmptyFM key = Nothing; 29.71/14.51 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; 29.71/14.51 " 29.71/14.51 is transformed to 29.71/14.51 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 29.71/14.51 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 29.71/14.51 " 29.71/14.51 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 29.71/14.51 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); 29.71/14.51 " 29.71/14.51 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 29.71/14.51 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 29.71/14.51 " 29.71/14.51 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 29.71/14.51 " 29.71/14.51 "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); 29.71/14.51 " 29.71/14.51 "lookupFM4 EmptyFM key = Nothing; 29.71/14.51 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 29.71/14.51 " 29.71/14.51 29.71/14.51 ---------------------------------------- 29.71/14.51 29.71/14.51 (10) 29.71/14.51 Obligation: 29.71/14.51 mainModule Main 29.71/14.51 module FiniteMap where { 29.71/14.51 import qualified Main; 29.71/14.51 import qualified Maybe; 29.71/14.51 import qualified Prelude; 29.71/14.51 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.71/14.51 29.71/14.51 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.71/14.51 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.71/14.51 } 29.71/14.51 elemFM :: Ord b => b -> FiniteMap b a -> Bool; 29.71/14.51 elemFM key fm = elemFM0 (lookupFM fm key); 29.71/14.51 29.71/14.51 elemFM0 Nothing = False; 29.71/14.51 elemFM0 (Just elt) = True; 29.71/14.51 29.71/14.51 fmToList :: FiniteMap a b -> [(a,b)]; 29.71/14.51 fmToList fm = foldFM fmToList0 [] fm; 29.71/14.52 29.71/14.52 fmToList0 key elt rest = (key,elt) : rest; 29.71/14.52 29.71/14.52 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 29.71/14.52 foldFM k z EmptyFM = z; 29.71/14.52 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.71/14.52 29.71/14.52 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 29.71/14.52 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 29.71/14.52 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 29.71/14.52 29.71/14.52 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 29.71/14.52 29.71/14.52 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 29.71/14.52 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 29.71/14.52 29.71/14.52 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 29.71/14.52 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); 29.71/14.52 29.71/14.52 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); 29.71/14.52 29.71/14.52 lookupFM4 EmptyFM key = Nothing; 29.71/14.52 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 29.71/14.52 29.71/14.52 sizeFM :: FiniteMap b a -> Int; 29.71/14.52 sizeFM EmptyFM = 0; 29.71/14.52 sizeFM (Branch zz vuu size vuv vuw) = size; 29.71/14.52 29.71/14.52 } 29.71/14.52 module Maybe where { 29.71/14.52 import qualified FiniteMap; 29.71/14.52 import qualified Main; 29.71/14.52 import qualified Prelude; 29.71/14.52 } 29.71/14.52 module Main where { 29.71/14.52 import qualified FiniteMap; 29.71/14.52 import qualified Maybe; 29.71/14.52 import qualified Prelude; 29.71/14.52 } 29.71/14.52 29.71/14.52 ---------------------------------------- 29.71/14.52 29.71/14.52 (11) LetRed (EQUIVALENT) 29.71/14.52 Let/Where Reductions: 29.71/14.52 The bindings of the following Let/Where expression 29.71/14.52 "gcd' (abs x) (abs y) where { 29.71/14.52 gcd' x vuy = gcd'2 x vuy; 29.71/14.52 gcd' x y = gcd'0 x y; 29.71/14.52 ; 29.71/14.52 gcd'0 x y = gcd' y (x `rem` y); 29.71/14.52 ; 29.71/14.52 gcd'1 True x vuy = x; 29.71/14.52 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 29.71/14.52 ; 29.71/14.52 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 29.71/14.52 gcd'2 vvw vvx = gcd'0 vvw vvx; 29.71/14.52 } 29.71/14.52 " 29.71/14.52 are unpacked to the following functions on top level 29.71/14.52 "gcd0Gcd'1 True x vuy = x; 29.71/14.52 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 29.71/14.52 " 29.71/14.52 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 29.71/14.52 " 29.71/14.52 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 29.71/14.52 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 29.71/14.52 " 29.71/14.52 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 29.71/14.52 gcd0Gcd' x y = gcd0Gcd'0 x y; 29.71/14.52 " 29.71/14.52 The bindings of the following Let/Where expression 29.71/14.52 "reduce1 x y (y == 0) where { 29.71/14.52 d = gcd x y; 29.71/14.52 ; 29.71/14.52 reduce0 x y True = x `quot` d :% (y `quot` d); 29.71/14.52 ; 29.71/14.52 reduce1 x y True = error []; 29.71/14.52 reduce1 x y False = reduce0 x y otherwise; 29.71/14.52 } 29.71/14.52 " 29.71/14.52 are unpacked to the following functions on top level 29.71/14.52 "reduce2D vyu vyv = gcd vyu vyv; 29.71/14.52 " 29.71/14.52 "reduce2Reduce1 vyu vyv x y True = error []; 29.71/14.52 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 29.71/14.52 " 29.71/14.52 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 29.71/14.52 " 29.71/14.52 29.71/14.52 ---------------------------------------- 29.71/14.52 29.71/14.52 (12) 29.71/14.52 Obligation: 29.71/14.52 mainModule Main 29.71/14.52 module FiniteMap where { 29.71/14.52 import qualified Main; 29.71/14.52 import qualified Maybe; 29.71/14.52 import qualified Prelude; 29.71/14.52 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.71/14.52 29.71/14.52 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.71/14.52 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.71/14.52 } 29.71/14.52 elemFM :: Ord b => b -> FiniteMap b a -> Bool; 29.71/14.52 elemFM key fm = elemFM0 (lookupFM fm key); 29.71/14.52 29.71/14.52 elemFM0 Nothing = False; 29.71/14.52 elemFM0 (Just elt) = True; 29.71/14.52 29.71/14.52 fmToList :: FiniteMap b a -> [(b,a)]; 29.71/14.52 fmToList fm = foldFM fmToList0 [] fm; 29.71/14.52 29.71/14.52 fmToList0 key elt rest = (key,elt) : rest; 29.71/14.52 29.71/14.52 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 29.71/14.52 foldFM k z EmptyFM = z; 29.71/14.52 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.71/14.52 29.71/14.52 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 29.71/14.52 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 29.71/14.52 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 29.71/14.52 29.71/14.52 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 29.71/14.52 29.71/14.52 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 29.71/14.52 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 29.71/14.52 29.71/14.52 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 29.71/14.52 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); 29.71/14.52 29.71/14.52 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); 29.71/14.52 29.71/14.52 lookupFM4 EmptyFM key = Nothing; 29.71/14.52 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 29.71/14.52 29.71/14.52 sizeFM :: FiniteMap b a -> Int; 29.71/14.52 sizeFM EmptyFM = 0; 29.71/14.52 sizeFM (Branch zz vuu size vuv vuw) = size; 29.71/14.52 29.71/14.52 } 29.71/14.52 module Maybe where { 29.71/14.52 import qualified FiniteMap; 29.71/14.52 import qualified Main; 29.71/14.52 import qualified Prelude; 29.71/14.52 } 29.71/14.52 module Main where { 29.71/14.52 import qualified FiniteMap; 29.71/14.52 import qualified Maybe; 29.71/14.52 import qualified Prelude; 29.71/14.52 } 29.71/14.52 29.71/14.52 ---------------------------------------- 29.71/14.52 29.71/14.52 (13) NumRed (SOUND) 29.71/14.52 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 29.71/14.52 ---------------------------------------- 29.71/14.52 29.71/14.52 (14) 29.71/14.52 Obligation: 29.71/14.52 mainModule Main 29.71/14.52 module FiniteMap where { 29.71/14.52 import qualified Main; 29.71/14.52 import qualified Maybe; 29.71/14.52 import qualified Prelude; 29.71/14.52 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.71/14.52 29.71/14.52 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.71/14.52 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.71/14.52 } 29.71/14.52 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 29.71/14.52 elemFM key fm = elemFM0 (lookupFM fm key); 29.71/14.52 29.71/14.52 elemFM0 Nothing = False; 29.71/14.52 elemFM0 (Just elt) = True; 29.71/14.52 29.71/14.52 fmToList :: FiniteMap b a -> [(b,a)]; 29.71/14.52 fmToList fm = foldFM fmToList0 [] fm; 29.71/14.52 29.71/14.52 fmToList0 key elt rest = (key,elt) : rest; 29.71/14.52 29.71/14.52 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 29.71/14.52 foldFM k z EmptyFM = z; 29.71/14.52 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.71/14.52 29.71/14.52 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 29.71/14.52 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 29.71/14.52 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 29.71/14.52 29.71/14.52 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 29.71/14.52 29.71/14.52 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 29.71/14.52 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 29.71/14.52 29.71/14.52 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 29.71/14.52 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); 29.71/14.52 29.71/14.52 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); 29.71/14.52 29.71/14.52 lookupFM4 EmptyFM key = Nothing; 29.71/14.52 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 29.71/14.52 29.71/14.52 sizeFM :: FiniteMap a b -> Int; 29.71/14.52 sizeFM EmptyFM = Pos Zero; 29.71/14.52 sizeFM (Branch zz vuu size vuv vuw) = size; 29.71/14.52 29.71/14.52 } 29.71/14.52 module Maybe where { 29.71/14.52 import qualified FiniteMap; 29.71/14.52 import qualified Main; 29.71/14.52 import qualified Prelude; 29.71/14.52 } 29.71/14.52 module Main where { 29.71/14.52 import qualified FiniteMap; 29.71/14.52 import qualified Maybe; 29.71/14.52 import qualified Prelude; 29.71/14.52 } 29.71/14.52 29.71/14.52 ---------------------------------------- 29.71/14.52 29.71/14.52 (15) Narrow (SOUND) 29.71/14.52 Haskell To QDPs 29.71/14.52 29.71/14.52 digraph dp_graph { 29.71/14.52 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.elemFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 29.71/14.52 3[label="FiniteMap.elemFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 29.71/14.52 4[label="FiniteMap.elemFM vyw3 vyw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 29.71/14.52 5[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw4 vyw3)",fontsize=16,color="burlywood",shape="triangle"];2930[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 2930[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2930 -> 6[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2931[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 2931[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2931 -> 7[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 6[label="FiniteMap.elemFM0 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 29.71/14.52 7[label="FiniteMap.elemFM0 (FiniteMap.lookupFM (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 29.71/14.52 8[label="FiniteMap.elemFM0 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 29.71/14.52 9[label="FiniteMap.elemFM0 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 29.71/14.52 10[label="FiniteMap.elemFM0 Nothing",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 29.71/14.52 11 -> 13[label="",style="dashed", color="red", weight=0]; 29.71/14.52 11[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (vyw3 < vyw40))",fontsize=16,color="magenta"];11 -> 14[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 11 -> 15[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 11 -> 16[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 11 -> 17[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 11 -> 18[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 11 -> 19[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 11 -> 20[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 12[label="False",fontsize=16,color="green",shape="box"];14[label="vyw44",fontsize=16,color="green",shape="box"];15[label="vyw40",fontsize=16,color="green",shape="box"];16[label="vyw3 < vyw40",fontsize=16,color="blue",shape="box"];2932[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2932[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2932 -> 21[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2933[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2933[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2933 -> 22[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2934[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2934[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2934 -> 23[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2935[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2935[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2935 -> 24[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2936[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2936[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2936 -> 25[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2937[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2937[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2937 -> 26[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2938[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2938[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2938 -> 27[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2939[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2939[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2939 -> 28[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2940[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2940[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2940 -> 29[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2941[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2941[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2941 -> 30[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2942[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2942[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2942 -> 31[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2943[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2943[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2943 -> 32[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2944[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2944[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2944 -> 33[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2945[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2945[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2945 -> 34[label="",style="solid", color="blue", weight=3]; 29.71/14.52 17[label="vyw41",fontsize=16,color="green",shape="box"];18[label="vyw42",fontsize=16,color="green",shape="box"];19[label="vyw43",fontsize=16,color="green",shape="box"];20[label="vyw3",fontsize=16,color="green",shape="box"];13[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 vyw19)",fontsize=16,color="burlywood",shape="triangle"];2946[label="vyw19/False",fontsize=10,color="white",style="solid",shape="box"];13 -> 2946[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2946 -> 35[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2947[label="vyw19/True",fontsize=10,color="white",style="solid",shape="box"];13 -> 2947[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2947 -> 36[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 21[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];21 -> 37[label="",style="solid", color="black", weight=3]; 29.71/14.52 22[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];22 -> 38[label="",style="solid", color="black", weight=3]; 29.71/14.52 23[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];23 -> 39[label="",style="solid", color="black", weight=3]; 29.71/14.52 24[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];24 -> 40[label="",style="solid", color="black", weight=3]; 29.71/14.52 25[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];25 -> 41[label="",style="solid", color="black", weight=3]; 29.71/14.52 26[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];26 -> 42[label="",style="solid", color="black", weight=3]; 29.71/14.52 27[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];27 -> 43[label="",style="solid", color="black", weight=3]; 29.71/14.52 28[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];28 -> 44[label="",style="solid", color="black", weight=3]; 29.71/14.52 29[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];29 -> 45[label="",style="solid", color="black", weight=3]; 29.71/14.52 30[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];30 -> 46[label="",style="solid", color="black", weight=3]; 29.71/14.52 31[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];31 -> 47[label="",style="solid", color="black", weight=3]; 29.71/14.52 32[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];32 -> 48[label="",style="solid", color="black", weight=3]; 29.71/14.52 33[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];33 -> 49[label="",style="solid", color="black", weight=3]; 29.71/14.52 34[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];34 -> 50[label="",style="solid", color="black", weight=3]; 29.71/14.52 35[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 False)",fontsize=16,color="black",shape="box"];35 -> 51[label="",style="solid", color="black", weight=3]; 29.71/14.52 36[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 True)",fontsize=16,color="black",shape="box"];36 -> 52[label="",style="solid", color="black", weight=3]; 29.71/14.52 37 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 37[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];37 -> 185[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 38 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 38[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];38 -> 186[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 39 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 39[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];39 -> 187[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 40 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 40[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];40 -> 188[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 41 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 41[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];41 -> 189[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 42 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 42[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];42 -> 190[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 43 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 43[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];43 -> 191[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 44 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 44[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];44 -> 192[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 45 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 45[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];45 -> 193[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 46 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 46[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];46 -> 194[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 47 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 47[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];47 -> 195[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 48 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 48[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];48 -> 196[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 49 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 49[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];49 -> 197[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 50 -> 184[label="",style="dashed", color="red", weight=0]; 29.71/14.52 50[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];50 -> 198[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 51 -> 68[label="",style="dashed", color="red", weight=0]; 29.71/14.52 51[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 (vyw18 > vyw13))",fontsize=16,color="magenta"];51 -> 69[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 51 -> 70[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 51 -> 71[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 51 -> 72[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 51 -> 73[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 51 -> 74[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 51 -> 75[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 52 -> 5[label="",style="dashed", color="red", weight=0]; 29.71/14.52 52[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw16 vyw18)",fontsize=16,color="magenta"];52 -> 76[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 52 -> 77[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 185[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];185 -> 223[label="",style="solid", color="black", weight=3]; 29.71/14.52 184[label="vyw37 == LT",fontsize=16,color="burlywood",shape="triangle"];2948[label="vyw37/LT",fontsize=10,color="white",style="solid",shape="box"];184 -> 2948[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2948 -> 224[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2949[label="vyw37/EQ",fontsize=10,color="white",style="solid",shape="box"];184 -> 2949[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2949 -> 225[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2950[label="vyw37/GT",fontsize=10,color="white",style="solid",shape="box"];184 -> 2950[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2950 -> 226[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 186[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];186 -> 227[label="",style="solid", color="black", weight=3]; 29.71/14.52 187[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];187 -> 228[label="",style="solid", color="black", weight=3]; 29.71/14.52 188[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2951[label="vyw3/vyw30 : vyw31",fontsize=10,color="white",style="solid",shape="box"];188 -> 2951[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2951 -> 229[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2952[label="vyw3/[]",fontsize=10,color="white",style="solid",shape="box"];188 -> 2952[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2952 -> 230[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 189[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];189 -> 231[label="",style="solid", color="black", weight=3]; 29.71/14.52 190[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];190 -> 232[label="",style="solid", color="black", weight=3]; 29.71/14.52 191[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];191 -> 233[label="",style="solid", color="black", weight=3]; 29.71/14.52 192[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];192 -> 234[label="",style="solid", color="black", weight=3]; 29.71/14.52 193[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2953[label="vyw3/vyw30 :% vyw31",fontsize=10,color="white",style="solid",shape="box"];193 -> 2953[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2953 -> 235[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 194[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];194 -> 236[label="",style="solid", color="black", weight=3]; 29.71/14.52 195[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];195 -> 237[label="",style="solid", color="black", weight=3]; 29.71/14.52 196[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2954[label="vyw3/Integer vyw30",fontsize=10,color="white",style="solid",shape="box"];196 -> 2954[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2954 -> 238[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 197[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];197 -> 239[label="",style="solid", color="black", weight=3]; 29.71/14.52 198[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2955[label="vyw3/()",fontsize=10,color="white",style="solid",shape="box"];198 -> 2955[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2955 -> 240[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 69[label="vyw13",fontsize=16,color="green",shape="box"];70[label="vyw15",fontsize=16,color="green",shape="box"];71[label="vyw16",fontsize=16,color="green",shape="box"];72[label="vyw18",fontsize=16,color="green",shape="box"];73[label="vyw14",fontsize=16,color="green",shape="box"];74[label="vyw18 > vyw13",fontsize=16,color="blue",shape="box"];2956[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2956[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2956 -> 96[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2957[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2957[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2957 -> 97[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2958[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2958[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2958 -> 98[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2959[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2959[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2959 -> 99[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2960[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2960[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2960 -> 100[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2961[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2961[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2961 -> 101[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2962[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2962[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2962 -> 102[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2963[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2963[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2963 -> 103[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2964[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2964[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2964 -> 104[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2965[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2965[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2965 -> 105[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2966[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2966[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2966 -> 106[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2967[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2967[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2967 -> 107[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2968[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2968[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2968 -> 108[label="",style="solid", color="blue", weight=3]; 29.71/14.52 2969[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2969[label="",style="solid", color="blue", weight=9]; 29.71/14.52 2969 -> 109[label="",style="solid", color="blue", weight=3]; 29.71/14.52 75[label="vyw17",fontsize=16,color="green",shape="box"];68[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 vyw34)",fontsize=16,color="burlywood",shape="triangle"];2970[label="vyw34/False",fontsize=10,color="white",style="solid",shape="box"];68 -> 2970[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2970 -> 110[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2971[label="vyw34/True",fontsize=10,color="white",style="solid",shape="box"];68 -> 2971[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2971 -> 111[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 76[label="vyw16",fontsize=16,color="green",shape="box"];77[label="vyw18",fontsize=16,color="green",shape="box"];223[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];223 -> 256[label="",style="solid", color="black", weight=3]; 29.71/14.52 224[label="LT == LT",fontsize=16,color="black",shape="box"];224 -> 257[label="",style="solid", color="black", weight=3]; 29.71/14.52 225[label="EQ == LT",fontsize=16,color="black",shape="box"];225 -> 258[label="",style="solid", color="black", weight=3]; 29.71/14.52 226[label="GT == LT",fontsize=16,color="black",shape="box"];226 -> 259[label="",style="solid", color="black", weight=3]; 29.71/14.52 227[label="primCmpDouble vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2972[label="vyw3/Double vyw30 vyw31",fontsize=10,color="white",style="solid",shape="box"];227 -> 2972[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2972 -> 260[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 228[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];228 -> 261[label="",style="solid", color="black", weight=3]; 29.71/14.52 229[label="compare (vyw30 : vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2973[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];229 -> 2973[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2973 -> 262[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2974[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];229 -> 2974[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2974 -> 263[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 230[label="compare [] vyw40",fontsize=16,color="burlywood",shape="box"];2975[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];230 -> 2975[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2975 -> 264[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2976[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];230 -> 2976[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2976 -> 265[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 231[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];231 -> 266[label="",style="solid", color="black", weight=3]; 29.71/14.52 232[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];232 -> 267[label="",style="solid", color="black", weight=3]; 29.71/14.52 233[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];233 -> 268[label="",style="solid", color="black", weight=3]; 29.71/14.52 234[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];234 -> 269[label="",style="solid", color="black", weight=3]; 29.71/14.52 235[label="compare (vyw30 :% vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2977[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];235 -> 2977[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2977 -> 270[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 236[label="primCmpFloat vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2978[label="vyw3/Float vyw30 vyw31",fontsize=10,color="white",style="solid",shape="box"];236 -> 2978[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2978 -> 271[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 237[label="primCmpChar vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2979[label="vyw3/Char vyw30",fontsize=10,color="white",style="solid",shape="box"];237 -> 2979[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2979 -> 272[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 238[label="compare (Integer vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];2980[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];238 -> 2980[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2980 -> 273[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 239[label="primCmpInt vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2981[label="vyw3/Pos vyw30",fontsize=10,color="white",style="solid",shape="box"];239 -> 2981[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2981 -> 274[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2982[label="vyw3/Neg vyw30",fontsize=10,color="white",style="solid",shape="box"];239 -> 2982[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2982 -> 275[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 240[label="compare () vyw40",fontsize=16,color="burlywood",shape="box"];2983[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];240 -> 2983[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2983 -> 276[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 96[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];96 -> 139[label="",style="solid", color="black", weight=3]; 29.71/14.52 97[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];97 -> 140[label="",style="solid", color="black", weight=3]; 29.71/14.52 98[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];98 -> 141[label="",style="solid", color="black", weight=3]; 29.71/14.52 99[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];99 -> 142[label="",style="solid", color="black", weight=3]; 29.71/14.52 100[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];100 -> 143[label="",style="solid", color="black", weight=3]; 29.71/14.52 101[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];101 -> 144[label="",style="solid", color="black", weight=3]; 29.71/14.52 102[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];102 -> 145[label="",style="solid", color="black", weight=3]; 29.71/14.52 103[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];103 -> 146[label="",style="solid", color="black", weight=3]; 29.71/14.52 104[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];104 -> 147[label="",style="solid", color="black", weight=3]; 29.71/14.52 105[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];105 -> 148[label="",style="solid", color="black", weight=3]; 29.71/14.52 106[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];106 -> 149[label="",style="solid", color="black", weight=3]; 29.71/14.52 107[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];107 -> 150[label="",style="solid", color="black", weight=3]; 29.71/14.52 108[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];108 -> 151[label="",style="solid", color="black", weight=3]; 29.71/14.52 109[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];109 -> 152[label="",style="solid", color="black", weight=3]; 29.71/14.52 110[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 False)",fontsize=16,color="black",shape="box"];110 -> 153[label="",style="solid", color="black", weight=3]; 29.71/14.52 111[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True)",fontsize=16,color="black",shape="box"];111 -> 154[label="",style="solid", color="black", weight=3]; 29.71/14.52 256[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2984[label="vyw3/(vyw30,vyw31,vyw32)",fontsize=10,color="white",style="solid",shape="box"];256 -> 2984[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2984 -> 311[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 257[label="True",fontsize=16,color="green",shape="box"];258[label="False",fontsize=16,color="green",shape="box"];259[label="False",fontsize=16,color="green",shape="box"];260[label="primCmpDouble (Double vyw30 vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2985[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];260 -> 2985[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2985 -> 312[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2986[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];260 -> 2986[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2986 -> 313[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 261[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2987[label="vyw3/Left vyw30",fontsize=10,color="white",style="solid",shape="box"];261 -> 2987[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2987 -> 314[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2988[label="vyw3/Right vyw30",fontsize=10,color="white",style="solid",shape="box"];261 -> 2988[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2988 -> 315[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 262[label="compare (vyw30 : vyw31) (vyw400 : vyw401)",fontsize=16,color="black",shape="box"];262 -> 316[label="",style="solid", color="black", weight=3]; 29.71/14.52 263[label="compare (vyw30 : vyw31) []",fontsize=16,color="black",shape="box"];263 -> 317[label="",style="solid", color="black", weight=3]; 29.71/14.52 264[label="compare [] (vyw400 : vyw401)",fontsize=16,color="black",shape="box"];264 -> 318[label="",style="solid", color="black", weight=3]; 29.71/14.52 265[label="compare [] []",fontsize=16,color="black",shape="box"];265 -> 319[label="",style="solid", color="black", weight=3]; 29.71/14.52 266[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2989[label="vyw3/False",fontsize=10,color="white",style="solid",shape="box"];266 -> 2989[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2989 -> 320[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2990[label="vyw3/True",fontsize=10,color="white",style="solid",shape="box"];266 -> 2990[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2990 -> 321[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 267[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2991[label="vyw3/(vyw30,vyw31)",fontsize=10,color="white",style="solid",shape="box"];267 -> 2991[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2991 -> 322[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 268[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2992[label="vyw3/LT",fontsize=10,color="white",style="solid",shape="box"];268 -> 2992[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2992 -> 323[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2993[label="vyw3/EQ",fontsize=10,color="white",style="solid",shape="box"];268 -> 2993[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2993 -> 324[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2994[label="vyw3/GT",fontsize=10,color="white",style="solid",shape="box"];268 -> 2994[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2994 -> 325[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 269[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2995[label="vyw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];269 -> 2995[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2995 -> 326[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2996[label="vyw3/Just vyw30",fontsize=10,color="white",style="solid",shape="box"];269 -> 2996[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2996 -> 327[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 270[label="compare (vyw30 :% vyw31) (vyw400 :% vyw401)",fontsize=16,color="black",shape="box"];270 -> 328[label="",style="solid", color="black", weight=3]; 29.71/14.52 271[label="primCmpFloat (Float vyw30 vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2997[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];271 -> 2997[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2997 -> 329[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 2998[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];271 -> 2998[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2998 -> 330[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 272[label="primCmpChar (Char vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];2999[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];272 -> 2999[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 2999 -> 331[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 273[label="compare (Integer vyw30) (Integer vyw400)",fontsize=16,color="black",shape="box"];273 -> 332[label="",style="solid", color="black", weight=3]; 29.71/14.52 274[label="primCmpInt (Pos vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];3000[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];274 -> 3000[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3000 -> 333[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3001[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];274 -> 3001[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3001 -> 334[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 275[label="primCmpInt (Neg vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];3002[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];275 -> 3002[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3002 -> 335[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3003[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];275 -> 3003[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3003 -> 336[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 276[label="compare () ()",fontsize=16,color="black",shape="box"];276 -> 337[label="",style="solid", color="black", weight=3]; 29.71/14.52 139 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 139[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];139 -> 242[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 140 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 140[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];140 -> 243[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 141 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 141[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];141 -> 244[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 142 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 142[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];142 -> 245[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 143 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 143[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];143 -> 246[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 144 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 144[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];144 -> 247[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 145 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 145[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];145 -> 248[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 146 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 146[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];146 -> 249[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 147 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 147[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];147 -> 250[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 148 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 148[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];148 -> 251[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 149 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 149[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];149 -> 252[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 150 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 150[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];150 -> 253[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 151 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 151[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];151 -> 254[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 152 -> 241[label="",style="dashed", color="red", weight=0]; 29.71/14.52 152[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];152 -> 255[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 153[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 otherwise)",fontsize=16,color="black",shape="box"];153 -> 277[label="",style="solid", color="black", weight=3]; 29.71/14.52 154 -> 5[label="",style="dashed", color="red", weight=0]; 29.71/14.52 154[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw32 vyw33)",fontsize=16,color="magenta"];154 -> 278[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 154 -> 279[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 311[label="compare2 (vyw30,vyw31,vyw32) vyw40 ((vyw30,vyw31,vyw32) == vyw40)",fontsize=16,color="burlywood",shape="box"];3004[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];311 -> 3004[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3004 -> 342[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 312[label="primCmpDouble (Double vyw30 (Pos vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];3005[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];312 -> 3005[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3005 -> 343[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 313[label="primCmpDouble (Double vyw30 (Neg vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];3006[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];313 -> 3006[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3006 -> 344[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 314[label="compare2 (Left vyw30) vyw40 (Left vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];3007[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];314 -> 3007[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3007 -> 345[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3008[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];314 -> 3008[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3008 -> 346[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 315[label="compare2 (Right vyw30) vyw40 (Right vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];3009[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];315 -> 3009[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3009 -> 347[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3010[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];315 -> 3010[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3010 -> 348[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 316 -> 349[label="",style="dashed", color="red", weight=0]; 29.71/14.52 316[label="primCompAux vyw30 vyw400 (compare vyw31 vyw401)",fontsize=16,color="magenta"];316 -> 350[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 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="compare2 False vyw40 (False == vyw40)",fontsize=16,color="burlywood",shape="box"];3011[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];320 -> 3011[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3011 -> 351[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3012[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];320 -> 3012[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3012 -> 352[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 321[label="compare2 True vyw40 (True == vyw40)",fontsize=16,color="burlywood",shape="box"];3013[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];321 -> 3013[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3013 -> 353[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3014[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];321 -> 3014[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3014 -> 354[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 322[label="compare2 (vyw30,vyw31) vyw40 ((vyw30,vyw31) == vyw40)",fontsize=16,color="burlywood",shape="box"];3015[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];322 -> 3015[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3015 -> 355[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 323[label="compare2 LT vyw40 (LT == vyw40)",fontsize=16,color="burlywood",shape="box"];3016[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];323 -> 3016[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3016 -> 356[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3017[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];323 -> 3017[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3017 -> 357[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3018[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];323 -> 3018[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3018 -> 358[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 324[label="compare2 EQ vyw40 (EQ == vyw40)",fontsize=16,color="burlywood",shape="box"];3019[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];324 -> 3019[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3019 -> 359[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3020[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];324 -> 3020[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3020 -> 360[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3021[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];324 -> 3021[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3021 -> 361[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 325[label="compare2 GT vyw40 (GT == vyw40)",fontsize=16,color="burlywood",shape="box"];3022[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];325 -> 3022[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3022 -> 362[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3023[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];325 -> 3023[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3023 -> 363[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3024[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];325 -> 3024[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3024 -> 364[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 326[label="compare2 Nothing vyw40 (Nothing == vyw40)",fontsize=16,color="burlywood",shape="box"];3025[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];326 -> 3025[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3025 -> 365[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3026[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];326 -> 3026[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3026 -> 366[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 327[label="compare2 (Just vyw30) vyw40 (Just vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];3027[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];327 -> 3027[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3027 -> 367[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3028[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];327 -> 3028[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3028 -> 368[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 328[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="blue",shape="box"];3029[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];328 -> 3029[label="",style="solid", color="blue", weight=9]; 29.71/14.52 3029 -> 369[label="",style="solid", color="blue", weight=3]; 29.71/14.52 3030[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];328 -> 3030[label="",style="solid", color="blue", weight=9]; 29.71/14.52 3030 -> 370[label="",style="solid", color="blue", weight=3]; 29.71/14.52 329[label="primCmpFloat (Float vyw30 (Pos vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];3031[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];329 -> 3031[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3031 -> 371[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 330[label="primCmpFloat (Float vyw30 (Neg vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];3032[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];330 -> 3032[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3032 -> 372[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 331[label="primCmpChar (Char vyw30) (Char vyw400)",fontsize=16,color="black",shape="box"];331 -> 373[label="",style="solid", color="black", weight=3]; 29.71/14.52 332 -> 239[label="",style="dashed", color="red", weight=0]; 29.71/14.52 332[label="primCmpInt vyw30 vyw400",fontsize=16,color="magenta"];332 -> 374[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 332 -> 375[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 333[label="primCmpInt (Pos (Succ vyw300)) vyw40",fontsize=16,color="burlywood",shape="box"];3033[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];333 -> 3033[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3033 -> 376[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3034[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];333 -> 3034[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3034 -> 377[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 334[label="primCmpInt (Pos Zero) vyw40",fontsize=16,color="burlywood",shape="box"];3035[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];334 -> 3035[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3035 -> 378[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3036[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];334 -> 3036[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3036 -> 379[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 335[label="primCmpInt (Neg (Succ vyw300)) vyw40",fontsize=16,color="burlywood",shape="box"];3037[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];335 -> 3037[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3037 -> 380[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3038[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];335 -> 3038[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3038 -> 381[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 336[label="primCmpInt (Neg Zero) vyw40",fontsize=16,color="burlywood",shape="box"];3039[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];336 -> 3039[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3039 -> 382[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3040[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];336 -> 3040[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3040 -> 383[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 337[label="EQ",fontsize=16,color="green",shape="box"];242 -> 185[label="",style="dashed", color="red", weight=0]; 29.71/14.52 242[label="compare vyw18 vyw13",fontsize=16,color="magenta"];242 -> 280[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 242 -> 281[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 241[label="vyw38 == GT",fontsize=16,color="burlywood",shape="triangle"];3041[label="vyw38/LT",fontsize=10,color="white",style="solid",shape="box"];241 -> 3041[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3041 -> 282[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3042[label="vyw38/EQ",fontsize=10,color="white",style="solid",shape="box"];241 -> 3042[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3042 -> 283[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3043[label="vyw38/GT",fontsize=10,color="white",style="solid",shape="box"];241 -> 3043[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3043 -> 284[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 243 -> 186[label="",style="dashed", color="red", weight=0]; 29.71/14.52 243[label="compare vyw18 vyw13",fontsize=16,color="magenta"];243 -> 285[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 243 -> 286[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 244 -> 187[label="",style="dashed", color="red", weight=0]; 29.71/14.52 244[label="compare vyw18 vyw13",fontsize=16,color="magenta"];244 -> 287[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 244 -> 288[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 245 -> 188[label="",style="dashed", color="red", weight=0]; 29.71/14.52 245[label="compare vyw18 vyw13",fontsize=16,color="magenta"];245 -> 289[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 245 -> 290[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 246 -> 189[label="",style="dashed", color="red", weight=0]; 29.71/14.52 246[label="compare vyw18 vyw13",fontsize=16,color="magenta"];246 -> 291[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 246 -> 292[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 247 -> 190[label="",style="dashed", color="red", weight=0]; 29.71/14.52 247[label="compare vyw18 vyw13",fontsize=16,color="magenta"];247 -> 293[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 247 -> 294[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 248 -> 191[label="",style="dashed", color="red", weight=0]; 29.71/14.52 248[label="compare vyw18 vyw13",fontsize=16,color="magenta"];248 -> 295[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 248 -> 296[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 249 -> 192[label="",style="dashed", color="red", weight=0]; 29.71/14.52 249[label="compare vyw18 vyw13",fontsize=16,color="magenta"];249 -> 297[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 249 -> 298[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 250 -> 193[label="",style="dashed", color="red", weight=0]; 29.71/14.52 250[label="compare vyw18 vyw13",fontsize=16,color="magenta"];250 -> 299[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 250 -> 300[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 251 -> 194[label="",style="dashed", color="red", weight=0]; 29.71/14.52 251[label="compare vyw18 vyw13",fontsize=16,color="magenta"];251 -> 301[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 251 -> 302[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 252 -> 195[label="",style="dashed", color="red", weight=0]; 29.71/14.52 252[label="compare vyw18 vyw13",fontsize=16,color="magenta"];252 -> 303[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 252 -> 304[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 253 -> 196[label="",style="dashed", color="red", weight=0]; 29.71/14.52 253[label="compare vyw18 vyw13",fontsize=16,color="magenta"];253 -> 305[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 253 -> 306[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 254 -> 197[label="",style="dashed", color="red", weight=0]; 29.71/14.52 254[label="compare vyw18 vyw13",fontsize=16,color="magenta"];254 -> 307[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 254 -> 308[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 255 -> 198[label="",style="dashed", color="red", weight=0]; 29.71/14.52 255[label="compare vyw18 vyw13",fontsize=16,color="magenta"];255 -> 309[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 255 -> 310[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 277[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True)",fontsize=16,color="black",shape="box"];277 -> 338[label="",style="solid", color="black", weight=3]; 29.71/14.52 278[label="vyw32",fontsize=16,color="green",shape="box"];279[label="vyw33",fontsize=16,color="green",shape="box"];342[label="compare2 (vyw30,vyw31,vyw32) (vyw400,vyw401,vyw402) ((vyw30,vyw31,vyw32) == (vyw400,vyw401,vyw402))",fontsize=16,color="black",shape="box"];342 -> 384[label="",style="solid", color="black", weight=3]; 29.71/14.52 343[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3044[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];343 -> 3044[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3044 -> 385[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3045[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];343 -> 3045[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3045 -> 386[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 344[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3046[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];344 -> 3046[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3046 -> 387[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 3047[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];344 -> 3047[label="",style="solid", color="burlywood", weight=9]; 29.71/14.52 3047 -> 388[label="",style="solid", color="burlywood", weight=3]; 29.71/14.52 345[label="compare2 (Left vyw30) (Left vyw400) (Left vyw30 == Left vyw400)",fontsize=16,color="black",shape="box"];345 -> 389[label="",style="solid", color="black", weight=3]; 29.71/14.52 346[label="compare2 (Left vyw30) (Right vyw400) (Left vyw30 == Right vyw400)",fontsize=16,color="black",shape="box"];346 -> 390[label="",style="solid", color="black", weight=3]; 29.71/14.52 347[label="compare2 (Right vyw30) (Left vyw400) (Right vyw30 == Left vyw400)",fontsize=16,color="black",shape="box"];347 -> 391[label="",style="solid", color="black", weight=3]; 29.71/14.52 348[label="compare2 (Right vyw30) (Right vyw400) (Right vyw30 == Right vyw400)",fontsize=16,color="black",shape="box"];348 -> 392[label="",style="solid", color="black", weight=3]; 29.71/14.52 350 -> 188[label="",style="dashed", color="red", weight=0]; 29.71/14.52 350[label="compare vyw31 vyw401",fontsize=16,color="magenta"];350 -> 393[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 350 -> 394[label="",style="dashed", color="magenta", weight=3]; 29.71/14.52 349[label="primCompAux vyw30 vyw400 vyw39",fontsize=16,color="black",shape="triangle"];349 -> 395[label="",style="solid", color="black", weight=3]; 29.96/14.52 351[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];351 -> 397[label="",style="solid", color="black", weight=3]; 29.96/14.52 352[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];352 -> 398[label="",style="solid", color="black", weight=3]; 29.96/14.52 353[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];353 -> 399[label="",style="solid", color="black", weight=3]; 29.96/14.52 354[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];354 -> 400[label="",style="solid", color="black", weight=3]; 29.96/14.52 355[label="compare2 (vyw30,vyw31) (vyw400,vyw401) ((vyw30,vyw31) == (vyw400,vyw401))",fontsize=16,color="black",shape="box"];355 -> 401[label="",style="solid", color="black", weight=3]; 29.96/14.52 356[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];356 -> 402[label="",style="solid", color="black", weight=3]; 29.96/14.52 357[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];357 -> 403[label="",style="solid", color="black", weight=3]; 29.96/14.52 358[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];358 -> 404[label="",style="solid", color="black", weight=3]; 29.96/14.52 359[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];359 -> 405[label="",style="solid", color="black", weight=3]; 29.96/14.52 360[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];360 -> 406[label="",style="solid", color="black", weight=3]; 29.96/14.52 361[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];361 -> 407[label="",style="solid", color="black", weight=3]; 29.96/14.52 362[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];362 -> 408[label="",style="solid", color="black", weight=3]; 29.96/14.52 363[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];363 -> 409[label="",style="solid", color="black", weight=3]; 29.96/14.52 364[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];364 -> 410[label="",style="solid", color="black", weight=3]; 29.96/14.52 365[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];365 -> 411[label="",style="solid", color="black", weight=3]; 29.96/14.52 366[label="compare2 Nothing (Just vyw400) (Nothing == Just vyw400)",fontsize=16,color="black",shape="box"];366 -> 412[label="",style="solid", color="black", weight=3]; 29.96/14.52 367[label="compare2 (Just vyw30) Nothing (Just vyw30 == Nothing)",fontsize=16,color="black",shape="box"];367 -> 413[label="",style="solid", color="black", weight=3]; 29.96/14.52 368[label="compare2 (Just vyw30) (Just vyw400) (Just vyw30 == Just vyw400)",fontsize=16,color="black",shape="box"];368 -> 414[label="",style="solid", color="black", weight=3]; 29.96/14.52 369 -> 196[label="",style="dashed", color="red", weight=0]; 29.96/14.52 369[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="magenta"];369 -> 415[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 369 -> 416[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 370 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 370[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="magenta"];370 -> 417[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 370 -> 418[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 371[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3048[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];371 -> 3048[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3048 -> 419[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3049[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];371 -> 3049[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3049 -> 420[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 372[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3050[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];372 -> 3050[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3050 -> 421[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3051[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];372 -> 3051[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3051 -> 422[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 373[label="primCmpNat vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3052[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];373 -> 3052[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3052 -> 423[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3053[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];373 -> 3053[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3053 -> 424[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 374[label="vyw400",fontsize=16,color="green",shape="box"];375[label="vyw30",fontsize=16,color="green",shape="box"];376[label="primCmpInt (Pos (Succ vyw300)) (Pos vyw400)",fontsize=16,color="black",shape="box"];376 -> 425[label="",style="solid", color="black", weight=3]; 29.96/14.52 377[label="primCmpInt (Pos (Succ vyw300)) (Neg vyw400)",fontsize=16,color="black",shape="box"];377 -> 426[label="",style="solid", color="black", weight=3]; 29.96/14.52 378[label="primCmpInt (Pos Zero) (Pos vyw400)",fontsize=16,color="burlywood",shape="box"];3054[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];378 -> 3054[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3054 -> 427[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3055[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];378 -> 3055[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3055 -> 428[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 379[label="primCmpInt (Pos Zero) (Neg vyw400)",fontsize=16,color="burlywood",shape="box"];3056[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];379 -> 3056[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3056 -> 429[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3057[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];379 -> 3057[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3057 -> 430[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 380[label="primCmpInt (Neg (Succ vyw300)) (Pos vyw400)",fontsize=16,color="black",shape="box"];380 -> 431[label="",style="solid", color="black", weight=3]; 29.96/14.52 381[label="primCmpInt (Neg (Succ vyw300)) (Neg vyw400)",fontsize=16,color="black",shape="box"];381 -> 432[label="",style="solid", color="black", weight=3]; 29.96/14.52 382[label="primCmpInt (Neg Zero) (Pos vyw400)",fontsize=16,color="burlywood",shape="box"];3058[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];382 -> 3058[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3058 -> 433[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3059[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];382 -> 3059[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3059 -> 434[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 383[label="primCmpInt (Neg Zero) (Neg vyw400)",fontsize=16,color="burlywood",shape="box"];3060[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];383 -> 3060[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3060 -> 435[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3061[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];383 -> 3061[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3061 -> 436[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 280[label="vyw13",fontsize=16,color="green",shape="box"];281[label="vyw18",fontsize=16,color="green",shape="box"];282[label="LT == GT",fontsize=16,color="black",shape="box"];282 -> 339[label="",style="solid", color="black", weight=3]; 29.96/14.52 283[label="EQ == GT",fontsize=16,color="black",shape="box"];283 -> 340[label="",style="solid", color="black", weight=3]; 29.96/14.52 284[label="GT == GT",fontsize=16,color="black",shape="box"];284 -> 341[label="",style="solid", color="black", weight=3]; 29.96/14.52 285[label="vyw13",fontsize=16,color="green",shape="box"];286[label="vyw18",fontsize=16,color="green",shape="box"];287[label="vyw13",fontsize=16,color="green",shape="box"];288[label="vyw18",fontsize=16,color="green",shape="box"];289[label="vyw13",fontsize=16,color="green",shape="box"];290[label="vyw18",fontsize=16,color="green",shape="box"];291[label="vyw13",fontsize=16,color="green",shape="box"];292[label="vyw18",fontsize=16,color="green",shape="box"];293[label="vyw13",fontsize=16,color="green",shape="box"];294[label="vyw18",fontsize=16,color="green",shape="box"];295[label="vyw13",fontsize=16,color="green",shape="box"];296[label="vyw18",fontsize=16,color="green",shape="box"];297[label="vyw13",fontsize=16,color="green",shape="box"];298[label="vyw18",fontsize=16,color="green",shape="box"];299[label="vyw13",fontsize=16,color="green",shape="box"];300[label="vyw18",fontsize=16,color="green",shape="box"];301[label="vyw13",fontsize=16,color="green",shape="box"];302[label="vyw18",fontsize=16,color="green",shape="box"];303[label="vyw13",fontsize=16,color="green",shape="box"];304[label="vyw18",fontsize=16,color="green",shape="box"];305[label="vyw13",fontsize=16,color="green",shape="box"];306[label="vyw18",fontsize=16,color="green",shape="box"];307[label="vyw13",fontsize=16,color="green",shape="box"];308[label="vyw18",fontsize=16,color="green",shape="box"];309[label="vyw13",fontsize=16,color="green",shape="box"];310[label="vyw18",fontsize=16,color="green",shape="box"];338[label="FiniteMap.elemFM0 (Just vyw29)",fontsize=16,color="black",shape="box"];338 -> 396[label="",style="solid", color="black", weight=3]; 29.96/14.52 384 -> 1028[label="",style="dashed", color="red", weight=0]; 29.96/14.52 384[label="compare2 (vyw30,vyw31,vyw32) (vyw400,vyw401,vyw402) (vyw30 == vyw400 && vyw31 == vyw401 && vyw32 == vyw402)",fontsize=16,color="magenta"];384 -> 1029[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 384 -> 1030[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 384 -> 1031[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 384 -> 1032[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 384 -> 1033[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 384 -> 1034[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 384 -> 1035[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 385[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];385 -> 445[label="",style="solid", color="black", weight=3]; 29.96/14.52 386[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];386 -> 446[label="",style="solid", color="black", weight=3]; 29.96/14.52 387[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];387 -> 447[label="",style="solid", color="black", weight=3]; 29.96/14.52 388[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];388 -> 448[label="",style="solid", color="black", weight=3]; 29.96/14.52 389 -> 449[label="",style="dashed", color="red", weight=0]; 29.96/14.52 389[label="compare2 (Left vyw30) (Left vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];389 -> 450[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 389 -> 451[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 389 -> 452[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 390[label="compare2 (Left vyw30) (Right vyw400) False",fontsize=16,color="black",shape="box"];390 -> 453[label="",style="solid", color="black", weight=3]; 29.96/14.52 391[label="compare2 (Right vyw30) (Left vyw400) False",fontsize=16,color="black",shape="box"];391 -> 454[label="",style="solid", color="black", weight=3]; 29.96/14.52 392 -> 455[label="",style="dashed", color="red", weight=0]; 29.96/14.52 392[label="compare2 (Right vyw30) (Right vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];392 -> 456[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 392 -> 457[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 392 -> 458[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 393[label="vyw401",fontsize=16,color="green",shape="box"];394[label="vyw31",fontsize=16,color="green",shape="box"];395 -> 459[label="",style="dashed", color="red", weight=0]; 29.96/14.52 395[label="primCompAux0 vyw39 (compare vyw30 vyw400)",fontsize=16,color="magenta"];395 -> 460[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 395 -> 461[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 397[label="compare2 False False True",fontsize=16,color="black",shape="box"];397 -> 462[label="",style="solid", color="black", weight=3]; 29.96/14.52 398[label="compare2 False True False",fontsize=16,color="black",shape="box"];398 -> 463[label="",style="solid", color="black", weight=3]; 29.96/14.52 399[label="compare2 True False False",fontsize=16,color="black",shape="box"];399 -> 464[label="",style="solid", color="black", weight=3]; 29.96/14.52 400[label="compare2 True True True",fontsize=16,color="black",shape="box"];400 -> 465[label="",style="solid", color="black", weight=3]; 29.96/14.52 401 -> 923[label="",style="dashed", color="red", weight=0]; 29.96/14.52 401[label="compare2 (vyw30,vyw31) (vyw400,vyw401) (vyw30 == vyw400 && vyw31 == vyw401)",fontsize=16,color="magenta"];401 -> 924[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 401 -> 925[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 401 -> 926[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 401 -> 927[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 401 -> 928[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 402[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];402 -> 472[label="",style="solid", color="black", weight=3]; 29.96/14.52 403[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];403 -> 473[label="",style="solid", color="black", weight=3]; 29.96/14.52 404[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];404 -> 474[label="",style="solid", color="black", weight=3]; 29.96/14.52 405[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];405 -> 475[label="",style="solid", color="black", weight=3]; 29.96/14.52 406[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];406 -> 476[label="",style="solid", color="black", weight=3]; 29.96/14.52 407[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];407 -> 477[label="",style="solid", color="black", weight=3]; 29.96/14.52 408[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];408 -> 478[label="",style="solid", color="black", weight=3]; 29.96/14.52 409[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];409 -> 479[label="",style="solid", color="black", weight=3]; 29.96/14.52 410[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];410 -> 480[label="",style="solid", color="black", weight=3]; 29.96/14.52 411[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];411 -> 481[label="",style="solid", color="black", weight=3]; 29.96/14.52 412[label="compare2 Nothing (Just vyw400) False",fontsize=16,color="black",shape="box"];412 -> 482[label="",style="solid", color="black", weight=3]; 29.96/14.52 413[label="compare2 (Just vyw30) Nothing False",fontsize=16,color="black",shape="box"];413 -> 483[label="",style="solid", color="black", weight=3]; 29.96/14.52 414 -> 484[label="",style="dashed", color="red", weight=0]; 29.96/14.52 414[label="compare2 (Just vyw30) (Just vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];414 -> 485[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 414 -> 486[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 414 -> 487[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 415[label="vyw400 * vyw31",fontsize=16,color="burlywood",shape="triangle"];3062[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];415 -> 3062[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3062 -> 488[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 416 -> 415[label="",style="dashed", color="red", weight=0]; 29.96/14.52 416[label="vyw30 * vyw401",fontsize=16,color="magenta"];416 -> 489[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 416 -> 490[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 417[label="vyw400 * vyw31",fontsize=16,color="black",shape="triangle"];417 -> 491[label="",style="solid", color="black", weight=3]; 29.96/14.52 418 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 418[label="vyw30 * vyw401",fontsize=16,color="magenta"];418 -> 492[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 418 -> 493[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 419[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];419 -> 494[label="",style="solid", color="black", weight=3]; 29.96/14.52 420[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];420 -> 495[label="",style="solid", color="black", weight=3]; 29.96/14.52 421[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];421 -> 496[label="",style="solid", color="black", weight=3]; 29.96/14.52 422[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];422 -> 497[label="",style="solid", color="black", weight=3]; 29.96/14.52 423[label="primCmpNat (Succ vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3063[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];423 -> 3063[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3063 -> 498[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3064[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];423 -> 3064[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3064 -> 499[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 424[label="primCmpNat Zero vyw400",fontsize=16,color="burlywood",shape="box"];3065[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];424 -> 3065[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3065 -> 500[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3066[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];424 -> 3066[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3066 -> 501[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 425 -> 373[label="",style="dashed", color="red", weight=0]; 29.96/14.52 425[label="primCmpNat (Succ vyw300) vyw400",fontsize=16,color="magenta"];425 -> 502[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 425 -> 503[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 426[label="GT",fontsize=16,color="green",shape="box"];427[label="primCmpInt (Pos Zero) (Pos (Succ vyw4000))",fontsize=16,color="black",shape="box"];427 -> 504[label="",style="solid", color="black", weight=3]; 29.96/14.52 428[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];428 -> 505[label="",style="solid", color="black", weight=3]; 29.96/14.52 429[label="primCmpInt (Pos Zero) (Neg (Succ vyw4000))",fontsize=16,color="black",shape="box"];429 -> 506[label="",style="solid", color="black", weight=3]; 29.96/14.52 430[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];430 -> 507[label="",style="solid", color="black", weight=3]; 29.96/14.52 431[label="LT",fontsize=16,color="green",shape="box"];432 -> 373[label="",style="dashed", color="red", weight=0]; 29.96/14.52 432[label="primCmpNat vyw400 (Succ vyw300)",fontsize=16,color="magenta"];432 -> 508[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 432 -> 509[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 433[label="primCmpInt (Neg Zero) (Pos (Succ vyw4000))",fontsize=16,color="black",shape="box"];433 -> 510[label="",style="solid", color="black", weight=3]; 29.96/14.52 434[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];434 -> 511[label="",style="solid", color="black", weight=3]; 29.96/14.52 435[label="primCmpInt (Neg Zero) (Neg (Succ vyw4000))",fontsize=16,color="black",shape="box"];435 -> 512[label="",style="solid", color="black", weight=3]; 29.96/14.52 436[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];436 -> 513[label="",style="solid", color="black", weight=3]; 29.96/14.52 339[label="False",fontsize=16,color="green",shape="box"];340[label="False",fontsize=16,color="green",shape="box"];341[label="True",fontsize=16,color="green",shape="box"];396[label="True",fontsize=16,color="green",shape="box"];1029[label="vyw32",fontsize=16,color="green",shape="box"];1030 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.52 1030[label="vyw30 == vyw400 && vyw31 == vyw401 && vyw32 == vyw402",fontsize=16,color="magenta"];1030 -> 1081[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 1030 -> 1082[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 1031[label="vyw31",fontsize=16,color="green",shape="box"];1032[label="vyw400",fontsize=16,color="green",shape="box"];1033[label="vyw402",fontsize=16,color="green",shape="box"];1034[label="vyw30",fontsize=16,color="green",shape="box"];1035[label="vyw401",fontsize=16,color="green",shape="box"];1028[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) vyw125",fontsize=16,color="burlywood",shape="triangle"];3067[label="vyw125/False",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3067[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3067 -> 1075[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3068[label="vyw125/True",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3068[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3068 -> 1076[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 445 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 445[label="compare (vyw30 * Pos vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];445 -> 530[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 445 -> 531[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 446 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 446[label="compare (vyw30 * Pos vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];446 -> 532[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 446 -> 533[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 447 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 447[label="compare (vyw30 * Neg vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];447 -> 534[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 447 -> 535[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 448 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 448[label="compare (vyw30 * Neg vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];448 -> 536[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 448 -> 537[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 450[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3069[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3069[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3069 -> 538[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3070[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3070[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3070 -> 539[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3071[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3071[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3071 -> 540[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3072[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3072[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3072 -> 541[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3073[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3073[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3073 -> 542[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3074[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3074[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3074 -> 543[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3075[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3075[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3075 -> 544[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3076[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3076[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3076 -> 545[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3077[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3077[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3077 -> 546[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3078[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3078[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3078 -> 547[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3079[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3079[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3079 -> 548[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3080[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3080[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3080 -> 549[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3081[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3081[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3081 -> 550[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3082[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3082[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3082 -> 551[label="",style="solid", color="blue", weight=3]; 29.96/14.52 451[label="vyw400",fontsize=16,color="green",shape="box"];452[label="vyw30",fontsize=16,color="green",shape="box"];449[label="compare2 (Left vyw59) (Left vyw60) vyw61",fontsize=16,color="burlywood",shape="triangle"];3083[label="vyw61/False",fontsize=10,color="white",style="solid",shape="box"];449 -> 3083[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3083 -> 552[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3084[label="vyw61/True",fontsize=10,color="white",style="solid",shape="box"];449 -> 3084[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3084 -> 553[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 453[label="compare1 (Left vyw30) (Right vyw400) (Left vyw30 <= Right vyw400)",fontsize=16,color="black",shape="box"];453 -> 554[label="",style="solid", color="black", weight=3]; 29.96/14.52 454[label="compare1 (Right vyw30) (Left vyw400) (Right vyw30 <= Left vyw400)",fontsize=16,color="black",shape="box"];454 -> 555[label="",style="solid", color="black", weight=3]; 29.96/14.52 456[label="vyw400",fontsize=16,color="green",shape="box"];457[label="vyw30",fontsize=16,color="green",shape="box"];458[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3085[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3085[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3085 -> 556[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3086[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3086[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3086 -> 557[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3087[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3087[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3087 -> 558[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3088[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3088[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3088 -> 559[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3089[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3089[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3089 -> 560[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3090[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3090[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3090 -> 561[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3091[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3091[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3091 -> 562[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3092[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3092[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3092 -> 563[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3093[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3093[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3093 -> 564[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3094[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3094[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3094 -> 565[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3095[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3095[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3095 -> 566[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3096[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3096[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3096 -> 567[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3097[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3097[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3097 -> 568[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3098[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3098[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3098 -> 569[label="",style="solid", color="blue", weight=3]; 29.96/14.52 455[label="compare2 (Right vyw66) (Right vyw67) vyw68",fontsize=16,color="burlywood",shape="triangle"];3099[label="vyw68/False",fontsize=10,color="white",style="solid",shape="box"];455 -> 3099[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3099 -> 570[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3100[label="vyw68/True",fontsize=10,color="white",style="solid",shape="box"];455 -> 3100[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3100 -> 571[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 460[label="vyw39",fontsize=16,color="green",shape="box"];461[label="compare vyw30 vyw400",fontsize=16,color="blue",shape="box"];3101[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3101[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3101 -> 572[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3102[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3102[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3102 -> 573[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3103[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3103[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3103 -> 574[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3104[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3104[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3104 -> 575[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3105[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3105[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3105 -> 576[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3106[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3106[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3106 -> 577[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3107[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3107[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3107 -> 578[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3108[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3108[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3108 -> 579[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3109[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3109[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3109 -> 580[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3110[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3110[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3110 -> 581[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3111[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3111[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3111 -> 582[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3112[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3112[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3112 -> 583[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3113[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3113[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3113 -> 584[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3114[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3114[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3114 -> 585[label="",style="solid", color="blue", weight=3]; 29.96/14.52 459[label="primCompAux0 vyw72 vyw73",fontsize=16,color="burlywood",shape="triangle"];3115[label="vyw73/LT",fontsize=10,color="white",style="solid",shape="box"];459 -> 3115[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3115 -> 586[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3116[label="vyw73/EQ",fontsize=10,color="white",style="solid",shape="box"];459 -> 3116[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3116 -> 587[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3117[label="vyw73/GT",fontsize=10,color="white",style="solid",shape="box"];459 -> 3117[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3117 -> 588[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 462[label="EQ",fontsize=16,color="green",shape="box"];463[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];463 -> 589[label="",style="solid", color="black", weight=3]; 29.96/14.52 464[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];464 -> 590[label="",style="solid", color="black", weight=3]; 29.96/14.52 465[label="EQ",fontsize=16,color="green",shape="box"];924 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.52 924[label="vyw30 == vyw400 && vyw31 == vyw401",fontsize=16,color="magenta"];924 -> 1083[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 924 -> 1084[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 925[label="vyw400",fontsize=16,color="green",shape="box"];926[label="vyw30",fontsize=16,color="green",shape="box"];927[label="vyw401",fontsize=16,color="green",shape="box"];928[label="vyw31",fontsize=16,color="green",shape="box"];923[label="compare2 (vyw113,vyw114) (vyw115,vyw116) vyw117",fontsize=16,color="burlywood",shape="triangle"];3118[label="vyw117/False",fontsize=10,color="white",style="solid",shape="box"];923 -> 3118[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3118 -> 948[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3119[label="vyw117/True",fontsize=10,color="white",style="solid",shape="box"];923 -> 3119[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3119 -> 949[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 472[label="EQ",fontsize=16,color="green",shape="box"];473[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];473 -> 607[label="",style="solid", color="black", weight=3]; 29.96/14.52 474[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];474 -> 608[label="",style="solid", color="black", weight=3]; 29.96/14.52 475[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];475 -> 609[label="",style="solid", color="black", weight=3]; 29.96/14.52 476[label="EQ",fontsize=16,color="green",shape="box"];477[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];477 -> 610[label="",style="solid", color="black", weight=3]; 29.96/14.52 478[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];478 -> 611[label="",style="solid", color="black", weight=3]; 29.96/14.52 479[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];479 -> 612[label="",style="solid", color="black", weight=3]; 29.96/14.52 480[label="EQ",fontsize=16,color="green",shape="box"];481[label="EQ",fontsize=16,color="green",shape="box"];482[label="compare1 Nothing (Just vyw400) (Nothing <= Just vyw400)",fontsize=16,color="black",shape="box"];482 -> 613[label="",style="solid", color="black", weight=3]; 29.96/14.52 483[label="compare1 (Just vyw30) Nothing (Just vyw30 <= Nothing)",fontsize=16,color="black",shape="box"];483 -> 614[label="",style="solid", color="black", weight=3]; 29.96/14.52 485[label="vyw400",fontsize=16,color="green",shape="box"];486[label="vyw30",fontsize=16,color="green",shape="box"];487[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3120[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3120[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3120 -> 615[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3121[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3121[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3121 -> 616[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3122[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3122[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3122 -> 617[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3123[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3123[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3123 -> 618[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3124[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3124[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3124 -> 619[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3125[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3125[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3125 -> 620[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3126[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3126[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3126 -> 621[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3127[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3127[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3127 -> 622[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3128[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3128[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3128 -> 623[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3129[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3129[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3129 -> 624[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3130[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3130[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3130 -> 625[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3131[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3131[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3131 -> 626[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3132[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3132[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3132 -> 627[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3133[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3133[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3133 -> 628[label="",style="solid", color="blue", weight=3]; 29.96/14.52 484[label="compare2 (Just vyw89) (Just vyw90) vyw91",fontsize=16,color="burlywood",shape="triangle"];3134[label="vyw91/False",fontsize=10,color="white",style="solid",shape="box"];484 -> 3134[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3134 -> 629[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3135[label="vyw91/True",fontsize=10,color="white",style="solid",shape="box"];484 -> 3135[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3135 -> 630[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 488[label="Integer vyw4000 * vyw31",fontsize=16,color="burlywood",shape="box"];3136[label="vyw31/Integer vyw310",fontsize=10,color="white",style="solid",shape="box"];488 -> 3136[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3136 -> 631[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 489[label="vyw401",fontsize=16,color="green",shape="box"];490[label="vyw30",fontsize=16,color="green",shape="box"];491[label="primMulInt vyw400 vyw31",fontsize=16,color="burlywood",shape="triangle"];3137[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];491 -> 3137[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3137 -> 632[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3138[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];491 -> 3138[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3138 -> 633[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 492[label="vyw401",fontsize=16,color="green",shape="box"];493[label="vyw30",fontsize=16,color="green",shape="box"];494 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 494[label="compare (vyw30 * Pos vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];494 -> 634[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 494 -> 635[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 495 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 495[label="compare (vyw30 * Pos vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];495 -> 636[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 495 -> 637[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 496 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 496[label="compare (vyw30 * Neg vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];496 -> 638[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 496 -> 639[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 497 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 497[label="compare (vyw30 * Neg vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];497 -> 640[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 497 -> 641[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 498[label="primCmpNat (Succ vyw300) (Succ vyw4000)",fontsize=16,color="black",shape="box"];498 -> 642[label="",style="solid", color="black", weight=3]; 29.96/14.52 499[label="primCmpNat (Succ vyw300) Zero",fontsize=16,color="black",shape="box"];499 -> 643[label="",style="solid", color="black", weight=3]; 29.96/14.52 500[label="primCmpNat Zero (Succ vyw4000)",fontsize=16,color="black",shape="box"];500 -> 644[label="",style="solid", color="black", weight=3]; 29.96/14.52 501[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];501 -> 645[label="",style="solid", color="black", weight=3]; 29.96/14.52 502[label="Succ vyw300",fontsize=16,color="green",shape="box"];503[label="vyw400",fontsize=16,color="green",shape="box"];504 -> 373[label="",style="dashed", color="red", weight=0]; 29.96/14.52 504[label="primCmpNat Zero (Succ vyw4000)",fontsize=16,color="magenta"];504 -> 646[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 504 -> 647[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 505[label="EQ",fontsize=16,color="green",shape="box"];506[label="GT",fontsize=16,color="green",shape="box"];507[label="EQ",fontsize=16,color="green",shape="box"];508[label="vyw400",fontsize=16,color="green",shape="box"];509[label="Succ vyw300",fontsize=16,color="green",shape="box"];510[label="LT",fontsize=16,color="green",shape="box"];511[label="EQ",fontsize=16,color="green",shape="box"];512 -> 373[label="",style="dashed", color="red", weight=0]; 29.96/14.52 512[label="primCmpNat (Succ vyw4000) Zero",fontsize=16,color="magenta"];512 -> 648[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 512 -> 649[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 513[label="EQ",fontsize=16,color="green",shape="box"];1081 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.52 1081[label="vyw31 == vyw401 && vyw32 == vyw402",fontsize=16,color="magenta"];1081 -> 1099[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 1081 -> 1100[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 1082[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3139[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3139[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3139 -> 1101[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3140[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3140[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3140 -> 1102[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3141[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3141[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3141 -> 1103[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3142[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3142[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3142 -> 1104[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3143[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3143[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3143 -> 1105[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3144[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3144[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3144 -> 1106[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3145[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3145 -> 1107[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3146[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3146[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3146 -> 1108[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3147[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3147[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3147 -> 1109[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3148[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3148[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3148 -> 1110[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3149[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3149[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3149 -> 1111[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3150[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3150[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3150 -> 1112[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3151[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3151[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3151 -> 1113[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3152[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3152[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3152 -> 1114[label="",style="solid", color="blue", weight=3]; 29.96/14.52 1080[label="vyw130 && vyw131",fontsize=16,color="burlywood",shape="triangle"];3153[label="vyw130/False",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3153[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3153 -> 1115[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 3154[label="vyw130/True",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3154[label="",style="solid", color="burlywood", weight=9]; 29.96/14.52 3154 -> 1116[label="",style="solid", color="burlywood", weight=3]; 29.96/14.52 1075[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) False",fontsize=16,color="black",shape="box"];1075 -> 1117[label="",style="solid", color="black", weight=3]; 29.96/14.52 1076[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) True",fontsize=16,color="black",shape="box"];1076 -> 1118[label="",style="solid", color="black", weight=3]; 29.96/14.52 530 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 530[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];530 -> 672[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 530 -> 673[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 531 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 531[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];531 -> 674[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 531 -> 675[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 532 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 532[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];532 -> 676[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 532 -> 677[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 533 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 533[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];533 -> 678[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 533 -> 679[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 534 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 534[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];534 -> 680[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 534 -> 681[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 535 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 535[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];535 -> 682[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 535 -> 683[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 536 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 536[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];536 -> 684[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 536 -> 685[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 537 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.52 537[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];537 -> 686[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 537 -> 687[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 538 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.52 538[label="vyw30 == vyw400",fontsize=16,color="magenta"];538 -> 688[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 538 -> 689[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 539 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.52 539[label="vyw30 == vyw400",fontsize=16,color="magenta"];539 -> 690[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 539 -> 691[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 540 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.52 540[label="vyw30 == vyw400",fontsize=16,color="magenta"];540 -> 692[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 540 -> 693[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 541 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.52 541[label="vyw30 == vyw400",fontsize=16,color="magenta"];541 -> 694[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 541 -> 695[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 542 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.52 542[label="vyw30 == vyw400",fontsize=16,color="magenta"];542 -> 696[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 542 -> 697[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 543 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.52 543[label="vyw30 == vyw400",fontsize=16,color="magenta"];543 -> 698[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 543 -> 699[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 544 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.52 544[label="vyw30 == vyw400",fontsize=16,color="magenta"];544 -> 700[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 544 -> 701[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 545 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.52 545[label="vyw30 == vyw400",fontsize=16,color="magenta"];545 -> 702[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 545 -> 703[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 546 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.52 546[label="vyw30 == vyw400",fontsize=16,color="magenta"];546 -> 704[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 546 -> 705[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 547 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.52 547[label="vyw30 == vyw400",fontsize=16,color="magenta"];547 -> 706[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 547 -> 707[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 548 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.52 548[label="vyw30 == vyw400",fontsize=16,color="magenta"];548 -> 708[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 548 -> 709[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 549 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.52 549[label="vyw30 == vyw400",fontsize=16,color="magenta"];549 -> 710[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 549 -> 711[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 550 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.52 550[label="vyw30 == vyw400",fontsize=16,color="magenta"];550 -> 712[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 550 -> 713[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 551 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.52 551[label="vyw30 == vyw400",fontsize=16,color="magenta"];551 -> 714[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 551 -> 715[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 552[label="compare2 (Left vyw59) (Left vyw60) False",fontsize=16,color="black",shape="box"];552 -> 716[label="",style="solid", color="black", weight=3]; 29.96/14.52 553[label="compare2 (Left vyw59) (Left vyw60) True",fontsize=16,color="black",shape="box"];553 -> 717[label="",style="solid", color="black", weight=3]; 29.96/14.52 554[label="compare1 (Left vyw30) (Right vyw400) True",fontsize=16,color="black",shape="box"];554 -> 718[label="",style="solid", color="black", weight=3]; 29.96/14.52 555[label="compare1 (Right vyw30) (Left vyw400) False",fontsize=16,color="black",shape="box"];555 -> 719[label="",style="solid", color="black", weight=3]; 29.96/14.52 556 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.52 556[label="vyw30 == vyw400",fontsize=16,color="magenta"];556 -> 720[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 556 -> 721[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 557 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.52 557[label="vyw30 == vyw400",fontsize=16,color="magenta"];557 -> 722[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 557 -> 723[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 558 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.52 558[label="vyw30 == vyw400",fontsize=16,color="magenta"];558 -> 724[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 558 -> 725[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 559 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.52 559[label="vyw30 == vyw400",fontsize=16,color="magenta"];559 -> 726[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 559 -> 727[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 560 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.52 560[label="vyw30 == vyw400",fontsize=16,color="magenta"];560 -> 728[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 560 -> 729[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 561 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.52 561[label="vyw30 == vyw400",fontsize=16,color="magenta"];561 -> 730[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 561 -> 731[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 562 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.52 562[label="vyw30 == vyw400",fontsize=16,color="magenta"];562 -> 732[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 562 -> 733[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 563 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.52 563[label="vyw30 == vyw400",fontsize=16,color="magenta"];563 -> 734[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 563 -> 735[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 564 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.52 564[label="vyw30 == vyw400",fontsize=16,color="magenta"];564 -> 736[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 564 -> 737[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 565 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.52 565[label="vyw30 == vyw400",fontsize=16,color="magenta"];565 -> 738[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 565 -> 739[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 566 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.52 566[label="vyw30 == vyw400",fontsize=16,color="magenta"];566 -> 740[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 566 -> 741[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 567 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.52 567[label="vyw30 == vyw400",fontsize=16,color="magenta"];567 -> 742[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 567 -> 743[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 568 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.52 568[label="vyw30 == vyw400",fontsize=16,color="magenta"];568 -> 744[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 568 -> 745[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 569 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.52 569[label="vyw30 == vyw400",fontsize=16,color="magenta"];569 -> 746[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 569 -> 747[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 570[label="compare2 (Right vyw66) (Right vyw67) False",fontsize=16,color="black",shape="box"];570 -> 748[label="",style="solid", color="black", weight=3]; 29.96/14.52 571[label="compare2 (Right vyw66) (Right vyw67) True",fontsize=16,color="black",shape="box"];571 -> 749[label="",style="solid", color="black", weight=3]; 29.96/14.52 572 -> 185[label="",style="dashed", color="red", weight=0]; 29.96/14.52 572[label="compare vyw30 vyw400",fontsize=16,color="magenta"];572 -> 750[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 572 -> 751[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 573 -> 186[label="",style="dashed", color="red", weight=0]; 29.96/14.52 573[label="compare vyw30 vyw400",fontsize=16,color="magenta"];573 -> 752[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 573 -> 753[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 574 -> 187[label="",style="dashed", color="red", weight=0]; 29.96/14.52 574[label="compare vyw30 vyw400",fontsize=16,color="magenta"];574 -> 754[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 574 -> 755[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 575 -> 188[label="",style="dashed", color="red", weight=0]; 29.96/14.52 575[label="compare vyw30 vyw400",fontsize=16,color="magenta"];575 -> 756[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 575 -> 757[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 576 -> 189[label="",style="dashed", color="red", weight=0]; 29.96/14.52 576[label="compare vyw30 vyw400",fontsize=16,color="magenta"];576 -> 758[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 576 -> 759[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 577 -> 190[label="",style="dashed", color="red", weight=0]; 29.96/14.52 577[label="compare vyw30 vyw400",fontsize=16,color="magenta"];577 -> 760[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 577 -> 761[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 578 -> 191[label="",style="dashed", color="red", weight=0]; 29.96/14.52 578[label="compare vyw30 vyw400",fontsize=16,color="magenta"];578 -> 762[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 578 -> 763[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 579 -> 192[label="",style="dashed", color="red", weight=0]; 29.96/14.52 579[label="compare vyw30 vyw400",fontsize=16,color="magenta"];579 -> 764[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 579 -> 765[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 580 -> 193[label="",style="dashed", color="red", weight=0]; 29.96/14.52 580[label="compare vyw30 vyw400",fontsize=16,color="magenta"];580 -> 766[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 580 -> 767[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 581 -> 194[label="",style="dashed", color="red", weight=0]; 29.96/14.52 581[label="compare vyw30 vyw400",fontsize=16,color="magenta"];581 -> 768[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 581 -> 769[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 582 -> 195[label="",style="dashed", color="red", weight=0]; 29.96/14.52 582[label="compare vyw30 vyw400",fontsize=16,color="magenta"];582 -> 770[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 582 -> 771[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 583 -> 196[label="",style="dashed", color="red", weight=0]; 29.96/14.52 583[label="compare vyw30 vyw400",fontsize=16,color="magenta"];583 -> 772[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 583 -> 773[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 584 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.52 584[label="compare vyw30 vyw400",fontsize=16,color="magenta"];584 -> 774[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 584 -> 775[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 585 -> 198[label="",style="dashed", color="red", weight=0]; 29.96/14.52 585[label="compare vyw30 vyw400",fontsize=16,color="magenta"];585 -> 776[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 585 -> 777[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 586[label="primCompAux0 vyw72 LT",fontsize=16,color="black",shape="box"];586 -> 778[label="",style="solid", color="black", weight=3]; 29.96/14.52 587[label="primCompAux0 vyw72 EQ",fontsize=16,color="black",shape="box"];587 -> 779[label="",style="solid", color="black", weight=3]; 29.96/14.52 588[label="primCompAux0 vyw72 GT",fontsize=16,color="black",shape="box"];588 -> 780[label="",style="solid", color="black", weight=3]; 29.96/14.52 589[label="compare1 False True True",fontsize=16,color="black",shape="box"];589 -> 781[label="",style="solid", color="black", weight=3]; 29.96/14.52 590[label="compare1 True False False",fontsize=16,color="black",shape="box"];590 -> 782[label="",style="solid", color="black", weight=3]; 29.96/14.52 1083[label="vyw31 == vyw401",fontsize=16,color="blue",shape="box"];3155[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3155[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3155 -> 1119[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3156[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3156[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3156 -> 1120[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3157[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3157[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3157 -> 1121[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3158[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3158[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3158 -> 1122[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3159[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3159[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3159 -> 1123[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3160[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3160[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3160 -> 1124[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3161[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3161[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3161 -> 1125[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3162[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3162[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3162 -> 1126[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3163[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3163[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3163 -> 1127[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3164[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3164[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3164 -> 1128[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3165[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3165[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3165 -> 1129[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3166[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3166[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3166 -> 1130[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3167[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3167[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3167 -> 1131[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3168[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3168[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3168 -> 1132[label="",style="solid", color="blue", weight=3]; 29.96/14.52 1084[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3169[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3169[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3169 -> 1133[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3170[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3170[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3170 -> 1134[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3171[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3171[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3171 -> 1135[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3172[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3172[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3172 -> 1136[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3173[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3173[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3173 -> 1137[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3174[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3174[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3174 -> 1138[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3175[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3175[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3175 -> 1139[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3176[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3176 -> 1140[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3177[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3177[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3177 -> 1141[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3178[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3178[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3178 -> 1142[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3179[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3179[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3179 -> 1143[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3180[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3180[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3180 -> 1144[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3181[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3181[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3181 -> 1145[label="",style="solid", color="blue", weight=3]; 29.96/14.52 3182[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3182[label="",style="solid", color="blue", weight=9]; 29.96/14.52 3182 -> 1146[label="",style="solid", color="blue", weight=3]; 29.96/14.52 948[label="compare2 (vyw113,vyw114) (vyw115,vyw116) False",fontsize=16,color="black",shape="box"];948 -> 1147[label="",style="solid", color="black", weight=3]; 29.96/14.52 949[label="compare2 (vyw113,vyw114) (vyw115,vyw116) True",fontsize=16,color="black",shape="box"];949 -> 1148[label="",style="solid", color="black", weight=3]; 29.96/14.52 607[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];607 -> 813[label="",style="solid", color="black", weight=3]; 29.96/14.52 608[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];608 -> 814[label="",style="solid", color="black", weight=3]; 29.96/14.52 609[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];609 -> 815[label="",style="solid", color="black", weight=3]; 29.96/14.52 610[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];610 -> 816[label="",style="solid", color="black", weight=3]; 29.96/14.52 611[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];611 -> 817[label="",style="solid", color="black", weight=3]; 29.96/14.52 612[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];612 -> 818[label="",style="solid", color="black", weight=3]; 29.96/14.52 613[label="compare1 Nothing (Just vyw400) True",fontsize=16,color="black",shape="box"];613 -> 819[label="",style="solid", color="black", weight=3]; 29.96/14.52 614[label="compare1 (Just vyw30) Nothing False",fontsize=16,color="black",shape="box"];614 -> 820[label="",style="solid", color="black", weight=3]; 29.96/14.52 615 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.52 615[label="vyw30 == vyw400",fontsize=16,color="magenta"];615 -> 821[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 615 -> 822[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 616 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.52 616[label="vyw30 == vyw400",fontsize=16,color="magenta"];616 -> 823[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 616 -> 824[label="",style="dashed", color="magenta", weight=3]; 29.96/14.52 617 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.52 617[label="vyw30 == vyw400",fontsize=16,color="magenta"];617 -> 825[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 617 -> 826[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 618 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 618[label="vyw30 == vyw400",fontsize=16,color="magenta"];618 -> 827[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 618 -> 828[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 619 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 619[label="vyw30 == vyw400",fontsize=16,color="magenta"];619 -> 829[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 619 -> 830[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 620 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 620[label="vyw30 == vyw400",fontsize=16,color="magenta"];620 -> 831[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 620 -> 832[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 621 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 621[label="vyw30 == vyw400",fontsize=16,color="magenta"];621 -> 833[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 621 -> 834[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 622 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 622[label="vyw30 == vyw400",fontsize=16,color="magenta"];622 -> 835[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 622 -> 836[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 623 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 623[label="vyw30 == vyw400",fontsize=16,color="magenta"];623 -> 837[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 623 -> 838[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 624 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 624[label="vyw30 == vyw400",fontsize=16,color="magenta"];624 -> 839[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 624 -> 840[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 625 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 625[label="vyw30 == vyw400",fontsize=16,color="magenta"];625 -> 841[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 625 -> 842[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 626 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 626[label="vyw30 == vyw400",fontsize=16,color="magenta"];626 -> 843[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 626 -> 844[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 627 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 627[label="vyw30 == vyw400",fontsize=16,color="magenta"];627 -> 845[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 627 -> 846[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 628 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 628[label="vyw30 == vyw400",fontsize=16,color="magenta"];628 -> 847[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 628 -> 848[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 629[label="compare2 (Just vyw89) (Just vyw90) False",fontsize=16,color="black",shape="box"];629 -> 849[label="",style="solid", color="black", weight=3]; 29.96/14.53 630[label="compare2 (Just vyw89) (Just vyw90) True",fontsize=16,color="black",shape="box"];630 -> 850[label="",style="solid", color="black", weight=3]; 29.96/14.53 631[label="Integer vyw4000 * Integer vyw310",fontsize=16,color="black",shape="box"];631 -> 851[label="",style="solid", color="black", weight=3]; 29.96/14.53 632[label="primMulInt (Pos vyw4000) vyw31",fontsize=16,color="burlywood",shape="box"];3183[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];632 -> 3183[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3183 -> 852[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3184[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];632 -> 3184[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3184 -> 853[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 633[label="primMulInt (Neg vyw4000) vyw31",fontsize=16,color="burlywood",shape="box"];3185[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];633 -> 3185[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3185 -> 854[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3186[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];633 -> 3186[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3186 -> 855[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 634 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.53 634[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];634 -> 856[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 634 -> 857[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 635 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.53 635[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];635 -> 858[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 635 -> 859[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 636 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.53 636[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];636 -> 860[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 636 -> 861[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 637 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.53 637[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];637 -> 862[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 637 -> 863[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 638 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.53 638[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];638 -> 864[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 638 -> 865[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 639 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.53 639[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];639 -> 866[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 639 -> 867[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 640 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.53 640[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];640 -> 868[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 640 -> 869[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 641 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.53 641[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];641 -> 870[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 641 -> 871[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 642 -> 373[label="",style="dashed", color="red", weight=0]; 29.96/14.53 642[label="primCmpNat vyw300 vyw4000",fontsize=16,color="magenta"];642 -> 872[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 642 -> 873[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 643[label="GT",fontsize=16,color="green",shape="box"];644[label="LT",fontsize=16,color="green",shape="box"];645[label="EQ",fontsize=16,color="green",shape="box"];646[label="Zero",fontsize=16,color="green",shape="box"];647[label="Succ vyw4000",fontsize=16,color="green",shape="box"];648[label="Succ vyw4000",fontsize=16,color="green",shape="box"];649[label="Zero",fontsize=16,color="green",shape="box"];1099[label="vyw32 == vyw402",fontsize=16,color="blue",shape="box"];3187[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3187[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3187 -> 1156[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3188[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3188[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3188 -> 1157[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3189[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3189[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3189 -> 1158[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3190[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3190[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3190 -> 1159[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3191[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3191 -> 1160[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3192[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3192[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3192 -> 1161[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3193[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3193[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3193 -> 1162[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3194[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3194[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3194 -> 1163[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3195[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3195 -> 1164[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3196[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3196[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3196 -> 1165[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3197[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3197[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3197 -> 1166[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3198[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3198[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3198 -> 1167[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3199[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3199[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3199 -> 1168[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3200[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3200[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3200 -> 1169[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1100[label="vyw31 == vyw401",fontsize=16,color="blue",shape="box"];3201[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3201[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3201 -> 1170[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3202[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3202[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3202 -> 1171[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3203[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3203[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3203 -> 1172[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3204[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3204[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3204 -> 1173[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3205[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3205[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3205 -> 1174[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3206[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3206[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3206 -> 1175[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3207[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3207[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3207 -> 1176[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3208[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3208[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3208 -> 1177[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3209[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3209[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3209 -> 1178[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3210[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3210[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3210 -> 1179[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3211[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3211[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3211 -> 1180[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3212[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3212[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3212 -> 1181[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3213[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3213[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3213 -> 1182[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3214[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3214[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3214 -> 1183[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1101 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1101[label="vyw30 == vyw400",fontsize=16,color="magenta"];1102 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1102[label="vyw30 == vyw400",fontsize=16,color="magenta"];1103 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1103[label="vyw30 == vyw400",fontsize=16,color="magenta"];1104 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1104[label="vyw30 == vyw400",fontsize=16,color="magenta"];1105 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1105[label="vyw30 == vyw400",fontsize=16,color="magenta"];1106 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1106[label="vyw30 == vyw400",fontsize=16,color="magenta"];1107 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1107[label="vyw30 == vyw400",fontsize=16,color="magenta"];1108 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1108[label="vyw30 == vyw400",fontsize=16,color="magenta"];1109 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1109[label="vyw30 == vyw400",fontsize=16,color="magenta"];1110 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1110[label="vyw30 == vyw400",fontsize=16,color="magenta"];1111 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1111[label="vyw30 == vyw400",fontsize=16,color="magenta"];1112 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1112[label="vyw30 == vyw400",fontsize=16,color="magenta"];1113 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1113[label="vyw30 == vyw400",fontsize=16,color="magenta"];1114 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1114[label="vyw30 == vyw400",fontsize=16,color="magenta"];1115[label="False && vyw131",fontsize=16,color="black",shape="box"];1115 -> 1184[label="",style="solid", color="black", weight=3]; 29.96/14.53 1116[label="True && vyw131",fontsize=16,color="black",shape="box"];1116 -> 1185[label="",style="solid", color="black", weight=3]; 29.96/14.53 1117[label="compare1 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) ((vyw100,vyw101,vyw102) <= (vyw103,vyw104,vyw105))",fontsize=16,color="black",shape="box"];1117 -> 1186[label="",style="solid", color="black", weight=3]; 29.96/14.53 1118[label="EQ",fontsize=16,color="green",shape="box"];672[label="vyw400",fontsize=16,color="green",shape="box"];673[label="Pos vyw310",fontsize=16,color="green",shape="box"];674[label="Pos vyw4010",fontsize=16,color="green",shape="box"];675[label="vyw30",fontsize=16,color="green",shape="box"];676[label="vyw400",fontsize=16,color="green",shape="box"];677[label="Neg vyw310",fontsize=16,color="green",shape="box"];678[label="Pos vyw4010",fontsize=16,color="green",shape="box"];679[label="vyw30",fontsize=16,color="green",shape="box"];680[label="vyw400",fontsize=16,color="green",shape="box"];681[label="Pos vyw310",fontsize=16,color="green",shape="box"];682[label="Neg vyw4010",fontsize=16,color="green",shape="box"];683[label="vyw30",fontsize=16,color="green",shape="box"];684[label="vyw400",fontsize=16,color="green",shape="box"];685[label="Neg vyw310",fontsize=16,color="green",shape="box"];686[label="Neg vyw4010",fontsize=16,color="green",shape="box"];687[label="vyw30",fontsize=16,color="green",shape="box"];688[label="vyw400",fontsize=16,color="green",shape="box"];689[label="vyw30",fontsize=16,color="green",shape="box"];514[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3215[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];514 -> 3215[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3215 -> 650[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3216[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];514 -> 3216[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3216 -> 651[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 690[label="vyw400",fontsize=16,color="green",shape="box"];691[label="vyw30",fontsize=16,color="green",shape="box"];515[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];515 -> 652[label="",style="solid", color="black", weight=3]; 29.96/14.53 692[label="vyw400",fontsize=16,color="green",shape="box"];693[label="vyw30",fontsize=16,color="green",shape="box"];516[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3217[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];516 -> 3217[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3217 -> 653[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3218[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];516 -> 3218[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3218 -> 654[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 694[label="vyw400",fontsize=16,color="green",shape="box"];695[label="vyw30",fontsize=16,color="green",shape="box"];517[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3219[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];517 -> 3219[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3219 -> 655[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 696[label="vyw400",fontsize=16,color="green",shape="box"];697[label="vyw30",fontsize=16,color="green",shape="box"];518[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3220[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];518 -> 3220[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3220 -> 656[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 698[label="vyw400",fontsize=16,color="green",shape="box"];699[label="vyw30",fontsize=16,color="green",shape="box"];519[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3221[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];519 -> 3221[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3221 -> 657[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3222[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];519 -> 3222[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3222 -> 658[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 700[label="vyw400",fontsize=16,color="green",shape="box"];701[label="vyw30",fontsize=16,color="green",shape="box"];520[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];520 -> 659[label="",style="solid", color="black", weight=3]; 29.96/14.53 702[label="vyw400",fontsize=16,color="green",shape="box"];703[label="vyw30",fontsize=16,color="green",shape="box"];521[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];521 -> 660[label="",style="solid", color="black", weight=3]; 29.96/14.53 704[label="vyw400",fontsize=16,color="green",shape="box"];705[label="vyw30",fontsize=16,color="green",shape="box"];522[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3223[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];522 -> 3223[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3223 -> 661[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 706[label="vyw400",fontsize=16,color="green",shape="box"];707[label="vyw30",fontsize=16,color="green",shape="box"];523[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3224[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];523 -> 3224[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3224 -> 662[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 708[label="vyw400",fontsize=16,color="green",shape="box"];709[label="vyw30",fontsize=16,color="green",shape="box"];524[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3225[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];524 -> 3225[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3225 -> 663[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 710[label="vyw400",fontsize=16,color="green",shape="box"];711[label="vyw30",fontsize=16,color="green",shape="box"];525[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3226[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];525 -> 3226[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3226 -> 664[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3227[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];525 -> 3227[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3227 -> 665[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 712[label="vyw400",fontsize=16,color="green",shape="box"];713[label="vyw30",fontsize=16,color="green",shape="box"];526[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];526 -> 666[label="",style="solid", color="black", weight=3]; 29.96/14.53 714[label="vyw400",fontsize=16,color="green",shape="box"];715[label="vyw30",fontsize=16,color="green",shape="box"];527[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3228[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];527 -> 3228[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3228 -> 667[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3229[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];527 -> 3229[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3229 -> 668[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3230[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];527 -> 3230[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3230 -> 669[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 716 -> 1149[label="",style="dashed", color="red", weight=0]; 29.96/14.53 716[label="compare1 (Left vyw59) (Left vyw60) (Left vyw59 <= Left vyw60)",fontsize=16,color="magenta"];716 -> 1150[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 716 -> 1151[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 716 -> 1152[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 717[label="EQ",fontsize=16,color="green",shape="box"];718[label="LT",fontsize=16,color="green",shape="box"];719[label="compare0 (Right vyw30) (Left vyw400) otherwise",fontsize=16,color="black",shape="box"];719 -> 919[label="",style="solid", color="black", weight=3]; 29.96/14.53 720[label="vyw400",fontsize=16,color="green",shape="box"];721[label="vyw30",fontsize=16,color="green",shape="box"];722[label="vyw400",fontsize=16,color="green",shape="box"];723[label="vyw30",fontsize=16,color="green",shape="box"];724[label="vyw400",fontsize=16,color="green",shape="box"];725[label="vyw30",fontsize=16,color="green",shape="box"];726[label="vyw400",fontsize=16,color="green",shape="box"];727[label="vyw30",fontsize=16,color="green",shape="box"];728[label="vyw400",fontsize=16,color="green",shape="box"];729[label="vyw30",fontsize=16,color="green",shape="box"];730[label="vyw400",fontsize=16,color="green",shape="box"];731[label="vyw30",fontsize=16,color="green",shape="box"];732[label="vyw400",fontsize=16,color="green",shape="box"];733[label="vyw30",fontsize=16,color="green",shape="box"];734[label="vyw400",fontsize=16,color="green",shape="box"];735[label="vyw30",fontsize=16,color="green",shape="box"];736[label="vyw400",fontsize=16,color="green",shape="box"];737[label="vyw30",fontsize=16,color="green",shape="box"];738[label="vyw400",fontsize=16,color="green",shape="box"];739[label="vyw30",fontsize=16,color="green",shape="box"];740[label="vyw400",fontsize=16,color="green",shape="box"];741[label="vyw30",fontsize=16,color="green",shape="box"];742[label="vyw400",fontsize=16,color="green",shape="box"];743[label="vyw30",fontsize=16,color="green",shape="box"];744[label="vyw400",fontsize=16,color="green",shape="box"];745[label="vyw30",fontsize=16,color="green",shape="box"];746[label="vyw400",fontsize=16,color="green",shape="box"];747[label="vyw30",fontsize=16,color="green",shape="box"];748 -> 1248[label="",style="dashed", color="red", weight=0]; 29.96/14.53 748[label="compare1 (Right vyw66) (Right vyw67) (Right vyw66 <= Right vyw67)",fontsize=16,color="magenta"];748 -> 1249[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 748 -> 1250[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 748 -> 1251[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 749[label="EQ",fontsize=16,color="green",shape="box"];750[label="vyw400",fontsize=16,color="green",shape="box"];751[label="vyw30",fontsize=16,color="green",shape="box"];752[label="vyw400",fontsize=16,color="green",shape="box"];753[label="vyw30",fontsize=16,color="green",shape="box"];754[label="vyw400",fontsize=16,color="green",shape="box"];755[label="vyw30",fontsize=16,color="green",shape="box"];756[label="vyw400",fontsize=16,color="green",shape="box"];757[label="vyw30",fontsize=16,color="green",shape="box"];758[label="vyw400",fontsize=16,color="green",shape="box"];759[label="vyw30",fontsize=16,color="green",shape="box"];760[label="vyw400",fontsize=16,color="green",shape="box"];761[label="vyw30",fontsize=16,color="green",shape="box"];762[label="vyw400",fontsize=16,color="green",shape="box"];763[label="vyw30",fontsize=16,color="green",shape="box"];764[label="vyw400",fontsize=16,color="green",shape="box"];765[label="vyw30",fontsize=16,color="green",shape="box"];766[label="vyw400",fontsize=16,color="green",shape="box"];767[label="vyw30",fontsize=16,color="green",shape="box"];768[label="vyw400",fontsize=16,color="green",shape="box"];769[label="vyw30",fontsize=16,color="green",shape="box"];770[label="vyw400",fontsize=16,color="green",shape="box"];771[label="vyw30",fontsize=16,color="green",shape="box"];772[label="vyw400",fontsize=16,color="green",shape="box"];773[label="vyw30",fontsize=16,color="green",shape="box"];774[label="vyw400",fontsize=16,color="green",shape="box"];775[label="vyw30",fontsize=16,color="green",shape="box"];776[label="vyw400",fontsize=16,color="green",shape="box"];777[label="vyw30",fontsize=16,color="green",shape="box"];778[label="LT",fontsize=16,color="green",shape="box"];779[label="vyw72",fontsize=16,color="green",shape="box"];780[label="GT",fontsize=16,color="green",shape="box"];781[label="LT",fontsize=16,color="green",shape="box"];782[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];782 -> 921[label="",style="solid", color="black", weight=3]; 29.96/14.53 1119 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1119[label="vyw31 == vyw401",fontsize=16,color="magenta"];1119 -> 1187[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1119 -> 1188[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1120 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1120[label="vyw31 == vyw401",fontsize=16,color="magenta"];1120 -> 1189[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1120 -> 1190[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1121 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1121[label="vyw31 == vyw401",fontsize=16,color="magenta"];1121 -> 1191[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1121 -> 1192[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1122 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1122[label="vyw31 == vyw401",fontsize=16,color="magenta"];1122 -> 1193[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1122 -> 1194[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1123 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1123[label="vyw31 == vyw401",fontsize=16,color="magenta"];1123 -> 1195[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1123 -> 1196[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1124 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1124[label="vyw31 == vyw401",fontsize=16,color="magenta"];1124 -> 1197[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1124 -> 1198[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1125 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1125[label="vyw31 == vyw401",fontsize=16,color="magenta"];1125 -> 1199[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1125 -> 1200[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1126 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1126[label="vyw31 == vyw401",fontsize=16,color="magenta"];1126 -> 1201[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1126 -> 1202[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1127 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1127[label="vyw31 == vyw401",fontsize=16,color="magenta"];1127 -> 1203[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1127 -> 1204[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1128 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1128[label="vyw31 == vyw401",fontsize=16,color="magenta"];1128 -> 1205[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1128 -> 1206[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1129 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1129[label="vyw31 == vyw401",fontsize=16,color="magenta"];1129 -> 1207[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1129 -> 1208[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1130 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1130[label="vyw31 == vyw401",fontsize=16,color="magenta"];1130 -> 1209[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1130 -> 1210[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1131 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1131[label="vyw31 == vyw401",fontsize=16,color="magenta"];1131 -> 1211[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1131 -> 1212[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1132 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1132[label="vyw31 == vyw401",fontsize=16,color="magenta"];1132 -> 1213[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1132 -> 1214[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1133 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1133[label="vyw30 == vyw400",fontsize=16,color="magenta"];1133 -> 1215[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1133 -> 1216[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1134 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1134[label="vyw30 == vyw400",fontsize=16,color="magenta"];1134 -> 1217[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1134 -> 1218[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1135 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1135[label="vyw30 == vyw400",fontsize=16,color="magenta"];1135 -> 1219[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1135 -> 1220[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1136 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1136[label="vyw30 == vyw400",fontsize=16,color="magenta"];1136 -> 1221[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1136 -> 1222[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1137 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1137[label="vyw30 == vyw400",fontsize=16,color="magenta"];1137 -> 1223[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1137 -> 1224[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1138 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1138[label="vyw30 == vyw400",fontsize=16,color="magenta"];1138 -> 1225[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1138 -> 1226[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1139 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1139[label="vyw30 == vyw400",fontsize=16,color="magenta"];1139 -> 1227[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1139 -> 1228[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1140 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1140[label="vyw30 == vyw400",fontsize=16,color="magenta"];1140 -> 1229[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1140 -> 1230[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1141 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1141[label="vyw30 == vyw400",fontsize=16,color="magenta"];1141 -> 1231[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1141 -> 1232[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1142 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1142[label="vyw30 == vyw400",fontsize=16,color="magenta"];1142 -> 1233[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1142 -> 1234[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1143 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1143[label="vyw30 == vyw400",fontsize=16,color="magenta"];1143 -> 1235[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1143 -> 1236[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1144 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1144[label="vyw30 == vyw400",fontsize=16,color="magenta"];1144 -> 1237[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1144 -> 1238[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1145 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1145[label="vyw30 == vyw400",fontsize=16,color="magenta"];1145 -> 1239[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1145 -> 1240[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1146 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1146[label="vyw30 == vyw400",fontsize=16,color="magenta"];1146 -> 1241[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1146 -> 1242[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1147[label="compare1 (vyw113,vyw114) (vyw115,vyw116) ((vyw113,vyw114) <= (vyw115,vyw116))",fontsize=16,color="black",shape="box"];1147 -> 1243[label="",style="solid", color="black", weight=3]; 29.96/14.53 1148[label="EQ",fontsize=16,color="green",shape="box"];813[label="LT",fontsize=16,color="green",shape="box"];814[label="LT",fontsize=16,color="green",shape="box"];815[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];815 -> 966[label="",style="solid", color="black", weight=3]; 29.96/14.53 816[label="LT",fontsize=16,color="green",shape="box"];817[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];817 -> 967[label="",style="solid", color="black", weight=3]; 29.96/14.53 818[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];818 -> 968[label="",style="solid", color="black", weight=3]; 29.96/14.53 819[label="LT",fontsize=16,color="green",shape="box"];820[label="compare0 (Just vyw30) Nothing otherwise",fontsize=16,color="black",shape="box"];820 -> 969[label="",style="solid", color="black", weight=3]; 29.96/14.53 821[label="vyw400",fontsize=16,color="green",shape="box"];822[label="vyw30",fontsize=16,color="green",shape="box"];823[label="vyw400",fontsize=16,color="green",shape="box"];824[label="vyw30",fontsize=16,color="green",shape="box"];825[label="vyw400",fontsize=16,color="green",shape="box"];826[label="vyw30",fontsize=16,color="green",shape="box"];827[label="vyw400",fontsize=16,color="green",shape="box"];828[label="vyw30",fontsize=16,color="green",shape="box"];829[label="vyw400",fontsize=16,color="green",shape="box"];830[label="vyw30",fontsize=16,color="green",shape="box"];831[label="vyw400",fontsize=16,color="green",shape="box"];832[label="vyw30",fontsize=16,color="green",shape="box"];833[label="vyw400",fontsize=16,color="green",shape="box"];834[label="vyw30",fontsize=16,color="green",shape="box"];835[label="vyw400",fontsize=16,color="green",shape="box"];836[label="vyw30",fontsize=16,color="green",shape="box"];837[label="vyw400",fontsize=16,color="green",shape="box"];838[label="vyw30",fontsize=16,color="green",shape="box"];839[label="vyw400",fontsize=16,color="green",shape="box"];840[label="vyw30",fontsize=16,color="green",shape="box"];841[label="vyw400",fontsize=16,color="green",shape="box"];842[label="vyw30",fontsize=16,color="green",shape="box"];843[label="vyw400",fontsize=16,color="green",shape="box"];844[label="vyw30",fontsize=16,color="green",shape="box"];845[label="vyw400",fontsize=16,color="green",shape="box"];846[label="vyw30",fontsize=16,color="green",shape="box"];847[label="vyw400",fontsize=16,color="green",shape="box"];848[label="vyw30",fontsize=16,color="green",shape="box"];849 -> 1323[label="",style="dashed", color="red", weight=0]; 29.96/14.53 849[label="compare1 (Just vyw89) (Just vyw90) (Just vyw89 <= Just vyw90)",fontsize=16,color="magenta"];849 -> 1324[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 849 -> 1325[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 849 -> 1326[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 850[label="EQ",fontsize=16,color="green",shape="box"];851[label="Integer (primMulInt vyw4000 vyw310)",fontsize=16,color="green",shape="box"];851 -> 971[label="",style="dashed", color="green", weight=3]; 29.96/14.53 852[label="primMulInt (Pos vyw4000) (Pos vyw310)",fontsize=16,color="black",shape="box"];852 -> 972[label="",style="solid", color="black", weight=3]; 29.96/14.53 853[label="primMulInt (Pos vyw4000) (Neg vyw310)",fontsize=16,color="black",shape="box"];853 -> 973[label="",style="solid", color="black", weight=3]; 29.96/14.53 854[label="primMulInt (Neg vyw4000) (Pos vyw310)",fontsize=16,color="black",shape="box"];854 -> 974[label="",style="solid", color="black", weight=3]; 29.96/14.53 855[label="primMulInt (Neg vyw4000) (Neg vyw310)",fontsize=16,color="black",shape="box"];855 -> 975[label="",style="solid", color="black", weight=3]; 29.96/14.53 856[label="vyw400",fontsize=16,color="green",shape="box"];857[label="Pos vyw310",fontsize=16,color="green",shape="box"];858[label="Pos vyw4010",fontsize=16,color="green",shape="box"];859[label="vyw30",fontsize=16,color="green",shape="box"];860[label="vyw400",fontsize=16,color="green",shape="box"];861[label="Neg vyw310",fontsize=16,color="green",shape="box"];862[label="Pos vyw4010",fontsize=16,color="green",shape="box"];863[label="vyw30",fontsize=16,color="green",shape="box"];864[label="vyw400",fontsize=16,color="green",shape="box"];865[label="Pos vyw310",fontsize=16,color="green",shape="box"];866[label="Neg vyw4010",fontsize=16,color="green",shape="box"];867[label="vyw30",fontsize=16,color="green",shape="box"];868[label="vyw400",fontsize=16,color="green",shape="box"];869[label="Neg vyw310",fontsize=16,color="green",shape="box"];870[label="Neg vyw4010",fontsize=16,color="green",shape="box"];871[label="vyw30",fontsize=16,color="green",shape="box"];872[label="vyw300",fontsize=16,color="green",shape="box"];873[label="vyw4000",fontsize=16,color="green",shape="box"];1156 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1156[label="vyw32 == vyw402",fontsize=16,color="magenta"];1156 -> 1255[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1156 -> 1256[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1157 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1157[label="vyw32 == vyw402",fontsize=16,color="magenta"];1157 -> 1257[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1157 -> 1258[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1158 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1158[label="vyw32 == vyw402",fontsize=16,color="magenta"];1158 -> 1259[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1158 -> 1260[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1159 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1159[label="vyw32 == vyw402",fontsize=16,color="magenta"];1159 -> 1261[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1159 -> 1262[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1160 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1160[label="vyw32 == vyw402",fontsize=16,color="magenta"];1160 -> 1263[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1160 -> 1264[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1161 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1161[label="vyw32 == vyw402",fontsize=16,color="magenta"];1161 -> 1265[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1161 -> 1266[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1162 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1162[label="vyw32 == vyw402",fontsize=16,color="magenta"];1162 -> 1267[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1162 -> 1268[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1163 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1163[label="vyw32 == vyw402",fontsize=16,color="magenta"];1163 -> 1269[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1163 -> 1270[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1164 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1164[label="vyw32 == vyw402",fontsize=16,color="magenta"];1164 -> 1271[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1164 -> 1272[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1165 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1165[label="vyw32 == vyw402",fontsize=16,color="magenta"];1165 -> 1273[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1165 -> 1274[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1166 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1166[label="vyw32 == vyw402",fontsize=16,color="magenta"];1166 -> 1275[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1166 -> 1276[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1167 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1167[label="vyw32 == vyw402",fontsize=16,color="magenta"];1167 -> 1277[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1167 -> 1278[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1168 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1168[label="vyw32 == vyw402",fontsize=16,color="magenta"];1168 -> 1279[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1168 -> 1280[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1169 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1169[label="vyw32 == vyw402",fontsize=16,color="magenta"];1169 -> 1281[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1169 -> 1282[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1170 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1170[label="vyw31 == vyw401",fontsize=16,color="magenta"];1170 -> 1283[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1170 -> 1284[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1171 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1171[label="vyw31 == vyw401",fontsize=16,color="magenta"];1171 -> 1285[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1171 -> 1286[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1172 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1172[label="vyw31 == vyw401",fontsize=16,color="magenta"];1172 -> 1287[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1172 -> 1288[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1173 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1173[label="vyw31 == vyw401",fontsize=16,color="magenta"];1173 -> 1289[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1173 -> 1290[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1174 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1174[label="vyw31 == vyw401",fontsize=16,color="magenta"];1174 -> 1291[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1174 -> 1292[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1175 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1175[label="vyw31 == vyw401",fontsize=16,color="magenta"];1175 -> 1293[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1175 -> 1294[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1176 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1176[label="vyw31 == vyw401",fontsize=16,color="magenta"];1176 -> 1295[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1176 -> 1296[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1177 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1177[label="vyw31 == vyw401",fontsize=16,color="magenta"];1177 -> 1297[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1177 -> 1298[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1178 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1178[label="vyw31 == vyw401",fontsize=16,color="magenta"];1178 -> 1299[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1178 -> 1300[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1179 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1179[label="vyw31 == vyw401",fontsize=16,color="magenta"];1179 -> 1301[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1179 -> 1302[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1180 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1180[label="vyw31 == vyw401",fontsize=16,color="magenta"];1180 -> 1303[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1180 -> 1304[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1181 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1181[label="vyw31 == vyw401",fontsize=16,color="magenta"];1181 -> 1305[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1181 -> 1306[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1182 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1182[label="vyw31 == vyw401",fontsize=16,color="magenta"];1182 -> 1307[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1182 -> 1308[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1183 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1183[label="vyw31 == vyw401",fontsize=16,color="magenta"];1183 -> 1309[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1183 -> 1310[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1184[label="False",fontsize=16,color="green",shape="box"];1185[label="vyw131",fontsize=16,color="green",shape="box"];1186 -> 1341[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1186[label="compare1 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) (vyw100 < vyw103 || vyw100 == vyw103 && (vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105))",fontsize=16,color="magenta"];1186 -> 1342[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1186 -> 1343[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1186 -> 1344[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1186 -> 1345[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1186 -> 1346[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1186 -> 1347[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1186 -> 1348[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1186 -> 1349[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 650[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];3231[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];650 -> 3231[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3231 -> 874[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3232[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];650 -> 3232[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3232 -> 875[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 651[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];3233[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];651 -> 3233[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3233 -> 876[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3234[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];651 -> 3234[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3234 -> 877[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 652[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3235[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];652 -> 3235[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3235 -> 878[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 653[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3236[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];653 -> 3236[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3236 -> 879[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3237[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];653 -> 3237[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3237 -> 880[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 654[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];3238[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];654 -> 3238[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3238 -> 881[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3239[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];654 -> 3239[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3239 -> 882[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 655[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];3240[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];655 -> 3240[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3240 -> 883[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 656[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3241[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];656 -> 3241[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3241 -> 884[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 657[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3242[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];657 -> 3242[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3242 -> 885[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3243[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];657 -> 3243[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3243 -> 886[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 658[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3244[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];658 -> 3244[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3244 -> 887[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3245[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];658 -> 3245[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3245 -> 888[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 659[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3246[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];659 -> 3246[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3246 -> 889[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 660[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3247[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];660 -> 3247[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3247 -> 890[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3248[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];660 -> 3248[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3248 -> 891[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 661[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];3249[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];661 -> 3249[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3249 -> 892[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 662[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];3250[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];662 -> 3250[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3250 -> 893[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 663[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3251[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];663 -> 3251[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3251 -> 894[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 664[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];3252[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];664 -> 3252[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3252 -> 895[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3253[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];664 -> 3253[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3253 -> 896[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 665[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3254[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];665 -> 3254[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3254 -> 897[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3255[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];665 -> 3255[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3255 -> 898[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 666[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3256[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];666 -> 3256[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3256 -> 899[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 667[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];3257[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];667 -> 3257[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3257 -> 900[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3258[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];667 -> 3258[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3258 -> 901[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3259[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];667 -> 3259[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3259 -> 902[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 668[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];3260[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];668 -> 3260[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3260 -> 903[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3261[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];668 -> 3261[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3261 -> 904[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3262[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];668 -> 3262[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3262 -> 905[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 669[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];3263[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];669 -> 3263[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3263 -> 906[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3264[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];669 -> 3264[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3264 -> 907[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3265[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];669 -> 3265[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3265 -> 908[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1150[label="vyw60",fontsize=16,color="green",shape="box"];1151[label="vyw59",fontsize=16,color="green",shape="box"];1152[label="Left vyw59 <= Left vyw60",fontsize=16,color="black",shape="box"];1152 -> 1244[label="",style="solid", color="black", weight=3]; 29.96/14.53 1149[label="compare1 (Left vyw136) (Left vyw137) vyw138",fontsize=16,color="burlywood",shape="triangle"];3266[label="vyw138/False",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3266[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3266 -> 1245[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3267[label="vyw138/True",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3267[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3267 -> 1246[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 919[label="compare0 (Right vyw30) (Left vyw400) True",fontsize=16,color="black",shape="box"];919 -> 1247[label="",style="solid", color="black", weight=3]; 29.96/14.53 1249[label="vyw67",fontsize=16,color="green",shape="box"];1250[label="vyw66",fontsize=16,color="green",shape="box"];1251[label="Right vyw66 <= Right vyw67",fontsize=16,color="black",shape="box"];1251 -> 1313[label="",style="solid", color="black", weight=3]; 29.96/14.53 1248[label="compare1 (Right vyw143) (Right vyw144) vyw145",fontsize=16,color="burlywood",shape="triangle"];3268[label="vyw145/False",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3268[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3268 -> 1314[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3269[label="vyw145/True",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3269[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3269 -> 1315[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 921[label="compare0 True False True",fontsize=16,color="black",shape="box"];921 -> 1316[label="",style="solid", color="black", weight=3]; 29.96/14.53 1187[label="vyw401",fontsize=16,color="green",shape="box"];1188[label="vyw31",fontsize=16,color="green",shape="box"];1189[label="vyw401",fontsize=16,color="green",shape="box"];1190[label="vyw31",fontsize=16,color="green",shape="box"];1191[label="vyw401",fontsize=16,color="green",shape="box"];1192[label="vyw31",fontsize=16,color="green",shape="box"];1193[label="vyw401",fontsize=16,color="green",shape="box"];1194[label="vyw31",fontsize=16,color="green",shape="box"];1195[label="vyw401",fontsize=16,color="green",shape="box"];1196[label="vyw31",fontsize=16,color="green",shape="box"];1197[label="vyw401",fontsize=16,color="green",shape="box"];1198[label="vyw31",fontsize=16,color="green",shape="box"];1199[label="vyw401",fontsize=16,color="green",shape="box"];1200[label="vyw31",fontsize=16,color="green",shape="box"];1201[label="vyw401",fontsize=16,color="green",shape="box"];1202[label="vyw31",fontsize=16,color="green",shape="box"];1203[label="vyw401",fontsize=16,color="green",shape="box"];1204[label="vyw31",fontsize=16,color="green",shape="box"];1205[label="vyw401",fontsize=16,color="green",shape="box"];1206[label="vyw31",fontsize=16,color="green",shape="box"];1207[label="vyw401",fontsize=16,color="green",shape="box"];1208[label="vyw31",fontsize=16,color="green",shape="box"];1209[label="vyw401",fontsize=16,color="green",shape="box"];1210[label="vyw31",fontsize=16,color="green",shape="box"];1211[label="vyw401",fontsize=16,color="green",shape="box"];1212[label="vyw31",fontsize=16,color="green",shape="box"];1213[label="vyw401",fontsize=16,color="green",shape="box"];1214[label="vyw31",fontsize=16,color="green",shape="box"];1215[label="vyw400",fontsize=16,color="green",shape="box"];1216[label="vyw30",fontsize=16,color="green",shape="box"];1217[label="vyw400",fontsize=16,color="green",shape="box"];1218[label="vyw30",fontsize=16,color="green",shape="box"];1219[label="vyw400",fontsize=16,color="green",shape="box"];1220[label="vyw30",fontsize=16,color="green",shape="box"];1221[label="vyw400",fontsize=16,color="green",shape="box"];1222[label="vyw30",fontsize=16,color="green",shape="box"];1223[label="vyw400",fontsize=16,color="green",shape="box"];1224[label="vyw30",fontsize=16,color="green",shape="box"];1225[label="vyw400",fontsize=16,color="green",shape="box"];1226[label="vyw30",fontsize=16,color="green",shape="box"];1227[label="vyw400",fontsize=16,color="green",shape="box"];1228[label="vyw30",fontsize=16,color="green",shape="box"];1229[label="vyw400",fontsize=16,color="green",shape="box"];1230[label="vyw30",fontsize=16,color="green",shape="box"];1231[label="vyw400",fontsize=16,color="green",shape="box"];1232[label="vyw30",fontsize=16,color="green",shape="box"];1233[label="vyw400",fontsize=16,color="green",shape="box"];1234[label="vyw30",fontsize=16,color="green",shape="box"];1235[label="vyw400",fontsize=16,color="green",shape="box"];1236[label="vyw30",fontsize=16,color="green",shape="box"];1237[label="vyw400",fontsize=16,color="green",shape="box"];1238[label="vyw30",fontsize=16,color="green",shape="box"];1239[label="vyw400",fontsize=16,color="green",shape="box"];1240[label="vyw30",fontsize=16,color="green",shape="box"];1241[label="vyw400",fontsize=16,color="green",shape="box"];1242[label="vyw30",fontsize=16,color="green",shape="box"];1243 -> 1410[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1243[label="compare1 (vyw113,vyw114) (vyw115,vyw116) (vyw113 < vyw115 || vyw113 == vyw115 && vyw114 <= vyw116)",fontsize=16,color="magenta"];1243 -> 1411[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1243 -> 1412[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1243 -> 1413[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1243 -> 1414[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1243 -> 1415[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1243 -> 1416[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 966[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];966 -> 1319[label="",style="solid", color="black", weight=3]; 29.96/14.53 967[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];967 -> 1320[label="",style="solid", color="black", weight=3]; 29.96/14.53 968[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];968 -> 1321[label="",style="solid", color="black", weight=3]; 29.96/14.53 969[label="compare0 (Just vyw30) Nothing True",fontsize=16,color="black",shape="box"];969 -> 1322[label="",style="solid", color="black", weight=3]; 29.96/14.53 1324[label="Just vyw89 <= Just vyw90",fontsize=16,color="black",shape="box"];1324 -> 1330[label="",style="solid", color="black", weight=3]; 29.96/14.53 1325[label="vyw90",fontsize=16,color="green",shape="box"];1326[label="vyw89",fontsize=16,color="green",shape="box"];1323[label="compare1 (Just vyw153) (Just vyw154) vyw155",fontsize=16,color="burlywood",shape="triangle"];3270[label="vyw155/False",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3270[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3270 -> 1331[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3271[label="vyw155/True",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3271[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3271 -> 1332[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 971 -> 491[label="",style="dashed", color="red", weight=0]; 29.96/14.53 971[label="primMulInt vyw4000 vyw310",fontsize=16,color="magenta"];971 -> 1333[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 971 -> 1334[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 972[label="Pos (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];972 -> 1335[label="",style="dashed", color="green", weight=3]; 29.96/14.53 973[label="Neg (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];973 -> 1336[label="",style="dashed", color="green", weight=3]; 29.96/14.53 974[label="Neg (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];974 -> 1337[label="",style="dashed", color="green", weight=3]; 29.96/14.53 975[label="Pos (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];975 -> 1338[label="",style="dashed", color="green", weight=3]; 29.96/14.53 1255[label="vyw402",fontsize=16,color="green",shape="box"];1256[label="vyw32",fontsize=16,color="green",shape="box"];1257[label="vyw402",fontsize=16,color="green",shape="box"];1258[label="vyw32",fontsize=16,color="green",shape="box"];1259[label="vyw402",fontsize=16,color="green",shape="box"];1260[label="vyw32",fontsize=16,color="green",shape="box"];1261[label="vyw402",fontsize=16,color="green",shape="box"];1262[label="vyw32",fontsize=16,color="green",shape="box"];1263[label="vyw402",fontsize=16,color="green",shape="box"];1264[label="vyw32",fontsize=16,color="green",shape="box"];1265[label="vyw402",fontsize=16,color="green",shape="box"];1266[label="vyw32",fontsize=16,color="green",shape="box"];1267[label="vyw402",fontsize=16,color="green",shape="box"];1268[label="vyw32",fontsize=16,color="green",shape="box"];1269[label="vyw402",fontsize=16,color="green",shape="box"];1270[label="vyw32",fontsize=16,color="green",shape="box"];1271[label="vyw402",fontsize=16,color="green",shape="box"];1272[label="vyw32",fontsize=16,color="green",shape="box"];1273[label="vyw402",fontsize=16,color="green",shape="box"];1274[label="vyw32",fontsize=16,color="green",shape="box"];1275[label="vyw402",fontsize=16,color="green",shape="box"];1276[label="vyw32",fontsize=16,color="green",shape="box"];1277[label="vyw402",fontsize=16,color="green",shape="box"];1278[label="vyw32",fontsize=16,color="green",shape="box"];1279[label="vyw402",fontsize=16,color="green",shape="box"];1280[label="vyw32",fontsize=16,color="green",shape="box"];1281[label="vyw402",fontsize=16,color="green",shape="box"];1282[label="vyw32",fontsize=16,color="green",shape="box"];1283[label="vyw401",fontsize=16,color="green",shape="box"];1284[label="vyw31",fontsize=16,color="green",shape="box"];1285[label="vyw401",fontsize=16,color="green",shape="box"];1286[label="vyw31",fontsize=16,color="green",shape="box"];1287[label="vyw401",fontsize=16,color="green",shape="box"];1288[label="vyw31",fontsize=16,color="green",shape="box"];1289[label="vyw401",fontsize=16,color="green",shape="box"];1290[label="vyw31",fontsize=16,color="green",shape="box"];1291[label="vyw401",fontsize=16,color="green",shape="box"];1292[label="vyw31",fontsize=16,color="green",shape="box"];1293[label="vyw401",fontsize=16,color="green",shape="box"];1294[label="vyw31",fontsize=16,color="green",shape="box"];1295[label="vyw401",fontsize=16,color="green",shape="box"];1296[label="vyw31",fontsize=16,color="green",shape="box"];1297[label="vyw401",fontsize=16,color="green",shape="box"];1298[label="vyw31",fontsize=16,color="green",shape="box"];1299[label="vyw401",fontsize=16,color="green",shape="box"];1300[label="vyw31",fontsize=16,color="green",shape="box"];1301[label="vyw401",fontsize=16,color="green",shape="box"];1302[label="vyw31",fontsize=16,color="green",shape="box"];1303[label="vyw401",fontsize=16,color="green",shape="box"];1304[label="vyw31",fontsize=16,color="green",shape="box"];1305[label="vyw401",fontsize=16,color="green",shape="box"];1306[label="vyw31",fontsize=16,color="green",shape="box"];1307[label="vyw401",fontsize=16,color="green",shape="box"];1308[label="vyw31",fontsize=16,color="green",shape="box"];1309[label="vyw401",fontsize=16,color="green",shape="box"];1310[label="vyw31",fontsize=16,color="green",shape="box"];1342[label="vyw100",fontsize=16,color="green",shape="box"];1343[label="vyw100 < vyw103",fontsize=16,color="blue",shape="box"];3272[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3272[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3272 -> 1358[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3273[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3273[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3273 -> 1359[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3274[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3274[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3274 -> 1360[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3275[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3275[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3275 -> 1361[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3276[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3276[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3276 -> 1362[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3277[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3277[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3277 -> 1363[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3278[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3278[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3278 -> 1364[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3279[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3279[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3279 -> 1365[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3280[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3280[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3280 -> 1366[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3281[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3281[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3281 -> 1367[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3282[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3282[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3282 -> 1368[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3283[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3283[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3283 -> 1369[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3284[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3284[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3284 -> 1370[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3285[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3285[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3285 -> 1371[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1344[label="vyw105",fontsize=16,color="green",shape="box"];1345[label="vyw104",fontsize=16,color="green",shape="box"];1346 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1346[label="vyw100 == vyw103 && (vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105)",fontsize=16,color="magenta"];1346 -> 1372[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1346 -> 1373[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1347[label="vyw101",fontsize=16,color="green",shape="box"];1348[label="vyw102",fontsize=16,color="green",shape="box"];1349[label="vyw103",fontsize=16,color="green",shape="box"];1341[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (vyw171 || vyw172)",fontsize=16,color="burlywood",shape="triangle"];3286[label="vyw171/False",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3286[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3286 -> 1374[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3287[label="vyw171/True",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3287[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3287 -> 1375[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 874[label="False == False",fontsize=16,color="black",shape="box"];874 -> 976[label="",style="solid", color="black", weight=3]; 29.96/14.53 875[label="False == True",fontsize=16,color="black",shape="box"];875 -> 977[label="",style="solid", color="black", weight=3]; 29.96/14.53 876[label="True == False",fontsize=16,color="black",shape="box"];876 -> 978[label="",style="solid", color="black", weight=3]; 29.96/14.53 877[label="True == True",fontsize=16,color="black",shape="box"];877 -> 979[label="",style="solid", color="black", weight=3]; 29.96/14.53 878[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3288[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];878 -> 3288[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3288 -> 980[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 879[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];879 -> 981[label="",style="solid", color="black", weight=3]; 29.96/14.53 880[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];880 -> 982[label="",style="solid", color="black", weight=3]; 29.96/14.53 881[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];881 -> 983[label="",style="solid", color="black", weight=3]; 29.96/14.53 882[label="[] == []",fontsize=16,color="black",shape="box"];882 -> 984[label="",style="solid", color="black", weight=3]; 29.96/14.53 883[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];883 -> 985[label="",style="solid", color="black", weight=3]; 29.96/14.53 884[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];884 -> 986[label="",style="solid", color="black", weight=3]; 29.96/14.53 885[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];885 -> 987[label="",style="solid", color="black", weight=3]; 29.96/14.53 886[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];886 -> 988[label="",style="solid", color="black", weight=3]; 29.96/14.53 887[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];887 -> 989[label="",style="solid", color="black", weight=3]; 29.96/14.53 888[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];888 -> 990[label="",style="solid", color="black", weight=3]; 29.96/14.53 889[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3289[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];889 -> 3289[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3289 -> 991[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 890[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3290[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];890 -> 3290[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3290 -> 992[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3291[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];890 -> 3291[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3291 -> 993[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 891[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3292[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];891 -> 3292[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3292 -> 994[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3293[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];891 -> 3293[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3293 -> 995[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 892[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];892 -> 996[label="",style="solid", color="black", weight=3]; 29.96/14.53 893[label="() == ()",fontsize=16,color="black",shape="box"];893 -> 997[label="",style="solid", color="black", weight=3]; 29.96/14.53 894[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];894 -> 998[label="",style="solid", color="black", weight=3]; 29.96/14.53 895[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];895 -> 999[label="",style="solid", color="black", weight=3]; 29.96/14.53 896[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];896 -> 1000[label="",style="solid", color="black", weight=3]; 29.96/14.53 897[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];897 -> 1001[label="",style="solid", color="black", weight=3]; 29.96/14.53 898[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];898 -> 1002[label="",style="solid", color="black", weight=3]; 29.96/14.53 899[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3294[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];899 -> 3294[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3294 -> 1003[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 900[label="LT == LT",fontsize=16,color="black",shape="box"];900 -> 1004[label="",style="solid", color="black", weight=3]; 29.96/14.53 901[label="LT == EQ",fontsize=16,color="black",shape="box"];901 -> 1005[label="",style="solid", color="black", weight=3]; 29.96/14.53 902[label="LT == GT",fontsize=16,color="black",shape="box"];902 -> 1006[label="",style="solid", color="black", weight=3]; 29.96/14.53 903[label="EQ == LT",fontsize=16,color="black",shape="box"];903 -> 1007[label="",style="solid", color="black", weight=3]; 29.96/14.53 904[label="EQ == EQ",fontsize=16,color="black",shape="box"];904 -> 1008[label="",style="solid", color="black", weight=3]; 29.96/14.53 905[label="EQ == GT",fontsize=16,color="black",shape="box"];905 -> 1009[label="",style="solid", color="black", weight=3]; 29.96/14.53 906[label="GT == LT",fontsize=16,color="black",shape="box"];906 -> 1010[label="",style="solid", color="black", weight=3]; 29.96/14.53 907[label="GT == EQ",fontsize=16,color="black",shape="box"];907 -> 1011[label="",style="solid", color="black", weight=3]; 29.96/14.53 908[label="GT == GT",fontsize=16,color="black",shape="box"];908 -> 1012[label="",style="solid", color="black", weight=3]; 29.96/14.53 1244[label="vyw59 <= vyw60",fontsize=16,color="blue",shape="box"];3295[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3295[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3295 -> 1376[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3296[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3296[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3296 -> 1377[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3297[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3297[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3297 -> 1378[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3298[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3298[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3298 -> 1379[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3299[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3299[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3299 -> 1380[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3300[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3300[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3300 -> 1381[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3301[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3301[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3301 -> 1382[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3302[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3302[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3302 -> 1383[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3303[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3303[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3303 -> 1384[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3304[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3304[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3304 -> 1385[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3305[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3305[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3305 -> 1386[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3306[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3306[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3306 -> 1387[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3307[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3307[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3307 -> 1388[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3308[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3308[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3308 -> 1389[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1245[label="compare1 (Left vyw136) (Left vyw137) False",fontsize=16,color="black",shape="box"];1245 -> 1390[label="",style="solid", color="black", weight=3]; 29.96/14.53 1246[label="compare1 (Left vyw136) (Left vyw137) True",fontsize=16,color="black",shape="box"];1246 -> 1391[label="",style="solid", color="black", weight=3]; 29.96/14.53 1247[label="GT",fontsize=16,color="green",shape="box"];1313[label="vyw66 <= vyw67",fontsize=16,color="blue",shape="box"];3309[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3309[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3309 -> 1392[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3310[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3310[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3310 -> 1393[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3311[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3311[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3311 -> 1394[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3312[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3312[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3312 -> 1395[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3313[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3313[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3313 -> 1396[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3314[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3314[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3314 -> 1397[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3315[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3315[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3315 -> 1398[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3316[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3316[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3316 -> 1399[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3317[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3317[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3317 -> 1400[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3318[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3318[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3318 -> 1401[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3319[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3319[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3319 -> 1402[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3320[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3320[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3320 -> 1403[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3321[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3321[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3321 -> 1404[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3322[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3322[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3322 -> 1405[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1314[label="compare1 (Right vyw143) (Right vyw144) False",fontsize=16,color="black",shape="box"];1314 -> 1406[label="",style="solid", color="black", weight=3]; 29.96/14.53 1315[label="compare1 (Right vyw143) (Right vyw144) True",fontsize=16,color="black",shape="box"];1315 -> 1407[label="",style="solid", color="black", weight=3]; 29.96/14.53 1316[label="GT",fontsize=16,color="green",shape="box"];1411[label="vyw113 < vyw115",fontsize=16,color="blue",shape="box"];3323[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3323[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3323 -> 1423[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3324[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3324[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3324 -> 1424[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3325[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3325[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3325 -> 1425[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3326[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3326[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3326 -> 1426[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3327[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3327[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3327 -> 1427[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3328[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3328[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3328 -> 1428[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3329[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3329[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3329 -> 1429[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3330[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3330[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3330 -> 1430[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3331[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3331[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3331 -> 1431[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3332[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3332[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3332 -> 1432[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3333[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3333[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3333 -> 1433[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3334[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3334[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3334 -> 1434[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3335[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3335[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3335 -> 1435[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3336[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3336[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3336 -> 1436[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1412[label="vyw114",fontsize=16,color="green",shape="box"];1413[label="vyw113",fontsize=16,color="green",shape="box"];1414[label="vyw115",fontsize=16,color="green",shape="box"];1415 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1415[label="vyw113 == vyw115 && vyw114 <= vyw116",fontsize=16,color="magenta"];1415 -> 1437[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1415 -> 1438[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1416[label="vyw116",fontsize=16,color="green",shape="box"];1410[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (vyw184 || vyw185)",fontsize=16,color="burlywood",shape="triangle"];3337[label="vyw184/False",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3337[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3337 -> 1439[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3338[label="vyw184/True",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3338[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3338 -> 1440[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1319[label="GT",fontsize=16,color="green",shape="box"];1320[label="GT",fontsize=16,color="green",shape="box"];1321[label="GT",fontsize=16,color="green",shape="box"];1322[label="GT",fontsize=16,color="green",shape="box"];1330[label="vyw89 <= vyw90",fontsize=16,color="blue",shape="box"];3339[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3339[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3339 -> 1441[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3340[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3340[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3340 -> 1442[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3341[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3341[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3341 -> 1443[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3342[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3342[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3342 -> 1444[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3343[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3343[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3343 -> 1445[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3344[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3344[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3344 -> 1446[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3345[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3345[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3345 -> 1447[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3346[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3346[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3346 -> 1448[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3347[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3347[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3347 -> 1449[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3348[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3348[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3348 -> 1450[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3349[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3349[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3349 -> 1451[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3350[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3350[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3350 -> 1452[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3351[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3351[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3351 -> 1453[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3352[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3352[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3352 -> 1454[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1331[label="compare1 (Just vyw153) (Just vyw154) False",fontsize=16,color="black",shape="box"];1331 -> 1455[label="",style="solid", color="black", weight=3]; 29.96/14.53 1332[label="compare1 (Just vyw153) (Just vyw154) True",fontsize=16,color="black",shape="box"];1332 -> 1456[label="",style="solid", color="black", weight=3]; 29.96/14.53 1333[label="vyw310",fontsize=16,color="green",shape="box"];1334[label="vyw4000",fontsize=16,color="green",shape="box"];1335[label="primMulNat vyw4000 vyw310",fontsize=16,color="burlywood",shape="triangle"];3353[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3353[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3353 -> 1457[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3354[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3354[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3354 -> 1458[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1336 -> 1335[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1336[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1336 -> 1459[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1337 -> 1335[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1337[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1337 -> 1460[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1338 -> 1335[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1338[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1338 -> 1461[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1338 -> 1462[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1358 -> 21[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1358[label="vyw100 < vyw103",fontsize=16,color="magenta"];1358 -> 1463[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1358 -> 1464[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1359 -> 22[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1359[label="vyw100 < vyw103",fontsize=16,color="magenta"];1359 -> 1465[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1359 -> 1466[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1360 -> 23[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1360[label="vyw100 < vyw103",fontsize=16,color="magenta"];1360 -> 1467[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1360 -> 1468[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1361 -> 24[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1361[label="vyw100 < vyw103",fontsize=16,color="magenta"];1361 -> 1469[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1361 -> 1470[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1362 -> 25[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1362[label="vyw100 < vyw103",fontsize=16,color="magenta"];1362 -> 1471[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1362 -> 1472[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1363 -> 26[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1363[label="vyw100 < vyw103",fontsize=16,color="magenta"];1363 -> 1473[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1363 -> 1474[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1364 -> 27[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1364[label="vyw100 < vyw103",fontsize=16,color="magenta"];1364 -> 1475[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1364 -> 1476[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1365 -> 28[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1365[label="vyw100 < vyw103",fontsize=16,color="magenta"];1365 -> 1477[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1365 -> 1478[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1366 -> 29[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1366[label="vyw100 < vyw103",fontsize=16,color="magenta"];1366 -> 1479[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1366 -> 1480[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1367 -> 30[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1367[label="vyw100 < vyw103",fontsize=16,color="magenta"];1367 -> 1481[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1367 -> 1482[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1368 -> 31[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1368[label="vyw100 < vyw103",fontsize=16,color="magenta"];1368 -> 1483[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1368 -> 1484[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1369 -> 32[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1369[label="vyw100 < vyw103",fontsize=16,color="magenta"];1369 -> 1485[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1369 -> 1486[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1370 -> 33[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1370[label="vyw100 < vyw103",fontsize=16,color="magenta"];1370 -> 1487[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1370 -> 1488[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1371 -> 34[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1371[label="vyw100 < vyw103",fontsize=16,color="magenta"];1371 -> 1489[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1371 -> 1490[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1372 -> 1706[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1372[label="vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105",fontsize=16,color="magenta"];1372 -> 1707[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1372 -> 1708[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1373[label="vyw100 == vyw103",fontsize=16,color="blue",shape="box"];3355[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3355[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3355 -> 1493[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3356[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3356[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3356 -> 1494[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3357[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3357[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3357 -> 1495[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3358[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3358[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3358 -> 1496[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3359[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3359[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3359 -> 1497[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3360[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3360[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3360 -> 1498[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3361[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3361[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3361 -> 1499[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3362[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3362[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3362 -> 1500[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3363[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3363[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3363 -> 1501[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3364[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3364[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3364 -> 1502[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3365[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3365[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3365 -> 1503[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3366[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3366[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3366 -> 1504[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3367[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3367[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3367 -> 1505[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3368[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3368[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3368 -> 1506[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1374[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (False || vyw172)",fontsize=16,color="black",shape="box"];1374 -> 1507[label="",style="solid", color="black", weight=3]; 29.96/14.53 1375[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (True || vyw172)",fontsize=16,color="black",shape="box"];1375 -> 1508[label="",style="solid", color="black", weight=3]; 29.96/14.53 976[label="True",fontsize=16,color="green",shape="box"];977[label="False",fontsize=16,color="green",shape="box"];978[label="False",fontsize=16,color="green",shape="box"];979[label="True",fontsize=16,color="green",shape="box"];980[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];980 -> 1509[label="",style="solid", color="black", weight=3]; 29.96/14.53 981 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.53 981[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];981 -> 1089[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 981 -> 1090[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 982[label="False",fontsize=16,color="green",shape="box"];983[label="False",fontsize=16,color="green",shape="box"];984[label="True",fontsize=16,color="green",shape="box"];985 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.53 985[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];985 -> 1091[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 985 -> 1092[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 986 -> 660[label="",style="dashed", color="red", weight=0]; 29.96/14.53 986[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];986 -> 1510[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 986 -> 1511[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 987[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3369[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3369[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3369 -> 1512[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3370[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3370[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3370 -> 1513[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3371[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3371[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3371 -> 1514[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3372[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3372[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3372 -> 1515[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3373[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3373[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3373 -> 1516[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3374[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3374[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3374 -> 1517[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3375[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3375[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3375 -> 1518[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3376[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3376[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3376 -> 1519[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3377[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3377[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3377 -> 1520[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3378[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3378[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3378 -> 1521[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3379[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3379[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3379 -> 1522[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3380[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3380[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3380 -> 1523[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3381[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3381[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3381 -> 1524[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3382[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3382[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3382 -> 1525[label="",style="solid", color="blue", weight=3]; 29.96/14.53 988[label="False",fontsize=16,color="green",shape="box"];989[label="False",fontsize=16,color="green",shape="box"];990[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3383[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3383[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3383 -> 1526[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3384[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3384[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3384 -> 1527[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3385[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3385[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3385 -> 1528[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3386[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3386[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3386 -> 1529[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3387[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3387[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3387 -> 1530[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3388[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3388 -> 1531[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3389[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3389[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3389 -> 1532[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3390[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3390[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3390 -> 1533[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3391[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3391[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3391 -> 1534[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3392[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3392[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3392 -> 1535[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3393[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3393[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3393 -> 1536[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3394[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3394[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3394 -> 1537[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3395[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3395[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3395 -> 1538[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3396[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3396 -> 1539[label="",style="solid", color="blue", weight=3]; 29.96/14.53 991[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];991 -> 1540[label="",style="solid", color="black", weight=3]; 29.96/14.53 992[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3397[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];992 -> 3397[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3397 -> 1541[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3398[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];992 -> 3398[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3398 -> 1542[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 993[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3399[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];993 -> 3399[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3399 -> 1543[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3400[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];993 -> 3400[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3400 -> 1544[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 994[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3401[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];994 -> 3401[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3401 -> 1545[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3402[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];994 -> 3402[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3402 -> 1546[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 995[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3403[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];995 -> 3403[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3403 -> 1547[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3404[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];995 -> 3404[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3404 -> 1548[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 996 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.53 996[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];996 -> 1093[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 996 -> 1094[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 997[label="True",fontsize=16,color="green",shape="box"];998 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.53 998[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];998 -> 1095[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 998 -> 1096[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 999[label="True",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="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3405[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3405[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3405 -> 1549[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3406[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3406[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3406 -> 1550[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3407[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3407[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3407 -> 1551[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3408[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3408[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3408 -> 1552[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3409[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3409[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3409 -> 1553[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3410[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3410[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3410 -> 1554[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3411[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3411[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3411 -> 1555[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3412[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3412[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3412 -> 1556[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3413[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3413[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3413 -> 1557[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3414[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3414[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3414 -> 1558[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3415[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3415[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3415 -> 1559[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3416[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3416[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3416 -> 1560[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3417[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3417[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3417 -> 1561[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3418[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3418[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3418 -> 1562[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1003[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];1003 -> 1563[label="",style="solid", color="black", weight=3]; 29.96/14.53 1004[label="True",fontsize=16,color="green",shape="box"];1005[label="False",fontsize=16,color="green",shape="box"];1006[label="False",fontsize=16,color="green",shape="box"];1007[label="False",fontsize=16,color="green",shape="box"];1008[label="True",fontsize=16,color="green",shape="box"];1009[label="False",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="True",fontsize=16,color="green",shape="box"];1376[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3419[label="vyw59/(vyw590,vyw591,vyw592)",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3419[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3419 -> 1564[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1377[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1377 -> 1565[label="",style="solid", color="black", weight=3]; 29.96/14.53 1378[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3420[label="vyw59/Left vyw590",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3420[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3420 -> 1566[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3421[label="vyw59/Right vyw590",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3421[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3421 -> 1567[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1379[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1379 -> 1568[label="",style="solid", color="black", weight=3]; 29.96/14.53 1380[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3422[label="vyw59/False",fontsize=10,color="white",style="solid",shape="box"];1380 -> 3422[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3422 -> 1569[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3423[label="vyw59/True",fontsize=10,color="white",style="solid",shape="box"];1380 -> 3423[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3423 -> 1570[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1381[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3424[label="vyw59/(vyw590,vyw591)",fontsize=10,color="white",style="solid",shape="box"];1381 -> 3424[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3424 -> 1571[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1382[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3425[label="vyw59/LT",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3425[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3425 -> 1572[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3426[label="vyw59/EQ",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3426[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3426 -> 1573[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3427[label="vyw59/GT",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3427[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3427 -> 1574[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1383[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3428[label="vyw59/Nothing",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3428[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3428 -> 1575[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3429[label="vyw59/Just vyw590",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3429[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3429 -> 1576[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1384[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1384 -> 1577[label="",style="solid", color="black", weight=3]; 29.96/14.53 1385[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1385 -> 1578[label="",style="solid", color="black", weight=3]; 29.96/14.53 1386[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1386 -> 1579[label="",style="solid", color="black", weight=3]; 29.96/14.53 1387[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1387 -> 1580[label="",style="solid", color="black", weight=3]; 29.96/14.53 1388[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1388 -> 1581[label="",style="solid", color="black", weight=3]; 29.96/14.53 1389[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1389 -> 1582[label="",style="solid", color="black", weight=3]; 29.96/14.53 1390[label="compare0 (Left vyw136) (Left vyw137) otherwise",fontsize=16,color="black",shape="box"];1390 -> 1583[label="",style="solid", color="black", weight=3]; 29.96/14.53 1391[label="LT",fontsize=16,color="green",shape="box"];1392 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1392[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1392 -> 1584[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1392 -> 1585[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1393 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1393[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1393 -> 1586[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1393 -> 1587[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1394 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1394[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1394 -> 1588[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1394 -> 1589[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1395 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1395[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1395 -> 1590[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1395 -> 1591[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1396 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1396[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1396 -> 1592[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1396 -> 1593[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1397 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1397[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1397 -> 1594[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1397 -> 1595[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1398 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1398[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1398 -> 1596[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1398 -> 1597[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1399 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1399[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1399 -> 1598[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1399 -> 1599[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1400 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1400[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1400 -> 1600[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1400 -> 1601[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1401 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1401[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1401 -> 1602[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1401 -> 1603[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1402 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1402[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1402 -> 1604[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1402 -> 1605[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1403 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1403[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1403 -> 1606[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1403 -> 1607[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1404 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1404[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1404 -> 1608[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1404 -> 1609[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1405 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1405[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1405 -> 1610[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1405 -> 1611[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1406[label="compare0 (Right vyw143) (Right vyw144) otherwise",fontsize=16,color="black",shape="box"];1406 -> 1612[label="",style="solid", color="black", weight=3]; 29.96/14.53 1407[label="LT",fontsize=16,color="green",shape="box"];1423 -> 21[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1423[label="vyw113 < vyw115",fontsize=16,color="magenta"];1423 -> 1613[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1423 -> 1614[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1424 -> 22[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1424[label="vyw113 < vyw115",fontsize=16,color="magenta"];1424 -> 1615[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1424 -> 1616[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1425 -> 23[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1425[label="vyw113 < vyw115",fontsize=16,color="magenta"];1425 -> 1617[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1425 -> 1618[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1426 -> 24[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1426[label="vyw113 < vyw115",fontsize=16,color="magenta"];1426 -> 1619[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1426 -> 1620[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1427 -> 25[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1427[label="vyw113 < vyw115",fontsize=16,color="magenta"];1427 -> 1621[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1427 -> 1622[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1428 -> 26[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1428[label="vyw113 < vyw115",fontsize=16,color="magenta"];1428 -> 1623[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1428 -> 1624[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1429 -> 27[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1429[label="vyw113 < vyw115",fontsize=16,color="magenta"];1429 -> 1625[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1429 -> 1626[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1430 -> 28[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1430[label="vyw113 < vyw115",fontsize=16,color="magenta"];1430 -> 1627[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1430 -> 1628[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1431 -> 29[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1431[label="vyw113 < vyw115",fontsize=16,color="magenta"];1431 -> 1629[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1431 -> 1630[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1432 -> 30[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1432[label="vyw113 < vyw115",fontsize=16,color="magenta"];1432 -> 1631[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1432 -> 1632[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1433 -> 31[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1433[label="vyw113 < vyw115",fontsize=16,color="magenta"];1433 -> 1633[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1433 -> 1634[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1434 -> 32[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1434[label="vyw113 < vyw115",fontsize=16,color="magenta"];1434 -> 1635[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1434 -> 1636[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1435 -> 33[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1435[label="vyw113 < vyw115",fontsize=16,color="magenta"];1435 -> 1637[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1435 -> 1638[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1436 -> 34[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1436[label="vyw113 < vyw115",fontsize=16,color="magenta"];1436 -> 1639[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1436 -> 1640[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1437[label="vyw114 <= vyw116",fontsize=16,color="blue",shape="box"];3430[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3430[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3430 -> 1641[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3431[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3431[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3431 -> 1642[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3432[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3432[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3432 -> 1643[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3433[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3433[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3433 -> 1644[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3434[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3434[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3434 -> 1645[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3435[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3435[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3435 -> 1646[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3436[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3436[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3436 -> 1647[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3437[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3437[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3437 -> 1648[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3438[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3438[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3438 -> 1649[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3439[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3439[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3439 -> 1650[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3440[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3440[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3440 -> 1651[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3441[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3441[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3441 -> 1652[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3442[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3442[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3442 -> 1653[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3443[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3443[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3443 -> 1654[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1438[label="vyw113 == vyw115",fontsize=16,color="blue",shape="box"];3444[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3444[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3444 -> 1655[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3445[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3445[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3445 -> 1656[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3446[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3446[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3446 -> 1657[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3447[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3447[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3447 -> 1658[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3448[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3448[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3448 -> 1659[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3449[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3449[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3449 -> 1660[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3450[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3450[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3450 -> 1661[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3451[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3451[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3451 -> 1662[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3452[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3452[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3452 -> 1663[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3453[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3453[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3453 -> 1664[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3454[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3454[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3454 -> 1665[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3455[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3455[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3455 -> 1666[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3456[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3456[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3456 -> 1667[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3457[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3457[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3457 -> 1668[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1439[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (False || vyw185)",fontsize=16,color="black",shape="box"];1439 -> 1669[label="",style="solid", color="black", weight=3]; 29.96/14.53 1440[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (True || vyw185)",fontsize=16,color="black",shape="box"];1440 -> 1670[label="",style="solid", color="black", weight=3]; 29.96/14.53 1441 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1441[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1441 -> 1671[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1441 -> 1672[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1442 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1442[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1442 -> 1673[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1442 -> 1674[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1443 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1443[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1443 -> 1675[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1443 -> 1676[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1444 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1444[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1444 -> 1677[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1444 -> 1678[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1445 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1445[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1445 -> 1679[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1445 -> 1680[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1446 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1446[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1446 -> 1681[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1446 -> 1682[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1447 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1447[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1447 -> 1683[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1447 -> 1684[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1448 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1448[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1448 -> 1685[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1448 -> 1686[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1449 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1449[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1449 -> 1687[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1449 -> 1688[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1450 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1450[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1450 -> 1689[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1450 -> 1690[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1451 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1451[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1451 -> 1691[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1451 -> 1692[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1452 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1452[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1452 -> 1693[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1452 -> 1694[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1453 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1453[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1453 -> 1695[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1453 -> 1696[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1454 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1454[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1454 -> 1697[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1454 -> 1698[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1455[label="compare0 (Just vyw153) (Just vyw154) otherwise",fontsize=16,color="black",shape="box"];1455 -> 1699[label="",style="solid", color="black", weight=3]; 29.96/14.53 1456[label="LT",fontsize=16,color="green",shape="box"];1457[label="primMulNat (Succ vyw40000) vyw310",fontsize=16,color="burlywood",shape="box"];3458[label="vyw310/Succ vyw3100",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3458[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3458 -> 1700[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3459[label="vyw310/Zero",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3459[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3459 -> 1701[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1458[label="primMulNat Zero vyw310",fontsize=16,color="burlywood",shape="box"];3460[label="vyw310/Succ vyw3100",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3460[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3460 -> 1702[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3461[label="vyw310/Zero",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3461[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3461 -> 1703[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1459[label="vyw310",fontsize=16,color="green",shape="box"];1460[label="vyw4000",fontsize=16,color="green",shape="box"];1461[label="vyw4000",fontsize=16,color="green",shape="box"];1462[label="vyw310",fontsize=16,color="green",shape="box"];1463[label="vyw103",fontsize=16,color="green",shape="box"];1464[label="vyw100",fontsize=16,color="green",shape="box"];1465[label="vyw103",fontsize=16,color="green",shape="box"];1466[label="vyw100",fontsize=16,color="green",shape="box"];1467[label="vyw103",fontsize=16,color="green",shape="box"];1468[label="vyw100",fontsize=16,color="green",shape="box"];1469[label="vyw103",fontsize=16,color="green",shape="box"];1470[label="vyw100",fontsize=16,color="green",shape="box"];1471[label="vyw103",fontsize=16,color="green",shape="box"];1472[label="vyw100",fontsize=16,color="green",shape="box"];1473[label="vyw103",fontsize=16,color="green",shape="box"];1474[label="vyw100",fontsize=16,color="green",shape="box"];1475[label="vyw103",fontsize=16,color="green",shape="box"];1476[label="vyw100",fontsize=16,color="green",shape="box"];1477[label="vyw103",fontsize=16,color="green",shape="box"];1478[label="vyw100",fontsize=16,color="green",shape="box"];1479[label="vyw103",fontsize=16,color="green",shape="box"];1480[label="vyw100",fontsize=16,color="green",shape="box"];1481[label="vyw103",fontsize=16,color="green",shape="box"];1482[label="vyw100",fontsize=16,color="green",shape="box"];1483[label="vyw103",fontsize=16,color="green",shape="box"];1484[label="vyw100",fontsize=16,color="green",shape="box"];1485[label="vyw103",fontsize=16,color="green",shape="box"];1486[label="vyw100",fontsize=16,color="green",shape="box"];1487[label="vyw103",fontsize=16,color="green",shape="box"];1488[label="vyw100",fontsize=16,color="green",shape="box"];1489[label="vyw103",fontsize=16,color="green",shape="box"];1490[label="vyw100",fontsize=16,color="green",shape="box"];1707[label="vyw101 < vyw104",fontsize=16,color="blue",shape="box"];3462[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3462[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3462 -> 1711[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3463[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3463[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3463 -> 1712[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3464[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3464[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3464 -> 1713[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3465[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3465[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3465 -> 1714[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3466[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3466[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3466 -> 1715[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3467[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3467[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3467 -> 1716[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3468[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3468[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3468 -> 1717[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3469[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3469[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3469 -> 1718[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3470[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3470[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3470 -> 1719[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3471[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3471[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3471 -> 1720[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3472[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3472[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3472 -> 1721[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3473[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3473[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3473 -> 1722[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3474[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3474[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3474 -> 1723[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3475[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3475[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3475 -> 1724[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1708 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1708[label="vyw101 == vyw104 && vyw102 <= vyw105",fontsize=16,color="magenta"];1708 -> 1725[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1708 -> 1726[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1706[label="vyw190 || vyw191",fontsize=16,color="burlywood",shape="triangle"];3476[label="vyw190/False",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3476[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3476 -> 1727[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3477[label="vyw190/True",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3477[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3477 -> 1728[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1493 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1493[label="vyw100 == vyw103",fontsize=16,color="magenta"];1493 -> 1729[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1493 -> 1730[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1494 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1494[label="vyw100 == vyw103",fontsize=16,color="magenta"];1494 -> 1731[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1494 -> 1732[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1495 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1495[label="vyw100 == vyw103",fontsize=16,color="magenta"];1495 -> 1733[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1495 -> 1734[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1496 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1496[label="vyw100 == vyw103",fontsize=16,color="magenta"];1496 -> 1735[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1496 -> 1736[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1497 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1497[label="vyw100 == vyw103",fontsize=16,color="magenta"];1497 -> 1737[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1497 -> 1738[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1498 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1498[label="vyw100 == vyw103",fontsize=16,color="magenta"];1498 -> 1739[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1498 -> 1740[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1499 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1499[label="vyw100 == vyw103",fontsize=16,color="magenta"];1499 -> 1741[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1499 -> 1742[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1500 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1500[label="vyw100 == vyw103",fontsize=16,color="magenta"];1500 -> 1743[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1500 -> 1744[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1501 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1501[label="vyw100 == vyw103",fontsize=16,color="magenta"];1501 -> 1745[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1501 -> 1746[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1502 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1502[label="vyw100 == vyw103",fontsize=16,color="magenta"];1502 -> 1747[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1502 -> 1748[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1503 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1503[label="vyw100 == vyw103",fontsize=16,color="magenta"];1503 -> 1749[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1503 -> 1750[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1504 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1504[label="vyw100 == vyw103",fontsize=16,color="magenta"];1504 -> 1751[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1504 -> 1752[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1505 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1505[label="vyw100 == vyw103",fontsize=16,color="magenta"];1505 -> 1753[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1505 -> 1754[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1506 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1506[label="vyw100 == vyw103",fontsize=16,color="magenta"];1506 -> 1755[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1506 -> 1756[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1507[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) vyw172",fontsize=16,color="burlywood",shape="triangle"];3478[label="vyw172/False",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3478[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3478 -> 1757[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3479[label="vyw172/True",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3479[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3479 -> 1758[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1508 -> 1507[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1508[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="magenta"];1508 -> 1759[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1509 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1509[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1509 -> 1760[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1509 -> 1761[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1089 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1089[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1089 -> 1762[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1089 -> 1763[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1090[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3480[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3480[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3480 -> 1764[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3481[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3481[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3481 -> 1765[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3482[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3482[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3482 -> 1766[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3483[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3483[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3483 -> 1767[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3484[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3484[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3484 -> 1768[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3485[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3485[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3485 -> 1769[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3486[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3486[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3486 -> 1770[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3487[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3487[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3487 -> 1771[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3488[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3488[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3488 -> 1772[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3489[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3489[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3489 -> 1773[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3490[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3490[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3490 -> 1774[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3491[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3491[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3491 -> 1775[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3492[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3492[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3492 -> 1776[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3493[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3493[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3493 -> 1777[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1091 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1091[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];1091 -> 1778[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1091 -> 1779[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1092[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3494[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3494[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3494 -> 1780[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3495[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3495[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3495 -> 1781[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3496[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3496[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3496 -> 1782[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3497[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3497[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3497 -> 1783[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3498[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3498[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3498 -> 1784[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3499[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3499[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3499 -> 1785[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3500[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3500[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3500 -> 1786[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3501[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3501[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3501 -> 1787[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3502[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3502[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3502 -> 1788[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3503[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3503[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3503 -> 1789[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3504[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3504[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3504 -> 1790[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3505[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3505[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3505 -> 1791[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3506[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3506[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3506 -> 1792[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3507[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3507[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3507 -> 1793[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1510[label="vyw4000",fontsize=16,color="green",shape="box"];1511[label="vyw300",fontsize=16,color="green",shape="box"];1512 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1512[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1512 -> 1794[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1512 -> 1795[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1513 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1513[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1513 -> 1796[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1513 -> 1797[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1514 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1514[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1514 -> 1798[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1514 -> 1799[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1515 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1515[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1515 -> 1800[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1515 -> 1801[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1516 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1516[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1516 -> 1802[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1516 -> 1803[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1517 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1517[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1517 -> 1804[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1517 -> 1805[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1518 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1518[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1518 -> 1806[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1518 -> 1807[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1519 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1519[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1519 -> 1808[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1519 -> 1809[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1520 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1520[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1520 -> 1810[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1520 -> 1811[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1521 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1521[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1521 -> 1812[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1521 -> 1813[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1522 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1522[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1522 -> 1814[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1522 -> 1815[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1523 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1523[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1523 -> 1816[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1523 -> 1817[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1524 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1524[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1524 -> 1818[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1524 -> 1819[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1525 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1525[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1525 -> 1820[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1525 -> 1821[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1526 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1526[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1526 -> 1822[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1526 -> 1823[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1527 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1527[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1527 -> 1824[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1527 -> 1825[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1528 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1528[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1528 -> 1826[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1528 -> 1827[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1529 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1529[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1529 -> 1828[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1529 -> 1829[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1530 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1530[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1530 -> 1830[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1530 -> 1831[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1531 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1531[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1531 -> 1832[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1531 -> 1833[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1532 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1532[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1532 -> 1834[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1532 -> 1835[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1533 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1533[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1533 -> 1836[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1533 -> 1837[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1534 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1534[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1534 -> 1838[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1534 -> 1839[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1535 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1535[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1535 -> 1840[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1535 -> 1841[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1536 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1536[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1536 -> 1842[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1536 -> 1843[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1537 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1537[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1537 -> 1844[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1537 -> 1845[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1538 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1538[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1538 -> 1846[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1538 -> 1847[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1539 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1539[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1539 -> 1848[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1539 -> 1849[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1540[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];3508[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3508[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3508 -> 1850[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3509[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3509[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3509 -> 1851[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1541[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3510[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1541 -> 3510[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3510 -> 1852[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3511[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1541 -> 3511[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3511 -> 1853[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1542[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];1542 -> 1854[label="",style="solid", color="black", weight=3]; 29.96/14.53 1543[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3512[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1543 -> 3512[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3512 -> 1855[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3513[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1543 -> 3513[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3513 -> 1856[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1544[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3514[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1544 -> 3514[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3514 -> 1857[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3515[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1544 -> 3515[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3515 -> 1858[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1545[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];1545 -> 1859[label="",style="solid", color="black", weight=3]; 29.96/14.53 1546[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3516[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1546 -> 3516[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3516 -> 1860[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3517[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1546 -> 3517[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3517 -> 1861[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1547[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3518[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1547 -> 3518[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3518 -> 1862[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3519[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1547 -> 3519[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3519 -> 1863[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1548[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3520[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1548 -> 3520[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3520 -> 1864[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3521[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1548 -> 3521[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3521 -> 1865[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1093[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3522[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3522[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3522 -> 1866[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3523[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3523[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3523 -> 1867[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3524[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3524[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3524 -> 1868[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3525[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3525[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3525 -> 1869[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3526[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3526[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3526 -> 1870[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3527[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3527[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3527 -> 1871[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3528[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3528[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3528 -> 1872[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3529[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3529[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3529 -> 1873[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3530[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3530[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3530 -> 1874[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3531[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3531[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3531 -> 1875[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3532[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3532[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3532 -> 1876[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3533[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3533[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3533 -> 1877[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3534[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3534[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3534 -> 1878[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3535[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3535[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3535 -> 1879[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1094[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3536[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3536[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3536 -> 1880[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3537[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3537[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3537 -> 1881[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3538[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3538[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3538 -> 1882[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3539[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3539[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3539 -> 1883[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3540[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3540[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3540 -> 1884[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3541[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3541[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3541 -> 1885[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3542[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3542[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3542 -> 1886[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3543[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3543[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3543 -> 1887[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3544[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3544[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3544 -> 1888[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3545[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3545[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3545 -> 1889[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3546[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3546[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3546 -> 1890[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3547[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3547[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3547 -> 1891[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3548[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3548[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3548 -> 1892[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3549[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3549[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3549 -> 1893[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1095[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3550[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3550[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3550 -> 1894[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3551[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3551[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3551 -> 1895[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1096[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3552[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1096 -> 3552[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3552 -> 1896[label="",style="solid", color="blue", weight=3]; 29.96/14.53 3553[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1096 -> 3553[label="",style="solid", color="blue", weight=9]; 29.96/14.53 3553 -> 1897[label="",style="solid", color="blue", weight=3]; 29.96/14.53 1549 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1549[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1549 -> 1898[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1549 -> 1899[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1550 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1550[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1550 -> 1900[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1550 -> 1901[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1551 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1551[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1551 -> 1902[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1551 -> 1903[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1552 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1552[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1552 -> 1904[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1552 -> 1905[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1553 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1553[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1553 -> 1906[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1553 -> 1907[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1554 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1554[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1554 -> 1908[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1554 -> 1909[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1555 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1555[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1555 -> 1910[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1555 -> 1911[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1556 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1556[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1556 -> 1912[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1556 -> 1913[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1557 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1557[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1557 -> 1914[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1557 -> 1915[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1558 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1558[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1558 -> 1916[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1558 -> 1917[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1559 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1559[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1559 -> 1918[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1559 -> 1919[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1560 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1560[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1560 -> 1920[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1560 -> 1921[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1561 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1561[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1561 -> 1922[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1561 -> 1923[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1562 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1562[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1562 -> 1924[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1562 -> 1925[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1563 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1563[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1563 -> 1926[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1563 -> 1927[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1564[label="(vyw590,vyw591,vyw592) <= vyw60",fontsize=16,color="burlywood",shape="box"];3554[label="vyw60/(vyw600,vyw601,vyw602)",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3554[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3554 -> 1928[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1565 -> 1929[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1565[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1565 -> 1930[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1566[label="Left vyw590 <= vyw60",fontsize=16,color="burlywood",shape="box"];3555[label="vyw60/Left vyw600",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3555[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3555 -> 1938[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3556[label="vyw60/Right vyw600",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3556[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3556 -> 1939[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1567[label="Right vyw590 <= vyw60",fontsize=16,color="burlywood",shape="box"];3557[label="vyw60/Left vyw600",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3557[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3557 -> 1940[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3558[label="vyw60/Right vyw600",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3558[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3558 -> 1941[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1568 -> 1929[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1568[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1568 -> 1931[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1569[label="False <= vyw60",fontsize=16,color="burlywood",shape="box"];3559[label="vyw60/False",fontsize=10,color="white",style="solid",shape="box"];1569 -> 3559[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3559 -> 1942[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3560[label="vyw60/True",fontsize=10,color="white",style="solid",shape="box"];1569 -> 3560[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3560 -> 1943[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1570[label="True <= vyw60",fontsize=16,color="burlywood",shape="box"];3561[label="vyw60/False",fontsize=10,color="white",style="solid",shape="box"];1570 -> 3561[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3561 -> 1944[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3562[label="vyw60/True",fontsize=10,color="white",style="solid",shape="box"];1570 -> 3562[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3562 -> 1945[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1571[label="(vyw590,vyw591) <= vyw60",fontsize=16,color="burlywood",shape="box"];3563[label="vyw60/(vyw600,vyw601)",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3563[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3563 -> 1946[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1572[label="LT <= vyw60",fontsize=16,color="burlywood",shape="box"];3564[label="vyw60/LT",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3564[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3564 -> 1947[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3565[label="vyw60/EQ",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3565[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3565 -> 1948[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3566[label="vyw60/GT",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3566[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3566 -> 1949[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1573[label="EQ <= vyw60",fontsize=16,color="burlywood",shape="box"];3567[label="vyw60/LT",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3567[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3567 -> 1950[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3568[label="vyw60/EQ",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3568[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3568 -> 1951[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3569[label="vyw60/GT",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3569[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3569 -> 1952[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1574[label="GT <= vyw60",fontsize=16,color="burlywood",shape="box"];3570[label="vyw60/LT",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3570[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3570 -> 1953[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3571[label="vyw60/EQ",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3571[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3571 -> 1954[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3572[label="vyw60/GT",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3572[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3572 -> 1955[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1575[label="Nothing <= vyw60",fontsize=16,color="burlywood",shape="box"];3573[label="vyw60/Nothing",fontsize=10,color="white",style="solid",shape="box"];1575 -> 3573[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3573 -> 1956[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3574[label="vyw60/Just vyw600",fontsize=10,color="white",style="solid",shape="box"];1575 -> 3574[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3574 -> 1957[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1576[label="Just vyw590 <= vyw60",fontsize=16,color="burlywood",shape="box"];3575[label="vyw60/Nothing",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3575[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3575 -> 1958[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3576[label="vyw60/Just vyw600",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3576[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3576 -> 1959[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1577 -> 1929[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1577[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1577 -> 1932[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1578 -> 1929[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1578[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1578 -> 1933[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1579 -> 1929[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1579[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1579 -> 1934[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1580 -> 1929[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1580[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1580 -> 1935[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1581 -> 1929[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1581[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1581 -> 1936[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1582 -> 1929[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1582[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1582 -> 1937[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1583[label="compare0 (Left vyw136) (Left vyw137) True",fontsize=16,color="black",shape="box"];1583 -> 1960[label="",style="solid", color="black", weight=3]; 29.96/14.53 1584[label="vyw67",fontsize=16,color="green",shape="box"];1585[label="vyw66",fontsize=16,color="green",shape="box"];1586[label="vyw67",fontsize=16,color="green",shape="box"];1587[label="vyw66",fontsize=16,color="green",shape="box"];1588[label="vyw67",fontsize=16,color="green",shape="box"];1589[label="vyw66",fontsize=16,color="green",shape="box"];1590[label="vyw67",fontsize=16,color="green",shape="box"];1591[label="vyw66",fontsize=16,color="green",shape="box"];1592[label="vyw67",fontsize=16,color="green",shape="box"];1593[label="vyw66",fontsize=16,color="green",shape="box"];1594[label="vyw67",fontsize=16,color="green",shape="box"];1595[label="vyw66",fontsize=16,color="green",shape="box"];1596[label="vyw67",fontsize=16,color="green",shape="box"];1597[label="vyw66",fontsize=16,color="green",shape="box"];1598[label="vyw67",fontsize=16,color="green",shape="box"];1599[label="vyw66",fontsize=16,color="green",shape="box"];1600[label="vyw67",fontsize=16,color="green",shape="box"];1601[label="vyw66",fontsize=16,color="green",shape="box"];1602[label="vyw67",fontsize=16,color="green",shape="box"];1603[label="vyw66",fontsize=16,color="green",shape="box"];1604[label="vyw67",fontsize=16,color="green",shape="box"];1605[label="vyw66",fontsize=16,color="green",shape="box"];1606[label="vyw67",fontsize=16,color="green",shape="box"];1607[label="vyw66",fontsize=16,color="green",shape="box"];1608[label="vyw67",fontsize=16,color="green",shape="box"];1609[label="vyw66",fontsize=16,color="green",shape="box"];1610[label="vyw67",fontsize=16,color="green",shape="box"];1611[label="vyw66",fontsize=16,color="green",shape="box"];1612[label="compare0 (Right vyw143) (Right vyw144) True",fontsize=16,color="black",shape="box"];1612 -> 1961[label="",style="solid", color="black", weight=3]; 29.96/14.53 1613[label="vyw115",fontsize=16,color="green",shape="box"];1614[label="vyw113",fontsize=16,color="green",shape="box"];1615[label="vyw115",fontsize=16,color="green",shape="box"];1616[label="vyw113",fontsize=16,color="green",shape="box"];1617[label="vyw115",fontsize=16,color="green",shape="box"];1618[label="vyw113",fontsize=16,color="green",shape="box"];1619[label="vyw115",fontsize=16,color="green",shape="box"];1620[label="vyw113",fontsize=16,color="green",shape="box"];1621[label="vyw115",fontsize=16,color="green",shape="box"];1622[label="vyw113",fontsize=16,color="green",shape="box"];1623[label="vyw115",fontsize=16,color="green",shape="box"];1624[label="vyw113",fontsize=16,color="green",shape="box"];1625[label="vyw115",fontsize=16,color="green",shape="box"];1626[label="vyw113",fontsize=16,color="green",shape="box"];1627[label="vyw115",fontsize=16,color="green",shape="box"];1628[label="vyw113",fontsize=16,color="green",shape="box"];1629[label="vyw115",fontsize=16,color="green",shape="box"];1630[label="vyw113",fontsize=16,color="green",shape="box"];1631[label="vyw115",fontsize=16,color="green",shape="box"];1632[label="vyw113",fontsize=16,color="green",shape="box"];1633[label="vyw115",fontsize=16,color="green",shape="box"];1634[label="vyw113",fontsize=16,color="green",shape="box"];1635[label="vyw115",fontsize=16,color="green",shape="box"];1636[label="vyw113",fontsize=16,color="green",shape="box"];1637[label="vyw115",fontsize=16,color="green",shape="box"];1638[label="vyw113",fontsize=16,color="green",shape="box"];1639[label="vyw115",fontsize=16,color="green",shape="box"];1640[label="vyw113",fontsize=16,color="green",shape="box"];1641 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1641[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1641 -> 1962[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1641 -> 1963[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1642 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1642[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1642 -> 1964[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1642 -> 1965[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1643 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1643[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1643 -> 1966[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1643 -> 1967[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1644 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1644[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1644 -> 1968[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1644 -> 1969[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1645 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1645[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1645 -> 1970[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1645 -> 1971[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1646 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1646[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1646 -> 1972[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1646 -> 1973[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1647 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1647[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1647 -> 1974[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1647 -> 1975[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1648 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1648[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1648 -> 1976[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1648 -> 1977[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1649 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1649[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1649 -> 1978[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1649 -> 1979[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1650 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1650[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1650 -> 1980[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1650 -> 1981[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1651 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1651[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1651 -> 1982[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1651 -> 1983[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1652 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1652[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1652 -> 1984[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1652 -> 1985[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1653 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1653[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1653 -> 1986[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1653 -> 1987[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1654 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1654[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1654 -> 1988[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1654 -> 1989[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1655 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1655[label="vyw113 == vyw115",fontsize=16,color="magenta"];1655 -> 1990[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1655 -> 1991[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1656 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1656[label="vyw113 == vyw115",fontsize=16,color="magenta"];1656 -> 1992[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1656 -> 1993[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1657 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1657[label="vyw113 == vyw115",fontsize=16,color="magenta"];1657 -> 1994[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1657 -> 1995[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1658 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1658[label="vyw113 == vyw115",fontsize=16,color="magenta"];1658 -> 1996[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1658 -> 1997[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1659 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1659[label="vyw113 == vyw115",fontsize=16,color="magenta"];1659 -> 1998[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1659 -> 1999[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1660 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1660[label="vyw113 == vyw115",fontsize=16,color="magenta"];1660 -> 2000[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1660 -> 2001[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1661 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1661[label="vyw113 == vyw115",fontsize=16,color="magenta"];1661 -> 2002[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1661 -> 2003[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1662 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1662[label="vyw113 == vyw115",fontsize=16,color="magenta"];1662 -> 2004[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1662 -> 2005[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1663 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1663[label="vyw113 == vyw115",fontsize=16,color="magenta"];1663 -> 2006[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1663 -> 2007[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1664 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1664[label="vyw113 == vyw115",fontsize=16,color="magenta"];1664 -> 2008[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1664 -> 2009[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1665 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1665[label="vyw113 == vyw115",fontsize=16,color="magenta"];1665 -> 2010[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1665 -> 2011[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1666 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1666[label="vyw113 == vyw115",fontsize=16,color="magenta"];1666 -> 2012[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1666 -> 2013[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1667 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1667[label="vyw113 == vyw115",fontsize=16,color="magenta"];1667 -> 2014[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1667 -> 2015[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1668 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1668[label="vyw113 == vyw115",fontsize=16,color="magenta"];1668 -> 2016[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1668 -> 2017[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1669[label="compare1 (vyw180,vyw181) (vyw182,vyw183) vyw185",fontsize=16,color="burlywood",shape="triangle"];3577[label="vyw185/False",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3577[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3577 -> 2018[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 3578[label="vyw185/True",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3578[label="",style="solid", color="burlywood", weight=9]; 29.96/14.53 3578 -> 2019[label="",style="solid", color="burlywood", weight=3]; 29.96/14.53 1670 -> 1669[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1670[label="compare1 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="magenta"];1670 -> 2020[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1671[label="vyw90",fontsize=16,color="green",shape="box"];1672[label="vyw89",fontsize=16,color="green",shape="box"];1673[label="vyw90",fontsize=16,color="green",shape="box"];1674[label="vyw89",fontsize=16,color="green",shape="box"];1675[label="vyw90",fontsize=16,color="green",shape="box"];1676[label="vyw89",fontsize=16,color="green",shape="box"];1677[label="vyw90",fontsize=16,color="green",shape="box"];1678[label="vyw89",fontsize=16,color="green",shape="box"];1679[label="vyw90",fontsize=16,color="green",shape="box"];1680[label="vyw89",fontsize=16,color="green",shape="box"];1681[label="vyw90",fontsize=16,color="green",shape="box"];1682[label="vyw89",fontsize=16,color="green",shape="box"];1683[label="vyw90",fontsize=16,color="green",shape="box"];1684[label="vyw89",fontsize=16,color="green",shape="box"];1685[label="vyw90",fontsize=16,color="green",shape="box"];1686[label="vyw89",fontsize=16,color="green",shape="box"];1687[label="vyw90",fontsize=16,color="green",shape="box"];1688[label="vyw89",fontsize=16,color="green",shape="box"];1689[label="vyw90",fontsize=16,color="green",shape="box"];1690[label="vyw89",fontsize=16,color="green",shape="box"];1691[label="vyw90",fontsize=16,color="green",shape="box"];1692[label="vyw89",fontsize=16,color="green",shape="box"];1693[label="vyw90",fontsize=16,color="green",shape="box"];1694[label="vyw89",fontsize=16,color="green",shape="box"];1695[label="vyw90",fontsize=16,color="green",shape="box"];1696[label="vyw89",fontsize=16,color="green",shape="box"];1697[label="vyw90",fontsize=16,color="green",shape="box"];1698[label="vyw89",fontsize=16,color="green",shape="box"];1699[label="compare0 (Just vyw153) (Just vyw154) True",fontsize=16,color="black",shape="box"];1699 -> 2021[label="",style="solid", color="black", weight=3]; 29.96/14.53 1700[label="primMulNat (Succ vyw40000) (Succ vyw3100)",fontsize=16,color="black",shape="box"];1700 -> 2022[label="",style="solid", color="black", weight=3]; 29.96/14.53 1701[label="primMulNat (Succ vyw40000) Zero",fontsize=16,color="black",shape="box"];1701 -> 2023[label="",style="solid", color="black", weight=3]; 29.96/14.53 1702[label="primMulNat Zero (Succ vyw3100)",fontsize=16,color="black",shape="box"];1702 -> 2024[label="",style="solid", color="black", weight=3]; 29.96/14.53 1703[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1703 -> 2025[label="",style="solid", color="black", weight=3]; 29.96/14.53 1711 -> 21[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1711[label="vyw101 < vyw104",fontsize=16,color="magenta"];1711 -> 2026[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1711 -> 2027[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1712 -> 22[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1712[label="vyw101 < vyw104",fontsize=16,color="magenta"];1712 -> 2028[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1712 -> 2029[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1713 -> 23[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1713[label="vyw101 < vyw104",fontsize=16,color="magenta"];1713 -> 2030[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1713 -> 2031[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1714 -> 24[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1714[label="vyw101 < vyw104",fontsize=16,color="magenta"];1714 -> 2032[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1714 -> 2033[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1715 -> 25[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1715[label="vyw101 < vyw104",fontsize=16,color="magenta"];1715 -> 2034[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1715 -> 2035[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1716 -> 26[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1716[label="vyw101 < vyw104",fontsize=16,color="magenta"];1716 -> 2036[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1716 -> 2037[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1717 -> 27[label="",style="dashed", color="red", weight=0]; 29.96/14.53 1717[label="vyw101 < vyw104",fontsize=16,color="magenta"];1717 -> 2038[label="",style="dashed", color="magenta", weight=3]; 29.96/14.53 1717 -> 2039[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1718 -> 28[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1718[label="vyw101 < vyw104",fontsize=16,color="magenta"];1718 -> 2040[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1718 -> 2041[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1719 -> 29[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1719[label="vyw101 < vyw104",fontsize=16,color="magenta"];1719 -> 2042[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1719 -> 2043[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1720 -> 30[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1720[label="vyw101 < vyw104",fontsize=16,color="magenta"];1720 -> 2044[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1720 -> 2045[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1721 -> 31[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1721[label="vyw101 < vyw104",fontsize=16,color="magenta"];1721 -> 2046[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1721 -> 2047[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1722 -> 32[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1722[label="vyw101 < vyw104",fontsize=16,color="magenta"];1722 -> 2048[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1722 -> 2049[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1723 -> 33[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1723[label="vyw101 < vyw104",fontsize=16,color="magenta"];1723 -> 2050[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1723 -> 2051[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1724 -> 34[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1724[label="vyw101 < vyw104",fontsize=16,color="magenta"];1724 -> 2052[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1724 -> 2053[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1725[label="vyw102 <= vyw105",fontsize=16,color="blue",shape="box"];3579[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3579[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3579 -> 2054[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3580[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3580[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3580 -> 2055[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3581[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3581[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3581 -> 2056[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3582[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3582[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3582 -> 2057[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3583[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3583[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3583 -> 2058[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3584[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3584[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3584 -> 2059[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3585[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3585[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3585 -> 2060[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3586[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3586[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3586 -> 2061[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3587[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3587[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3587 -> 2062[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3588[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3588[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3588 -> 2063[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3589[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3589[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3589 -> 2064[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3590[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3590[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3590 -> 2065[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3591[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3591[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3591 -> 2066[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3592[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3592[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3592 -> 2067[label="",style="solid", color="blue", weight=3]; 29.96/14.54 1726[label="vyw101 == vyw104",fontsize=16,color="blue",shape="box"];3593[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3593[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3593 -> 2068[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3594[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3594[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3594 -> 2069[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3595[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3595[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3595 -> 2070[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3596[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3596[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3596 -> 2071[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3597[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3597[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3597 -> 2072[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3598[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3598[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3598 -> 2073[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3599[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3599[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3599 -> 2074[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3600[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3600[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3600 -> 2075[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3601[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3601[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3601 -> 2076[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3602[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3602[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3602 -> 2077[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3603[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3603[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3603 -> 2078[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3604[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3604[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3604 -> 2079[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3605[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3605[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3605 -> 2080[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3606[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3606[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3606 -> 2081[label="",style="solid", color="blue", weight=3]; 29.96/14.54 1727[label="False || vyw191",fontsize=16,color="black",shape="box"];1727 -> 2082[label="",style="solid", color="black", weight=3]; 29.96/14.54 1728[label="True || vyw191",fontsize=16,color="black",shape="box"];1728 -> 2083[label="",style="solid", color="black", weight=3]; 29.96/14.54 1729[label="vyw103",fontsize=16,color="green",shape="box"];1730[label="vyw100",fontsize=16,color="green",shape="box"];1731[label="vyw103",fontsize=16,color="green",shape="box"];1732[label="vyw100",fontsize=16,color="green",shape="box"];1733[label="vyw103",fontsize=16,color="green",shape="box"];1734[label="vyw100",fontsize=16,color="green",shape="box"];1735[label="vyw103",fontsize=16,color="green",shape="box"];1736[label="vyw100",fontsize=16,color="green",shape="box"];1737[label="vyw103",fontsize=16,color="green",shape="box"];1738[label="vyw100",fontsize=16,color="green",shape="box"];1739[label="vyw103",fontsize=16,color="green",shape="box"];1740[label="vyw100",fontsize=16,color="green",shape="box"];1741[label="vyw103",fontsize=16,color="green",shape="box"];1742[label="vyw100",fontsize=16,color="green",shape="box"];1743[label="vyw103",fontsize=16,color="green",shape="box"];1744[label="vyw100",fontsize=16,color="green",shape="box"];1745[label="vyw103",fontsize=16,color="green",shape="box"];1746[label="vyw100",fontsize=16,color="green",shape="box"];1747[label="vyw103",fontsize=16,color="green",shape="box"];1748[label="vyw100",fontsize=16,color="green",shape="box"];1749[label="vyw103",fontsize=16,color="green",shape="box"];1750[label="vyw100",fontsize=16,color="green",shape="box"];1751[label="vyw103",fontsize=16,color="green",shape="box"];1752[label="vyw100",fontsize=16,color="green",shape="box"];1753[label="vyw103",fontsize=16,color="green",shape="box"];1754[label="vyw100",fontsize=16,color="green",shape="box"];1755[label="vyw103",fontsize=16,color="green",shape="box"];1756[label="vyw100",fontsize=16,color="green",shape="box"];1757[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) False",fontsize=16,color="black",shape="box"];1757 -> 2084[label="",style="solid", color="black", weight=3]; 29.96/14.54 1758[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="black",shape="box"];1758 -> 2085[label="",style="solid", color="black", weight=3]; 29.96/14.54 1759[label="True",fontsize=16,color="green",shape="box"];1760 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1760[label="vyw301 * vyw4000",fontsize=16,color="magenta"];1760 -> 2086[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1760 -> 2087[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1761 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1761[label="vyw300 * vyw4001",fontsize=16,color="magenta"];1761 -> 2088[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1761 -> 2089[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1762[label="vyw4001",fontsize=16,color="green",shape="box"];1763[label="vyw301",fontsize=16,color="green",shape="box"];1764 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1764[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1764 -> 2090[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1764 -> 2091[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1765 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1765[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1765 -> 2092[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1765 -> 2093[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1766 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1766[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1766 -> 2094[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1766 -> 2095[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1767 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1767[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1767 -> 2096[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1767 -> 2097[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1768 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1768[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1768 -> 2098[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1768 -> 2099[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1769 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1769[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1769 -> 2100[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1769 -> 2101[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1770 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1770[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1770 -> 2102[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1770 -> 2103[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1771 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1771[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1771 -> 2104[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1771 -> 2105[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1772 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1772[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1772 -> 2106[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1772 -> 2107[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1773 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1773[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1773 -> 2108[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1773 -> 2109[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1774 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1774[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1774 -> 2110[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1774 -> 2111[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1775 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1775[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1775 -> 2112[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1775 -> 2113[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1776 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1776[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1776 -> 2114[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1776 -> 2115[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1777 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1777[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1777 -> 2116[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1777 -> 2117[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1778[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];3607[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3607[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3607 -> 2118[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3608[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3608[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3608 -> 2119[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3609[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3609[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3609 -> 2120[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3610[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3610[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3610 -> 2121[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3611[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3611[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3611 -> 2122[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3612[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3612[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3612 -> 2123[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3613[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3613[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3613 -> 2124[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3614[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3614[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3614 -> 2125[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3615[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3615[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3615 -> 2126[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3616[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3616[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3616 -> 2127[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3617[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3617[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3617 -> 2128[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3618[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3618[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3618 -> 2129[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3619[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3619[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3619 -> 2130[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3620[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3620[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3620 -> 2131[label="",style="solid", color="blue", weight=3]; 29.96/14.54 1779[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3621[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3621[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3621 -> 2132[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3622[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3622[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3622 -> 2133[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3623[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3623[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3623 -> 2134[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3624[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3624[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3624 -> 2135[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3625[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3625[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3625 -> 2136[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3626[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3626[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3626 -> 2137[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3627[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3627[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3627 -> 2138[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3628[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3628[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3628 -> 2139[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3629[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3629[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3629 -> 2140[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3630[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3630[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3630 -> 2141[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3631[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3631[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3631 -> 2142[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3632[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3632[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3632 -> 2143[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3633[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3633[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3633 -> 2144[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3634[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3634[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3634 -> 2145[label="",style="solid", color="blue", weight=3]; 29.96/14.54 1780 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1780[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1780 -> 2146[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1780 -> 2147[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1781 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1781[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1781 -> 2148[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1781 -> 2149[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1782 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1782[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1782 -> 2150[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1782 -> 2151[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1783 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1783[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1783 -> 2152[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1783 -> 2153[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1784 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1784[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1784 -> 2154[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1784 -> 2155[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1785 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1785[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1785 -> 2156[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1785 -> 2157[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1786 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1786[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1786 -> 2158[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1786 -> 2159[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1787 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1787[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1787 -> 2160[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1787 -> 2161[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1788 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1788[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1788 -> 2162[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1788 -> 2163[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1789 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1789[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1789 -> 2164[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1789 -> 2165[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1790 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1790[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1790 -> 2166[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1790 -> 2167[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1791 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1791[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1791 -> 2168[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1791 -> 2169[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1792 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1792[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1792 -> 2170[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1792 -> 2171[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1793 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1793[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1793 -> 2172[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1793 -> 2173[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1794[label="vyw4000",fontsize=16,color="green",shape="box"];1795[label="vyw300",fontsize=16,color="green",shape="box"];1796[label="vyw4000",fontsize=16,color="green",shape="box"];1797[label="vyw300",fontsize=16,color="green",shape="box"];1798[label="vyw4000",fontsize=16,color="green",shape="box"];1799[label="vyw300",fontsize=16,color="green",shape="box"];1800[label="vyw4000",fontsize=16,color="green",shape="box"];1801[label="vyw300",fontsize=16,color="green",shape="box"];1802[label="vyw4000",fontsize=16,color="green",shape="box"];1803[label="vyw300",fontsize=16,color="green",shape="box"];1804[label="vyw4000",fontsize=16,color="green",shape="box"];1805[label="vyw300",fontsize=16,color="green",shape="box"];1806[label="vyw4000",fontsize=16,color="green",shape="box"];1807[label="vyw300",fontsize=16,color="green",shape="box"];1808[label="vyw4000",fontsize=16,color="green",shape="box"];1809[label="vyw300",fontsize=16,color="green",shape="box"];1810[label="vyw4000",fontsize=16,color="green",shape="box"];1811[label="vyw300",fontsize=16,color="green",shape="box"];1812[label="vyw4000",fontsize=16,color="green",shape="box"];1813[label="vyw300",fontsize=16,color="green",shape="box"];1814[label="vyw4000",fontsize=16,color="green",shape="box"];1815[label="vyw300",fontsize=16,color="green",shape="box"];1816[label="vyw4000",fontsize=16,color="green",shape="box"];1817[label="vyw300",fontsize=16,color="green",shape="box"];1818[label="vyw4000",fontsize=16,color="green",shape="box"];1819[label="vyw300",fontsize=16,color="green",shape="box"];1820[label="vyw4000",fontsize=16,color="green",shape="box"];1821[label="vyw300",fontsize=16,color="green",shape="box"];1822[label="vyw4000",fontsize=16,color="green",shape="box"];1823[label="vyw300",fontsize=16,color="green",shape="box"];1824[label="vyw4000",fontsize=16,color="green",shape="box"];1825[label="vyw300",fontsize=16,color="green",shape="box"];1826[label="vyw4000",fontsize=16,color="green",shape="box"];1827[label="vyw300",fontsize=16,color="green",shape="box"];1828[label="vyw4000",fontsize=16,color="green",shape="box"];1829[label="vyw300",fontsize=16,color="green",shape="box"];1830[label="vyw4000",fontsize=16,color="green",shape="box"];1831[label="vyw300",fontsize=16,color="green",shape="box"];1832[label="vyw4000",fontsize=16,color="green",shape="box"];1833[label="vyw300",fontsize=16,color="green",shape="box"];1834[label="vyw4000",fontsize=16,color="green",shape="box"];1835[label="vyw300",fontsize=16,color="green",shape="box"];1836[label="vyw4000",fontsize=16,color="green",shape="box"];1837[label="vyw300",fontsize=16,color="green",shape="box"];1838[label="vyw4000",fontsize=16,color="green",shape="box"];1839[label="vyw300",fontsize=16,color="green",shape="box"];1840[label="vyw4000",fontsize=16,color="green",shape="box"];1841[label="vyw300",fontsize=16,color="green",shape="box"];1842[label="vyw4000",fontsize=16,color="green",shape="box"];1843[label="vyw300",fontsize=16,color="green",shape="box"];1844[label="vyw4000",fontsize=16,color="green",shape="box"];1845[label="vyw300",fontsize=16,color="green",shape="box"];1846[label="vyw4000",fontsize=16,color="green",shape="box"];1847[label="vyw300",fontsize=16,color="green",shape="box"];1848[label="vyw4000",fontsize=16,color="green",shape="box"];1849[label="vyw300",fontsize=16,color="green",shape="box"];1850[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];3635[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3635[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3635 -> 2174[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 3636[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3636[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3636 -> 2175[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 1851[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];3637[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1851 -> 3637[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3637 -> 2176[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 3638[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1851 -> 3638[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3638 -> 2177[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 1852[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1852 -> 2178[label="",style="solid", color="black", weight=3]; 29.96/14.54 1853[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1853 -> 2179[label="",style="solid", color="black", weight=3]; 29.96/14.54 1854[label="False",fontsize=16,color="green",shape="box"];1855[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1855 -> 2180[label="",style="solid", color="black", weight=3]; 29.96/14.54 1856[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1856 -> 2181[label="",style="solid", color="black", weight=3]; 29.96/14.54 1857[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1857 -> 2182[label="",style="solid", color="black", weight=3]; 29.96/14.54 1858[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1858 -> 2183[label="",style="solid", color="black", weight=3]; 29.96/14.54 1859[label="False",fontsize=16,color="green",shape="box"];1860[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1860 -> 2184[label="",style="solid", color="black", weight=3]; 29.96/14.54 1861[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1861 -> 2185[label="",style="solid", color="black", weight=3]; 29.96/14.54 1862[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1862 -> 2186[label="",style="solid", color="black", weight=3]; 29.96/14.54 1863[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1863 -> 2187[label="",style="solid", color="black", weight=3]; 29.96/14.54 1864[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1864 -> 2188[label="",style="solid", color="black", weight=3]; 29.96/14.54 1865[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1865 -> 2189[label="",style="solid", color="black", weight=3]; 29.96/14.54 1866 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1866[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1866 -> 2190[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1866 -> 2191[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1867 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1867[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1867 -> 2192[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1867 -> 2193[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1868 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1868[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1868 -> 2194[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1868 -> 2195[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1869 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1869[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1869 -> 2196[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1869 -> 2197[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1870 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1870[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1870 -> 2198[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1870 -> 2199[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1871 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1871[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1871 -> 2200[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1871 -> 2201[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1872 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1872[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1872 -> 2202[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1872 -> 2203[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1873 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1873[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1873 -> 2204[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1873 -> 2205[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1874 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1874[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1874 -> 2206[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1874 -> 2207[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1875 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1875[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1875 -> 2208[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1875 -> 2209[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1876 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1876[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1876 -> 2210[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1876 -> 2211[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1877 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1877[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1877 -> 2212[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1877 -> 2213[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1878 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1878[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1878 -> 2214[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1878 -> 2215[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1879 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1879[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1879 -> 2216[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1879 -> 2217[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1880 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1880[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1880 -> 2218[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1880 -> 2219[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1881 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1881[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1881 -> 2220[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1881 -> 2221[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1882 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1882[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1882 -> 2222[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1882 -> 2223[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1883 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1883[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1883 -> 2224[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1883 -> 2225[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1884 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1884[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1884 -> 2226[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1884 -> 2227[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1885 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1885[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1885 -> 2228[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1885 -> 2229[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1886 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1886[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1886 -> 2230[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1886 -> 2231[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1887 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1887[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1887 -> 2232[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1887 -> 2233[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1888 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1888[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1888 -> 2234[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1888 -> 2235[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1889 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1889[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1889 -> 2236[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1889 -> 2237[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1890 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1890[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1890 -> 2238[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1890 -> 2239[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1891 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1891[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1891 -> 2240[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1891 -> 2241[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1892 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1892[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1892 -> 2242[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1892 -> 2243[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1893 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1893[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1893 -> 2244[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1893 -> 2245[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1894 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1894[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1894 -> 2246[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1894 -> 2247[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1895 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1895[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1895 -> 2248[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1895 -> 2249[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1896 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1896[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1896 -> 2250[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1896 -> 2251[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1897 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1897[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1897 -> 2252[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1897 -> 2253[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1898[label="vyw4000",fontsize=16,color="green",shape="box"];1899[label="vyw300",fontsize=16,color="green",shape="box"];1900[label="vyw4000",fontsize=16,color="green",shape="box"];1901[label="vyw300",fontsize=16,color="green",shape="box"];1902[label="vyw4000",fontsize=16,color="green",shape="box"];1903[label="vyw300",fontsize=16,color="green",shape="box"];1904[label="vyw4000",fontsize=16,color="green",shape="box"];1905[label="vyw300",fontsize=16,color="green",shape="box"];1906[label="vyw4000",fontsize=16,color="green",shape="box"];1907[label="vyw300",fontsize=16,color="green",shape="box"];1908[label="vyw4000",fontsize=16,color="green",shape="box"];1909[label="vyw300",fontsize=16,color="green",shape="box"];1910[label="vyw4000",fontsize=16,color="green",shape="box"];1911[label="vyw300",fontsize=16,color="green",shape="box"];1912[label="vyw4000",fontsize=16,color="green",shape="box"];1913[label="vyw300",fontsize=16,color="green",shape="box"];1914[label="vyw4000",fontsize=16,color="green",shape="box"];1915[label="vyw300",fontsize=16,color="green",shape="box"];1916[label="vyw4000",fontsize=16,color="green",shape="box"];1917[label="vyw300",fontsize=16,color="green",shape="box"];1918[label="vyw4000",fontsize=16,color="green",shape="box"];1919[label="vyw300",fontsize=16,color="green",shape="box"];1920[label="vyw4000",fontsize=16,color="green",shape="box"];1921[label="vyw300",fontsize=16,color="green",shape="box"];1922[label="vyw4000",fontsize=16,color="green",shape="box"];1923[label="vyw300",fontsize=16,color="green",shape="box"];1924[label="vyw4000",fontsize=16,color="green",shape="box"];1925[label="vyw300",fontsize=16,color="green",shape="box"];1926 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1926[label="vyw301 * vyw4000",fontsize=16,color="magenta"];1926 -> 2254[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1926 -> 2255[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1927 -> 417[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1927[label="vyw300 * vyw4001",fontsize=16,color="magenta"];1927 -> 2256[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1927 -> 2257[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1928[label="(vyw590,vyw591,vyw592) <= (vyw600,vyw601,vyw602)",fontsize=16,color="black",shape="box"];1928 -> 2258[label="",style="solid", color="black", weight=3]; 29.96/14.54 1930 -> 186[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1930[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1930 -> 2259[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1930 -> 2260[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1929[label="vyw192 /= GT",fontsize=16,color="black",shape="triangle"];1929 -> 2261[label="",style="solid", color="black", weight=3]; 29.96/14.54 1938[label="Left vyw590 <= Left vyw600",fontsize=16,color="black",shape="box"];1938 -> 2276[label="",style="solid", color="black", weight=3]; 29.96/14.54 1939[label="Left vyw590 <= Right vyw600",fontsize=16,color="black",shape="box"];1939 -> 2277[label="",style="solid", color="black", weight=3]; 29.96/14.54 1940[label="Right vyw590 <= Left vyw600",fontsize=16,color="black",shape="box"];1940 -> 2278[label="",style="solid", color="black", weight=3]; 29.96/14.54 1941[label="Right vyw590 <= Right vyw600",fontsize=16,color="black",shape="box"];1941 -> 2279[label="",style="solid", color="black", weight=3]; 29.96/14.54 1931 -> 188[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1931[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1931 -> 2262[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1931 -> 2263[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1942[label="False <= False",fontsize=16,color="black",shape="box"];1942 -> 2280[label="",style="solid", color="black", weight=3]; 29.96/14.54 1943[label="False <= True",fontsize=16,color="black",shape="box"];1943 -> 2281[label="",style="solid", color="black", weight=3]; 29.96/14.54 1944[label="True <= False",fontsize=16,color="black",shape="box"];1944 -> 2282[label="",style="solid", color="black", weight=3]; 29.96/14.54 1945[label="True <= True",fontsize=16,color="black",shape="box"];1945 -> 2283[label="",style="solid", color="black", weight=3]; 29.96/14.54 1946[label="(vyw590,vyw591) <= (vyw600,vyw601)",fontsize=16,color="black",shape="box"];1946 -> 2284[label="",style="solid", color="black", weight=3]; 29.96/14.54 1947[label="LT <= LT",fontsize=16,color="black",shape="box"];1947 -> 2285[label="",style="solid", color="black", weight=3]; 29.96/14.54 1948[label="LT <= EQ",fontsize=16,color="black",shape="box"];1948 -> 2286[label="",style="solid", color="black", weight=3]; 29.96/14.54 1949[label="LT <= GT",fontsize=16,color="black",shape="box"];1949 -> 2287[label="",style="solid", color="black", weight=3]; 29.96/14.54 1950[label="EQ <= LT",fontsize=16,color="black",shape="box"];1950 -> 2288[label="",style="solid", color="black", weight=3]; 29.96/14.54 1951[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1951 -> 2289[label="",style="solid", color="black", weight=3]; 29.96/14.54 1952[label="EQ <= GT",fontsize=16,color="black",shape="box"];1952 -> 2290[label="",style="solid", color="black", weight=3]; 29.96/14.54 1953[label="GT <= LT",fontsize=16,color="black",shape="box"];1953 -> 2291[label="",style="solid", color="black", weight=3]; 29.96/14.54 1954[label="GT <= EQ",fontsize=16,color="black",shape="box"];1954 -> 2292[label="",style="solid", color="black", weight=3]; 29.96/14.54 1955[label="GT <= GT",fontsize=16,color="black",shape="box"];1955 -> 2293[label="",style="solid", color="black", weight=3]; 29.96/14.54 1956[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1956 -> 2294[label="",style="solid", color="black", weight=3]; 29.96/14.54 1957[label="Nothing <= Just vyw600",fontsize=16,color="black",shape="box"];1957 -> 2295[label="",style="solid", color="black", weight=3]; 29.96/14.54 1958[label="Just vyw590 <= Nothing",fontsize=16,color="black",shape="box"];1958 -> 2296[label="",style="solid", color="black", weight=3]; 29.96/14.54 1959[label="Just vyw590 <= Just vyw600",fontsize=16,color="black",shape="box"];1959 -> 2297[label="",style="solid", color="black", weight=3]; 29.96/14.54 1932 -> 193[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1932[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1932 -> 2264[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1932 -> 2265[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1933 -> 194[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1933[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1933 -> 2266[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1933 -> 2267[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1934 -> 195[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1934[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1934 -> 2268[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1934 -> 2269[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1935 -> 196[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1935[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1935 -> 2270[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1935 -> 2271[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1936 -> 197[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1936[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1936 -> 2272[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1936 -> 2273[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1937 -> 198[label="",style="dashed", color="red", weight=0]; 29.96/14.54 1937[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1937 -> 2274[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1937 -> 2275[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 1960[label="GT",fontsize=16,color="green",shape="box"];1961[label="GT",fontsize=16,color="green",shape="box"];1962[label="vyw116",fontsize=16,color="green",shape="box"];1963[label="vyw114",fontsize=16,color="green",shape="box"];1964[label="vyw116",fontsize=16,color="green",shape="box"];1965[label="vyw114",fontsize=16,color="green",shape="box"];1966[label="vyw116",fontsize=16,color="green",shape="box"];1967[label="vyw114",fontsize=16,color="green",shape="box"];1968[label="vyw116",fontsize=16,color="green",shape="box"];1969[label="vyw114",fontsize=16,color="green",shape="box"];1970[label="vyw116",fontsize=16,color="green",shape="box"];1971[label="vyw114",fontsize=16,color="green",shape="box"];1972[label="vyw116",fontsize=16,color="green",shape="box"];1973[label="vyw114",fontsize=16,color="green",shape="box"];1974[label="vyw116",fontsize=16,color="green",shape="box"];1975[label="vyw114",fontsize=16,color="green",shape="box"];1976[label="vyw116",fontsize=16,color="green",shape="box"];1977[label="vyw114",fontsize=16,color="green",shape="box"];1978[label="vyw116",fontsize=16,color="green",shape="box"];1979[label="vyw114",fontsize=16,color="green",shape="box"];1980[label="vyw116",fontsize=16,color="green",shape="box"];1981[label="vyw114",fontsize=16,color="green",shape="box"];1982[label="vyw116",fontsize=16,color="green",shape="box"];1983[label="vyw114",fontsize=16,color="green",shape="box"];1984[label="vyw116",fontsize=16,color="green",shape="box"];1985[label="vyw114",fontsize=16,color="green",shape="box"];1986[label="vyw116",fontsize=16,color="green",shape="box"];1987[label="vyw114",fontsize=16,color="green",shape="box"];1988[label="vyw116",fontsize=16,color="green",shape="box"];1989[label="vyw114",fontsize=16,color="green",shape="box"];1990[label="vyw115",fontsize=16,color="green",shape="box"];1991[label="vyw113",fontsize=16,color="green",shape="box"];1992[label="vyw115",fontsize=16,color="green",shape="box"];1993[label="vyw113",fontsize=16,color="green",shape="box"];1994[label="vyw115",fontsize=16,color="green",shape="box"];1995[label="vyw113",fontsize=16,color="green",shape="box"];1996[label="vyw115",fontsize=16,color="green",shape="box"];1997[label="vyw113",fontsize=16,color="green",shape="box"];1998[label="vyw115",fontsize=16,color="green",shape="box"];1999[label="vyw113",fontsize=16,color="green",shape="box"];2000[label="vyw115",fontsize=16,color="green",shape="box"];2001[label="vyw113",fontsize=16,color="green",shape="box"];2002[label="vyw115",fontsize=16,color="green",shape="box"];2003[label="vyw113",fontsize=16,color="green",shape="box"];2004[label="vyw115",fontsize=16,color="green",shape="box"];2005[label="vyw113",fontsize=16,color="green",shape="box"];2006[label="vyw115",fontsize=16,color="green",shape="box"];2007[label="vyw113",fontsize=16,color="green",shape="box"];2008[label="vyw115",fontsize=16,color="green",shape="box"];2009[label="vyw113",fontsize=16,color="green",shape="box"];2010[label="vyw115",fontsize=16,color="green",shape="box"];2011[label="vyw113",fontsize=16,color="green",shape="box"];2012[label="vyw115",fontsize=16,color="green",shape="box"];2013[label="vyw113",fontsize=16,color="green",shape="box"];2014[label="vyw115",fontsize=16,color="green",shape="box"];2015[label="vyw113",fontsize=16,color="green",shape="box"];2016[label="vyw115",fontsize=16,color="green",shape="box"];2017[label="vyw113",fontsize=16,color="green",shape="box"];2018[label="compare1 (vyw180,vyw181) (vyw182,vyw183) False",fontsize=16,color="black",shape="box"];2018 -> 2298[label="",style="solid", color="black", weight=3]; 29.96/14.54 2019[label="compare1 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="black",shape="box"];2019 -> 2299[label="",style="solid", color="black", weight=3]; 29.96/14.54 2020[label="True",fontsize=16,color="green",shape="box"];2021[label="GT",fontsize=16,color="green",shape="box"];2022 -> 2300[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2022[label="primPlusNat (primMulNat vyw40000 (Succ vyw3100)) (Succ vyw3100)",fontsize=16,color="magenta"];2022 -> 2301[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2023[label="Zero",fontsize=16,color="green",shape="box"];2024[label="Zero",fontsize=16,color="green",shape="box"];2025[label="Zero",fontsize=16,color="green",shape="box"];2026[label="vyw104",fontsize=16,color="green",shape="box"];2027[label="vyw101",fontsize=16,color="green",shape="box"];2028[label="vyw104",fontsize=16,color="green",shape="box"];2029[label="vyw101",fontsize=16,color="green",shape="box"];2030[label="vyw104",fontsize=16,color="green",shape="box"];2031[label="vyw101",fontsize=16,color="green",shape="box"];2032[label="vyw104",fontsize=16,color="green",shape="box"];2033[label="vyw101",fontsize=16,color="green",shape="box"];2034[label="vyw104",fontsize=16,color="green",shape="box"];2035[label="vyw101",fontsize=16,color="green",shape="box"];2036[label="vyw104",fontsize=16,color="green",shape="box"];2037[label="vyw101",fontsize=16,color="green",shape="box"];2038[label="vyw104",fontsize=16,color="green",shape="box"];2039[label="vyw101",fontsize=16,color="green",shape="box"];2040[label="vyw104",fontsize=16,color="green",shape="box"];2041[label="vyw101",fontsize=16,color="green",shape="box"];2042[label="vyw104",fontsize=16,color="green",shape="box"];2043[label="vyw101",fontsize=16,color="green",shape="box"];2044[label="vyw104",fontsize=16,color="green",shape="box"];2045[label="vyw101",fontsize=16,color="green",shape="box"];2046[label="vyw104",fontsize=16,color="green",shape="box"];2047[label="vyw101",fontsize=16,color="green",shape="box"];2048[label="vyw104",fontsize=16,color="green",shape="box"];2049[label="vyw101",fontsize=16,color="green",shape="box"];2050[label="vyw104",fontsize=16,color="green",shape="box"];2051[label="vyw101",fontsize=16,color="green",shape="box"];2052[label="vyw104",fontsize=16,color="green",shape="box"];2053[label="vyw101",fontsize=16,color="green",shape="box"];2054 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2054[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2054 -> 2302[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2054 -> 2303[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2055 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2055[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2055 -> 2304[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2055 -> 2305[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2056 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2056[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2056 -> 2306[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2056 -> 2307[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2057 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2057[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2057 -> 2308[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2057 -> 2309[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2058 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2058[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2058 -> 2310[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2058 -> 2311[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2059 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2059[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2059 -> 2312[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2059 -> 2313[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2060 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2060[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2060 -> 2314[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2060 -> 2315[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2061 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2061[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2061 -> 2316[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2061 -> 2317[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2062 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2062[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2062 -> 2318[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2062 -> 2319[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2063 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2063[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2063 -> 2320[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2063 -> 2321[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2064 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2064[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2064 -> 2322[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2064 -> 2323[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2065 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2065[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2065 -> 2324[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2065 -> 2325[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2066 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2066[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2066 -> 2326[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2066 -> 2327[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2067 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2067[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2067 -> 2328[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2067 -> 2329[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2068 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2068[label="vyw101 == vyw104",fontsize=16,color="magenta"];2068 -> 2330[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2068 -> 2331[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2069 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2069[label="vyw101 == vyw104",fontsize=16,color="magenta"];2069 -> 2332[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2069 -> 2333[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2070 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2070[label="vyw101 == vyw104",fontsize=16,color="magenta"];2070 -> 2334[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2070 -> 2335[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2071 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2071[label="vyw101 == vyw104",fontsize=16,color="magenta"];2071 -> 2336[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2071 -> 2337[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2072 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2072[label="vyw101 == vyw104",fontsize=16,color="magenta"];2072 -> 2338[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2072 -> 2339[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2073 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2073[label="vyw101 == vyw104",fontsize=16,color="magenta"];2073 -> 2340[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2073 -> 2341[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2074 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2074[label="vyw101 == vyw104",fontsize=16,color="magenta"];2074 -> 2342[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2074 -> 2343[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2075 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2075[label="vyw101 == vyw104",fontsize=16,color="magenta"];2075 -> 2344[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2075 -> 2345[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2076 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2076[label="vyw101 == vyw104",fontsize=16,color="magenta"];2076 -> 2346[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2076 -> 2347[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2077 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2077[label="vyw101 == vyw104",fontsize=16,color="magenta"];2077 -> 2348[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2077 -> 2349[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2078 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2078[label="vyw101 == vyw104",fontsize=16,color="magenta"];2078 -> 2350[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2078 -> 2351[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2079 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2079[label="vyw101 == vyw104",fontsize=16,color="magenta"];2079 -> 2352[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2079 -> 2353[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2080 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2080[label="vyw101 == vyw104",fontsize=16,color="magenta"];2080 -> 2354[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2080 -> 2355[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2081 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2081[label="vyw101 == vyw104",fontsize=16,color="magenta"];2081 -> 2356[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2081 -> 2357[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2082[label="vyw191",fontsize=16,color="green",shape="box"];2083[label="True",fontsize=16,color="green",shape="box"];2084[label="compare0 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) otherwise",fontsize=16,color="black",shape="box"];2084 -> 2358[label="",style="solid", color="black", weight=3]; 29.96/14.54 2085[label="LT",fontsize=16,color="green",shape="box"];2086[label="vyw4000",fontsize=16,color="green",shape="box"];2087[label="vyw301",fontsize=16,color="green",shape="box"];2088[label="vyw4001",fontsize=16,color="green",shape="box"];2089[label="vyw300",fontsize=16,color="green",shape="box"];2090[label="vyw4000",fontsize=16,color="green",shape="box"];2091[label="vyw300",fontsize=16,color="green",shape="box"];2092[label="vyw4000",fontsize=16,color="green",shape="box"];2093[label="vyw300",fontsize=16,color="green",shape="box"];2094[label="vyw4000",fontsize=16,color="green",shape="box"];2095[label="vyw300",fontsize=16,color="green",shape="box"];2096[label="vyw4000",fontsize=16,color="green",shape="box"];2097[label="vyw300",fontsize=16,color="green",shape="box"];2098[label="vyw4000",fontsize=16,color="green",shape="box"];2099[label="vyw300",fontsize=16,color="green",shape="box"];2100[label="vyw4000",fontsize=16,color="green",shape="box"];2101[label="vyw300",fontsize=16,color="green",shape="box"];2102[label="vyw4000",fontsize=16,color="green",shape="box"];2103[label="vyw300",fontsize=16,color="green",shape="box"];2104[label="vyw4000",fontsize=16,color="green",shape="box"];2105[label="vyw300",fontsize=16,color="green",shape="box"];2106[label="vyw4000",fontsize=16,color="green",shape="box"];2107[label="vyw300",fontsize=16,color="green",shape="box"];2108[label="vyw4000",fontsize=16,color="green",shape="box"];2109[label="vyw300",fontsize=16,color="green",shape="box"];2110[label="vyw4000",fontsize=16,color="green",shape="box"];2111[label="vyw300",fontsize=16,color="green",shape="box"];2112[label="vyw4000",fontsize=16,color="green",shape="box"];2113[label="vyw300",fontsize=16,color="green",shape="box"];2114[label="vyw4000",fontsize=16,color="green",shape="box"];2115[label="vyw300",fontsize=16,color="green",shape="box"];2116[label="vyw4000",fontsize=16,color="green",shape="box"];2117[label="vyw300",fontsize=16,color="green",shape="box"];2118 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2118[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2118 -> 2359[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2118 -> 2360[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2119 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2119[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2119 -> 2361[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2119 -> 2362[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2120 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2120[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2120 -> 2363[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2120 -> 2364[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2121 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2121[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2121 -> 2365[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2121 -> 2366[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2122 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2122[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2122 -> 2367[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2122 -> 2368[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2123 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2123[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2123 -> 2369[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2123 -> 2370[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2124 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2124[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2124 -> 2371[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2124 -> 2372[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2125 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2125[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2125 -> 2373[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2125 -> 2374[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2126 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2126[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2126 -> 2375[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2126 -> 2376[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2127 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2127[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2127 -> 2377[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2127 -> 2378[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2128 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2128[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2128 -> 2379[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2128 -> 2380[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2129 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2129[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2129 -> 2381[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2129 -> 2382[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2130 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2130[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2130 -> 2383[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2130 -> 2384[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2131 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2131[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2131 -> 2385[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2131 -> 2386[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2132 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2132[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2132 -> 2387[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2132 -> 2388[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2133 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2133[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2133 -> 2389[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2133 -> 2390[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2134 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2134[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2134 -> 2391[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2134 -> 2392[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2135 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2135[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2135 -> 2393[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2135 -> 2394[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2136 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2136[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2136 -> 2395[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2136 -> 2396[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2137 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2137[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2137 -> 2397[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2137 -> 2398[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2138 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2138[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2138 -> 2399[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2138 -> 2400[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2139 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2139[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2139 -> 2401[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2139 -> 2402[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2140 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2140[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2140 -> 2403[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2140 -> 2404[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2141 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2141[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2141 -> 2405[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2141 -> 2406[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2142 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2142[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2142 -> 2407[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2142 -> 2408[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2143 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2143[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2143 -> 2409[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2143 -> 2410[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2144 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2144[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2144 -> 2411[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2144 -> 2412[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2145 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2145[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2145 -> 2413[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2145 -> 2414[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2146[label="vyw4000",fontsize=16,color="green",shape="box"];2147[label="vyw300",fontsize=16,color="green",shape="box"];2148[label="vyw4000",fontsize=16,color="green",shape="box"];2149[label="vyw300",fontsize=16,color="green",shape="box"];2150[label="vyw4000",fontsize=16,color="green",shape="box"];2151[label="vyw300",fontsize=16,color="green",shape="box"];2152[label="vyw4000",fontsize=16,color="green",shape="box"];2153[label="vyw300",fontsize=16,color="green",shape="box"];2154[label="vyw4000",fontsize=16,color="green",shape="box"];2155[label="vyw300",fontsize=16,color="green",shape="box"];2156[label="vyw4000",fontsize=16,color="green",shape="box"];2157[label="vyw300",fontsize=16,color="green",shape="box"];2158[label="vyw4000",fontsize=16,color="green",shape="box"];2159[label="vyw300",fontsize=16,color="green",shape="box"];2160[label="vyw4000",fontsize=16,color="green",shape="box"];2161[label="vyw300",fontsize=16,color="green",shape="box"];2162[label="vyw4000",fontsize=16,color="green",shape="box"];2163[label="vyw300",fontsize=16,color="green",shape="box"];2164[label="vyw4000",fontsize=16,color="green",shape="box"];2165[label="vyw300",fontsize=16,color="green",shape="box"];2166[label="vyw4000",fontsize=16,color="green",shape="box"];2167[label="vyw300",fontsize=16,color="green",shape="box"];2168[label="vyw4000",fontsize=16,color="green",shape="box"];2169[label="vyw300",fontsize=16,color="green",shape="box"];2170[label="vyw4000",fontsize=16,color="green",shape="box"];2171[label="vyw300",fontsize=16,color="green",shape="box"];2172[label="vyw4000",fontsize=16,color="green",shape="box"];2173[label="vyw300",fontsize=16,color="green",shape="box"];2174[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];2174 -> 2415[label="",style="solid", color="black", weight=3]; 29.96/14.54 2175[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];2175 -> 2416[label="",style="solid", color="black", weight=3]; 29.96/14.54 2176[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];2176 -> 2417[label="",style="solid", color="black", weight=3]; 29.96/14.54 2177[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2177 -> 2418[label="",style="solid", color="black", weight=3]; 29.96/14.54 2178 -> 1540[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2178[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2178 -> 2419[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2178 -> 2420[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2179[label="False",fontsize=16,color="green",shape="box"];2180[label="False",fontsize=16,color="green",shape="box"];2181[label="True",fontsize=16,color="green",shape="box"];2182[label="False",fontsize=16,color="green",shape="box"];2183[label="True",fontsize=16,color="green",shape="box"];2184 -> 1540[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2184[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2184 -> 2421[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2184 -> 2422[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2185[label="False",fontsize=16,color="green",shape="box"];2186[label="False",fontsize=16,color="green",shape="box"];2187[label="True",fontsize=16,color="green",shape="box"];2188[label="False",fontsize=16,color="green",shape="box"];2189[label="True",fontsize=16,color="green",shape="box"];2190[label="vyw4001",fontsize=16,color="green",shape="box"];2191[label="vyw301",fontsize=16,color="green",shape="box"];2192[label="vyw4001",fontsize=16,color="green",shape="box"];2193[label="vyw301",fontsize=16,color="green",shape="box"];2194[label="vyw4001",fontsize=16,color="green",shape="box"];2195[label="vyw301",fontsize=16,color="green",shape="box"];2196[label="vyw4001",fontsize=16,color="green",shape="box"];2197[label="vyw301",fontsize=16,color="green",shape="box"];2198[label="vyw4001",fontsize=16,color="green",shape="box"];2199[label="vyw301",fontsize=16,color="green",shape="box"];2200[label="vyw4001",fontsize=16,color="green",shape="box"];2201[label="vyw301",fontsize=16,color="green",shape="box"];2202[label="vyw4001",fontsize=16,color="green",shape="box"];2203[label="vyw301",fontsize=16,color="green",shape="box"];2204[label="vyw4001",fontsize=16,color="green",shape="box"];2205[label="vyw301",fontsize=16,color="green",shape="box"];2206[label="vyw4001",fontsize=16,color="green",shape="box"];2207[label="vyw301",fontsize=16,color="green",shape="box"];2208[label="vyw4001",fontsize=16,color="green",shape="box"];2209[label="vyw301",fontsize=16,color="green",shape="box"];2210[label="vyw4001",fontsize=16,color="green",shape="box"];2211[label="vyw301",fontsize=16,color="green",shape="box"];2212[label="vyw4001",fontsize=16,color="green",shape="box"];2213[label="vyw301",fontsize=16,color="green",shape="box"];2214[label="vyw4001",fontsize=16,color="green",shape="box"];2215[label="vyw301",fontsize=16,color="green",shape="box"];2216[label="vyw4001",fontsize=16,color="green",shape="box"];2217[label="vyw301",fontsize=16,color="green",shape="box"];2218[label="vyw4000",fontsize=16,color="green",shape="box"];2219[label="vyw300",fontsize=16,color="green",shape="box"];2220[label="vyw4000",fontsize=16,color="green",shape="box"];2221[label="vyw300",fontsize=16,color="green",shape="box"];2222[label="vyw4000",fontsize=16,color="green",shape="box"];2223[label="vyw300",fontsize=16,color="green",shape="box"];2224[label="vyw4000",fontsize=16,color="green",shape="box"];2225[label="vyw300",fontsize=16,color="green",shape="box"];2226[label="vyw4000",fontsize=16,color="green",shape="box"];2227[label="vyw300",fontsize=16,color="green",shape="box"];2228[label="vyw4000",fontsize=16,color="green",shape="box"];2229[label="vyw300",fontsize=16,color="green",shape="box"];2230[label="vyw4000",fontsize=16,color="green",shape="box"];2231[label="vyw300",fontsize=16,color="green",shape="box"];2232[label="vyw4000",fontsize=16,color="green",shape="box"];2233[label="vyw300",fontsize=16,color="green",shape="box"];2234[label="vyw4000",fontsize=16,color="green",shape="box"];2235[label="vyw300",fontsize=16,color="green",shape="box"];2236[label="vyw4000",fontsize=16,color="green",shape="box"];2237[label="vyw300",fontsize=16,color="green",shape="box"];2238[label="vyw4000",fontsize=16,color="green",shape="box"];2239[label="vyw300",fontsize=16,color="green",shape="box"];2240[label="vyw4000",fontsize=16,color="green",shape="box"];2241[label="vyw300",fontsize=16,color="green",shape="box"];2242[label="vyw4000",fontsize=16,color="green",shape="box"];2243[label="vyw300",fontsize=16,color="green",shape="box"];2244[label="vyw4000",fontsize=16,color="green",shape="box"];2245[label="vyw300",fontsize=16,color="green",shape="box"];2246[label="vyw4001",fontsize=16,color="green",shape="box"];2247[label="vyw301",fontsize=16,color="green",shape="box"];2248[label="vyw4001",fontsize=16,color="green",shape="box"];2249[label="vyw301",fontsize=16,color="green",shape="box"];2250[label="vyw4000",fontsize=16,color="green",shape="box"];2251[label="vyw300",fontsize=16,color="green",shape="box"];2252[label="vyw4000",fontsize=16,color="green",shape="box"];2253[label="vyw300",fontsize=16,color="green",shape="box"];2254[label="vyw4000",fontsize=16,color="green",shape="box"];2255[label="vyw301",fontsize=16,color="green",shape="box"];2256[label="vyw4001",fontsize=16,color="green",shape="box"];2257[label="vyw300",fontsize=16,color="green",shape="box"];2258 -> 1706[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2258[label="vyw590 < vyw600 || vyw590 == vyw600 && (vyw591 < vyw601 || vyw591 == vyw601 && vyw592 <= vyw602)",fontsize=16,color="magenta"];2258 -> 2423[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2258 -> 2424[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2259[label="vyw60",fontsize=16,color="green",shape="box"];2260[label="vyw59",fontsize=16,color="green",shape="box"];2261 -> 2425[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2261[label="not (vyw192 == GT)",fontsize=16,color="magenta"];2261 -> 2426[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2276[label="vyw590 <= vyw600",fontsize=16,color="blue",shape="box"];3639[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3639[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3639 -> 2427[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3640[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3640[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3640 -> 2428[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3641[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3641[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3641 -> 2429[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3642[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3642[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3642 -> 2430[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3643[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3643[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3643 -> 2431[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3644[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3644[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3644 -> 2432[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3645[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3645[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3645 -> 2433[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3646[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3646[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3646 -> 2434[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3647[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3647[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3647 -> 2435[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3648[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3648[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3648 -> 2436[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3649[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3649[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3649 -> 2437[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3650[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3650[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3650 -> 2438[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3651[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3651[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3651 -> 2439[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3652[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3652[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3652 -> 2440[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2277[label="True",fontsize=16,color="green",shape="box"];2278[label="False",fontsize=16,color="green",shape="box"];2279[label="vyw590 <= vyw600",fontsize=16,color="blue",shape="box"];3653[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3653[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3653 -> 2441[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3654[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3654[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3654 -> 2442[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3655[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3655[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3655 -> 2443[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3656[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3656[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3656 -> 2444[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3657[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3657[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3657 -> 2445[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3658[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3658[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3658 -> 2446[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3659[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3659[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3659 -> 2447[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3660[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3660[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3660 -> 2448[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3661[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3661[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3661 -> 2449[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3662[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3662[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3662 -> 2450[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3663[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3663[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3663 -> 2451[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3664[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3664[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3664 -> 2452[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3665[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3665[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3665 -> 2453[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3666[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3666[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3666 -> 2454[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2262[label="vyw60",fontsize=16,color="green",shape="box"];2263[label="vyw59",fontsize=16,color="green",shape="box"];2280[label="True",fontsize=16,color="green",shape="box"];2281[label="True",fontsize=16,color="green",shape="box"];2282[label="False",fontsize=16,color="green",shape="box"];2283[label="True",fontsize=16,color="green",shape="box"];2284 -> 1706[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2284[label="vyw590 < vyw600 || vyw590 == vyw600 && vyw591 <= vyw601",fontsize=16,color="magenta"];2284 -> 2455[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2284 -> 2456[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2285[label="True",fontsize=16,color="green",shape="box"];2286[label="True",fontsize=16,color="green",shape="box"];2287[label="True",fontsize=16,color="green",shape="box"];2288[label="False",fontsize=16,color="green",shape="box"];2289[label="True",fontsize=16,color="green",shape="box"];2290[label="True",fontsize=16,color="green",shape="box"];2291[label="False",fontsize=16,color="green",shape="box"];2292[label="False",fontsize=16,color="green",shape="box"];2293[label="True",fontsize=16,color="green",shape="box"];2294[label="True",fontsize=16,color="green",shape="box"];2295[label="True",fontsize=16,color="green",shape="box"];2296[label="False",fontsize=16,color="green",shape="box"];2297[label="vyw590 <= vyw600",fontsize=16,color="blue",shape="box"];3667[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3667[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3667 -> 2457[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3668[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3668[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3668 -> 2458[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3669[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3669[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3669 -> 2459[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3670[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3670[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3670 -> 2460[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3671[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3671[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3671 -> 2461[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3672[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3672[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3672 -> 2462[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3673[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3673[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3673 -> 2463[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3674[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3674[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3674 -> 2464[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3675[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3675[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3675 -> 2465[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3676[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3676[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3676 -> 2466[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3677[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3677[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3677 -> 2467[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3678[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3678[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3678 -> 2468[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3679[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3679[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3679 -> 2469[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3680[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3680[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3680 -> 2470[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2264[label="vyw60",fontsize=16,color="green",shape="box"];2265[label="vyw59",fontsize=16,color="green",shape="box"];2266[label="vyw60",fontsize=16,color="green",shape="box"];2267[label="vyw59",fontsize=16,color="green",shape="box"];2268[label="vyw60",fontsize=16,color="green",shape="box"];2269[label="vyw59",fontsize=16,color="green",shape="box"];2270[label="vyw60",fontsize=16,color="green",shape="box"];2271[label="vyw59",fontsize=16,color="green",shape="box"];2272[label="vyw60",fontsize=16,color="green",shape="box"];2273[label="vyw59",fontsize=16,color="green",shape="box"];2274[label="vyw60",fontsize=16,color="green",shape="box"];2275[label="vyw59",fontsize=16,color="green",shape="box"];2298[label="compare0 (vyw180,vyw181) (vyw182,vyw183) otherwise",fontsize=16,color="black",shape="box"];2298 -> 2471[label="",style="solid", color="black", weight=3]; 29.96/14.54 2299[label="LT",fontsize=16,color="green",shape="box"];2301 -> 1335[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2301[label="primMulNat vyw40000 (Succ vyw3100)",fontsize=16,color="magenta"];2301 -> 2472[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2301 -> 2473[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2300[label="primPlusNat vyw193 (Succ vyw3100)",fontsize=16,color="burlywood",shape="triangle"];3681[label="vyw193/Succ vyw1930",fontsize=10,color="white",style="solid",shape="box"];2300 -> 3681[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3681 -> 2474[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 3682[label="vyw193/Zero",fontsize=10,color="white",style="solid",shape="box"];2300 -> 3682[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3682 -> 2475[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 2302[label="vyw105",fontsize=16,color="green",shape="box"];2303[label="vyw102",fontsize=16,color="green",shape="box"];2304[label="vyw105",fontsize=16,color="green",shape="box"];2305[label="vyw102",fontsize=16,color="green",shape="box"];2306[label="vyw105",fontsize=16,color="green",shape="box"];2307[label="vyw102",fontsize=16,color="green",shape="box"];2308[label="vyw105",fontsize=16,color="green",shape="box"];2309[label="vyw102",fontsize=16,color="green",shape="box"];2310[label="vyw105",fontsize=16,color="green",shape="box"];2311[label="vyw102",fontsize=16,color="green",shape="box"];2312[label="vyw105",fontsize=16,color="green",shape="box"];2313[label="vyw102",fontsize=16,color="green",shape="box"];2314[label="vyw105",fontsize=16,color="green",shape="box"];2315[label="vyw102",fontsize=16,color="green",shape="box"];2316[label="vyw105",fontsize=16,color="green",shape="box"];2317[label="vyw102",fontsize=16,color="green",shape="box"];2318[label="vyw105",fontsize=16,color="green",shape="box"];2319[label="vyw102",fontsize=16,color="green",shape="box"];2320[label="vyw105",fontsize=16,color="green",shape="box"];2321[label="vyw102",fontsize=16,color="green",shape="box"];2322[label="vyw105",fontsize=16,color="green",shape="box"];2323[label="vyw102",fontsize=16,color="green",shape="box"];2324[label="vyw105",fontsize=16,color="green",shape="box"];2325[label="vyw102",fontsize=16,color="green",shape="box"];2326[label="vyw105",fontsize=16,color="green",shape="box"];2327[label="vyw102",fontsize=16,color="green",shape="box"];2328[label="vyw105",fontsize=16,color="green",shape="box"];2329[label="vyw102",fontsize=16,color="green",shape="box"];2330[label="vyw104",fontsize=16,color="green",shape="box"];2331[label="vyw101",fontsize=16,color="green",shape="box"];2332[label="vyw104",fontsize=16,color="green",shape="box"];2333[label="vyw101",fontsize=16,color="green",shape="box"];2334[label="vyw104",fontsize=16,color="green",shape="box"];2335[label="vyw101",fontsize=16,color="green",shape="box"];2336[label="vyw104",fontsize=16,color="green",shape="box"];2337[label="vyw101",fontsize=16,color="green",shape="box"];2338[label="vyw104",fontsize=16,color="green",shape="box"];2339[label="vyw101",fontsize=16,color="green",shape="box"];2340[label="vyw104",fontsize=16,color="green",shape="box"];2341[label="vyw101",fontsize=16,color="green",shape="box"];2342[label="vyw104",fontsize=16,color="green",shape="box"];2343[label="vyw101",fontsize=16,color="green",shape="box"];2344[label="vyw104",fontsize=16,color="green",shape="box"];2345[label="vyw101",fontsize=16,color="green",shape="box"];2346[label="vyw104",fontsize=16,color="green",shape="box"];2347[label="vyw101",fontsize=16,color="green",shape="box"];2348[label="vyw104",fontsize=16,color="green",shape="box"];2349[label="vyw101",fontsize=16,color="green",shape="box"];2350[label="vyw104",fontsize=16,color="green",shape="box"];2351[label="vyw101",fontsize=16,color="green",shape="box"];2352[label="vyw104",fontsize=16,color="green",shape="box"];2353[label="vyw101",fontsize=16,color="green",shape="box"];2354[label="vyw104",fontsize=16,color="green",shape="box"];2355[label="vyw101",fontsize=16,color="green",shape="box"];2356[label="vyw104",fontsize=16,color="green",shape="box"];2357[label="vyw101",fontsize=16,color="green",shape="box"];2358[label="compare0 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="black",shape="box"];2358 -> 2476[label="",style="solid", color="black", weight=3]; 29.96/14.54 2359[label="vyw4002",fontsize=16,color="green",shape="box"];2360[label="vyw302",fontsize=16,color="green",shape="box"];2361[label="vyw4002",fontsize=16,color="green",shape="box"];2362[label="vyw302",fontsize=16,color="green",shape="box"];2363[label="vyw4002",fontsize=16,color="green",shape="box"];2364[label="vyw302",fontsize=16,color="green",shape="box"];2365[label="vyw4002",fontsize=16,color="green",shape="box"];2366[label="vyw302",fontsize=16,color="green",shape="box"];2367[label="vyw4002",fontsize=16,color="green",shape="box"];2368[label="vyw302",fontsize=16,color="green",shape="box"];2369[label="vyw4002",fontsize=16,color="green",shape="box"];2370[label="vyw302",fontsize=16,color="green",shape="box"];2371[label="vyw4002",fontsize=16,color="green",shape="box"];2372[label="vyw302",fontsize=16,color="green",shape="box"];2373[label="vyw4002",fontsize=16,color="green",shape="box"];2374[label="vyw302",fontsize=16,color="green",shape="box"];2375[label="vyw4002",fontsize=16,color="green",shape="box"];2376[label="vyw302",fontsize=16,color="green",shape="box"];2377[label="vyw4002",fontsize=16,color="green",shape="box"];2378[label="vyw302",fontsize=16,color="green",shape="box"];2379[label="vyw4002",fontsize=16,color="green",shape="box"];2380[label="vyw302",fontsize=16,color="green",shape="box"];2381[label="vyw4002",fontsize=16,color="green",shape="box"];2382[label="vyw302",fontsize=16,color="green",shape="box"];2383[label="vyw4002",fontsize=16,color="green",shape="box"];2384[label="vyw302",fontsize=16,color="green",shape="box"];2385[label="vyw4002",fontsize=16,color="green",shape="box"];2386[label="vyw302",fontsize=16,color="green",shape="box"];2387[label="vyw4001",fontsize=16,color="green",shape="box"];2388[label="vyw301",fontsize=16,color="green",shape="box"];2389[label="vyw4001",fontsize=16,color="green",shape="box"];2390[label="vyw301",fontsize=16,color="green",shape="box"];2391[label="vyw4001",fontsize=16,color="green",shape="box"];2392[label="vyw301",fontsize=16,color="green",shape="box"];2393[label="vyw4001",fontsize=16,color="green",shape="box"];2394[label="vyw301",fontsize=16,color="green",shape="box"];2395[label="vyw4001",fontsize=16,color="green",shape="box"];2396[label="vyw301",fontsize=16,color="green",shape="box"];2397[label="vyw4001",fontsize=16,color="green",shape="box"];2398[label="vyw301",fontsize=16,color="green",shape="box"];2399[label="vyw4001",fontsize=16,color="green",shape="box"];2400[label="vyw301",fontsize=16,color="green",shape="box"];2401[label="vyw4001",fontsize=16,color="green",shape="box"];2402[label="vyw301",fontsize=16,color="green",shape="box"];2403[label="vyw4001",fontsize=16,color="green",shape="box"];2404[label="vyw301",fontsize=16,color="green",shape="box"];2405[label="vyw4001",fontsize=16,color="green",shape="box"];2406[label="vyw301",fontsize=16,color="green",shape="box"];2407[label="vyw4001",fontsize=16,color="green",shape="box"];2408[label="vyw301",fontsize=16,color="green",shape="box"];2409[label="vyw4001",fontsize=16,color="green",shape="box"];2410[label="vyw301",fontsize=16,color="green",shape="box"];2411[label="vyw4001",fontsize=16,color="green",shape="box"];2412[label="vyw301",fontsize=16,color="green",shape="box"];2413[label="vyw4001",fontsize=16,color="green",shape="box"];2414[label="vyw301",fontsize=16,color="green",shape="box"];2415 -> 1540[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2415[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2415 -> 2477[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2415 -> 2478[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2416[label="False",fontsize=16,color="green",shape="box"];2417[label="False",fontsize=16,color="green",shape="box"];2418[label="True",fontsize=16,color="green",shape="box"];2419[label="vyw3000",fontsize=16,color="green",shape="box"];2420[label="vyw40000",fontsize=16,color="green",shape="box"];2421[label="vyw3000",fontsize=16,color="green",shape="box"];2422[label="vyw40000",fontsize=16,color="green",shape="box"];2423[label="vyw590 < vyw600",fontsize=16,color="blue",shape="box"];3683[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3683[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3683 -> 2479[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3684[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3684[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3684 -> 2480[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3685[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3685[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3685 -> 2481[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3686[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3686[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3686 -> 2482[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3687[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3687[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3687 -> 2483[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3688[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3688[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3688 -> 2484[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3689[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3689[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3689 -> 2485[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3690[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3690[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3690 -> 2486[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3691[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3691[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3691 -> 2487[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3692[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3692[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3692 -> 2488[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3693[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3693[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3693 -> 2489[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3694[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3694[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3694 -> 2490[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3695[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3695[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3695 -> 2491[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3696[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3696[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3696 -> 2492[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2424 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2424[label="vyw590 == vyw600 && (vyw591 < vyw601 || vyw591 == vyw601 && vyw592 <= vyw602)",fontsize=16,color="magenta"];2424 -> 2493[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2424 -> 2494[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2426 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2426[label="vyw192 == GT",fontsize=16,color="magenta"];2426 -> 2495[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2426 -> 2496[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2425[label="not vyw194",fontsize=16,color="burlywood",shape="triangle"];3697[label="vyw194/False",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3697[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3697 -> 2497[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 3698[label="vyw194/True",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3698[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3698 -> 2498[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 2427 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2427[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2427 -> 2499[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2427 -> 2500[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2428 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2428[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2428 -> 2501[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2428 -> 2502[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2429 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2429[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2429 -> 2503[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2429 -> 2504[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2430 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2430[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2430 -> 2505[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2430 -> 2506[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2431 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2431[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2431 -> 2507[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2431 -> 2508[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2432 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2432[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2432 -> 2509[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2432 -> 2510[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2433 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2433[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2433 -> 2511[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2433 -> 2512[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2434 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2434[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2434 -> 2513[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2434 -> 2514[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2435 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2435[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2435 -> 2515[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2435 -> 2516[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2436 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2436[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2436 -> 2517[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2436 -> 2518[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2437 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2437[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2437 -> 2519[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2437 -> 2520[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2438 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2438[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2438 -> 2521[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2438 -> 2522[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2439 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2439[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2439 -> 2523[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2439 -> 2524[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2440 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2440[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2440 -> 2525[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2440 -> 2526[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2441 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2441[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2441 -> 2527[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2441 -> 2528[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2442 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2442[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2442 -> 2529[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2442 -> 2530[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2443 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2443[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2443 -> 2531[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2443 -> 2532[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2444 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2444[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2444 -> 2533[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2444 -> 2534[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2445 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2445[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2445 -> 2535[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2445 -> 2536[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2446 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2446[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2446 -> 2537[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2446 -> 2538[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2447 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2447[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2447 -> 2539[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2447 -> 2540[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2448 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2448[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2448 -> 2541[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2448 -> 2542[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2449 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2449[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2449 -> 2543[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2449 -> 2544[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2450 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2450[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2450 -> 2545[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2450 -> 2546[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2451 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2451[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2451 -> 2547[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2451 -> 2548[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2452 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2452[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2452 -> 2549[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2452 -> 2550[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2453 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2453[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2453 -> 2551[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2453 -> 2552[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2454 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2454[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2454 -> 2553[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2454 -> 2554[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2455[label="vyw590 < vyw600",fontsize=16,color="blue",shape="box"];3699[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3699[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3699 -> 2555[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3700[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3700[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3700 -> 2556[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3701[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3701[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3701 -> 2557[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3702[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3702[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3702 -> 2558[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3703[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3703[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3703 -> 2559[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3704[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3704[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3704 -> 2560[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3705[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3705[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3705 -> 2561[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3706[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3706[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3706 -> 2562[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3707[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3707[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3707 -> 2563[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3708[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3708[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3708 -> 2564[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3709[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3709[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3709 -> 2565[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3710[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3710[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3710 -> 2566[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3711[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3711[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3711 -> 2567[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3712[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3712[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3712 -> 2568[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2456 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2456[label="vyw590 == vyw600 && vyw591 <= vyw601",fontsize=16,color="magenta"];2456 -> 2569[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2456 -> 2570[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2457 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2457[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2457 -> 2571[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2457 -> 2572[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2458 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2458[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2458 -> 2573[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2458 -> 2574[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2459 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2459[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2459 -> 2575[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2459 -> 2576[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2460 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2460[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2460 -> 2577[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2460 -> 2578[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2461 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2461[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2461 -> 2579[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2461 -> 2580[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2462 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2462[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2462 -> 2581[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2462 -> 2582[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2463 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2463[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2463 -> 2583[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2463 -> 2584[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2464 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2464[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2464 -> 2585[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2464 -> 2586[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2465 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2465[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2465 -> 2587[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2465 -> 2588[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2466 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2466[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2466 -> 2589[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2466 -> 2590[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2467 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2467[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2467 -> 2591[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2467 -> 2592[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2468 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2468[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2468 -> 2593[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2468 -> 2594[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2469 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2469[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2469 -> 2595[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2469 -> 2596[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2470 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2470[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2470 -> 2597[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2470 -> 2598[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2471[label="compare0 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="black",shape="box"];2471 -> 2599[label="",style="solid", color="black", weight=3]; 29.96/14.54 2472[label="vyw40000",fontsize=16,color="green",shape="box"];2473[label="Succ vyw3100",fontsize=16,color="green",shape="box"];2474[label="primPlusNat (Succ vyw1930) (Succ vyw3100)",fontsize=16,color="black",shape="box"];2474 -> 2600[label="",style="solid", color="black", weight=3]; 29.96/14.54 2475[label="primPlusNat Zero (Succ vyw3100)",fontsize=16,color="black",shape="box"];2475 -> 2601[label="",style="solid", color="black", weight=3]; 29.96/14.54 2476[label="GT",fontsize=16,color="green",shape="box"];2477[label="vyw3000",fontsize=16,color="green",shape="box"];2478[label="vyw40000",fontsize=16,color="green",shape="box"];2479 -> 21[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2479[label="vyw590 < vyw600",fontsize=16,color="magenta"];2479 -> 2602[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2479 -> 2603[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2480 -> 22[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2480[label="vyw590 < vyw600",fontsize=16,color="magenta"];2480 -> 2604[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2480 -> 2605[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2481 -> 23[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2481[label="vyw590 < vyw600",fontsize=16,color="magenta"];2481 -> 2606[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2481 -> 2607[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2482 -> 24[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2482[label="vyw590 < vyw600",fontsize=16,color="magenta"];2482 -> 2608[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2482 -> 2609[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2483 -> 25[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2483[label="vyw590 < vyw600",fontsize=16,color="magenta"];2483 -> 2610[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2483 -> 2611[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2484 -> 26[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2484[label="vyw590 < vyw600",fontsize=16,color="magenta"];2484 -> 2612[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2484 -> 2613[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2485 -> 27[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2485[label="vyw590 < vyw600",fontsize=16,color="magenta"];2485 -> 2614[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2485 -> 2615[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2486 -> 28[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2486[label="vyw590 < vyw600",fontsize=16,color="magenta"];2486 -> 2616[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2486 -> 2617[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2487 -> 29[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2487[label="vyw590 < vyw600",fontsize=16,color="magenta"];2487 -> 2618[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2487 -> 2619[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2488 -> 30[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2488[label="vyw590 < vyw600",fontsize=16,color="magenta"];2488 -> 2620[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2488 -> 2621[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2489 -> 31[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2489[label="vyw590 < vyw600",fontsize=16,color="magenta"];2489 -> 2622[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2489 -> 2623[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2490 -> 32[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2490[label="vyw590 < vyw600",fontsize=16,color="magenta"];2490 -> 2624[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2490 -> 2625[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2491 -> 33[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2491[label="vyw590 < vyw600",fontsize=16,color="magenta"];2491 -> 2626[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2491 -> 2627[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2492 -> 34[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2492[label="vyw590 < vyw600",fontsize=16,color="magenta"];2492 -> 2628[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2492 -> 2629[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2493 -> 1706[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2493[label="vyw591 < vyw601 || vyw591 == vyw601 && vyw592 <= vyw602",fontsize=16,color="magenta"];2493 -> 2630[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2493 -> 2631[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2494[label="vyw590 == vyw600",fontsize=16,color="blue",shape="box"];3713[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3713[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3713 -> 2632[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3714[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3714[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3714 -> 2633[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3715[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3715[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3715 -> 2634[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3716[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3716[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3716 -> 2635[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3717[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3717[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3717 -> 2636[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3718[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3718[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3718 -> 2637[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3719[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3719[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3719 -> 2638[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3720[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3720[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3720 -> 2639[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3721[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3721[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3721 -> 2640[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3722[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3722[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3722 -> 2641[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3723[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3723[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3723 -> 2642[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3724[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3724[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3724 -> 2643[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3725[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3725[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3725 -> 2644[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3726[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3726[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3726 -> 2645[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2495[label="GT",fontsize=16,color="green",shape="box"];2496[label="vyw192",fontsize=16,color="green",shape="box"];2497[label="not False",fontsize=16,color="black",shape="box"];2497 -> 2646[label="",style="solid", color="black", weight=3]; 29.96/14.54 2498[label="not True",fontsize=16,color="black",shape="box"];2498 -> 2647[label="",style="solid", color="black", weight=3]; 29.96/14.54 2499[label="vyw600",fontsize=16,color="green",shape="box"];2500[label="vyw590",fontsize=16,color="green",shape="box"];2501[label="vyw600",fontsize=16,color="green",shape="box"];2502[label="vyw590",fontsize=16,color="green",shape="box"];2503[label="vyw600",fontsize=16,color="green",shape="box"];2504[label="vyw590",fontsize=16,color="green",shape="box"];2505[label="vyw600",fontsize=16,color="green",shape="box"];2506[label="vyw590",fontsize=16,color="green",shape="box"];2507[label="vyw600",fontsize=16,color="green",shape="box"];2508[label="vyw590",fontsize=16,color="green",shape="box"];2509[label="vyw600",fontsize=16,color="green",shape="box"];2510[label="vyw590",fontsize=16,color="green",shape="box"];2511[label="vyw600",fontsize=16,color="green",shape="box"];2512[label="vyw590",fontsize=16,color="green",shape="box"];2513[label="vyw600",fontsize=16,color="green",shape="box"];2514[label="vyw590",fontsize=16,color="green",shape="box"];2515[label="vyw600",fontsize=16,color="green",shape="box"];2516[label="vyw590",fontsize=16,color="green",shape="box"];2517[label="vyw600",fontsize=16,color="green",shape="box"];2518[label="vyw590",fontsize=16,color="green",shape="box"];2519[label="vyw600",fontsize=16,color="green",shape="box"];2520[label="vyw590",fontsize=16,color="green",shape="box"];2521[label="vyw600",fontsize=16,color="green",shape="box"];2522[label="vyw590",fontsize=16,color="green",shape="box"];2523[label="vyw600",fontsize=16,color="green",shape="box"];2524[label="vyw590",fontsize=16,color="green",shape="box"];2525[label="vyw600",fontsize=16,color="green",shape="box"];2526[label="vyw590",fontsize=16,color="green",shape="box"];2527[label="vyw600",fontsize=16,color="green",shape="box"];2528[label="vyw590",fontsize=16,color="green",shape="box"];2529[label="vyw600",fontsize=16,color="green",shape="box"];2530[label="vyw590",fontsize=16,color="green",shape="box"];2531[label="vyw600",fontsize=16,color="green",shape="box"];2532[label="vyw590",fontsize=16,color="green",shape="box"];2533[label="vyw600",fontsize=16,color="green",shape="box"];2534[label="vyw590",fontsize=16,color="green",shape="box"];2535[label="vyw600",fontsize=16,color="green",shape="box"];2536[label="vyw590",fontsize=16,color="green",shape="box"];2537[label="vyw600",fontsize=16,color="green",shape="box"];2538[label="vyw590",fontsize=16,color="green",shape="box"];2539[label="vyw600",fontsize=16,color="green",shape="box"];2540[label="vyw590",fontsize=16,color="green",shape="box"];2541[label="vyw600",fontsize=16,color="green",shape="box"];2542[label="vyw590",fontsize=16,color="green",shape="box"];2543[label="vyw600",fontsize=16,color="green",shape="box"];2544[label="vyw590",fontsize=16,color="green",shape="box"];2545[label="vyw600",fontsize=16,color="green",shape="box"];2546[label="vyw590",fontsize=16,color="green",shape="box"];2547[label="vyw600",fontsize=16,color="green",shape="box"];2548[label="vyw590",fontsize=16,color="green",shape="box"];2549[label="vyw600",fontsize=16,color="green",shape="box"];2550[label="vyw590",fontsize=16,color="green",shape="box"];2551[label="vyw600",fontsize=16,color="green",shape="box"];2552[label="vyw590",fontsize=16,color="green",shape="box"];2553[label="vyw600",fontsize=16,color="green",shape="box"];2554[label="vyw590",fontsize=16,color="green",shape="box"];2555 -> 21[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2555[label="vyw590 < vyw600",fontsize=16,color="magenta"];2555 -> 2648[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2555 -> 2649[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2556 -> 22[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2556[label="vyw590 < vyw600",fontsize=16,color="magenta"];2556 -> 2650[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2556 -> 2651[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2557 -> 23[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2557[label="vyw590 < vyw600",fontsize=16,color="magenta"];2557 -> 2652[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2557 -> 2653[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2558 -> 24[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2558[label="vyw590 < vyw600",fontsize=16,color="magenta"];2558 -> 2654[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2558 -> 2655[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2559 -> 25[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2559[label="vyw590 < vyw600",fontsize=16,color="magenta"];2559 -> 2656[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2559 -> 2657[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2560 -> 26[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2560[label="vyw590 < vyw600",fontsize=16,color="magenta"];2560 -> 2658[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2560 -> 2659[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2561 -> 27[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2561[label="vyw590 < vyw600",fontsize=16,color="magenta"];2561 -> 2660[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2561 -> 2661[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2562 -> 28[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2562[label="vyw590 < vyw600",fontsize=16,color="magenta"];2562 -> 2662[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2562 -> 2663[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2563 -> 29[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2563[label="vyw590 < vyw600",fontsize=16,color="magenta"];2563 -> 2664[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2563 -> 2665[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2564 -> 30[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2564[label="vyw590 < vyw600",fontsize=16,color="magenta"];2564 -> 2666[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2564 -> 2667[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2565 -> 31[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2565[label="vyw590 < vyw600",fontsize=16,color="magenta"];2565 -> 2668[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2565 -> 2669[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2566 -> 32[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2566[label="vyw590 < vyw600",fontsize=16,color="magenta"];2566 -> 2670[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2566 -> 2671[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2567 -> 33[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2567[label="vyw590 < vyw600",fontsize=16,color="magenta"];2567 -> 2672[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2567 -> 2673[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2568 -> 34[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2568[label="vyw590 < vyw600",fontsize=16,color="magenta"];2568 -> 2674[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2568 -> 2675[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2569[label="vyw591 <= vyw601",fontsize=16,color="blue",shape="box"];3727[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3727[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3727 -> 2676[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3728[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3728[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3728 -> 2677[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3729[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3729[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3729 -> 2678[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3730[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3730[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3730 -> 2679[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3731[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3731[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3731 -> 2680[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3732[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3732[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3732 -> 2681[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3733[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3733[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3733 -> 2682[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3734[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3734[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3734 -> 2683[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3735[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3735[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3735 -> 2684[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3736[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3736[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3736 -> 2685[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3737[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3737[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3737 -> 2686[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3738[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3738[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3738 -> 2687[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3739[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3739[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3739 -> 2688[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3740[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3740[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3740 -> 2689[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2570[label="vyw590 == vyw600",fontsize=16,color="blue",shape="box"];3741[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3741[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3741 -> 2690[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3742[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3742[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3742 -> 2691[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3743[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3743[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3743 -> 2692[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3744[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3744[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3744 -> 2693[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3745[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3745[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3745 -> 2694[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3746[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3746[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3746 -> 2695[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3747[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3747[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3747 -> 2696[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3748[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3748[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3748 -> 2697[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3749[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3749[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3749 -> 2698[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3750[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3750[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3750 -> 2699[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3751[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3751[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3751 -> 2700[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3752[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3752[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3752 -> 2701[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3753[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3753[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3753 -> 2702[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3754[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3754[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3754 -> 2703[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2571[label="vyw600",fontsize=16,color="green",shape="box"];2572[label="vyw590",fontsize=16,color="green",shape="box"];2573[label="vyw600",fontsize=16,color="green",shape="box"];2574[label="vyw590",fontsize=16,color="green",shape="box"];2575[label="vyw600",fontsize=16,color="green",shape="box"];2576[label="vyw590",fontsize=16,color="green",shape="box"];2577[label="vyw600",fontsize=16,color="green",shape="box"];2578[label="vyw590",fontsize=16,color="green",shape="box"];2579[label="vyw600",fontsize=16,color="green",shape="box"];2580[label="vyw590",fontsize=16,color="green",shape="box"];2581[label="vyw600",fontsize=16,color="green",shape="box"];2582[label="vyw590",fontsize=16,color="green",shape="box"];2583[label="vyw600",fontsize=16,color="green",shape="box"];2584[label="vyw590",fontsize=16,color="green",shape="box"];2585[label="vyw600",fontsize=16,color="green",shape="box"];2586[label="vyw590",fontsize=16,color="green",shape="box"];2587[label="vyw600",fontsize=16,color="green",shape="box"];2588[label="vyw590",fontsize=16,color="green",shape="box"];2589[label="vyw600",fontsize=16,color="green",shape="box"];2590[label="vyw590",fontsize=16,color="green",shape="box"];2591[label="vyw600",fontsize=16,color="green",shape="box"];2592[label="vyw590",fontsize=16,color="green",shape="box"];2593[label="vyw600",fontsize=16,color="green",shape="box"];2594[label="vyw590",fontsize=16,color="green",shape="box"];2595[label="vyw600",fontsize=16,color="green",shape="box"];2596[label="vyw590",fontsize=16,color="green",shape="box"];2597[label="vyw600",fontsize=16,color="green",shape="box"];2598[label="vyw590",fontsize=16,color="green",shape="box"];2599[label="GT",fontsize=16,color="green",shape="box"];2600[label="Succ (Succ (primPlusNat vyw1930 vyw3100))",fontsize=16,color="green",shape="box"];2600 -> 2704[label="",style="dashed", color="green", weight=3]; 29.96/14.54 2601[label="Succ vyw3100",fontsize=16,color="green",shape="box"];2602[label="vyw600",fontsize=16,color="green",shape="box"];2603[label="vyw590",fontsize=16,color="green",shape="box"];2604[label="vyw600",fontsize=16,color="green",shape="box"];2605[label="vyw590",fontsize=16,color="green",shape="box"];2606[label="vyw600",fontsize=16,color="green",shape="box"];2607[label="vyw590",fontsize=16,color="green",shape="box"];2608[label="vyw600",fontsize=16,color="green",shape="box"];2609[label="vyw590",fontsize=16,color="green",shape="box"];2610[label="vyw600",fontsize=16,color="green",shape="box"];2611[label="vyw590",fontsize=16,color="green",shape="box"];2612[label="vyw600",fontsize=16,color="green",shape="box"];2613[label="vyw590",fontsize=16,color="green",shape="box"];2614[label="vyw600",fontsize=16,color="green",shape="box"];2615[label="vyw590",fontsize=16,color="green",shape="box"];2616[label="vyw600",fontsize=16,color="green",shape="box"];2617[label="vyw590",fontsize=16,color="green",shape="box"];2618[label="vyw600",fontsize=16,color="green",shape="box"];2619[label="vyw590",fontsize=16,color="green",shape="box"];2620[label="vyw600",fontsize=16,color="green",shape="box"];2621[label="vyw590",fontsize=16,color="green",shape="box"];2622[label="vyw600",fontsize=16,color="green",shape="box"];2623[label="vyw590",fontsize=16,color="green",shape="box"];2624[label="vyw600",fontsize=16,color="green",shape="box"];2625[label="vyw590",fontsize=16,color="green",shape="box"];2626[label="vyw600",fontsize=16,color="green",shape="box"];2627[label="vyw590",fontsize=16,color="green",shape="box"];2628[label="vyw600",fontsize=16,color="green",shape="box"];2629[label="vyw590",fontsize=16,color="green",shape="box"];2630[label="vyw591 < vyw601",fontsize=16,color="blue",shape="box"];3755[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3755[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3755 -> 2705[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3756[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3756[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3756 -> 2706[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3757[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3757[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3757 -> 2707[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3758[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3758[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3758 -> 2708[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3759[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3759[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3759 -> 2709[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3760[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3760[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3760 -> 2710[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3761[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3761[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3761 -> 2711[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3762[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3762[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3762 -> 2712[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3763[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3763[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3763 -> 2713[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3764[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3764[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3764 -> 2714[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3765[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3765[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3765 -> 2715[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3766[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3766[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3766 -> 2716[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3767[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3767[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3767 -> 2717[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3768[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3768[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3768 -> 2718[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2631 -> 1080[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2631[label="vyw591 == vyw601 && vyw592 <= vyw602",fontsize=16,color="magenta"];2631 -> 2719[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2631 -> 2720[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2632 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2632[label="vyw590 == vyw600",fontsize=16,color="magenta"];2632 -> 2721[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2632 -> 2722[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2633 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2633[label="vyw590 == vyw600",fontsize=16,color="magenta"];2633 -> 2723[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2633 -> 2724[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2634 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2634[label="vyw590 == vyw600",fontsize=16,color="magenta"];2634 -> 2725[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2634 -> 2726[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2635 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2635[label="vyw590 == vyw600",fontsize=16,color="magenta"];2635 -> 2727[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2635 -> 2728[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2636 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2636[label="vyw590 == vyw600",fontsize=16,color="magenta"];2636 -> 2729[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2636 -> 2730[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2637 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2637[label="vyw590 == vyw600",fontsize=16,color="magenta"];2637 -> 2731[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2637 -> 2732[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2638 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2638[label="vyw590 == vyw600",fontsize=16,color="magenta"];2638 -> 2733[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2638 -> 2734[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2639 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2639[label="vyw590 == vyw600",fontsize=16,color="magenta"];2639 -> 2735[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2639 -> 2736[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2640 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2640[label="vyw590 == vyw600",fontsize=16,color="magenta"];2640 -> 2737[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2640 -> 2738[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2641 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2641[label="vyw590 == vyw600",fontsize=16,color="magenta"];2641 -> 2739[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2641 -> 2740[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2642 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2642[label="vyw590 == vyw600",fontsize=16,color="magenta"];2642 -> 2741[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2642 -> 2742[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2643 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2643[label="vyw590 == vyw600",fontsize=16,color="magenta"];2643 -> 2743[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2643 -> 2744[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2644 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2644[label="vyw590 == vyw600",fontsize=16,color="magenta"];2644 -> 2745[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2644 -> 2746[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2645 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2645[label="vyw590 == vyw600",fontsize=16,color="magenta"];2645 -> 2747[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2645 -> 2748[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2646[label="True",fontsize=16,color="green",shape="box"];2647[label="False",fontsize=16,color="green",shape="box"];2648[label="vyw600",fontsize=16,color="green",shape="box"];2649[label="vyw590",fontsize=16,color="green",shape="box"];2650[label="vyw600",fontsize=16,color="green",shape="box"];2651[label="vyw590",fontsize=16,color="green",shape="box"];2652[label="vyw600",fontsize=16,color="green",shape="box"];2653[label="vyw590",fontsize=16,color="green",shape="box"];2654[label="vyw600",fontsize=16,color="green",shape="box"];2655[label="vyw590",fontsize=16,color="green",shape="box"];2656[label="vyw600",fontsize=16,color="green",shape="box"];2657[label="vyw590",fontsize=16,color="green",shape="box"];2658[label="vyw600",fontsize=16,color="green",shape="box"];2659[label="vyw590",fontsize=16,color="green",shape="box"];2660[label="vyw600",fontsize=16,color="green",shape="box"];2661[label="vyw590",fontsize=16,color="green",shape="box"];2662[label="vyw600",fontsize=16,color="green",shape="box"];2663[label="vyw590",fontsize=16,color="green",shape="box"];2664[label="vyw600",fontsize=16,color="green",shape="box"];2665[label="vyw590",fontsize=16,color="green",shape="box"];2666[label="vyw600",fontsize=16,color="green",shape="box"];2667[label="vyw590",fontsize=16,color="green",shape="box"];2668[label="vyw600",fontsize=16,color="green",shape="box"];2669[label="vyw590",fontsize=16,color="green",shape="box"];2670[label="vyw600",fontsize=16,color="green",shape="box"];2671[label="vyw590",fontsize=16,color="green",shape="box"];2672[label="vyw600",fontsize=16,color="green",shape="box"];2673[label="vyw590",fontsize=16,color="green",shape="box"];2674[label="vyw600",fontsize=16,color="green",shape="box"];2675[label="vyw590",fontsize=16,color="green",shape="box"];2676 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2676[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2676 -> 2749[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2676 -> 2750[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2677 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2677[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2677 -> 2751[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2677 -> 2752[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2678 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2678[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2678 -> 2753[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2678 -> 2754[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2679 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2679[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2679 -> 2755[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2679 -> 2756[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2680 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2680[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2680 -> 2757[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2680 -> 2758[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2681 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2681[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2681 -> 2759[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2681 -> 2760[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2682 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2682[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2682 -> 2761[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2682 -> 2762[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2683 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2683[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2683 -> 2763[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2683 -> 2764[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2684 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2684[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2684 -> 2765[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2684 -> 2766[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2685 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2685[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2685 -> 2767[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2685 -> 2768[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2686 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2686[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2686 -> 2769[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2686 -> 2770[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2687 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2687[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2687 -> 2771[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2687 -> 2772[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2688 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2688[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2688 -> 2773[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2688 -> 2774[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2689 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2689[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2689 -> 2775[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2689 -> 2776[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2690 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2690[label="vyw590 == vyw600",fontsize=16,color="magenta"];2690 -> 2777[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2690 -> 2778[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2691 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2691[label="vyw590 == vyw600",fontsize=16,color="magenta"];2691 -> 2779[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2691 -> 2780[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2692 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2692[label="vyw590 == vyw600",fontsize=16,color="magenta"];2692 -> 2781[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2692 -> 2782[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2693 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2693[label="vyw590 == vyw600",fontsize=16,color="magenta"];2693 -> 2783[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2693 -> 2784[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2694 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2694[label="vyw590 == vyw600",fontsize=16,color="magenta"];2694 -> 2785[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2694 -> 2786[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2695 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2695[label="vyw590 == vyw600",fontsize=16,color="magenta"];2695 -> 2787[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2695 -> 2788[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2696 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2696[label="vyw590 == vyw600",fontsize=16,color="magenta"];2696 -> 2789[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2696 -> 2790[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2697 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2697[label="vyw590 == vyw600",fontsize=16,color="magenta"];2697 -> 2791[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2697 -> 2792[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2698 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2698[label="vyw590 == vyw600",fontsize=16,color="magenta"];2698 -> 2793[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2698 -> 2794[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2699 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2699[label="vyw590 == vyw600",fontsize=16,color="magenta"];2699 -> 2795[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2699 -> 2796[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2700 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2700[label="vyw590 == vyw600",fontsize=16,color="magenta"];2700 -> 2797[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2700 -> 2798[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2701 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2701[label="vyw590 == vyw600",fontsize=16,color="magenta"];2701 -> 2799[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2701 -> 2800[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2702 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2702[label="vyw590 == vyw600",fontsize=16,color="magenta"];2702 -> 2801[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2702 -> 2802[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2703 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2703[label="vyw590 == vyw600",fontsize=16,color="magenta"];2703 -> 2803[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2703 -> 2804[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2704[label="primPlusNat vyw1930 vyw3100",fontsize=16,color="burlywood",shape="triangle"];3769[label="vyw1930/Succ vyw19300",fontsize=10,color="white",style="solid",shape="box"];2704 -> 3769[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3769 -> 2805[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 3770[label="vyw1930/Zero",fontsize=10,color="white",style="solid",shape="box"];2704 -> 3770[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3770 -> 2806[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 2705 -> 21[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2705[label="vyw591 < vyw601",fontsize=16,color="magenta"];2705 -> 2807[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2705 -> 2808[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2706 -> 22[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2706[label="vyw591 < vyw601",fontsize=16,color="magenta"];2706 -> 2809[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2706 -> 2810[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2707 -> 23[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2707[label="vyw591 < vyw601",fontsize=16,color="magenta"];2707 -> 2811[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2707 -> 2812[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2708 -> 24[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2708[label="vyw591 < vyw601",fontsize=16,color="magenta"];2708 -> 2813[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2708 -> 2814[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2709 -> 25[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2709[label="vyw591 < vyw601",fontsize=16,color="magenta"];2709 -> 2815[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2709 -> 2816[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2710 -> 26[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2710[label="vyw591 < vyw601",fontsize=16,color="magenta"];2710 -> 2817[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2710 -> 2818[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2711 -> 27[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2711[label="vyw591 < vyw601",fontsize=16,color="magenta"];2711 -> 2819[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2711 -> 2820[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2712 -> 28[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2712[label="vyw591 < vyw601",fontsize=16,color="magenta"];2712 -> 2821[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2712 -> 2822[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2713 -> 29[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2713[label="vyw591 < vyw601",fontsize=16,color="magenta"];2713 -> 2823[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2713 -> 2824[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2714 -> 30[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2714[label="vyw591 < vyw601",fontsize=16,color="magenta"];2714 -> 2825[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2714 -> 2826[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2715 -> 31[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2715[label="vyw591 < vyw601",fontsize=16,color="magenta"];2715 -> 2827[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2715 -> 2828[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2716 -> 32[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2716[label="vyw591 < vyw601",fontsize=16,color="magenta"];2716 -> 2829[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2716 -> 2830[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2717 -> 33[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2717[label="vyw591 < vyw601",fontsize=16,color="magenta"];2717 -> 2831[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2717 -> 2832[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2718 -> 34[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2718[label="vyw591 < vyw601",fontsize=16,color="magenta"];2718 -> 2833[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2718 -> 2834[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2719[label="vyw592 <= vyw602",fontsize=16,color="blue",shape="box"];3771[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3771[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3771 -> 2835[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3772[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3772[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3772 -> 2836[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3773[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3773[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3773 -> 2837[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3774[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3774[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3774 -> 2838[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3775[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3775[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3775 -> 2839[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3776[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3776[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3776 -> 2840[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3777[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3777[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3777 -> 2841[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3778[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3778[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3778 -> 2842[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3779[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3779[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3779 -> 2843[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3780[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3780[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3780 -> 2844[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3781[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3781[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3781 -> 2845[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3782[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3782[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3782 -> 2846[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3783[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3783[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3783 -> 2847[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3784[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3784[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3784 -> 2848[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2720[label="vyw591 == vyw601",fontsize=16,color="blue",shape="box"];3785[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3785[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3785 -> 2849[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3786[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3786[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3786 -> 2850[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3787[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3787[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3787 -> 2851[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3788[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3788[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3788 -> 2852[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3789[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3789[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3789 -> 2853[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3790[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3790[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3790 -> 2854[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3791[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3791[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3791 -> 2855[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3792[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3792[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3792 -> 2856[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3793[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3793[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3793 -> 2857[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3794[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3794[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3794 -> 2858[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3795[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3795[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3795 -> 2859[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3796[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3796[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3796 -> 2860[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3797[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3797[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3797 -> 2861[label="",style="solid", color="blue", weight=3]; 29.96/14.54 3798[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3798[label="",style="solid", color="blue", weight=9]; 29.96/14.54 3798 -> 2862[label="",style="solid", color="blue", weight=3]; 29.96/14.54 2721[label="vyw600",fontsize=16,color="green",shape="box"];2722[label="vyw590",fontsize=16,color="green",shape="box"];2723[label="vyw600",fontsize=16,color="green",shape="box"];2724[label="vyw590",fontsize=16,color="green",shape="box"];2725[label="vyw600",fontsize=16,color="green",shape="box"];2726[label="vyw590",fontsize=16,color="green",shape="box"];2727[label="vyw600",fontsize=16,color="green",shape="box"];2728[label="vyw590",fontsize=16,color="green",shape="box"];2729[label="vyw600",fontsize=16,color="green",shape="box"];2730[label="vyw590",fontsize=16,color="green",shape="box"];2731[label="vyw600",fontsize=16,color="green",shape="box"];2732[label="vyw590",fontsize=16,color="green",shape="box"];2733[label="vyw600",fontsize=16,color="green",shape="box"];2734[label="vyw590",fontsize=16,color="green",shape="box"];2735[label="vyw600",fontsize=16,color="green",shape="box"];2736[label="vyw590",fontsize=16,color="green",shape="box"];2737[label="vyw600",fontsize=16,color="green",shape="box"];2738[label="vyw590",fontsize=16,color="green",shape="box"];2739[label="vyw600",fontsize=16,color="green",shape="box"];2740[label="vyw590",fontsize=16,color="green",shape="box"];2741[label="vyw600",fontsize=16,color="green",shape="box"];2742[label="vyw590",fontsize=16,color="green",shape="box"];2743[label="vyw600",fontsize=16,color="green",shape="box"];2744[label="vyw590",fontsize=16,color="green",shape="box"];2745[label="vyw600",fontsize=16,color="green",shape="box"];2746[label="vyw590",fontsize=16,color="green",shape="box"];2747[label="vyw600",fontsize=16,color="green",shape="box"];2748[label="vyw590",fontsize=16,color="green",shape="box"];2749[label="vyw601",fontsize=16,color="green",shape="box"];2750[label="vyw591",fontsize=16,color="green",shape="box"];2751[label="vyw601",fontsize=16,color="green",shape="box"];2752[label="vyw591",fontsize=16,color="green",shape="box"];2753[label="vyw601",fontsize=16,color="green",shape="box"];2754[label="vyw591",fontsize=16,color="green",shape="box"];2755[label="vyw601",fontsize=16,color="green",shape="box"];2756[label="vyw591",fontsize=16,color="green",shape="box"];2757[label="vyw601",fontsize=16,color="green",shape="box"];2758[label="vyw591",fontsize=16,color="green",shape="box"];2759[label="vyw601",fontsize=16,color="green",shape="box"];2760[label="vyw591",fontsize=16,color="green",shape="box"];2761[label="vyw601",fontsize=16,color="green",shape="box"];2762[label="vyw591",fontsize=16,color="green",shape="box"];2763[label="vyw601",fontsize=16,color="green",shape="box"];2764[label="vyw591",fontsize=16,color="green",shape="box"];2765[label="vyw601",fontsize=16,color="green",shape="box"];2766[label="vyw591",fontsize=16,color="green",shape="box"];2767[label="vyw601",fontsize=16,color="green",shape="box"];2768[label="vyw591",fontsize=16,color="green",shape="box"];2769[label="vyw601",fontsize=16,color="green",shape="box"];2770[label="vyw591",fontsize=16,color="green",shape="box"];2771[label="vyw601",fontsize=16,color="green",shape="box"];2772[label="vyw591",fontsize=16,color="green",shape="box"];2773[label="vyw601",fontsize=16,color="green",shape="box"];2774[label="vyw591",fontsize=16,color="green",shape="box"];2775[label="vyw601",fontsize=16,color="green",shape="box"];2776[label="vyw591",fontsize=16,color="green",shape="box"];2777[label="vyw600",fontsize=16,color="green",shape="box"];2778[label="vyw590",fontsize=16,color="green",shape="box"];2779[label="vyw600",fontsize=16,color="green",shape="box"];2780[label="vyw590",fontsize=16,color="green",shape="box"];2781[label="vyw600",fontsize=16,color="green",shape="box"];2782[label="vyw590",fontsize=16,color="green",shape="box"];2783[label="vyw600",fontsize=16,color="green",shape="box"];2784[label="vyw590",fontsize=16,color="green",shape="box"];2785[label="vyw600",fontsize=16,color="green",shape="box"];2786[label="vyw590",fontsize=16,color="green",shape="box"];2787[label="vyw600",fontsize=16,color="green",shape="box"];2788[label="vyw590",fontsize=16,color="green",shape="box"];2789[label="vyw600",fontsize=16,color="green",shape="box"];2790[label="vyw590",fontsize=16,color="green",shape="box"];2791[label="vyw600",fontsize=16,color="green",shape="box"];2792[label="vyw590",fontsize=16,color="green",shape="box"];2793[label="vyw600",fontsize=16,color="green",shape="box"];2794[label="vyw590",fontsize=16,color="green",shape="box"];2795[label="vyw600",fontsize=16,color="green",shape="box"];2796[label="vyw590",fontsize=16,color="green",shape="box"];2797[label="vyw600",fontsize=16,color="green",shape="box"];2798[label="vyw590",fontsize=16,color="green",shape="box"];2799[label="vyw600",fontsize=16,color="green",shape="box"];2800[label="vyw590",fontsize=16,color="green",shape="box"];2801[label="vyw600",fontsize=16,color="green",shape="box"];2802[label="vyw590",fontsize=16,color="green",shape="box"];2803[label="vyw600",fontsize=16,color="green",shape="box"];2804[label="vyw590",fontsize=16,color="green",shape="box"];2805[label="primPlusNat (Succ vyw19300) vyw3100",fontsize=16,color="burlywood",shape="box"];3799[label="vyw3100/Succ vyw31000",fontsize=10,color="white",style="solid",shape="box"];2805 -> 3799[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3799 -> 2863[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 3800[label="vyw3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2805 -> 3800[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3800 -> 2864[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 2806[label="primPlusNat Zero vyw3100",fontsize=16,color="burlywood",shape="box"];3801[label="vyw3100/Succ vyw31000",fontsize=10,color="white",style="solid",shape="box"];2806 -> 3801[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3801 -> 2865[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 3802[label="vyw3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2806 -> 3802[label="",style="solid", color="burlywood", weight=9]; 29.96/14.54 3802 -> 2866[label="",style="solid", color="burlywood", weight=3]; 29.96/14.54 2807[label="vyw601",fontsize=16,color="green",shape="box"];2808[label="vyw591",fontsize=16,color="green",shape="box"];2809[label="vyw601",fontsize=16,color="green",shape="box"];2810[label="vyw591",fontsize=16,color="green",shape="box"];2811[label="vyw601",fontsize=16,color="green",shape="box"];2812[label="vyw591",fontsize=16,color="green",shape="box"];2813[label="vyw601",fontsize=16,color="green",shape="box"];2814[label="vyw591",fontsize=16,color="green",shape="box"];2815[label="vyw601",fontsize=16,color="green",shape="box"];2816[label="vyw591",fontsize=16,color="green",shape="box"];2817[label="vyw601",fontsize=16,color="green",shape="box"];2818[label="vyw591",fontsize=16,color="green",shape="box"];2819[label="vyw601",fontsize=16,color="green",shape="box"];2820[label="vyw591",fontsize=16,color="green",shape="box"];2821[label="vyw601",fontsize=16,color="green",shape="box"];2822[label="vyw591",fontsize=16,color="green",shape="box"];2823[label="vyw601",fontsize=16,color="green",shape="box"];2824[label="vyw591",fontsize=16,color="green",shape="box"];2825[label="vyw601",fontsize=16,color="green",shape="box"];2826[label="vyw591",fontsize=16,color="green",shape="box"];2827[label="vyw601",fontsize=16,color="green",shape="box"];2828[label="vyw591",fontsize=16,color="green",shape="box"];2829[label="vyw601",fontsize=16,color="green",shape="box"];2830[label="vyw591",fontsize=16,color="green",shape="box"];2831[label="vyw601",fontsize=16,color="green",shape="box"];2832[label="vyw591",fontsize=16,color="green",shape="box"];2833[label="vyw601",fontsize=16,color="green",shape="box"];2834[label="vyw591",fontsize=16,color="green",shape="box"];2835 -> 1376[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2835[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2835 -> 2867[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2835 -> 2868[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2836 -> 1377[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2836[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2836 -> 2869[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2836 -> 2870[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2837 -> 1378[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2837[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2837 -> 2871[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2837 -> 2872[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2838 -> 1379[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2838[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2838 -> 2873[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2838 -> 2874[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2839 -> 1380[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2839[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2839 -> 2875[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2839 -> 2876[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2840 -> 1381[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2840[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2840 -> 2877[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2840 -> 2878[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2841 -> 1382[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2841[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2841 -> 2879[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2841 -> 2880[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2842 -> 1383[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2842[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2842 -> 2881[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2842 -> 2882[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2843 -> 1384[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2843[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2843 -> 2883[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2843 -> 2884[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2844 -> 1385[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2844[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2844 -> 2885[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2844 -> 2886[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2845 -> 1386[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2845[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2845 -> 2887[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2845 -> 2888[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2846 -> 1387[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2846[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2846 -> 2889[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2846 -> 2890[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2847 -> 1388[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2847[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2847 -> 2891[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2847 -> 2892[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2848 -> 1389[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2848[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2848 -> 2893[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2848 -> 2894[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2849 -> 517[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2849[label="vyw591 == vyw601",fontsize=16,color="magenta"];2849 -> 2895[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2849 -> 2896[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2850 -> 515[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2850[label="vyw591 == vyw601",fontsize=16,color="magenta"];2850 -> 2897[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2850 -> 2898[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2851 -> 519[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2851[label="vyw591 == vyw601",fontsize=16,color="magenta"];2851 -> 2899[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2851 -> 2900[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2852 -> 516[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2852[label="vyw591 == vyw601",fontsize=16,color="magenta"];2852 -> 2901[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2852 -> 2902[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2853 -> 514[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2853[label="vyw591 == vyw601",fontsize=16,color="magenta"];2853 -> 2903[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2853 -> 2904[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2854 -> 522[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2854[label="vyw591 == vyw601",fontsize=16,color="magenta"];2854 -> 2905[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2854 -> 2906[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2855 -> 527[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2855[label="vyw591 == vyw601",fontsize=16,color="magenta"];2855 -> 2907[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2855 -> 2908[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2856 -> 525[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2856[label="vyw591 == vyw601",fontsize=16,color="magenta"];2856 -> 2909[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2856 -> 2910[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2857 -> 524[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2857[label="vyw591 == vyw601",fontsize=16,color="magenta"];2857 -> 2911[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2857 -> 2912[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2858 -> 526[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2858[label="vyw591 == vyw601",fontsize=16,color="magenta"];2858 -> 2913[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2858 -> 2914[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2859 -> 520[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2859[label="vyw591 == vyw601",fontsize=16,color="magenta"];2859 -> 2915[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2859 -> 2916[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2860 -> 518[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2860[label="vyw591 == vyw601",fontsize=16,color="magenta"];2860 -> 2917[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2860 -> 2918[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2861 -> 521[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2861[label="vyw591 == vyw601",fontsize=16,color="magenta"];2861 -> 2919[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2861 -> 2920[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2862 -> 523[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2862[label="vyw591 == vyw601",fontsize=16,color="magenta"];2862 -> 2921[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2862 -> 2922[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2863[label="primPlusNat (Succ vyw19300) (Succ vyw31000)",fontsize=16,color="black",shape="box"];2863 -> 2923[label="",style="solid", color="black", weight=3]; 29.96/14.54 2864[label="primPlusNat (Succ vyw19300) Zero",fontsize=16,color="black",shape="box"];2864 -> 2924[label="",style="solid", color="black", weight=3]; 29.96/14.54 2865[label="primPlusNat Zero (Succ vyw31000)",fontsize=16,color="black",shape="box"];2865 -> 2925[label="",style="solid", color="black", weight=3]; 29.96/14.54 2866[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2866 -> 2926[label="",style="solid", color="black", weight=3]; 29.96/14.54 2867[label="vyw602",fontsize=16,color="green",shape="box"];2868[label="vyw592",fontsize=16,color="green",shape="box"];2869[label="vyw602",fontsize=16,color="green",shape="box"];2870[label="vyw592",fontsize=16,color="green",shape="box"];2871[label="vyw602",fontsize=16,color="green",shape="box"];2872[label="vyw592",fontsize=16,color="green",shape="box"];2873[label="vyw602",fontsize=16,color="green",shape="box"];2874[label="vyw592",fontsize=16,color="green",shape="box"];2875[label="vyw602",fontsize=16,color="green",shape="box"];2876[label="vyw592",fontsize=16,color="green",shape="box"];2877[label="vyw602",fontsize=16,color="green",shape="box"];2878[label="vyw592",fontsize=16,color="green",shape="box"];2879[label="vyw602",fontsize=16,color="green",shape="box"];2880[label="vyw592",fontsize=16,color="green",shape="box"];2881[label="vyw602",fontsize=16,color="green",shape="box"];2882[label="vyw592",fontsize=16,color="green",shape="box"];2883[label="vyw602",fontsize=16,color="green",shape="box"];2884[label="vyw592",fontsize=16,color="green",shape="box"];2885[label="vyw602",fontsize=16,color="green",shape="box"];2886[label="vyw592",fontsize=16,color="green",shape="box"];2887[label="vyw602",fontsize=16,color="green",shape="box"];2888[label="vyw592",fontsize=16,color="green",shape="box"];2889[label="vyw602",fontsize=16,color="green",shape="box"];2890[label="vyw592",fontsize=16,color="green",shape="box"];2891[label="vyw602",fontsize=16,color="green",shape="box"];2892[label="vyw592",fontsize=16,color="green",shape="box"];2893[label="vyw602",fontsize=16,color="green",shape="box"];2894[label="vyw592",fontsize=16,color="green",shape="box"];2895[label="vyw601",fontsize=16,color="green",shape="box"];2896[label="vyw591",fontsize=16,color="green",shape="box"];2897[label="vyw601",fontsize=16,color="green",shape="box"];2898[label="vyw591",fontsize=16,color="green",shape="box"];2899[label="vyw601",fontsize=16,color="green",shape="box"];2900[label="vyw591",fontsize=16,color="green",shape="box"];2901[label="vyw601",fontsize=16,color="green",shape="box"];2902[label="vyw591",fontsize=16,color="green",shape="box"];2903[label="vyw601",fontsize=16,color="green",shape="box"];2904[label="vyw591",fontsize=16,color="green",shape="box"];2905[label="vyw601",fontsize=16,color="green",shape="box"];2906[label="vyw591",fontsize=16,color="green",shape="box"];2907[label="vyw601",fontsize=16,color="green",shape="box"];2908[label="vyw591",fontsize=16,color="green",shape="box"];2909[label="vyw601",fontsize=16,color="green",shape="box"];2910[label="vyw591",fontsize=16,color="green",shape="box"];2911[label="vyw601",fontsize=16,color="green",shape="box"];2912[label="vyw591",fontsize=16,color="green",shape="box"];2913[label="vyw601",fontsize=16,color="green",shape="box"];2914[label="vyw591",fontsize=16,color="green",shape="box"];2915[label="vyw601",fontsize=16,color="green",shape="box"];2916[label="vyw591",fontsize=16,color="green",shape="box"];2917[label="vyw601",fontsize=16,color="green",shape="box"];2918[label="vyw591",fontsize=16,color="green",shape="box"];2919[label="vyw601",fontsize=16,color="green",shape="box"];2920[label="vyw591",fontsize=16,color="green",shape="box"];2921[label="vyw601",fontsize=16,color="green",shape="box"];2922[label="vyw591",fontsize=16,color="green",shape="box"];2923[label="Succ (Succ (primPlusNat vyw19300 vyw31000))",fontsize=16,color="green",shape="box"];2923 -> 2927[label="",style="dashed", color="green", weight=3]; 29.96/14.54 2924[label="Succ vyw19300",fontsize=16,color="green",shape="box"];2925[label="Succ vyw31000",fontsize=16,color="green",shape="box"];2926[label="Zero",fontsize=16,color="green",shape="box"];2927 -> 2704[label="",style="dashed", color="red", weight=0]; 29.96/14.54 2927[label="primPlusNat vyw19300 vyw31000",fontsize=16,color="magenta"];2927 -> 2928[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2927 -> 2929[label="",style="dashed", color="magenta", weight=3]; 29.96/14.54 2928[label="vyw19300",fontsize=16,color="green",shape="box"];2929[label="vyw31000",fontsize=16,color="green",shape="box"];} 29.96/14.54 29.96/14.54 ---------------------------------------- 29.96/14.54 29.96/14.54 (16) 29.96/14.54 Complex Obligation (AND) 29.96/14.54 29.96/14.54 ---------------------------------------- 29.96/14.54 29.96/14.54 (17) 29.96/14.54 Obligation: 29.96/14.54 Q DP problem: 29.96/14.54 The TRS P consists of the following rules: 29.96/14.54 29.96/14.54 new_primCmpNat(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat(vyw300, vyw4000) 29.96/14.54 29.96/14.54 R is empty. 29.96/14.54 Q is empty. 29.96/14.54 We have to consider all minimal (P,Q,R)-chains. 29.96/14.54 ---------------------------------------- 29.96/14.54 29.96/14.54 (18) QDPSizeChangeProof (EQUIVALENT) 29.96/14.54 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. 29.96/14.54 29.96/14.54 From the DPs we obtained the following set of size-change graphs: 29.96/14.54 *new_primCmpNat(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat(vyw300, vyw4000) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2 29.96/14.54 29.96/14.54 29.96/14.54 ---------------------------------------- 29.96/14.54 29.96/14.54 (19) 29.96/14.54 YES 29.96/14.54 29.96/14.54 ---------------------------------------- 29.96/14.54 29.96/14.54 (20) 29.96/14.54 Obligation: 29.96/14.54 Q DP problem: 29.96/14.54 The TRS P consists of the following rules: 29.96/14.54 29.96/14.54 new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_Either, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) 29.96/14.54 new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_Either, gg), gh), gc) -> new_esEs1(vyw300, vyw4000, gg, gh) 29.96/14.54 new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bg), bh)) -> new_esEs2(vyw300, vyw4000, bg, bh) 29.96/14.54 new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_Maybe, bae)) -> new_esEs3(vyw300, vyw4000, bae) 29.96/14.54 new_esEs3(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(vyw301, vyw4001, dh, ea, eb) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(vyw301, vyw4001, eg) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_Maybe, bbg)) -> new_esEs3(vyw301, vyw4001, bbg) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(vyw301, vyw4001, bbe, bbf) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_[], bag)) -> new_esEs(vyw301, vyw4001, bag) 29.96/14.54 new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), h) -> new_esEs(vyw301, vyw4001, h) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(vyw302, vyw4002, de) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, bda), bca) -> new_esEs3(vyw300, vyw4000, bda) 29.96/14.54 new_esEs3(Just(vyw300), Just(vyw4000), app(ty_Maybe, beb)) -> new_esEs3(vyw300, vyw4000, beb) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, fd), ff), cc, dg) -> new_esEs1(vyw300, vyw4000, fd, ff) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_@2, dc), dd)) -> new_esEs2(vyw302, vyw4002, dc, dd) 29.96/14.54 new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], ba)) -> new_esEs(vyw300, vyw4000, ba) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_@2, ee), ef), dg) -> new_esEs2(vyw301, vyw4001, ee, ef) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(vyw300, vyw4000, ga) 29.96/14.54 new_esEs1(Left(vyw300), Left(vyw4000), app(ty_Maybe, hc), gc) -> new_esEs3(vyw300, vyw4000, hc) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, bcg), bch), bca) -> new_esEs2(vyw300, vyw4000, bcg, bch) 29.96/14.54 new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_@2, bac), bad)) -> new_esEs2(vyw300, vyw4000, bac, bad) 29.96/14.54 new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(vyw300, vyw4000, bb, bc, bd) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw302, vyw4002, ce, cf, cg) 29.96/14.54 new_esEs1(Left(vyw300), Left(vyw4000), app(ty_[], gb), gc) -> new_esEs(vyw300, vyw4000, gb) 29.96/14.54 new_esEs1(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_esEs0(vyw300, vyw4000, gd, ge, gf) 29.96/14.54 new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_@2, bdh), bea)) -> new_esEs2(vyw300, vyw4000, bdh, bea) 29.96/14.54 new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, be), bf)) -> new_esEs1(vyw300, vyw4000, be, bf) 29.96/14.54 new_esEs3(Just(vyw300), Just(vyw4000), app(ty_[], bdb)) -> new_esEs(vyw300, vyw4000, bdb) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], eh), cc, dg) -> new_esEs(vyw300, vyw4000, eh) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_[], df), dg) -> new_esEs(vyw301, vyw4001, df) 29.96/14.54 new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, ca)) -> new_esEs3(vyw300, vyw4000, ca) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_[], cd)) -> new_esEs(vyw302, vyw4002, cd) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_Either, ec), ed), dg) -> new_esEs1(vyw301, vyw4001, ec, ed) 29.96/14.54 new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_@2, ha), hb), gc) -> new_esEs2(vyw300, vyw4000, ha, hb) 29.96/14.54 new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw300, vyw4000, hf, hg, hh) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bbh), bca) -> new_esEs(vyw300, vyw4000, bbh) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, fg), fh), cc, dg) -> new_esEs2(vyw300, vyw4000, fg, fh) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw300, vyw4000, bcb, bcc, bcd) 29.96/14.54 new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_[], he)) -> new_esEs(vyw300, vyw4000, he) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bce), bcf), bca) -> new_esEs1(vyw300, vyw4000, bce, bcf) 29.96/14.54 new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(vyw300, vyw4000, baa, bab) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_Either, bbc), bbd)) -> new_esEs1(vyw301, vyw4001, bbc, bbd) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(vyw300, vyw4000, fa, fb, fc) 29.96/14.54 new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_Either, da), db)) -> new_esEs1(vyw302, vyw4002, da, db) 29.96/14.54 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw301, vyw4001, bah, bba, bbb) 29.96/14.54 29.96/14.54 R is empty. 29.96/14.54 Q is empty. 29.96/14.54 We have to consider all minimal (P,Q,R)-chains. 29.96/14.54 ---------------------------------------- 29.96/14.54 29.96/14.54 (21) QDPSizeChangeProof (EQUIVALENT) 29.96/14.54 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. 29.96/14.54 29.96/14.54 From the DPs we obtained the following set of size-change graphs: 29.96/14.54 *new_esEs3(Just(vyw300), Just(vyw4000), app(ty_Maybe, beb)) -> new_esEs3(vyw300, vyw4000, beb) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_Either, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs3(Just(vyw300), Just(vyw4000), app(ty_[], bdb)) -> new_esEs(vyw300, vyw4000, bdb) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, ca)) -> new_esEs3(vyw300, vyw4000, ca) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, be), bf)) -> new_esEs1(vyw300, vyw4000, be, bf) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_@2, bdh), bea)) -> new_esEs2(vyw300, vyw4000, bdh, bea) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(vyw300, vyw4000, bb, bc, bd) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bg), bh)) -> new_esEs2(vyw300, vyw4000, bg, bh) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_Maybe, bae)) -> new_esEs3(vyw300, vyw4000, bae) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Left(vyw300), Left(vyw4000), app(ty_Maybe, hc), gc) -> new_esEs3(vyw300, vyw4000, hc) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_Either, gg), gh), gc) -> new_esEs1(vyw300, vyw4000, gg, gh) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(vyw300, vyw4000, baa, bab) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Left(vyw300), Left(vyw4000), app(ty_[], gb), gc) -> new_esEs(vyw300, vyw4000, gb) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_[], he)) -> new_esEs(vyw300, vyw4000, he) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_esEs0(vyw300, vyw4000, gd, ge, gf) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw300, vyw4000, hf, hg, hh) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_@2, bac), bad)) -> new_esEs2(vyw300, vyw4000, bac, bad) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_@2, ha), hb), gc) -> new_esEs2(vyw300, vyw4000, ha, hb) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_Maybe, bbg)) -> new_esEs3(vyw301, vyw4001, bbg) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, bda), bca) -> new_esEs3(vyw300, vyw4000, bda) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(vyw301, vyw4001, eg) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(vyw302, vyw4002, de) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(vyw300, vyw4000, ga) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bce), bcf), bca) -> new_esEs1(vyw300, vyw4000, bce, bcf) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_Either, bbc), bbd)) -> new_esEs1(vyw301, vyw4001, bbc, bbd) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, fd), ff), cc, dg) -> new_esEs1(vyw300, vyw4000, fd, ff) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_Either, ec), ed), dg) -> new_esEs1(vyw301, vyw4001, ec, ed) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_Either, da), db)) -> new_esEs1(vyw302, vyw4002, da, db) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_[], bag)) -> new_esEs(vyw301, vyw4001, bag) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bbh), bca) -> new_esEs(vyw300, vyw4000, bbh) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw300, vyw4000, bcb, bcc, bcd) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw301, vyw4001, bah, bba, bbb) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(vyw301, vyw4001, bbe, bbf) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, bcg), bch), bca) -> new_esEs2(vyw300, vyw4000, bcg, bch) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], eh), cc, dg) -> new_esEs(vyw300, vyw4000, eh) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_[], df), dg) -> new_esEs(vyw301, vyw4001, df) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_[], cd)) -> new_esEs(vyw302, vyw4002, cd) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), h) -> new_esEs(vyw301, vyw4001, h) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], ba)) -> new_esEs(vyw300, vyw4000, ba) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(vyw301, vyw4001, dh, ea, eb) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw302, vyw4002, ce, cf, cg) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(vyw300, vyw4000, fa, fb, fc) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_@2, dc), dd)) -> new_esEs2(vyw302, vyw4002, dc, dd) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_@2, ee), ef), dg) -> new_esEs2(vyw301, vyw4001, ee, ef) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.54 29.96/14.54 29.96/14.54 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, fg), fh), cc, dg) -> new_esEs2(vyw300, vyw4000, fg, fh) 29.96/14.54 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.54 29.96/14.54 29.96/14.54 ---------------------------------------- 29.96/14.54 29.96/14.54 (22) 29.96/14.54 YES 29.96/14.54 29.96/14.54 ---------------------------------------- 29.96/14.54 29.96/14.54 (23) 29.96/14.54 Obligation: 29.96/14.54 Q DP problem: 29.96/14.54 The TRS P consists of the following rules: 29.96/14.54 29.96/14.54 new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_elemFM01(vyw16, vyw18, h, ba) 29.96/14.54 new_elemFM01(Branch(vyw40, vyw41, vyw42, vyw43, vyw44), vyw3, bd, be) -> new_elemFM0(vyw40, vyw41, vyw42, vyw43, vyw44, vyw3, new_lt24(vyw3, vyw40, be), bd, be) 29.96/14.54 new_elemFM00(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_elemFM01(vyw32, vyw33, bb, bc) 29.96/14.54 new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) 29.96/14.54 29.96/14.54 The TRS R consists of the following rules: 29.96/14.54 29.96/14.54 new_ltEs7(Left(vyw590), Left(vyw600), app(app(ty_Either, bhe), bhf), bhd) -> new_ltEs7(vyw590, vyw600, bhe, bhf) 29.96/14.54 new_esEs27(vyw590, vyw600, ty_Double) -> new_esEs15(vyw590, vyw600) 29.96/14.54 new_ltEs12(Just(vyw590), Just(vyw600), ty_Char) -> new_ltEs15(vyw590, vyw600) 29.96/14.54 new_esEs24(Just(vyw300), Just(vyw4000), app(app(ty_@2, ecc), ecd)) -> new_esEs21(vyw300, vyw4000, ecc, ecd) 29.96/14.54 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.96/14.54 new_gt(vyw18, vyw13, ty_@0) -> new_esEs41(new_compare32(vyw18, vyw13)) 29.96/14.54 new_esEs33(vyw301, vyw4001, app(ty_Ratio, ddg)) -> new_esEs23(vyw301, vyw4001, ddg) 29.96/14.54 new_lt20(vyw590, vyw600, ty_Float) -> new_lt15(vyw590, vyw600) 29.96/14.54 new_ltEs23(vyw89, vyw90, app(ty_Ratio, ebc)) -> new_ltEs13(vyw89, vyw90, ebc) 29.96/14.54 new_esEs24(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.54 new_lt21(vyw113, vyw115, app(app(ty_Either, dad), dae)) -> new_lt8(vyw113, vyw115, dad, dae) 29.96/14.54 new_lt5(vyw591, vyw601, app(ty_Maybe, ed)) -> new_lt13(vyw591, vyw601, ed) 29.96/14.54 new_pePe(True, vyw191) -> True 29.96/14.54 new_esEs10(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.54 new_esEs10(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.54 new_esEs33(vyw301, vyw4001, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs17(vyw301, vyw4001, dch, dda, ddb) 29.96/14.54 new_esEs19(Left(vyw300), Left(vyw4000), app(app(ty_@2, bcc), bcd), bbd) -> new_esEs21(vyw300, vyw4000, bcc, bcd) 29.96/14.54 new_ltEs24(vyw102, vyw105, app(app(ty_@2, fhf), fhg)) -> new_ltEs10(vyw102, vyw105, fhf, fhg) 29.96/14.54 new_compare28(@2(vyw30, vyw31), @2(vyw400, vyw401), ccd, cce) -> new_compare210(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, ccd), new_esEs9(vyw31, vyw401, cce)), ccd, cce) 29.96/14.54 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.96/14.54 new_esEs27(vyw590, vyw600, app(ty_[], cf)) -> new_esEs16(vyw590, vyw600, cf) 29.96/14.54 new_lt23(vyw101, vyw104, app(app(ty_@2, fgd), fge)) -> new_lt11(vyw101, vyw104, fgd, fge) 29.96/14.54 new_esEs7(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.54 new_esEs28(vyw590, vyw600, ty_Char) -> new_esEs20(vyw590, vyw600) 29.96/14.54 new_esEs20(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) 29.96/14.54 new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, cdc, cdd, cde) -> GT 29.96/14.54 new_ltEs5(vyw592, vyw602, app(ty_Maybe, fg)) -> new_ltEs12(vyw592, vyw602, fg) 29.96/14.54 new_esEs40(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.54 new_esEs10(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.54 new_ltEs21(vyw66, vyw67, ty_Float) -> new_ltEs14(vyw66, vyw67) 29.96/14.54 new_esEs6(vyw30, vyw400, app(ty_[], fbd)) -> new_esEs16(vyw30, vyw400, fbd) 29.96/14.54 new_lt22(vyw100, vyw103, app(ty_Ratio, ffe)) -> new_lt14(vyw100, vyw103, ffe) 29.96/14.54 new_esEs35(vyw302, vyw4002, ty_@0) -> new_esEs22(vyw302, vyw4002) 29.96/14.54 new_ltEs24(vyw102, vyw105, app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs4(vyw102, vyw105, fgh, fha, fhb) 29.96/14.54 new_esEs40(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.54 new_esEs37(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.54 new_compare3([], [], ccc) -> EQ 29.96/14.54 new_lt24(vyw3, vyw40, app(ty_[], ccc)) -> new_lt9(vyw3, vyw40, ccc) 29.96/14.54 new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_@0) -> new_ltEs18(vyw590, vyw600) 29.96/14.54 new_ltEs8(vyw59, vyw60, cch) -> new_fsEs(new_compare3(vyw59, vyw60, cch)) 29.96/14.54 new_ltEs22(vyw114, vyw116, ty_Bool) -> new_ltEs9(vyw114, vyw116) 29.96/14.54 new_esEs19(Left(vyw300), Left(vyw4000), ty_Double, bbd) -> new_esEs15(vyw300, vyw4000) 29.96/14.54 new_compare6(Left(vyw30), Left(vyw400), bba, bbb) -> new_compare24(vyw30, vyw400, new_esEs7(vyw30, vyw400, bba), bba, bbb) 29.96/14.54 new_esEs35(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) 29.96/14.54 new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) 29.96/14.54 new_compare18(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), cbh, cca, ccb) -> new_compare211(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, cbh), new_asAs(new_esEs5(vyw31, vyw401, cca), new_esEs4(vyw32, vyw402, ccb))), cbh, cca, ccb) 29.96/14.54 new_esEs30(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) 29.96/14.54 new_lt7(vyw3, vyw40) -> new_esEs29(new_compare19(vyw3, vyw40)) 29.96/14.54 new_ltEs22(vyw114, vyw116, ty_Double) -> new_ltEs6(vyw114, vyw116) 29.96/14.54 new_gt(vyw18, vyw13, ty_Char) -> new_esEs41(new_compare30(vyw18, vyw13)) 29.96/14.54 new_not(True) -> False 29.96/14.54 new_esEs28(vyw590, vyw600, ty_Float) -> new_esEs12(vyw590, vyw600) 29.96/14.54 new_ltEs12(Just(vyw590), Just(vyw600), ty_Ordering) -> new_ltEs11(vyw590, vyw600) 29.96/14.54 new_esEs4(vyw32, vyw402, ty_Bool) -> new_esEs14(vyw32, vyw402) 29.96/14.54 new_esEs7(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.54 new_fsEs(vyw192) -> new_not(new_esEs25(vyw192, GT)) 29.96/14.54 new_ltEs19(vyw591, vyw601, ty_@0) -> new_ltEs18(vyw591, vyw601) 29.96/14.54 new_esEs35(vyw302, vyw4002, app(app(ty_@2, edh), eea)) -> new_esEs21(vyw302, vyw4002, edh, eea) 29.96/14.54 new_lt22(vyw100, vyw103, ty_Ordering) -> new_lt12(vyw100, vyw103) 29.96/14.54 new_ltEs23(vyw89, vyw90, ty_Char) -> new_ltEs15(vyw89, vyw90) 29.96/14.54 new_primCompAux00(vyw72, LT) -> LT 29.96/14.54 new_esEs38(vyw101, vyw104, app(ty_Ratio, fgg)) -> new_esEs23(vyw101, vyw104, fgg) 29.96/14.54 new_esEs35(vyw302, vyw4002, ty_Ordering) -> new_esEs25(vyw302, vyw4002) 29.96/14.54 new_esEs38(vyw101, vyw104, app(app(app(ty_@3, fff), ffg), ffh)) -> new_esEs17(vyw101, vyw104, fff, ffg, ffh) 29.96/14.54 new_esEs28(vyw590, vyw600, ty_Ordering) -> new_esEs25(vyw590, vyw600) 29.96/14.54 new_esEs28(vyw590, vyw600, app(app(ty_@2, ha), hb)) -> new_esEs21(vyw590, vyw600, ha, hb) 29.96/14.54 new_esEs10(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.54 new_ltEs24(vyw102, vyw105, ty_Integer) -> new_ltEs16(vyw102, vyw105) 29.96/14.54 new_ltEs20(vyw59, vyw60, app(app(ty_Either, cad), bhd)) -> new_ltEs7(vyw59, vyw60, cad, bhd) 29.96/14.54 new_primEqNat0(Succ(vyw3000), Zero) -> False 29.96/14.54 new_primEqNat0(Zero, Succ(vyw40000)) -> False 29.96/14.54 new_esEs32(vyw113, vyw115, app(ty_[], daf)) -> new_esEs16(vyw113, vyw115, daf) 29.96/14.54 new_esEs35(vyw302, vyw4002, ty_Integer) -> new_esEs18(vyw302, vyw4002) 29.96/14.54 new_esEs39(vyw100, vyw103, app(ty_Maybe, ffd)) -> new_esEs24(vyw100, vyw103, ffd) 29.96/14.54 new_esEs10(vyw30, vyw400, app(app(ty_@2, fde), fdf)) -> new_esEs21(vyw30, vyw400, fde, fdf) 29.96/14.54 new_esEs14(False, True) -> False 29.96/14.54 new_esEs14(True, False) -> False 29.96/14.54 new_esEs33(vyw301, vyw4001, ty_Float) -> new_esEs12(vyw301, vyw4001) 29.96/14.54 new_esEs38(vyw101, vyw104, ty_Float) -> new_esEs12(vyw101, vyw104) 29.96/14.54 new_esEs4(vyw32, vyw402, ty_@0) -> new_esEs22(vyw32, vyw402) 29.96/14.54 new_lt16(vyw3, vyw40) -> new_esEs29(new_compare30(vyw3, vyw40)) 29.96/14.54 new_esEs24(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.54 new_esEs9(vyw31, vyw401, ty_@0) -> new_esEs22(vyw31, vyw401) 29.96/14.54 new_lt20(vyw590, vyw600, ty_@0) -> new_lt19(vyw590, vyw600) 29.96/14.54 new_lt22(vyw100, vyw103, ty_Bool) -> new_lt10(vyw100, vyw103) 29.96/14.54 new_primCmpInt(Pos(Succ(vyw300)), Neg(vyw400)) -> GT 29.96/14.54 new_esEs37(vyw300, vyw4000, app(ty_[], eff)) -> new_esEs16(vyw300, vyw4000, eff) 29.96/14.54 new_esEs40(vyw300, vyw4000, app(app(ty_@2, gah), gba)) -> new_esEs21(vyw300, vyw4000, gah, gba) 29.96/14.54 new_ltEs19(vyw591, vyw601, ty_Float) -> new_ltEs14(vyw591, vyw601) 29.96/14.54 new_ltEs23(vyw89, vyw90, ty_Ordering) -> new_ltEs11(vyw89, vyw90) 29.96/14.54 new_lt22(vyw100, vyw103, ty_Char) -> new_lt16(vyw100, vyw103) 29.96/14.54 new_compare11(vyw180, vyw181, vyw182, vyw183, True, bag, bah) -> LT 29.96/14.54 new_esEs40(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.54 new_esEs34(vyw300, vyw4000, app(ty_Maybe, dfb)) -> new_esEs24(vyw300, vyw4000, dfb) 29.96/14.54 new_lt23(vyw101, vyw104, ty_Integer) -> new_lt17(vyw101, vyw104) 29.96/14.54 new_ltEs17(vyw59, vyw60) -> new_fsEs(new_compare31(vyw59, vyw60)) 29.96/14.54 new_esEs35(vyw302, vyw4002, ty_Bool) -> new_esEs14(vyw302, vyw4002) 29.96/14.54 new_esEs5(vyw31, vyw401, app(app(ty_Either, faf), fag)) -> new_esEs19(vyw31, vyw401, faf, fag) 29.96/14.54 new_esEs24(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.54 new_primPlusNat1(Succ(vyw19300), Succ(vyw31000)) -> Succ(Succ(new_primPlusNat1(vyw19300, vyw31000))) 29.96/14.55 new_ltEs6(vyw59, vyw60) -> new_fsEs(new_compare19(vyw59, vyw60)) 29.96/14.55 new_lt5(vyw591, vyw601, app(app(ty_Either, dg), dh)) -> new_lt8(vyw591, vyw601, dg, dh) 29.96/14.55 new_primCmpNat0(Zero, Succ(vyw4000)) -> LT 29.96/14.55 new_esEs4(vyw32, vyw402, app(app(ty_@2, ehf), ehg)) -> new_esEs21(vyw32, vyw402, ehf, ehg) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Bool) -> new_compare27(vyw30, vyw400) 29.96/14.55 new_esEs4(vyw32, vyw402, ty_Ordering) -> new_esEs25(vyw32, vyw402) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_Integer) -> new_esEs18(vyw590, vyw600) 29.96/14.55 new_esEs26(vyw591, vyw601, app(ty_Ratio, ee)) -> new_esEs23(vyw591, vyw601, ee) 29.96/14.55 new_lt5(vyw591, vyw601, app(app(ty_@2, eb), ec)) -> new_lt11(vyw591, vyw601, eb, ec) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Double) -> new_lt7(vyw591, vyw601) 29.96/14.55 new_compare3([], :(vyw400, vyw401), ccc) -> LT 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Int) -> new_esEs13(vyw113, vyw115) 29.96/14.55 new_esEs40(vyw300, vyw4000, app(app(app(ty_@3, gac), gad), gae)) -> new_esEs17(vyw300, vyw4000, gac, gad, gae) 29.96/14.55 new_ltEs18(vyw59, vyw60) -> new_fsEs(new_compare32(vyw59, vyw60)) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Integer) -> new_ltEs16(vyw590, vyw600) 29.96/14.55 new_lt4(vyw590, vyw600, ty_Float) -> new_lt15(vyw590, vyw600) 29.96/14.55 new_esEs8(vyw30, vyw400, app(ty_Maybe, bgh)) -> new_esEs24(vyw30, vyw400, bgh) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_@0) -> new_ltEs18(vyw66, vyw67) 29.96/14.55 new_lt4(vyw590, vyw600, app(ty_Ratio, dc)) -> new_lt14(vyw590, vyw600, dc) 29.96/14.55 new_ltEs19(vyw591, vyw601, app(app(ty_@2, bac), bad)) -> new_ltEs10(vyw591, vyw601, bac, bad) 29.96/14.55 new_lt23(vyw101, vyw104, app(ty_Maybe, fgf)) -> new_lt13(vyw101, vyw104, fgf) 29.96/14.55 new_lt24(vyw3, vyw40, ty_Int) -> new_lt18(vyw3, vyw40) 29.96/14.55 new_esEs11(vyw30, vyw400, app(ty_Ratio, cef)) -> new_esEs23(vyw30, vyw400, cef) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_Int) -> new_ltEs17(vyw590, vyw600) 29.96/14.55 new_compare6(Left(vyw30), Right(vyw400), bba, bbb) -> LT 29.96/14.55 new_esEs32(vyw113, vyw115, ty_@0) -> new_esEs22(vyw113, vyw115) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, app(app(ty_@2, cbc), cbd)) -> new_ltEs10(vyw590, vyw600, cbc, cbd) 29.96/14.55 new_esEs5(vyw31, vyw401, app(app(app(ty_@3, fac), fad), fae)) -> new_esEs17(vyw31, vyw401, fac, fad, fae) 29.96/14.55 new_lt9(vyw3, vyw40, ccc) -> new_esEs29(new_compare3(vyw3, vyw40, ccc)) 29.96/14.55 new_esEs6(vyw30, vyw400, app(ty_Maybe, ebd)) -> new_esEs24(vyw30, vyw400, ebd) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Bool, bhd) -> new_ltEs9(vyw590, vyw600) 29.96/14.55 new_lt17(vyw3, vyw40) -> new_esEs29(new_compare14(vyw3, vyw40)) 29.96/14.55 new_ltEs5(vyw592, vyw602, app(app(ty_@2, fd), ff)) -> new_ltEs10(vyw592, vyw602, fd, ff) 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Double) -> new_esEs15(vyw113, vyw115) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Bool) -> new_ltEs9(vyw592, vyw602) 29.96/14.55 new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), app(app(ty_Either, dff), dfg)) -> new_ltEs7(vyw590, vyw600, dff, dfg) 29.96/14.55 new_esEs10(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.55 new_primCmpInt(Neg(Zero), Pos(Succ(vyw4000))) -> LT 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_Ordering) -> new_esEs25(vyw301, vyw4001) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Integer) -> new_ltEs16(vyw592, vyw602) 29.96/14.55 new_primMulInt(Pos(vyw4000), Pos(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Char) -> new_ltEs15(vyw66, vyw67) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Double, bhd) -> new_ltEs6(vyw590, vyw600) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.55 new_esEs11(vyw30, vyw400, app(app(ty_Either, ceb), cec)) -> new_esEs19(vyw30, vyw400, ceb, cec) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_Bool) -> new_esEs14(vyw590, vyw600) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Double) -> new_ltEs6(vyw592, vyw602) 29.96/14.55 new_lt21(vyw113, vyw115, app(ty_Maybe, dba)) -> new_lt13(vyw113, vyw115, dba) 29.96/14.55 new_esEs21(@2(vyw300, vyw301), @2(vyw4000, vyw4001), dce, dcf) -> new_asAs(new_esEs34(vyw300, vyw4000, dce), new_esEs33(vyw301, vyw4001, dcf)) 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) 29.96/14.55 new_compare27(False, True) -> LT 29.96/14.55 new_compare12(vyw153, vyw154, False, beb) -> GT 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Integer) -> new_ltEs16(vyw114, vyw116) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs17(vyw300, vyw4000, ebf, ebg, ebh) 29.96/14.55 new_primMulNat0(Succ(vyw40000), Zero) -> Zero 29.96/14.55 new_primMulNat0(Zero, Succ(vyw3100)) -> Zero 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.55 new_esEs28(vyw590, vyw600, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs17(vyw590, vyw600, gc, gd, ge) 29.96/14.55 new_esEs7(vyw30, vyw400, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs17(vyw30, vyw400, bef, beg, beh) 29.96/14.55 new_compare26(vyw89, vyw90, True, eaa) -> EQ 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_Float) -> new_ltEs14(vyw102, vyw105) 29.96/14.55 new_esEs9(vyw31, vyw401, ty_Int) -> new_esEs13(vyw31, vyw401) 29.96/14.55 new_esEs7(vyw30, vyw400, app(app(ty_Either, bfa), bfb)) -> new_esEs19(vyw30, vyw400, bfa, bfb) 29.96/14.55 new_esEs17(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ecg, ech, eda) -> new_asAs(new_esEs37(vyw300, vyw4000, ecg), new_asAs(new_esEs36(vyw301, vyw4001, ech), new_esEs35(vyw302, vyw4002, eda))) 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_Integer) -> new_ltEs16(vyw591, vyw601) 29.96/14.55 new_lt8(vyw3, vyw40, bba, bbb) -> new_esEs29(new_compare6(vyw3, vyw40, bba, bbb)) 29.96/14.55 new_esEs25(GT, GT) -> True 29.96/14.55 new_lt20(vyw590, vyw600, ty_Bool) -> new_lt10(vyw590, vyw600) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Float) -> new_ltEs14(vyw590, vyw600) 29.96/14.55 new_lt4(vyw590, vyw600, ty_Bool) -> new_lt10(vyw590, vyw600) 29.96/14.55 new_lt4(vyw590, vyw600, ty_Ordering) -> new_lt12(vyw590, vyw600) 29.96/14.55 new_esEs7(vyw30, vyw400, app(app(ty_@2, bfc), bfd)) -> new_esEs21(vyw30, vyw400, bfc, bfd) 29.96/14.55 new_compare17(vyw30, vyw400, app(ty_[], cfe)) -> new_compare3(vyw30, vyw400, cfe) 29.96/14.55 new_esEs4(vyw32, vyw402, ty_Char) -> new_esEs20(vyw32, vyw402) 29.96/14.55 new_esEs38(vyw101, vyw104, ty_Char) -> new_esEs20(vyw101, vyw104) 29.96/14.55 new_primPlusNat1(Succ(vyw19300), Zero) -> Succ(vyw19300) 29.96/14.55 new_primPlusNat1(Zero, Succ(vyw31000)) -> Succ(vyw31000) 29.96/14.55 new_esEs37(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.55 new_esEs33(vyw301, vyw4001, app(app(ty_Either, ddc), ddd)) -> new_esEs19(vyw301, vyw4001, ddc, ddd) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), app(ty_[], dfh)) -> new_ltEs8(vyw590, vyw600, dfh) 29.96/14.55 new_esEs32(vyw113, vyw115, app(ty_Maybe, dba)) -> new_esEs24(vyw113, vyw115, dba) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_Float) -> new_esEs12(vyw31, vyw401) 29.96/14.55 new_compare210(vyw113, vyw114, vyw115, vyw116, True, chg, chh) -> EQ 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_@0) -> new_ltEs18(vyw102, vyw105) 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_Char) -> new_ltEs15(vyw591, vyw601) 29.96/14.55 new_esEs36(vyw301, vyw4001, app(ty_Ratio, efd)) -> new_esEs23(vyw301, vyw4001, efd) 29.96/14.55 new_lt20(vyw590, vyw600, ty_Ordering) -> new_lt12(vyw590, vyw600) 29.96/14.55 new_compare8(EQ, GT) -> LT 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs4(vyw590, vyw600, cae, caf, cag) 29.96/14.55 new_lt22(vyw100, vyw103, ty_Int) -> new_lt18(vyw100, vyw103) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.55 new_esEs7(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.55 new_esEs8(vyw30, vyw400, app(app(ty_Either, bgc), bgd)) -> new_esEs19(vyw30, vyw400, bgc, bgd) 29.96/14.55 new_esEs39(vyw100, vyw103, app(ty_[], ffa)) -> new_esEs16(vyw100, vyw103, ffa) 29.96/14.55 new_esEs7(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.55 new_esEs38(vyw101, vyw104, ty_Bool) -> new_esEs14(vyw101, vyw104) 29.96/14.55 new_compare25(vyw66, vyw67, False, cgc, cgd) -> new_compare110(vyw66, vyw67, new_ltEs21(vyw66, vyw67, cgd), cgc, cgd) 29.96/14.55 new_esEs7(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.55 new_esEs15(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) 29.96/14.55 new_esEs4(vyw32, vyw402, app(ty_[], egh)) -> new_esEs16(vyw32, vyw402, egh) 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Bool) -> new_esEs14(vyw590, vyw600) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, app(ty_Ratio, cbf)) -> new_ltEs13(vyw590, vyw600, cbf) 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_@0) -> new_esEs22(vyw301, vyw4001) 29.96/14.55 new_esEs11(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.55 new_esEs10(vyw30, vyw400, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs17(vyw30, vyw400, fch, fda, fdb) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), app(ty_Maybe, bcf), bbd) -> new_esEs24(vyw300, vyw4000, bcf) 29.96/14.55 new_ltEs7(Left(vyw590), Right(vyw600), cad, bhd) -> True 29.96/14.55 new_esEs6(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.55 new_ltEs11(EQ, GT) -> True 29.96/14.55 new_lt24(vyw3, vyw40, ty_Char) -> new_lt16(vyw3, vyw40) 29.96/14.55 new_esEs10(vyw30, vyw400, app(ty_Ratio, fdg)) -> new_esEs23(vyw30, vyw400, fdg) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), app(ty_Ratio, cac), bhd) -> new_ltEs13(vyw590, vyw600, cac) 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_@0, bbd) -> new_esEs22(vyw300, vyw4000) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.55 new_esEs36(vyw301, vyw4001, app(ty_Maybe, efe)) -> new_esEs24(vyw301, vyw4001, efe) 29.96/14.55 new_primCompAux0(vyw30, vyw400, vyw39, ccc) -> new_primCompAux00(vyw39, new_compare17(vyw30, vyw400, ccc)) 29.96/14.55 new_esEs35(vyw302, vyw4002, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs17(vyw302, vyw4002, edc, edd, ede) 29.96/14.55 new_ltEs11(EQ, EQ) -> True 29.96/14.55 new_lt20(vyw590, vyw600, app(ty_Maybe, hc)) -> new_lt13(vyw590, vyw600, hc) 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_Double) -> new_ltEs6(vyw102, vyw105) 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_Float) -> new_esEs12(vyw301, vyw4001) 29.96/14.55 new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) 29.96/14.55 new_lt24(vyw3, vyw40, app(app(app(ty_@3, cbh), cca), ccb)) -> new_lt6(vyw3, vyw40, cbh, cca, ccb) 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Integer) -> new_esEs18(vyw113, vyw115) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Float) -> new_lt15(vyw591, vyw601) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_Integer) -> new_esEs18(vyw31, vyw401) 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Char) -> new_esEs20(vyw113, vyw115) 29.96/14.55 new_esEs35(vyw302, vyw4002, app(ty_Ratio, eeb)) -> new_esEs23(vyw302, vyw4002, eeb) 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Ordering) -> new_esEs25(vyw113, vyw115) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), app(app(ty_Either, eca), ecb)) -> new_esEs19(vyw300, vyw4000, eca, ecb) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_Ordering) -> new_esEs25(vyw31, vyw401) 29.96/14.55 new_esEs26(vyw591, vyw601, app(app(ty_@2, eb), ec)) -> new_esEs21(vyw591, vyw601, eb, ec) 29.96/14.55 new_ltEs22(vyw114, vyw116, app(app(ty_@2, dca), dcb)) -> new_ltEs10(vyw114, vyw116, dca, dcb) 29.96/14.55 new_ltEs16(vyw59, vyw60) -> new_fsEs(new_compare14(vyw59, vyw60)) 29.96/14.55 new_esEs4(vyw32, vyw402, app(app(app(ty_@3, eha), ehb), ehc)) -> new_esEs17(vyw32, vyw402, eha, ehb, ehc) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), app(ty_Maybe, cab), bhd) -> new_ltEs12(vyw590, vyw600, cab) 29.96/14.55 new_lt4(vyw590, vyw600, ty_@0) -> new_lt19(vyw590, vyw600) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_@0, bhd) -> new_ltEs18(vyw590, vyw600) 29.96/14.55 new_compare27(True, True) -> EQ 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_@0) -> new_ltEs18(vyw592, vyw602) 29.96/14.55 new_esEs11(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.55 new_compare24(vyw59, vyw60, True, ccf, ccg) -> EQ 29.96/14.55 new_ltEs24(vyw102, vyw105, app(ty_[], fhe)) -> new_ltEs8(vyw102, vyw105, fhe) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_@0) -> new_ltEs18(vyw114, vyw116) 29.96/14.55 new_gt(vyw18, vyw13, ty_Bool) -> new_esEs41(new_compare27(vyw18, vyw13)) 29.96/14.55 new_primCmpInt(Pos(Succ(vyw300)), Pos(vyw400)) -> new_primCmpNat0(Succ(vyw300), vyw400) 29.96/14.55 new_esEs8(vyw30, vyw400, app(ty_[], bfg)) -> new_esEs16(vyw30, vyw400, bfg) 29.96/14.55 new_esEs38(vyw101, vyw104, ty_@0) -> new_esEs22(vyw101, vyw104) 29.96/14.55 new_lt13(vyw3, vyw40, bbc) -> new_esEs29(new_compare7(vyw3, vyw40, bbc)) 29.96/14.55 new_ltEs11(GT, GT) -> True 29.96/14.55 new_primCompAux00(vyw72, EQ) -> vyw72 29.96/14.55 new_esEs39(vyw100, vyw103, app(app(ty_Either, feg), feh)) -> new_esEs19(vyw100, vyw103, feg, feh) 29.96/14.55 new_lt4(vyw590, vyw600, ty_Int) -> new_lt18(vyw590, vyw600) 29.96/14.55 new_compare8(GT, EQ) -> GT 29.96/14.55 new_esEs4(vyw32, vyw402, ty_Float) -> new_esEs12(vyw32, vyw402) 29.96/14.55 new_esEs34(vyw300, vyw4000, app(app(ty_Either, dee), def)) -> new_esEs19(vyw300, vyw4000, dee, def) 29.96/14.55 new_ltEs19(vyw591, vyw601, app(ty_[], bab)) -> new_ltEs8(vyw591, vyw601, bab) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Double) -> new_compare19(vyw30, vyw400) 29.96/14.55 new_esEs9(vyw31, vyw401, app(app(ty_@2, fcc), fcd)) -> new_esEs21(vyw31, vyw401, fcc, fcd) 29.96/14.55 new_esEs4(vyw32, vyw402, app(ty_Maybe, faa)) -> new_esEs24(vyw32, vyw402, faa) 29.96/14.55 new_esEs40(vyw300, vyw4000, app(app(ty_Either, gaf), gag)) -> new_esEs19(vyw300, vyw4000, gaf, gag) 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Float) -> new_esEs12(vyw113, vyw115) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Double) -> new_ltEs6(vyw59, vyw60) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Float) -> new_ltEs14(vyw592, vyw602) 29.96/14.55 new_ltEs21(vyw66, vyw67, app(app(ty_@2, chc), chd)) -> new_ltEs10(vyw66, vyw67, chc, chd) 29.96/14.55 new_esEs39(vyw100, vyw103, app(app(app(ty_@3, fed), fee), fef)) -> new_esEs17(vyw100, vyw103, fed, fee, fef) 29.96/14.55 new_esEs27(vyw590, vyw600, app(app(ty_@2, cg), da)) -> new_esEs21(vyw590, vyw600, cg, da) 29.96/14.55 new_lt21(vyw113, vyw115, ty_@0) -> new_lt19(vyw113, vyw115) 29.96/14.55 new_lt20(vyw590, vyw600, ty_Int) -> new_lt18(vyw590, vyw600) 29.96/14.55 new_esEs5(vyw31, vyw401, app(ty_Maybe, fbc)) -> new_esEs24(vyw31, vyw401, fbc) 29.96/14.55 new_ltEs13(vyw59, vyw60, cdb) -> new_fsEs(new_compare9(vyw59, vyw60, cdb)) 29.96/14.55 new_ltEs20(vyw59, vyw60, app(ty_[], cch)) -> new_ltEs8(vyw59, vyw60, cch) 29.96/14.55 new_esEs11(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.55 new_esEs10(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.55 new_compare19(Double(vyw30, Pos(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Neg(vyw310), vyw400)) 29.96/14.55 new_compare19(Double(vyw30, Neg(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Pos(vyw310), vyw400)) 29.96/14.55 new_compare7(Just(vyw30), Nothing, bbc) -> GT 29.96/14.55 new_lt23(vyw101, vyw104, app(app(app(ty_@3, fff), ffg), ffh)) -> new_lt6(vyw101, vyw104, fff, ffg, ffh) 29.96/14.55 new_ltEs15(vyw59, vyw60) -> new_fsEs(new_compare30(vyw59, vyw60)) 29.96/14.55 new_lt5(vyw591, vyw601, ty_@0) -> new_lt19(vyw591, vyw601) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.55 new_esEs7(vyw30, vyw400, app(ty_[], bee)) -> new_esEs16(vyw30, vyw400, bee) 29.96/14.55 new_esEs14(False, False) -> True 29.96/14.55 new_compare10(vyw180, vyw181, vyw182, vyw183, True, vyw185, bag, bah) -> new_compare11(vyw180, vyw181, vyw182, vyw183, True, bag, bah) 29.96/14.55 new_esEs11(vyw30, vyw400, app(ty_Maybe, ceg)) -> new_esEs24(vyw30, vyw400, ceg) 29.96/14.55 new_esEs41(GT) -> True 29.96/14.55 new_esEs35(vyw302, vyw4002, app(app(ty_Either, edf), edg)) -> new_esEs19(vyw302, vyw4002, edf, edg) 29.96/14.55 new_compare19(Double(vyw30, Neg(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Neg(vyw310), vyw400)) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(ty_[], bch)) -> new_esEs16(vyw300, vyw4000, bch) 29.96/14.55 new_esEs11(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_Char) -> new_esEs20(vyw301, vyw4001) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Float) -> new_compare29(vyw30, vyw400) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.55 new_esEs35(vyw302, vyw4002, app(ty_Maybe, eec)) -> new_esEs24(vyw302, vyw4002, eec) 29.96/14.55 new_compare13(vyw136, vyw137, True, bec, bed) -> LT 29.96/14.55 new_esEs11(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.55 new_esEs9(vyw31, vyw401, app(ty_[], fbe)) -> new_esEs16(vyw31, vyw401, fbe) 29.96/14.55 new_esEs35(vyw302, vyw4002, ty_Char) -> new_esEs20(vyw302, vyw4002) 29.96/14.55 new_ltEs23(vyw89, vyw90, app(ty_[], eag)) -> new_ltEs8(vyw89, vyw90, eag) 29.96/14.55 new_esEs35(vyw302, vyw4002, ty_Float) -> new_esEs12(vyw302, vyw4002) 29.96/14.55 new_esEs10(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_Integer, bbd) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_lt11(vyw3, vyw40, ccd, cce) -> new_esEs29(new_compare28(vyw3, vyw40, ccd, cce)) 29.96/14.55 new_esEs4(vyw32, vyw402, ty_Integer) -> new_esEs18(vyw32, vyw402) 29.96/14.55 new_esEs38(vyw101, vyw104, app(app(ty_Either, fga), fgb)) -> new_esEs19(vyw101, vyw104, fga, fgb) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_Ordering, bbd) -> new_esEs25(vyw300, vyw4000) 29.96/14.55 new_lt22(vyw100, vyw103, app(app(ty_Either, feg), feh)) -> new_lt8(vyw100, vyw103, feg, feh) 29.96/14.55 new_esEs9(vyw31, vyw401, ty_Double) -> new_esEs15(vyw31, vyw401) 29.96/14.55 new_esEs26(vyw591, vyw601, ty_Double) -> new_esEs15(vyw591, vyw601) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), app(ty_Ratio, bce), bbd) -> new_esEs23(vyw300, vyw4000, bce) 29.96/14.55 new_esEs25(LT, EQ) -> False 29.96/14.55 new_esEs25(EQ, LT) -> False 29.96/14.55 new_lt24(vyw3, vyw40, app(app(ty_Either, bba), bbb)) -> new_lt8(vyw3, vyw40, bba, bbb) 29.96/14.55 new_esEs4(vyw32, vyw402, app(app(ty_Either, ehd), ehe)) -> new_esEs19(vyw32, vyw402, ehd, ehe) 29.96/14.55 new_esEs30(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) 29.96/14.55 new_compare7(Just(vyw30), Just(vyw400), bbc) -> new_compare26(vyw30, vyw400, new_esEs11(vyw30, vyw400, bbc), bbc) 29.96/14.55 new_primPlusNat0(Succ(vyw1930), vyw3100) -> Succ(Succ(new_primPlusNat1(vyw1930, vyw3100))) 29.96/14.55 new_esEs28(vyw590, vyw600, app(ty_Ratio, hd)) -> new_esEs23(vyw590, vyw600, hd) 29.96/14.55 new_esEs36(vyw301, vyw4001, app(app(ty_Either, eeh), efa)) -> new_esEs19(vyw301, vyw4001, eeh, efa) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(app(ty_@2, bdf), bdg)) -> new_esEs21(vyw300, vyw4000, bdf, bdg) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Integer, bhd) -> new_ltEs16(vyw590, vyw600) 29.96/14.55 new_esEs11(vyw30, vyw400, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs17(vyw30, vyw400, cdg, cdh, cea) 29.96/14.55 new_esEs32(vyw113, vyw115, app(ty_Ratio, dbb)) -> new_esEs23(vyw113, vyw115, dbb) 29.96/14.55 new_ltEs21(vyw66, vyw67, app(ty_[], chb)) -> new_ltEs8(vyw66, vyw67, chb) 29.96/14.55 new_lt4(vyw590, vyw600, ty_Integer) -> new_lt17(vyw590, vyw600) 29.96/14.55 new_esEs38(vyw101, vyw104, ty_Ordering) -> new_esEs25(vyw101, vyw104) 29.96/14.55 new_compare13(vyw136, vyw137, False, bec, bed) -> GT 29.96/14.55 new_esEs26(vyw591, vyw601, ty_Int) -> new_esEs13(vyw591, vyw601) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Double) -> new_ltEs6(vyw590, vyw600) 29.96/14.55 new_esEs37(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.55 new_primPlusNat1(Zero, Zero) -> Zero 29.96/14.55 new_esEs38(vyw101, vyw104, ty_Integer) -> new_esEs18(vyw101, vyw104) 29.96/14.55 new_esEs34(vyw300, vyw4000, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs17(vyw300, vyw4000, deb, dec, ded) 29.96/14.55 new_lt21(vyw113, vyw115, ty_Float) -> new_lt15(vyw113, vyw115) 29.96/14.55 new_compare211(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, fea, feb, fec) -> new_compare15(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, new_lt22(vyw100, vyw103, fea), new_asAs(new_esEs39(vyw100, vyw103, fea), new_pePe(new_lt23(vyw101, vyw104, feb), new_asAs(new_esEs38(vyw101, vyw104, feb), new_ltEs24(vyw102, vyw105, fec)))), fea, feb, fec) 29.96/14.55 new_compare7(Nothing, Just(vyw400), bbc) -> LT 29.96/14.55 new_ltEs12(Nothing, Just(vyw600), cda) -> True 29.96/14.55 new_lt5(vyw591, vyw601, ty_Integer) -> new_lt17(vyw591, vyw601) 29.96/14.55 new_lt10(vyw3, vyw40) -> new_esEs29(new_compare27(vyw3, vyw40)) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), app(ty_Ratio, dgd)) -> new_ltEs13(vyw590, vyw600, dgd) 29.96/14.55 new_esEs37(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Float, bhd) -> new_ltEs14(vyw590, vyw600) 29.96/14.55 new_esEs37(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.55 new_lt4(vyw590, vyw600, ty_Char) -> new_lt16(vyw590, vyw600) 29.96/14.55 new_lt5(vyw591, vyw601, app(app(app(ty_@3, dd), de), df)) -> new_lt6(vyw591, vyw601, dd, de, df) 29.96/14.55 new_primCmpNat0(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat0(vyw300, vyw4000) 29.96/14.55 new_lt20(vyw590, vyw600, ty_Char) -> new_lt16(vyw590, vyw600) 29.96/14.55 new_lt21(vyw113, vyw115, app(app(app(ty_@3, daa), dab), dac)) -> new_lt6(vyw113, vyw115, daa, dab, dac) 29.96/14.55 new_ltEs10(@2(vyw590, vyw591), @2(vyw600, vyw601), ga, gb) -> new_pePe(new_lt20(vyw590, vyw600, ga), new_asAs(new_esEs28(vyw590, vyw600, ga), new_ltEs19(vyw591, vyw601, gb))) 29.96/14.55 new_lt22(vyw100, vyw103, ty_@0) -> new_lt19(vyw100, vyw103) 29.96/14.55 new_lt24(vyw3, vyw40, ty_@0) -> new_lt19(vyw3, vyw40) 29.96/14.55 new_compare29(Float(vyw30, Neg(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Neg(vyw310), vyw400)) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_Int) -> new_esEs13(vyw590, vyw600) 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_Ordering) -> new_esEs25(vyw301, vyw4001) 29.96/14.55 new_compare3(:(vyw30, vyw31), [], ccc) -> GT 29.96/14.55 new_ltEs12(Nothing, Nothing, cda) -> True 29.96/14.55 new_ltEs12(Just(vyw590), Nothing, cda) -> False 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_@0) -> new_esEs22(vyw301, vyw4001) 29.96/14.55 new_lt23(vyw101, vyw104, ty_Float) -> new_lt15(vyw101, vyw104) 29.96/14.55 new_esEs29(LT) -> True 29.96/14.55 new_lt21(vyw113, vyw115, ty_Integer) -> new_lt17(vyw113, vyw115) 29.96/14.55 new_lt20(vyw590, vyw600, app(app(app(ty_@3, gc), gd), ge)) -> new_lt6(vyw590, vyw600, gc, gd, ge) 29.96/14.55 new_gt(vyw18, vyw13, app(ty_Ratio, dhh)) -> new_esEs41(new_compare9(vyw18, vyw13, dhh)) 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Int) -> new_esEs13(vyw590, vyw600) 29.96/14.55 new_esEs37(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.55 new_esEs36(vyw301, vyw4001, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs17(vyw301, vyw4001, eee, eef, eeg) 29.96/14.55 new_esEs12(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_Double) -> new_ltEs6(vyw89, vyw90) 29.96/14.55 new_lt23(vyw101, vyw104, app(app(ty_Either, fga), fgb)) -> new_lt8(vyw101, vyw104, fga, fgb) 29.96/14.55 new_esEs37(vyw300, vyw4000, app(ty_Maybe, egg)) -> new_esEs24(vyw300, vyw4000, egg) 29.96/14.55 new_lt22(vyw100, vyw103, ty_Float) -> new_lt15(vyw100, vyw103) 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Bool) -> new_esEs14(vyw113, vyw115) 29.96/14.55 new_lt20(vyw590, vyw600, ty_Integer) -> new_lt17(vyw590, vyw600) 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_Char) -> new_esEs20(vyw301, vyw4001) 29.96/14.55 new_esEs19(Left(vyw300), Right(vyw4000), bcg, bbd) -> False 29.96/14.55 new_esEs19(Right(vyw300), Left(vyw4000), bcg, bbd) -> False 29.96/14.55 new_ltEs23(vyw89, vyw90, app(app(ty_@2, eah), eba)) -> new_ltEs10(vyw89, vyw90, eah, eba) 29.96/14.55 new_compare14(Integer(vyw30), Integer(vyw400)) -> new_primCmpInt(vyw30, vyw400) 29.96/14.55 new_lt23(vyw101, vyw104, ty_@0) -> new_lt19(vyw101, vyw104) 29.96/14.55 new_esEs29(EQ) -> False 29.96/14.55 new_esEs28(vyw590, vyw600, app(ty_Maybe, hc)) -> new_esEs24(vyw590, vyw600, hc) 29.96/14.55 new_ltEs7(Right(vyw590), Left(vyw600), cad, bhd) -> False 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bbf), bbg), bbh), bbd) -> new_esEs17(vyw300, vyw4000, bbf, bbg, bbh) 29.96/14.55 new_primCmpInt(Neg(Succ(vyw300)), Pos(vyw400)) -> LT 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.55 new_ltEs22(vyw114, vyw116, app(ty_[], dbh)) -> new_ltEs8(vyw114, vyw116, dbh) 29.96/14.55 new_lt22(vyw100, vyw103, app(ty_Maybe, ffd)) -> new_lt13(vyw100, vyw103, ffd) 29.96/14.55 new_lt4(vyw590, vyw600, app(app(ty_Either, cd), ce)) -> new_lt8(vyw590, vyw600, cd, ce) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Char) -> new_ltEs15(vyw592, vyw602) 29.96/14.55 new_esEs6(vyw30, vyw400, app(app(app(ty_@3, ecg), ech), eda)) -> new_esEs17(vyw30, vyw400, ecg, ech, eda) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Ordering) -> new_esEs25(vyw100, vyw103) 29.96/14.55 new_esEs27(vyw590, vyw600, app(app(app(ty_@3, ca), cb), cc)) -> new_esEs17(vyw590, vyw600, ca, cb, cc) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Char, bhd) -> new_ltEs15(vyw590, vyw600) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), app(app(ty_@2, bhh), caa), bhd) -> new_ltEs10(vyw590, vyw600, bhh, caa) 29.96/14.55 new_esEs29(GT) -> False 29.96/14.55 new_gt(vyw18, vyw13, app(app(ty_@2, dhe), dhf)) -> new_esEs41(new_compare28(vyw18, vyw13, dhe, dhf)) 29.96/14.55 new_primCmpInt(Pos(Zero), Neg(Succ(vyw4000))) -> GT 29.96/14.55 new_ltEs24(vyw102, vyw105, app(app(ty_Either, fhc), fhd)) -> new_ltEs7(vyw102, vyw105, fhc, fhd) 29.96/14.55 new_primCmpInt(Neg(Succ(vyw300)), Neg(vyw400)) -> new_primCmpNat0(vyw400, Succ(vyw300)) 29.96/14.55 new_ltEs11(GT, EQ) -> False 29.96/14.55 new_esEs37(vyw300, vyw4000, app(app(ty_Either, egb), egc)) -> new_esEs19(vyw300, vyw4000, egb, egc) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_@0) -> new_ltEs18(vyw59, vyw60) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Ordering, bhd) -> new_ltEs11(vyw590, vyw600) 29.96/14.55 new_lt23(vyw101, vyw104, ty_Int) -> new_lt18(vyw101, vyw104) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Ordering) -> new_ltEs11(vyw592, vyw602) 29.96/14.55 new_esEs41(EQ) -> False 29.96/14.55 new_esEs33(vyw301, vyw4001, app(ty_[], dcg)) -> new_esEs16(vyw301, vyw4001, dcg) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.55 new_gt(vyw18, vyw13, ty_Int) -> new_esEs41(new_compare31(vyw18, vyw13)) 29.96/14.55 new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False 29.96/14.55 new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False 29.96/14.55 new_ltEs9(False, True) -> True 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.55 new_compare8(GT, GT) -> EQ 29.96/14.55 new_esEs37(vyw300, vyw4000, app(ty_Ratio, egf)) -> new_esEs23(vyw300, vyw4000, egf) 29.96/14.55 new_esEs37(vyw300, vyw4000, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs17(vyw300, vyw4000, efg, efh, ega) 29.96/14.55 new_lt4(vyw590, vyw600, app(app(app(ty_@3, ca), cb), cc)) -> new_lt6(vyw590, vyw600, ca, cb, cc) 29.96/14.55 new_esEs38(vyw101, vyw104, app(ty_Maybe, fgf)) -> new_esEs24(vyw101, vyw104, fgf) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Ordering) -> new_ltEs11(vyw114, vyw116) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Char) -> new_lt16(vyw591, vyw601) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Bool) -> new_lt10(vyw591, vyw601) 29.96/14.55 new_lt22(vyw100, vyw103, app(app(app(ty_@3, fed), fee), fef)) -> new_lt6(vyw100, vyw103, fed, fee, fef) 29.96/14.55 new_lt22(vyw100, vyw103, ty_Integer) -> new_lt17(vyw100, vyw103) 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_Int) -> new_ltEs17(vyw102, vyw105) 29.96/14.55 new_ltEs20(vyw59, vyw60, app(app(ty_@2, ga), gb)) -> new_ltEs10(vyw59, vyw60, ga, gb) 29.96/14.55 new_ltEs5(vyw592, vyw602, app(ty_Ratio, fh)) -> new_ltEs13(vyw592, vyw602, fh) 29.96/14.55 new_primCmpNat0(Zero, Zero) -> EQ 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), app(ty_Maybe, ecf)) -> new_esEs24(vyw300, vyw4000, ecf) 29.96/14.55 new_ltEs5(vyw592, vyw602, app(ty_[], fc)) -> new_ltEs8(vyw592, vyw602, fc) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Integer) -> new_compare14(vyw30, vyw400) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Double) -> new_ltEs6(vyw66, vyw67) 29.96/14.55 new_lt24(vyw3, vyw40, ty_Float) -> new_lt15(vyw3, vyw40) 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) 29.96/14.55 new_esEs34(vyw300, vyw4000, app(app(ty_@2, deg), deh)) -> new_esEs21(vyw300, vyw4000, deg, deh) 29.96/14.55 new_compare15(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, vyw172, cdc, cdd, cde) -> new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, cdc, cdd, cde) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_Float, bbd) -> new_esEs12(vyw300, vyw4000) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Float) -> new_esEs12(vyw100, vyw103) 29.96/14.55 new_compare27(False, False) -> EQ 29.96/14.55 new_lt21(vyw113, vyw115, ty_Char) -> new_lt16(vyw113, vyw115) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Int) -> new_lt18(vyw591, vyw601) 29.96/14.55 new_compare19(Double(vyw30, Pos(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Pos(vyw310), vyw400)) 29.96/14.55 new_esEs6(vyw30, vyw400, app(app(ty_Either, bcg), bbd)) -> new_esEs19(vyw30, vyw400, bcg, bbd) 29.96/14.55 new_esEs23(:%(vyw300, vyw301), :%(vyw4000, vyw4001), cgb) -> new_asAs(new_esEs31(vyw300, vyw4000, cgb), new_esEs30(vyw301, vyw4001, cgb)) 29.96/14.55 new_lt21(vyw113, vyw115, ty_Bool) -> new_lt10(vyw113, vyw115) 29.96/14.55 new_primCompAux00(vyw72, GT) -> GT 29.96/14.55 new_lt5(vyw591, vyw601, app(ty_Ratio, ee)) -> new_lt14(vyw591, vyw601, ee) 29.96/14.55 new_lt20(vyw590, vyw600, app(ty_[], gh)) -> new_lt9(vyw590, vyw600, gh) 29.96/14.55 new_gt(vyw18, vyw13, app(ty_Maybe, dhg)) -> new_esEs41(new_compare7(vyw18, vyw13, dhg)) 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_Integer) -> new_ltEs16(vyw89, vyw90) 29.96/14.55 new_esEs40(vyw300, vyw4000, app(ty_Maybe, gbc)) -> new_esEs24(vyw300, vyw4000, gbc) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Integer) -> new_esEs18(vyw100, vyw103) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.55 new_lt15(vyw3, vyw40) -> new_esEs29(new_compare29(vyw3, vyw40)) 29.96/14.55 new_ltEs11(GT, LT) -> False 29.96/14.55 new_compare110(vyw143, vyw144, True, dge, dgf) -> LT 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Float) -> new_esEs12(vyw590, vyw600) 29.96/14.55 new_lt4(vyw590, vyw600, app(ty_Maybe, db)) -> new_lt13(vyw590, vyw600, db) 29.96/14.55 new_compare3(:(vyw30, vyw31), :(vyw400, vyw401), ccc) -> new_primCompAux0(vyw30, vyw400, new_compare3(vyw31, vyw401, ccc), ccc) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Char) -> new_ltEs15(vyw114, vyw116) 29.96/14.55 new_lt20(vyw590, vyw600, app(app(ty_Either, gf), gg)) -> new_lt8(vyw590, vyw600, gf, gg) 29.96/14.55 new_esEs27(vyw590, vyw600, app(ty_Ratio, dc)) -> new_esEs23(vyw590, vyw600, dc) 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_Double) -> new_esEs15(vyw301, vyw4001) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_@0) -> new_esEs22(vyw100, vyw103) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Float) -> new_ltEs14(vyw59, vyw60) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.55 new_esEs38(vyw101, vyw104, ty_Double) -> new_esEs15(vyw101, vyw104) 29.96/14.55 new_ltEs11(LT, LT) -> True 29.96/14.55 new_esEs39(vyw100, vyw103, app(app(ty_@2, ffb), ffc)) -> new_esEs21(vyw100, vyw103, ffb, ffc) 29.96/14.55 new_esEs31(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_esEs16(:(vyw300, vyw301), :(vyw4000, vyw4001), fbd) -> new_asAs(new_esEs40(vyw300, vyw4000, fbd), new_esEs16(vyw301, vyw4001, fbd)) 29.96/14.55 new_ltEs23(vyw89, vyw90, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs4(vyw89, vyw90, eab, eac, ead) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Bool) -> new_ltEs9(vyw66, vyw67) 29.96/14.55 new_esEs11(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.55 new_esEs28(vyw590, vyw600, app(ty_[], gh)) -> new_esEs16(vyw590, vyw600, gh) 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_Double) -> new_ltEs6(vyw591, vyw601) 29.96/14.55 new_primCmpNat0(Succ(vyw300), Zero) -> GT 29.96/14.55 new_lt14(vyw3, vyw40, cbg) -> new_esEs29(new_compare9(vyw3, vyw40, cbg)) 29.96/14.55 new_ltEs19(vyw591, vyw601, app(app(ty_Either, hh), baa)) -> new_ltEs7(vyw591, vyw601, hh, baa) 29.96/14.55 new_pePe(False, vyw191) -> vyw191 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, app(ty_[], cbb)) -> new_ltEs8(vyw590, vyw600, cbb) 29.96/14.55 new_compare25(vyw66, vyw67, True, cgc, cgd) -> EQ 29.96/14.55 new_ltEs22(vyw114, vyw116, app(ty_Ratio, dcd)) -> new_ltEs13(vyw114, vyw116, dcd) 29.96/14.55 new_ltEs9(True, True) -> True 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Char) -> new_esEs20(vyw590, vyw600) 29.96/14.55 new_esEs31(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.55 new_esEs26(vyw591, vyw601, ty_Bool) -> new_esEs14(vyw591, vyw601) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_@0) -> new_esEs22(vyw31, vyw401) 29.96/14.55 new_compare31(vyw3, vyw40) -> new_primCmpInt(vyw3, vyw40) 29.96/14.55 new_ltEs24(vyw102, vyw105, app(ty_Ratio, gaa)) -> new_ltEs13(vyw102, vyw105, gaa) 29.96/14.55 new_esEs34(vyw300, vyw4000, app(ty_Ratio, dfa)) -> new_esEs23(vyw300, vyw4000, dfa) 29.96/14.55 new_esEs32(vyw113, vyw115, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs17(vyw113, vyw115, daa, dab, dac) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False 29.96/14.55 new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Integer) -> new_ltEs16(vyw59, vyw60) 29.96/14.55 new_esEs25(LT, GT) -> False 29.96/14.55 new_esEs25(GT, LT) -> False 29.96/14.55 new_lt22(vyw100, vyw103, app(app(ty_@2, ffb), ffc)) -> new_lt11(vyw100, vyw103, ffb, ffc) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Int) -> new_ltEs17(vyw592, vyw602) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Float) -> new_ltEs14(vyw114, vyw116) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Int, bhd) -> new_ltEs17(vyw590, vyw600) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_Double) -> new_esEs15(vyw31, vyw401) 29.96/14.55 new_esEs9(vyw31, vyw401, app(app(ty_Either, fca), fcb)) -> new_esEs19(vyw31, vyw401, fca, fcb) 29.96/14.55 new_lt24(vyw3, vyw40, app(app(ty_@2, ccd), cce)) -> new_lt11(vyw3, vyw40, ccd, cce) 29.96/14.55 new_esEs26(vyw591, vyw601, app(ty_[], ea)) -> new_esEs16(vyw591, vyw601, ea) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), app(app(ty_@2, dga), dgb)) -> new_ltEs10(vyw590, vyw600, dga, dgb) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_Char, bbd) -> new_esEs20(vyw300, vyw4000) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), app(app(app(ty_@3, dfc), dfd), dfe)) -> new_ltEs4(vyw590, vyw600, dfc, dfd, dfe) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.55 new_lt24(vyw3, vyw40, ty_Integer) -> new_lt17(vyw3, vyw40) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, app(app(ty_Either, cah), cba)) -> new_ltEs7(vyw590, vyw600, cah, cba) 29.96/14.55 new_esEs33(vyw301, vyw4001, app(ty_Maybe, ddh)) -> new_esEs24(vyw301, vyw4001, ddh) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_Bool) -> new_ltEs9(vyw590, vyw600) 29.96/14.55 new_esEs37(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_Double) -> new_esEs15(vyw590, vyw600) 29.96/14.55 new_esEs25(EQ, GT) -> False 29.96/14.55 new_esEs25(GT, EQ) -> False 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.55 new_esEs10(vyw30, vyw400, app(ty_Maybe, fdh)) -> new_esEs24(vyw30, vyw400, fdh) 29.96/14.55 new_primPlusNat0(Zero, vyw3100) -> Succ(vyw3100) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_Double) -> new_ltEs6(vyw590, vyw600) 29.96/14.55 new_esEs18(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) 29.96/14.55 new_esEs38(vyw101, vyw104, app(ty_[], fgc)) -> new_esEs16(vyw101, vyw104, fgc) 29.96/14.55 new_ltEs5(vyw592, vyw602, app(app(ty_Either, fa), fb)) -> new_ltEs7(vyw592, vyw602, fa, fb) 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_Bool) -> new_ltEs9(vyw591, vyw601) 29.96/14.55 new_esEs7(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.55 new_esEs8(vyw30, vyw400, app(app(ty_@2, bge), bgf)) -> new_esEs21(vyw30, vyw400, bge, bgf) 29.96/14.55 new_lt23(vyw101, vyw104, ty_Char) -> new_lt16(vyw101, vyw104) 29.96/14.55 new_lt6(vyw3, vyw40, cbh, cca, ccb) -> new_esEs29(new_compare18(vyw3, vyw40, cbh, cca, ccb)) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Char) -> new_esEs20(vyw100, vyw103) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), app(ty_[], ebe)) -> new_esEs16(vyw300, vyw4000, ebe) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Bool) -> new_esEs14(vyw100, vyw103) 29.96/14.55 new_compare26(vyw89, vyw90, False, eaa) -> new_compare12(vyw89, vyw90, new_ltEs23(vyw89, vyw90, eaa), eaa) 29.96/14.55 new_compare17(vyw30, vyw400, app(app(ty_@2, cff), cfg)) -> new_compare28(vyw30, vyw400, cff, cfg) 29.96/14.55 new_lt21(vyw113, vyw115, ty_Int) -> new_lt18(vyw113, vyw115) 29.96/14.55 new_compare17(vyw30, vyw400, ty_@0) -> new_compare32(vyw30, vyw400) 29.96/14.55 new_esEs5(vyw31, vyw401, app(ty_[], fab)) -> new_esEs16(vyw31, vyw401, fab) 29.96/14.55 new_compare8(LT, GT) -> LT 29.96/14.55 new_compare17(vyw30, vyw400, app(ty_Ratio, cga)) -> new_compare9(vyw30, vyw400, cga) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_Bool, bbd) -> new_esEs14(vyw300, vyw4000) 29.96/14.55 new_lt21(vyw113, vyw115, ty_Ordering) -> new_lt12(vyw113, vyw115) 29.96/14.55 new_esEs10(vyw30, vyw400, app(app(ty_Either, fdc), fdd)) -> new_esEs19(vyw30, vyw400, fdc, fdd) 29.96/14.55 new_esEs6(vyw30, vyw400, app(app(ty_@2, dce), dcf)) -> new_esEs21(vyw30, vyw400, dce, dcf) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(ty_Ratio, bdh)) -> new_esEs23(vyw300, vyw4000, bdh) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, cdc, cdd, cde) -> LT 29.96/14.55 new_esEs40(vyw300, vyw4000, app(ty_[], gab)) -> new_esEs16(vyw300, vyw4000, gab) 29.96/14.55 new_esEs16([], [], fbd) -> True 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), app(ty_Maybe, dgc)) -> new_ltEs12(vyw590, vyw600, dgc) 29.96/14.55 new_primMulInt(Neg(vyw4000), Neg(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) 29.96/14.55 new_primCmpInt(Pos(Zero), Pos(Succ(vyw4000))) -> new_primCmpNat0(Zero, Succ(vyw4000)) 29.96/14.55 new_esEs11(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.55 new_esEs14(True, True) -> True 29.96/14.55 new_compare11(vyw180, vyw181, vyw182, vyw183, False, bag, bah) -> GT 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_@0) -> new_ltEs18(vyw89, vyw90) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.55 new_esEs32(vyw113, vyw115, app(app(ty_Either, dad), dae)) -> new_esEs19(vyw113, vyw115, dad, dae) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Ordering) -> new_lt12(vyw591, vyw601) 29.96/14.55 new_esEs7(vyw30, vyw400, app(ty_Maybe, bff)) -> new_esEs24(vyw30, vyw400, bff) 29.96/14.55 new_gt(vyw18, vyw13, ty_Double) -> new_esEs41(new_compare19(vyw18, vyw13)) 29.96/14.55 new_primMulInt(Pos(vyw4000), Neg(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) 29.96/14.55 new_primMulInt(Neg(vyw4000), Pos(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_Int, bbd) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_esEs35(vyw302, vyw4002, app(ty_[], edb)) -> new_esEs16(vyw302, vyw4002, edb) 29.96/14.55 new_lt21(vyw113, vyw115, app(app(ty_@2, dag), dah)) -> new_lt11(vyw113, vyw115, dag, dah) 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_Float) -> new_ltEs14(vyw89, vyw90) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Integer) -> new_ltEs16(vyw66, vyw67) 29.96/14.55 new_lt4(vyw590, vyw600, ty_Double) -> new_lt7(vyw590, vyw600) 29.96/14.55 new_lt24(vyw3, vyw40, ty_Bool) -> new_lt10(vyw3, vyw40) 29.96/14.55 new_compare9(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Int) -> new_compare31(new_sr(vyw30, vyw401), new_sr(vyw400, vyw31)) 29.96/14.55 new_compare29(Float(vyw30, Pos(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Neg(vyw310), vyw400)) 29.96/14.55 new_compare29(Float(vyw30, Neg(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Pos(vyw310), vyw400)) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(ty_Maybe, bea)) -> new_esEs24(vyw300, vyw4000, bea) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Ordering) -> new_ltEs11(vyw590, vyw600) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), app(app(ty_Either, bca), bcb), bbd) -> new_esEs19(vyw300, vyw4000, bca, bcb) 29.96/14.55 new_esEs27(vyw590, vyw600, ty_@0) -> new_esEs22(vyw590, vyw600) 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_Bool) -> new_ltEs9(vyw102, vyw105) 29.96/14.55 new_esEs8(vyw30, vyw400, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs17(vyw30, vyw400, bfh, bga, bgb) 29.96/14.55 new_sr0(Integer(vyw4000), Integer(vyw310)) -> Integer(new_primMulInt(vyw4000, vyw310)) 29.96/14.55 new_esEs35(vyw302, vyw4002, ty_Double) -> new_esEs15(vyw302, vyw4002) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Ordering) -> new_compare8(vyw30, vyw400) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Int) -> new_compare31(vyw30, vyw400) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.55 new_esEs8(vyw30, vyw400, app(ty_Ratio, bgg)) -> new_esEs23(vyw30, vyw400, bgg) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Ordering) -> new_ltEs11(vyw59, vyw60) 29.96/14.55 new_esEs9(vyw31, vyw401, app(ty_Maybe, fcf)) -> new_esEs24(vyw31, vyw401, fcf) 29.96/14.55 new_lt21(vyw113, vyw115, ty_Double) -> new_lt7(vyw113, vyw115) 29.96/14.55 new_lt4(vyw590, vyw600, app(app(ty_@2, cg), da)) -> new_lt11(vyw590, vyw600, cg, da) 29.96/14.55 new_ltEs21(vyw66, vyw67, app(ty_Ratio, chf)) -> new_ltEs13(vyw66, vyw67, chf) 29.96/14.55 new_esEs26(vyw591, vyw601, app(ty_Maybe, ed)) -> new_esEs24(vyw591, vyw601, ed) 29.96/14.55 new_esEs9(vyw31, vyw401, ty_Float) -> new_esEs12(vyw31, vyw401) 29.96/14.55 new_esEs26(vyw591, vyw601, ty_Integer) -> new_esEs18(vyw591, vyw601) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Char) -> new_ltEs15(vyw59, vyw60) 29.96/14.55 new_esEs4(vyw32, vyw402, app(ty_Ratio, ehh)) -> new_esEs23(vyw32, vyw402, ehh) 29.96/14.55 new_esEs25(LT, LT) -> True 29.96/14.55 new_compare6(Right(vyw30), Right(vyw400), bba, bbb) -> new_compare25(vyw30, vyw400, new_esEs8(vyw30, vyw400, bbb), bba, bbb) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, app(ty_Maybe, cbe)) -> new_ltEs12(vyw590, vyw600, cbe) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_Char) -> new_esEs20(vyw31, vyw401) 29.96/14.55 new_lt24(vyw3, vyw40, app(ty_Maybe, bbc)) -> new_lt13(vyw3, vyw40, bbc) 29.96/14.55 new_asAs(True, vyw131) -> vyw131 29.96/14.55 new_esEs22(@0, @0) -> True 29.96/14.55 new_gt(vyw18, vyw13, app(app(ty_Either, dhb), dhc)) -> new_esEs41(new_compare6(vyw18, vyw13, dhb, dhc)) 29.96/14.55 new_esEs32(vyw113, vyw115, app(app(ty_@2, dag), dah)) -> new_esEs21(vyw113, vyw115, dag, dah) 29.96/14.55 new_compare9(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Integer) -> new_compare14(new_sr0(vyw30, vyw401), new_sr0(vyw400, vyw31)) 29.96/14.55 new_esEs26(vyw591, vyw601, ty_Ordering) -> new_esEs25(vyw591, vyw601) 29.96/14.55 new_esEs10(vyw30, vyw400, app(ty_[], fcg)) -> new_esEs16(vyw30, vyw400, fcg) 29.96/14.55 new_lt24(vyw3, vyw40, ty_Ordering) -> new_lt12(vyw3, vyw40) 29.96/14.55 new_esEs4(vyw32, vyw402, ty_Double) -> new_esEs15(vyw32, vyw402) 29.96/14.55 new_esEs5(vyw31, vyw401, app(app(ty_@2, fah), fba)) -> new_esEs21(vyw31, vyw401, fah, fba) 29.96/14.55 new_gt(vyw18, vyw13, ty_Float) -> new_esEs41(new_compare29(vyw18, vyw13)) 29.96/14.55 new_esEs38(vyw101, vyw104, ty_Int) -> new_esEs13(vyw101, vyw104) 29.96/14.55 new_esEs26(vyw591, vyw601, ty_Char) -> new_esEs20(vyw591, vyw601) 29.96/14.55 new_lt21(vyw113, vyw115, app(ty_[], daf)) -> new_lt9(vyw113, vyw115, daf) 29.96/14.55 new_ltEs22(vyw114, vyw116, app(app(ty_Either, dbf), dbg)) -> new_ltEs7(vyw114, vyw116, dbf, dbg) 29.96/14.55 new_compare211(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, True, fea, feb, fec) -> EQ 29.96/14.55 new_ltEs21(vyw66, vyw67, app(ty_Maybe, che)) -> new_ltEs12(vyw66, vyw67, che) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_@0) -> new_ltEs18(vyw590, vyw600) 29.96/14.55 new_gt(vyw18, vyw13, app(ty_[], dhd)) -> new_esEs41(new_compare3(vyw18, vyw13, dhd)) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Int) -> new_ltEs17(vyw66, vyw67) 29.96/14.55 new_compare6(Right(vyw30), Left(vyw400), bba, bbb) -> GT 29.96/14.55 new_sr(vyw400, vyw31) -> new_primMulInt(vyw400, vyw31) 29.96/14.55 new_lt18(vyw3, vyw40) -> new_esEs29(new_compare31(vyw3, vyw40)) 29.96/14.55 new_ltEs21(vyw66, vyw67, app(app(ty_Either, cgh), cha)) -> new_ltEs7(vyw66, vyw67, cgh, cha) 29.96/14.55 new_ltEs9(False, False) -> True 29.96/14.55 new_primMulNat0(Zero, Zero) -> Zero 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Double) -> new_esEs15(vyw100, vyw103) 29.96/14.55 new_esEs11(vyw30, vyw400, app(app(ty_@2, ced), cee)) -> new_esEs21(vyw30, vyw400, ced, cee) 29.96/14.55 new_compare27(True, False) -> GT 29.96/14.55 new_lt12(vyw3, vyw40) -> new_esEs29(new_compare8(vyw3, vyw40)) 29.96/14.55 new_compare8(LT, LT) -> EQ 29.96/14.55 new_ltEs4(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), bf, bg, bh) -> new_pePe(new_lt4(vyw590, vyw600, bf), new_asAs(new_esEs27(vyw590, vyw600, bf), new_pePe(new_lt5(vyw591, vyw601, bg), new_asAs(new_esEs26(vyw591, vyw601, bg), new_ltEs5(vyw592, vyw602, bh))))) 29.96/14.55 new_ltEs14(vyw59, vyw60) -> new_fsEs(new_compare29(vyw59, vyw60)) 29.96/14.55 new_ltEs22(vyw114, vyw116, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_ltEs4(vyw114, vyw116, dbc, dbd, dbe) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Bool) -> new_ltEs9(vyw59, vyw60) 29.96/14.55 new_ltEs20(vyw59, vyw60, app(ty_Maybe, cda)) -> new_ltEs12(vyw59, vyw60, cda) 29.96/14.55 new_compare8(LT, EQ) -> LT 29.96/14.55 new_gt(vyw18, vyw13, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs41(new_compare18(vyw18, vyw13, dgg, dgh, dha)) 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_Ordering) -> new_ltEs11(vyw102, vyw105) 29.96/14.55 new_ltEs19(vyw591, vyw601, app(ty_Ratio, baf)) -> new_ltEs13(vyw591, vyw601, baf) 29.96/14.55 new_lt19(vyw3, vyw40) -> new_esEs29(new_compare32(vyw3, vyw40)) 29.96/14.55 new_esEs9(vyw31, vyw401, ty_Ordering) -> new_esEs25(vyw31, vyw401) 29.96/14.55 new_esEs39(vyw100, vyw103, app(ty_Ratio, ffe)) -> new_esEs23(vyw100, vyw103, ffe) 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Ordering) -> new_esEs25(vyw590, vyw600) 29.96/14.55 new_esEs37(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_esEs9(vyw31, vyw401, ty_Integer) -> new_esEs18(vyw31, vyw401) 29.96/14.55 new_lt5(vyw591, vyw601, app(ty_[], ea)) -> new_lt9(vyw591, vyw601, ea) 29.96/14.55 new_compare32(@0, @0) -> EQ 29.96/14.55 new_esEs33(vyw301, vyw4001, app(app(ty_@2, dde), ddf)) -> new_esEs21(vyw301, vyw4001, dde, ddf) 29.96/14.55 new_esEs26(vyw591, vyw601, ty_Float) -> new_esEs12(vyw591, vyw601) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.55 new_esEs9(vyw31, vyw401, app(app(app(ty_@3, fbf), fbg), fbh)) -> new_esEs17(vyw31, vyw401, fbf, fbg, fbh) 29.96/14.55 new_ltEs9(True, False) -> False 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_Int) -> new_ltEs17(vyw591, vyw601) 29.96/14.55 new_esEs7(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_@0) -> new_esEs22(vyw590, vyw600) 29.96/14.55 new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False 29.96/14.55 new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False 29.96/14.55 new_esEs9(vyw31, vyw401, app(ty_Ratio, fce)) -> new_esEs23(vyw31, vyw401, fce) 29.96/14.55 new_lt4(vyw590, vyw600, app(ty_[], cf)) -> new_lt9(vyw590, vyw600, cf) 29.96/14.55 new_ltEs20(vyw59, vyw60, app(ty_Ratio, cdb)) -> new_ltEs13(vyw59, vyw60, cdb) 29.96/14.55 new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Char) -> new_ltEs15(vyw590, vyw600) 29.96/14.55 new_lt20(vyw590, vyw600, ty_Double) -> new_lt7(vyw590, vyw600) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) 29.96/14.55 new_lt23(vyw101, vyw104, ty_Ordering) -> new_lt12(vyw101, vyw104) 29.96/14.55 new_ltEs19(vyw591, vyw601, app(ty_Maybe, bae)) -> new_ltEs12(vyw591, vyw601, bae) 29.96/14.55 new_lt20(vyw590, vyw600, app(app(ty_@2, ha), hb)) -> new_lt11(vyw590, vyw600, ha, hb) 29.96/14.55 new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False 29.96/14.55 new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False 29.96/14.55 new_esEs10(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.55 new_primCmpInt(Neg(Zero), Neg(Succ(vyw4000))) -> new_primCmpNat0(Succ(vyw4000), Zero) 29.96/14.55 new_lt20(vyw590, vyw600, app(ty_Ratio, hd)) -> new_lt14(vyw590, vyw600, hd) 29.96/14.55 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs17(vyw300, vyw4000, bda, bdb, bdc) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.55 new_ltEs19(vyw591, vyw601, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs4(vyw591, vyw601, he, hf, hg) 29.96/14.55 new_compare17(vyw30, vyw400, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_compare18(vyw30, vyw400, ceh, cfa, cfb) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(app(ty_Either, bdd), bde)) -> new_esEs19(vyw300, vyw4000, bdd, bde) 29.96/14.55 new_esEs26(vyw591, vyw601, ty_@0) -> new_esEs22(vyw591, vyw601) 29.96/14.55 new_esEs40(vyw300, vyw4000, app(ty_Ratio, gbb)) -> new_esEs23(vyw300, vyw4000, gbb) 29.96/14.55 new_compare12(vyw153, vyw154, True, beb) -> LT 29.96/14.55 new_esEs5(vyw31, vyw401, ty_Int) -> new_esEs13(vyw31, vyw401) 29.96/14.55 new_lt22(vyw100, vyw103, ty_Double) -> new_lt7(vyw100, vyw103) 29.96/14.55 new_compare8(GT, LT) -> GT 29.96/14.55 new_compare7(Nothing, Nothing, bbc) -> EQ 29.96/14.55 new_compare24(vyw59, vyw60, False, ccf, ccg) -> new_compare13(vyw59, vyw60, new_ltEs20(vyw59, vyw60, ccf), ccf, ccg) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Int) -> new_ltEs17(vyw59, vyw60) 29.96/14.55 new_esEs11(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Ordering) -> new_ltEs11(vyw66, vyw67) 29.96/14.55 new_esEs7(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), app(ty_[], bhg), bhd) -> new_ltEs8(vyw590, vyw600, bhg) 29.96/14.55 new_esEs7(vyw30, vyw400, app(ty_Ratio, bfe)) -> new_esEs23(vyw30, vyw400, bfe) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.55 new_esEs27(vyw590, vyw600, app(ty_Maybe, db)) -> new_esEs24(vyw590, vyw600, db) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), app(ty_[], bbe), bbd) -> new_esEs16(vyw300, vyw4000, bbe) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_not(False) -> True 29.96/14.55 new_compare8(EQ, LT) -> GT 29.96/14.55 new_esEs36(vyw301, vyw4001, app(ty_[], eed)) -> new_esEs16(vyw301, vyw4001, eed) 29.96/14.55 new_compare15(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, vyw172, cdc, cdd, cde) -> new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, vyw172, cdc, cdd, cde) 29.96/14.55 new_esEs26(vyw591, vyw601, app(app(app(ty_@3, dd), de), df)) -> new_esEs17(vyw591, vyw601, dd, de, df) 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Integer) -> new_esEs18(vyw590, vyw600) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_Integer) -> new_ltEs16(vyw590, vyw600) 29.96/14.55 new_lt24(vyw3, vyw40, ty_Double) -> new_lt7(vyw3, vyw40) 29.96/14.55 new_esEs41(LT) -> False 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), app(ty_Ratio, ece)) -> new_esEs23(vyw300, vyw4000, ece) 29.96/14.55 new_esEs28(vyw590, vyw600, app(app(ty_Either, gf), gg)) -> new_esEs19(vyw590, vyw600, gf, gg) 29.96/14.55 new_esEs9(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) 29.96/14.55 new_esEs38(vyw101, vyw104, app(app(ty_@2, fgd), fge)) -> new_esEs21(vyw101, vyw104, fgd, fge) 29.96/14.55 new_compare17(vyw30, vyw400, app(app(ty_Either, cfc), cfd)) -> new_compare6(vyw30, vyw400, cfc, cfd) 29.96/14.55 new_lt21(vyw113, vyw115, app(ty_Ratio, dbb)) -> new_lt14(vyw113, vyw115, dbb) 29.96/14.55 new_ltEs11(LT, EQ) -> True 29.96/14.55 new_esEs5(vyw31, vyw401, app(ty_Ratio, fbb)) -> new_esEs23(vyw31, vyw401, fbb) 29.96/14.55 new_ltEs24(vyw102, vyw105, app(ty_Maybe, fhh)) -> new_ltEs12(vyw102, vyw105, fhh) 29.96/14.55 new_ltEs5(vyw592, vyw602, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs4(vyw592, vyw602, ef, eg, eh) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.55 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.96/14.55 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Bool) -> new_ltEs9(vyw590, vyw600) 29.96/14.55 new_compare210(vyw113, vyw114, vyw115, vyw116, False, chg, chh) -> new_compare10(vyw113, vyw114, vyw115, vyw116, new_lt21(vyw113, vyw115, chg), new_asAs(new_esEs32(vyw113, vyw115, chg), new_ltEs22(vyw114, vyw116, chh)), chg, chh) 29.96/14.55 new_lt23(vyw101, vyw104, ty_Bool) -> new_lt10(vyw101, vyw104) 29.96/14.55 new_lt24(vyw3, vyw40, app(ty_Ratio, cbg)) -> new_lt14(vyw3, vyw40, cbg) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Char) -> new_compare30(vyw30, vyw400) 29.96/14.55 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.96/14.55 new_esEs26(vyw591, vyw601, app(app(ty_Either, dg), dh)) -> new_esEs19(vyw591, vyw601, dg, dh) 29.96/14.55 new_ltEs21(vyw66, vyw67, app(app(app(ty_@3, cge), cgf), cgg)) -> new_ltEs4(vyw66, vyw67, cge, cgf, cgg) 29.96/14.55 new_primMulNat0(Succ(vyw40000), Succ(vyw3100)) -> new_primPlusNat0(new_primMulNat0(vyw40000, Succ(vyw3100)), vyw3100) 29.96/14.55 new_compare29(Float(vyw30, Pos(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Pos(vyw310), vyw400)) 29.96/14.55 new_lt22(vyw100, vyw103, app(ty_[], ffa)) -> new_lt9(vyw100, vyw103, ffa) 29.96/14.55 new_gt(vyw18, vyw13, ty_Integer) -> new_esEs41(new_compare14(vyw18, vyw13)) 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_Ordering) -> new_ltEs11(vyw591, vyw601) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), app(app(app(ty_@3, bha), bhb), bhc), bhd) -> new_ltEs4(vyw590, vyw600, bha, bhb, bhc) 29.96/14.55 new_compare17(vyw30, vyw400, app(ty_Maybe, cfh)) -> new_compare7(vyw30, vyw400, cfh) 29.96/14.55 new_ltEs11(LT, GT) -> True 29.96/14.55 new_compare30(Char(vyw30), Char(vyw400)) -> new_primCmpNat0(vyw30, vyw400) 29.96/14.55 new_compare8(EQ, EQ) -> EQ 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_Int) -> new_ltEs17(vyw89, vyw90) 29.96/14.55 new_esEs36(vyw301, vyw4001, app(app(ty_@2, efb), efc)) -> new_esEs21(vyw301, vyw4001, efb, efc) 29.96/14.55 new_esEs27(vyw590, vyw600, app(app(ty_Either, cd), ce)) -> new_esEs19(vyw590, vyw600, cd, ce) 29.96/14.55 new_esEs24(Nothing, Nothing, ebd) -> True 29.96/14.55 new_ltEs22(vyw114, vyw116, app(ty_Maybe, dcc)) -> new_ltEs12(vyw114, vyw116, dcc) 29.96/14.55 new_esEs16(:(vyw300, vyw301), [], fbd) -> False 29.96/14.55 new_esEs16([], :(vyw4000, vyw4001), fbd) -> False 29.96/14.55 new_lt23(vyw101, vyw104, app(ty_[], fgc)) -> new_lt9(vyw101, vyw104, fgc) 29.96/14.55 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.96/14.55 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_Char) -> new_ltEs15(vyw102, vyw105) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_Float) -> new_ltEs14(vyw590, vyw600) 29.96/14.55 new_compare110(vyw143, vyw144, False, dge, dgf) -> GT 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_Bool) -> new_ltEs9(vyw89, vyw90) 29.96/14.55 new_primEqNat0(Zero, Zero) -> True 29.96/14.55 new_esEs37(vyw300, vyw4000, app(app(ty_@2, egd), ege)) -> new_esEs21(vyw300, vyw4000, egd, ege) 29.96/14.55 new_ltEs23(vyw89, vyw90, app(ty_Maybe, ebb)) -> new_ltEs12(vyw89, vyw90, ebb) 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_Double) -> new_esEs15(vyw301, vyw4001) 29.96/14.55 new_ltEs23(vyw89, vyw90, app(app(ty_Either, eae), eaf)) -> new_ltEs7(vyw89, vyw90, eae, eaf) 29.96/14.55 new_esEs24(Nothing, Just(vyw4000), ebd) -> False 29.96/14.55 new_esEs24(Just(vyw300), Nothing, ebd) -> False 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Int) -> new_ltEs17(vyw114, vyw116) 29.96/14.55 new_asAs(False, vyw131) -> False 29.96/14.55 new_gt(vyw18, vyw13, ty_Ordering) -> new_esEs41(new_compare8(vyw18, vyw13)) 29.96/14.55 new_lt23(vyw101, vyw104, app(ty_Ratio, fgg)) -> new_lt14(vyw101, vyw104, fgg) 29.96/14.55 new_esEs4(vyw32, vyw402, ty_Int) -> new_esEs13(vyw32, vyw402) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.55 new_esEs25(EQ, EQ) -> True 29.96/14.55 new_ltEs20(vyw59, vyw60, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(vyw59, vyw60, bf, bg, bh) 29.96/14.55 new_esEs34(vyw300, vyw4000, app(ty_[], dea)) -> new_esEs16(vyw300, vyw4000, dea) 29.96/14.55 new_compare10(vyw180, vyw181, vyw182, vyw183, False, vyw185, bag, bah) -> new_compare11(vyw180, vyw181, vyw182, vyw183, vyw185, bag, bah) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Int) -> new_ltEs17(vyw590, vyw600) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.55 new_esEs11(vyw30, vyw400, app(ty_[], cdf)) -> new_esEs16(vyw30, vyw400, cdf) 29.96/14.55 new_lt23(vyw101, vyw104, ty_Double) -> new_lt7(vyw101, vyw104) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Int) -> new_esEs13(vyw100, vyw103) 29.96/14.55 new_esEs6(vyw30, vyw400, app(ty_Ratio, cgb)) -> new_esEs23(vyw30, vyw400, cgb) 29.96/14.55 new_esEs9(vyw31, vyw401, ty_Char) -> new_esEs20(vyw31, vyw401) 29.96/14.55 new_ltEs11(EQ, LT) -> False 29.96/14.55 29.96/14.55 The set Q consists of the following terms: 29.96/14.55 29.96/14.55 new_esEs32(x0, x1, ty_Double) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.96/14.55 new_ltEs8(x0, x1, x2) 29.96/14.55 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_primCompAux00(x0, EQ) 29.96/14.55 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_compare17(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_compare13(x0, x1, False, x2, x3) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.96/14.55 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 29.96/14.55 new_esEs4(x0, x1, ty_Bool) 29.96/14.55 new_esEs8(x0, x1, ty_Char) 29.96/14.55 new_primPlusNat1(Zero, Zero) 29.96/14.55 new_esEs28(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs5(x0, x1, ty_@0) 29.96/14.55 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_primCompAux0(x0, x1, x2, x3) 29.96/14.55 new_esEs32(x0, x1, ty_Ordering) 29.96/14.55 new_esEs10(x0, x1, ty_Int) 29.96/14.55 new_esEs36(x0, x1, ty_Ordering) 29.96/14.55 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs7(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, ty_Char) 29.96/14.55 new_lt22(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs4(x0, x1, ty_@0) 29.96/14.55 new_esEs5(x0, x1, ty_Bool) 29.96/14.55 new_esEs26(x0, x1, ty_Double) 29.96/14.55 new_primEqInt(Pos(Zero), Pos(Zero)) 29.96/14.55 new_ltEs22(x0, x1, ty_Ordering) 29.96/14.55 new_compare210(x0, x1, x2, x3, True, x4, x5) 29.96/14.55 new_ltEs21(x0, x1, ty_Float) 29.96/14.55 new_compare17(x0, x1, ty_Integer) 29.96/14.55 new_esEs36(x0, x1, app(ty_[], x2)) 29.96/14.55 new_compare17(x0, x1, ty_@0) 29.96/14.55 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs35(x0, x1, ty_Ordering) 29.96/14.55 new_esEs4(x0, x1, ty_Integer) 29.96/14.55 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs9(x0, x1, ty_Int) 29.96/14.55 new_ltEs22(x0, x1, ty_Double) 29.96/14.55 new_esEs14(True, True) 29.96/14.55 new_compare110(x0, x1, False, x2, x3) 29.96/14.55 new_primEqInt(Neg(Zero), Neg(Zero)) 29.96/14.55 new_esEs36(x0, x1, ty_Double) 29.96/14.55 new_esEs9(x0, x1, ty_@0) 29.96/14.55 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs25(LT, LT) 29.96/14.55 new_esEs30(x0, x1, ty_Int) 29.96/14.55 new_esEs32(x0, x1, ty_Char) 29.96/14.55 new_esEs8(x0, x1, ty_Ordering) 29.96/14.55 new_compare29(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.96/14.55 new_compare29(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.96/14.55 new_esEs24(Just(x0), Just(x1), ty_Integer) 29.96/14.55 new_ltEs9(True, True) 29.96/14.55 new_esEs6(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs5(x0, x1, ty_Int) 29.96/14.55 new_ltEs24(x0, x1, ty_Ordering) 29.96/14.55 new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 29.96/14.55 new_ltEs24(x0, x1, app(ty_[], x2)) 29.96/14.55 new_lt24(x0, x1, ty_@0) 29.96/14.55 new_esEs34(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs6(x0, x1, ty_@0) 29.96/14.55 new_esEs24(Just(x0), Just(x1), ty_@0) 29.96/14.55 new_esEs35(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, ty_Double) 29.96/14.55 new_esEs27(x0, x1, ty_Double) 29.96/14.55 new_lt24(x0, x1, ty_Bool) 29.96/14.55 new_gt(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs6(x0, x1, ty_Bool) 29.96/14.55 new_compare11(x0, x1, x2, x3, True, x4, x5) 29.96/14.55 new_lt11(x0, x1, x2, x3) 29.96/14.55 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.96/14.55 new_esEs37(x0, x1, ty_Ordering) 29.96/14.55 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs11(x0, x1, ty_Float) 29.96/14.55 new_esEs26(x0, x1, ty_Char) 29.96/14.55 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs13(x0, x1, x2) 29.96/14.55 new_compare8(EQ, EQ) 29.96/14.55 new_lt14(x0, x1, x2) 29.96/14.55 new_primEqInt(Pos(Zero), Neg(Zero)) 29.96/14.55 new_primEqInt(Neg(Zero), Pos(Zero)) 29.96/14.55 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs24(Just(x0), Just(x1), ty_Bool) 29.96/14.55 new_lt4(x0, x1, ty_Float) 29.96/14.55 new_compare12(x0, x1, False, x2) 29.96/14.55 new_esEs25(LT, EQ) 29.96/14.55 new_esEs25(EQ, LT) 29.96/14.55 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs35(x0, x1, ty_Char) 29.96/14.55 new_esEs35(x0, x1, ty_Double) 29.96/14.55 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs6(x0, x1, ty_Int) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), ty_Float) 29.96/14.55 new_lt24(x0, x1, ty_Int) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 29.96/14.55 new_esEs40(x0, x1, ty_Float) 29.96/14.55 new_esEs10(x0, x1, ty_Integer) 29.96/14.55 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.96/14.55 new_esEs25(EQ, GT) 29.96/14.55 new_esEs25(GT, EQ) 29.96/14.55 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.96/14.55 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.96/14.55 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs9(x0, x1, ty_Bool) 29.96/14.55 new_esEs38(x0, x1, ty_Double) 29.96/14.55 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_gt(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs38(x0, x1, ty_Char) 29.96/14.55 new_primMulInt(Pos(x0), Neg(x1)) 29.96/14.55 new_primMulInt(Neg(x0), Pos(x1)) 29.96/14.55 new_lt21(x0, x1, ty_Double) 29.96/14.55 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_lt7(x0, x1) 29.96/14.55 new_esEs6(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 29.96/14.55 new_esEs7(x0, x1, ty_Integer) 29.96/14.55 new_ltEs11(GT, GT) 29.96/14.55 new_esEs39(x0, x1, ty_Ordering) 29.96/14.55 new_lt12(x0, x1) 29.96/14.55 new_asAs(True, x0) 29.96/14.55 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.96/14.55 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 29.96/14.55 new_esEs27(x0, x1, ty_Char) 29.96/14.55 new_esEs4(x0, x1, ty_Int) 29.96/14.55 new_esEs38(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 29.96/14.55 new_primMulInt(Pos(x0), Pos(x1)) 29.96/14.55 new_esEs11(x0, x1, ty_Integer) 29.96/14.55 new_sr(x0, x1) 29.96/14.55 new_esEs30(x0, x1, ty_Integer) 29.96/14.55 new_esEs6(x0, x1, ty_Integer) 29.96/14.55 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs9(x0, x1, ty_Integer) 29.96/14.55 new_lt23(x0, x1, ty_Double) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.96/14.55 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.96/14.55 new_ltEs21(x0, x1, ty_@0) 29.96/14.55 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs39(x0, x1, ty_Double) 29.96/14.55 new_esEs4(x0, x1, ty_Float) 29.96/14.55 new_esEs40(x0, x1, ty_Bool) 29.96/14.55 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_compare26(x0, x1, False, x2) 29.96/14.55 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), ty_Double) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 29.96/14.55 new_esEs10(x0, x1, ty_Bool) 29.96/14.55 new_esEs18(Integer(x0), Integer(x1)) 29.96/14.55 new_esEs27(x0, x1, ty_Float) 29.96/14.55 new_ltEs16(x0, x1) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.96/14.55 new_primMulInt(Neg(x0), Neg(x1)) 29.96/14.55 new_esEs37(x0, x1, ty_Float) 29.96/14.55 new_esEs31(x0, x1, ty_Int) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) 29.96/14.55 new_lt5(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_primEqNat0(Succ(x0), Succ(x1)) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 29.96/14.55 new_esEs11(x0, x1, ty_Bool) 29.96/14.55 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.96/14.55 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.96/14.55 new_esEs7(x0, x1, ty_@0) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.96/14.55 new_ltEs24(x0, x1, ty_Double) 29.96/14.55 new_esEs32(x0, x1, app(ty_[], x2)) 29.96/14.55 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_ltEs20(x0, x1, ty_@0) 29.96/14.55 new_ltEs19(x0, x1, app(ty_[], x2)) 29.96/14.55 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 29.96/14.55 new_esEs8(x0, x1, ty_Double) 29.96/14.55 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.96/14.55 new_esEs4(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_lt20(x0, x1, ty_Double) 29.96/14.55 new_lt5(x0, x1, ty_Int) 29.96/14.55 new_esEs40(x0, x1, ty_Ordering) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 29.96/14.55 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs34(x0, x1, ty_Double) 29.96/14.55 new_primCompAux00(x0, LT) 29.96/14.55 new_esEs8(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs37(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs28(x0, x1, ty_Char) 29.96/14.55 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_lt4(x0, x1, ty_Integer) 29.96/14.55 new_esEs26(x0, x1, ty_Ordering) 29.96/14.55 new_pePe(False, x0) 29.96/14.55 new_lt4(x0, x1, ty_Ordering) 29.96/14.55 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 29.96/14.55 new_esEs40(x0, x1, ty_Integer) 29.96/14.55 new_lt23(x0, x1, ty_@0) 29.96/14.55 new_ltEs5(x0, x1, ty_Ordering) 29.96/14.55 new_esEs11(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs10(x0, x1, ty_Float) 29.96/14.55 new_esEs40(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs37(x0, x1, ty_Char) 29.96/14.55 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), ty_Char, x2) 29.96/14.55 new_lt5(x0, x1, ty_Bool) 29.96/14.55 new_esEs9(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_lt22(x0, x1, ty_Char) 29.96/14.55 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 29.96/14.55 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_compare7(Nothing, Nothing, x0) 29.96/14.55 new_lt21(x0, x1, ty_Bool) 29.96/14.55 new_esEs20(Char(x0), Char(x1)) 29.96/14.55 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_lt5(x0, x1, ty_@0) 29.96/14.55 new_ltEs19(x0, x1, ty_Bool) 29.96/14.55 new_compare3([], [], x0) 29.96/14.55 new_esEs16(:(x0, x1), :(x2, x3), x4) 29.96/14.55 new_esEs39(x0, x1, ty_Bool) 29.96/14.55 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 29.96/14.55 new_primPlusNat1(Succ(x0), Succ(x1)) 29.96/14.55 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs34(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs39(x0, x1, ty_Integer) 29.96/14.55 new_lt8(x0, x1, x2, x3) 29.96/14.55 new_ltEs19(x0, x1, ty_@0) 29.96/14.55 new_compare30(Char(x0), Char(x1)) 29.96/14.55 new_lt21(x0, x1, ty_@0) 29.96/14.55 new_compare27(True, True) 29.96/14.55 new_lt20(x0, x1, ty_@0) 29.96/14.55 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 29.96/14.55 new_compare12(x0, x1, True, x2) 29.96/14.55 new_ltEs21(x0, x1, ty_Char) 29.96/14.55 new_lt23(x0, x1, ty_Bool) 29.96/14.55 new_esEs38(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs37(x0, x1, ty_Integer) 29.96/14.55 new_esEs39(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.96/14.55 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_lt21(x0, x1, ty_Integer) 29.96/14.55 new_compare25(x0, x1, True, x2, x3) 29.96/14.55 new_esEs8(x0, x1, ty_Float) 29.96/14.55 new_esEs33(x0, x1, ty_Int) 29.96/14.55 new_esEs35(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs35(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_lt20(x0, x1, ty_Integer) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_compare6(Left(x0), Left(x1), x2, x3) 29.96/14.55 new_ltEs21(x0, x1, ty_Int) 29.96/14.55 new_compare8(LT, LT) 29.96/14.55 new_lt20(x0, x1, app(ty_[], x2)) 29.96/14.55 new_compare15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 29.96/14.55 new_esEs33(x0, x1, ty_Char) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), ty_Int, x2) 29.96/14.55 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs11(x0, x1, ty_@0) 29.96/14.55 new_esEs25(EQ, EQ) 29.96/14.55 new_not(True) 29.96/14.55 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_pePe(True, x0) 29.96/14.55 new_gt(x0, x1, ty_Int) 29.96/14.55 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), ty_Double, x2) 29.96/14.55 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs40(x0, x1, ty_@0) 29.96/14.55 new_lt23(x0, x1, ty_Integer) 29.96/14.55 new_esEs34(x0, x1, ty_Ordering) 29.96/14.55 new_lt19(x0, x1) 29.96/14.55 new_ltEs12(Just(x0), Nothing, x1) 29.96/14.55 new_esEs8(x0, x1, app(ty_[], x2)) 29.96/14.55 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 29.96/14.55 new_esEs26(x0, x1, app(ty_[], x2)) 29.96/14.55 new_gt(x0, x1, ty_Char) 29.96/14.55 new_esEs8(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_lt24(x0, x1, ty_Float) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) 29.96/14.55 new_esEs33(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs25(LT, GT) 29.96/14.55 new_esEs25(GT, LT) 29.96/14.55 new_esEs10(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_lt21(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs6(x0, x1, ty_Float) 29.96/14.55 new_lt21(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs7(x0, x1, ty_Ordering) 29.96/14.55 new_lt4(x0, x1, ty_@0) 29.96/14.55 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 29.96/14.55 new_ltEs19(x0, x1, ty_Float) 29.96/14.55 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 29.96/14.55 new_esEs7(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_lt22(x0, x1, ty_Int) 29.96/14.55 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.96/14.55 new_esEs36(x0, x1, ty_Integer) 29.96/14.55 new_lt22(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_lt4(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_lt5(x0, x1, ty_Integer) 29.96/14.55 new_compare17(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_compare28(@2(x0, x1), @2(x2, x3), x4, x5) 29.96/14.55 new_esEs26(x0, x1, ty_@0) 29.96/14.55 new_lt22(x0, x1, ty_@0) 29.96/14.55 new_esEs29(EQ) 29.96/14.55 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_primPlusNat0(Zero, x0) 29.96/14.55 new_compare17(x0, x1, ty_Ordering) 29.96/14.55 new_esEs32(x0, x1, ty_@0) 29.96/14.55 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 29.96/14.55 new_esEs10(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_lt21(x0, x1, ty_Float) 29.96/14.55 new_lt22(x0, x1, ty_Integer) 29.96/14.55 new_esEs8(x0, x1, ty_Integer) 29.96/14.55 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs7(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs33(x0, x1, ty_@0) 29.96/14.55 new_ltEs21(x0, x1, ty_Integer) 29.96/14.55 new_esEs39(x0, x1, ty_Float) 29.96/14.55 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_lt20(x0, x1, ty_Int) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.96/14.55 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs36(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs19(x0, x1, ty_Int) 29.96/14.55 new_compare6(Right(x0), Right(x1), x2, x3) 29.96/14.55 new_lt24(x0, x1, ty_Integer) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 29.96/14.55 new_ltEs20(x0, x1, ty_Ordering) 29.96/14.55 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.96/14.55 new_esEs27(x0, x1, ty_Ordering) 29.96/14.55 new_esEs26(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs39(x0, x1, ty_Char) 29.96/14.55 new_esEs5(x0, x1, ty_Ordering) 29.96/14.55 new_esEs33(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.96/14.55 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.96/14.55 new_lt4(x0, x1, app(ty_[], x2)) 29.96/14.55 new_lt16(x0, x1) 29.96/14.55 new_esEs36(x0, x1, ty_Bool) 29.96/14.55 new_ltEs23(x0, x1, app(ty_[], x2)) 29.96/14.55 new_lt22(x0, x1, ty_Bool) 29.96/14.55 new_esEs39(x0, x1, ty_Int) 29.96/14.55 new_lt20(x0, x1, ty_Float) 29.96/14.55 new_ltEs19(x0, x1, ty_Char) 29.96/14.55 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.96/14.55 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_gt(x0, x1, ty_Bool) 29.96/14.55 new_esEs39(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs5(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_primEqNat0(Zero, Zero) 29.96/14.55 new_esEs10(x0, x1, ty_Double) 29.96/14.55 new_gt(x0, x1, ty_Integer) 29.96/14.55 new_esEs36(x0, x1, ty_Char) 29.96/14.55 new_esEs38(x0, x1, ty_Ordering) 29.96/14.55 new_ltEs9(False, False) 29.96/14.55 new_not(False) 29.96/14.55 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs9(x0, x1, ty_Float) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.96/14.55 new_lt23(x0, x1, ty_Int) 29.96/14.55 new_esEs16(:(x0, x1), [], x2) 29.96/14.55 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs36(x0, x1, ty_Int) 29.96/14.55 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_primCmpNat0(Succ(x0), Succ(x1)) 29.96/14.55 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs36(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), ty_Float, x2) 29.96/14.55 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs37(x0, x1, ty_@0) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 29.96/14.55 new_lt23(x0, x1, ty_Char) 29.96/14.55 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_compare3([], :(x0, x1), x2) 29.96/14.55 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_lt20(x0, x1, ty_Char) 29.96/14.55 new_esEs8(x0, x1, ty_Bool) 29.96/14.55 new_lt23(x0, x1, ty_Float) 29.96/14.55 new_ltEs19(x0, x1, ty_Integer) 29.96/14.55 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_compare15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 29.96/14.55 new_compare27(False, True) 29.96/14.55 new_ltEs21(x0, x1, ty_Bool) 29.96/14.55 new_compare27(True, False) 29.96/14.55 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs41(LT) 29.96/14.55 new_lt21(x0, x1, ty_Int) 29.96/14.55 new_lt20(x0, x1, ty_Bool) 29.96/14.55 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs24(Nothing, Just(x0), x1) 29.96/14.55 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs11(EQ, GT) 29.96/14.55 new_ltEs11(GT, EQ) 29.96/14.55 new_compare110(x0, x1, True, x2, x3) 29.96/14.55 new_esEs28(x0, x1, ty_@0) 29.96/14.55 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs36(x0, x1, ty_Float) 29.96/14.55 new_ltEs18(x0, x1) 29.96/14.55 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_compare24(x0, x1, True, x2, x3) 29.96/14.55 new_compare25(x0, x1, False, x2, x3) 29.96/14.55 new_primMulNat0(Succ(x0), Zero) 29.96/14.55 new_ltEs23(x0, x1, ty_Ordering) 29.96/14.55 new_ltEs22(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.96/14.55 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.96/14.55 new_lt23(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_lt21(x0, x1, ty_Char) 29.96/14.55 new_esEs35(x0, x1, ty_Int) 29.96/14.55 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs8(x0, x1, ty_Int) 29.96/14.55 new_esEs10(x0, x1, ty_Char) 29.96/14.55 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_compare8(LT, GT) 29.96/14.55 new_compare8(GT, LT) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 29.96/14.55 new_esEs33(x0, x1, ty_Float) 29.96/14.55 new_lt24(x0, x1, ty_Char) 29.96/14.55 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs6(x0, x1, ty_Char) 29.96/14.55 new_ltEs5(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs5(x0, x1, ty_Float) 29.96/14.55 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs9(x0, x1, ty_Char) 29.96/14.55 new_esEs28(x0, x1, ty_Integer) 29.96/14.55 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 29.96/14.55 new_esEs4(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs9(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs28(x0, x1, ty_Bool) 29.96/14.55 new_ltEs6(x0, x1) 29.96/14.55 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs32(x0, x1, ty_Int) 29.96/14.55 new_esEs24(Just(x0), Nothing, x1) 29.96/14.55 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs5(x0, x1, ty_Char) 29.96/14.55 new_compare27(False, False) 29.96/14.55 new_esEs5(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.96/14.55 new_primCmpNat0(Succ(x0), Zero) 29.96/14.55 new_asAs(False, x0) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.96/14.55 new_esEs29(GT) 29.96/14.55 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.96/14.55 new_primMulNat0(Succ(x0), Succ(x1)) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) 29.96/14.55 new_lt24(x0, x1, ty_Double) 29.96/14.55 new_lt22(x0, x1, ty_Float) 29.96/14.55 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs22(x0, x1, ty_Int) 29.96/14.55 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.96/14.55 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.96/14.55 new_ltEs14(x0, x1) 29.96/14.55 new_esEs10(x0, x1, ty_Ordering) 29.96/14.55 new_esEs6(x0, x1, ty_Double) 29.96/14.55 new_esEs26(x0, x1, ty_Int) 29.96/14.55 new_esEs14(False, True) 29.96/14.55 new_esEs14(True, False) 29.96/14.55 new_compare26(x0, x1, True, x2) 29.96/14.55 new_esEs35(x0, x1, ty_@0) 29.96/14.55 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.96/14.55 new_esEs9(x0, x1, ty_Double) 29.96/14.55 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.96/14.55 new_esEs34(x0, x1, ty_Integer) 29.96/14.55 new_esEs38(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_compare29(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.96/14.55 new_esEs35(x0, x1, ty_Bool) 29.96/14.55 new_esEs37(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs25(GT, GT) 29.96/14.55 new_lt22(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, ty_Int) 29.96/14.55 new_gt(x0, x1, ty_Float) 29.96/14.55 new_esEs33(x0, x1, ty_Integer) 29.96/14.55 new_esEs22(@0, @0) 29.96/14.55 new_lt13(x0, x1, x2) 29.96/14.55 new_esEs38(x0, x1, ty_Int) 29.96/14.55 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 29.96/14.55 new_gt(x0, x1, ty_@0) 29.96/14.55 new_gt(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs20(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, ty_@0) 29.96/14.55 new_compare8(EQ, GT) 29.96/14.55 new_compare8(GT, EQ) 29.96/14.55 new_esEs19(Left(x0), Right(x1), x2, x3) 29.96/14.55 new_esEs19(Right(x0), Left(x1), x2, x3) 29.96/14.55 new_ltEs11(LT, EQ) 29.96/14.55 new_ltEs11(EQ, LT) 29.96/14.55 new_primEqNat0(Succ(x0), Zero) 29.96/14.55 new_esEs33(x0, x1, ty_Bool) 29.96/14.55 new_primPlusNat1(Zero, Succ(x0)) 29.96/14.55 new_lt5(x0, x1, ty_Float) 29.96/14.55 new_esEs36(x0, x1, ty_@0) 29.96/14.55 new_sr0(Integer(x0), Integer(x1)) 29.96/14.55 new_ltEs5(x0, x1, ty_@0) 29.96/14.55 new_esEs41(GT) 29.96/14.55 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs23(x0, x1, ty_Float) 29.96/14.55 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_compare7(Just(x0), Nothing, x1) 29.96/14.55 new_ltEs5(x0, x1, ty_Bool) 29.96/14.55 new_compare17(x0, x1, ty_Double) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.96/14.55 new_esEs34(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs22(x0, x1, ty_@0) 29.96/14.55 new_esEs27(x0, x1, ty_Int) 29.96/14.55 new_ltEs23(x0, x1, ty_Double) 29.96/14.55 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.96/14.55 new_esEs32(x0, x1, ty_Bool) 29.96/14.55 new_esEs4(x0, x1, ty_Ordering) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) 29.96/14.55 new_lt24(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_compare210(x0, x1, x2, x3, False, x4, x5) 29.96/14.55 new_esEs24(Just(x0), Just(x1), ty_Ordering) 29.96/14.55 new_primPlusNat1(Succ(x0), Zero) 29.96/14.55 new_lt17(x0, x1) 29.96/14.55 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_lt6(x0, x1, x2, x3, x4) 29.96/14.55 new_esEs26(x0, x1, ty_Bool) 29.96/14.55 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs5(x0, x1, ty_Double) 29.96/14.55 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.96/14.55 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.96/14.55 new_ltEs24(x0, x1, ty_@0) 29.96/14.55 new_esEs8(x0, x1, ty_@0) 29.96/14.55 new_ltEs19(x0, x1, ty_Double) 29.96/14.55 new_compare11(x0, x1, x2, x3, False, x4, x5) 29.96/14.55 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_compare24(x0, x1, False, x2, x3) 29.96/14.55 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), ty_@0, x2) 29.96/14.55 new_esEs4(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs15(x0, x1) 29.96/14.55 new_ltEs9(False, True) 29.96/14.55 new_ltEs9(True, False) 29.96/14.55 new_esEs9(x0, x1, ty_Ordering) 29.96/14.55 new_esEs37(x0, x1, ty_Bool) 29.96/14.55 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_lt5(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) 29.96/14.55 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.96/14.55 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.96/14.55 new_esEs26(x0, x1, ty_Integer) 29.96/14.55 new_compare31(x0, x1) 29.96/14.55 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_lt24(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs32(x0, x1, ty_Integer) 29.96/14.55 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs16([], :(x0, x1), x2) 29.96/14.55 new_fsEs(x0) 29.96/14.55 new_lt5(x0, x1, ty_Char) 29.96/14.55 new_ltEs5(x0, x1, ty_Integer) 29.96/14.55 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_lt5(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs28(x0, x1, ty_Float) 29.96/14.55 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) 29.96/14.55 new_esEs37(x0, x1, ty_Int) 29.96/14.55 new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.96/14.55 new_esEs4(x0, x1, ty_Char) 29.96/14.55 new_ltEs20(x0, x1, ty_Double) 29.96/14.55 new_ltEs11(EQ, EQ) 29.96/14.55 new_esEs6(x0, x1, ty_Ordering) 29.96/14.55 new_esEs5(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs34(x0, x1, ty_@0) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.96/14.55 new_compare14(Integer(x0), Integer(x1)) 29.96/14.55 new_esEs33(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs10(x0, x1, app(ty_[], x2)) 29.96/14.55 new_lt18(x0, x1) 29.96/14.55 new_esEs28(x0, x1, ty_Int) 29.96/14.55 new_ltEs23(x0, x1, ty_Bool) 29.96/14.55 new_esEs27(x0, x1, ty_Integer) 29.96/14.55 new_ltEs21(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 29.96/14.55 new_esEs33(x0, x1, ty_Ordering) 29.96/14.55 new_esEs32(x0, x1, ty_Float) 29.96/14.55 new_esEs40(x0, x1, ty_Char) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), ty_@0) 29.96/14.55 new_ltEs20(x0, x1, ty_Integer) 29.96/14.55 new_esEs27(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs11(x0, x1, ty_Char) 29.96/14.55 new_primMulNat0(Zero, Succ(x0)) 29.96/14.55 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.96/14.55 new_primMulNat0(Zero, Zero) 29.96/14.55 new_compare17(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_ltEs22(x0, x1, ty_Float) 29.96/14.55 new_gt(x0, x1, ty_Double) 29.96/14.55 new_ltEs5(x0, x1, ty_Double) 29.96/14.55 new_esEs40(x0, x1, ty_Int) 29.96/14.55 new_esEs7(x0, x1, ty_Int) 29.96/14.55 new_esEs26(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs7(Left(x0), Right(x1), x2, x3) 29.96/14.55 new_ltEs7(Right(x0), Left(x1), x2, x3) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.96/14.55 new_ltEs11(LT, LT) 29.96/14.55 new_ltEs21(x0, x1, ty_Double) 29.96/14.55 new_ltEs24(x0, x1, ty_Integer) 29.96/14.55 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs11(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_lt21(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs39(x0, x1, ty_@0) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), ty_Bool) 29.96/14.55 new_esEs38(x0, x1, ty_Integer) 29.96/14.55 new_esEs29(LT) 29.96/14.55 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs7(x0, x1, ty_Char) 29.96/14.55 new_esEs6(x0, x1, app(ty_[], x2)) 29.96/14.55 new_esEs11(x0, x1, ty_Ordering) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) 29.96/14.55 new_ltEs21(x0, x1, ty_Ordering) 29.96/14.55 new_ltEs24(x0, x1, ty_Float) 29.96/14.55 new_esEs7(x0, x1, ty_Double) 29.96/14.55 new_lt4(x0, x1, ty_Bool) 29.96/14.55 new_esEs33(x0, x1, ty_Double) 29.96/14.55 new_esEs35(x0, x1, ty_Float) 29.96/14.55 new_esEs11(x0, x1, ty_Int) 29.96/14.55 new_esEs9(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs5(x0, x1, ty_Char) 29.96/14.55 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs38(x0, x1, ty_Bool) 29.96/14.55 new_esEs31(x0, x1, ty_Integer) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), ty_Char) 29.96/14.55 new_compare8(GT, GT) 29.96/14.55 new_lt4(x0, x1, ty_Int) 29.96/14.55 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs40(x0, x1, ty_Double) 29.96/14.55 new_esEs38(x0, x1, ty_Float) 29.96/14.55 new_ltEs7(Right(x0), Right(x1), x2, ty_Float) 29.96/14.55 new_esEs27(x0, x1, ty_@0) 29.96/14.55 new_compare8(LT, EQ) 29.96/14.55 new_compare8(EQ, LT) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.96/14.55 new_compare6(Left(x0), Right(x1), x2, x3) 29.96/14.55 new_compare6(Right(x0), Left(x1), x2, x3) 29.96/14.55 new_ltEs17(x0, x1) 29.96/14.55 new_compare7(Nothing, Just(x0), x1) 29.96/14.55 new_esEs38(x0, x1, ty_@0) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), ty_Int) 29.96/14.55 new_ltEs23(x0, x1, ty_Char) 29.96/14.55 new_ltEs12(Nothing, Nothing, x0) 29.96/14.55 new_lt4(x0, x1, ty_Char) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.96/14.55 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_lt22(x0, x1, ty_Double) 29.96/14.55 new_esEs24(Nothing, Nothing, x0) 29.96/14.55 new_lt24(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_ltEs23(x0, x1, ty_Int) 29.96/14.55 new_primPlusNat0(Succ(x0), x1) 29.96/14.55 new_esEs28(x0, x1, ty_Ordering) 29.96/14.55 new_esEs5(x0, x1, ty_Float) 29.96/14.55 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 29.96/14.55 new_lt4(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs24(Just(x0), Just(x1), ty_Double) 29.96/14.55 new_esEs26(x0, x1, ty_Float) 29.96/14.55 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs23(x0, x1, ty_@0) 29.96/14.55 new_esEs12(Float(x0, x1), Float(x2, x3)) 29.96/14.55 new_ltEs5(x0, x1, ty_Int) 29.96/14.55 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_lt23(x0, x1, ty_Ordering) 29.96/14.55 new_esEs27(x0, x1, ty_Bool) 29.96/14.55 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.96/14.55 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_primCmpNat0(Zero, Succ(x0)) 29.96/14.55 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 29.96/14.55 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs37(x0, x1, app(ty_[], x2)) 29.96/14.55 new_lt10(x0, x1) 29.96/14.55 new_lt23(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_lt5(x0, x1, ty_Ordering) 29.96/14.55 new_lt5(x0, x1, ty_Double) 29.96/14.55 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_ltEs20(x0, x1, ty_Int) 29.96/14.55 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs24(Just(x0), Just(x1), ty_Char) 29.96/14.55 new_lt21(x0, x1, ty_Ordering) 29.96/14.55 new_lt20(x0, x1, ty_Ordering) 29.96/14.55 new_compare17(x0, x1, ty_Int) 29.96/14.55 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.96/14.55 new_ltEs24(x0, x1, ty_Char) 29.96/14.55 new_esEs15(Double(x0, x1), Double(x2, x3)) 29.96/14.55 new_compare13(x0, x1, True, x2, x3) 29.96/14.55 new_esEs24(Just(x0), Just(x1), ty_Int) 29.96/14.55 new_ltEs19(x0, x1, ty_Ordering) 29.96/14.55 new_ltEs22(x0, x1, ty_Bool) 29.96/14.55 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 29.96/14.55 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.96/14.55 new_ltEs20(x0, x1, ty_Float) 29.96/14.55 new_lt4(x0, x1, ty_Double) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs40(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_esEs40(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.96/14.55 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.96/14.55 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 29.96/14.55 new_esEs7(x0, x1, ty_Bool) 29.96/14.55 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs39(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs24(x0, x1, ty_Int) 29.96/14.55 new_esEs11(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_compare17(x0, x1, ty_Float) 29.96/14.55 new_esEs24(Just(x0), Just(x1), ty_Float) 29.96/14.55 new_primEqNat0(Zero, Succ(x0)) 29.96/14.55 new_ltEs22(x0, x1, ty_Char) 29.96/14.55 new_esEs41(EQ) 29.96/14.55 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.96/14.55 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_lt9(x0, x1, x2) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.96/14.55 new_esEs35(x0, x1, ty_Integer) 29.96/14.55 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.55 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 29.96/14.55 new_compare17(x0, x1, app(ty_[], x2)) 29.96/14.55 new_ltEs22(x0, x1, ty_Integer) 29.96/14.55 new_ltEs12(Just(x0), Just(x1), ty_Integer) 29.96/14.55 new_compare17(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs5(x0, x1, ty_Integer) 29.96/14.55 new_esEs11(x0, x1, ty_Double) 29.96/14.55 new_ltEs11(GT, LT) 29.96/14.55 new_ltEs11(LT, GT) 29.96/14.55 new_esEs10(x0, x1, ty_@0) 29.96/14.55 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_esEs34(x0, x1, ty_Bool) 29.96/14.55 new_ltEs12(Nothing, Just(x0), x1) 29.96/14.55 new_esEs16([], [], x0) 29.96/14.55 new_esEs13(x0, x1) 29.96/14.55 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.55 new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.96/14.55 new_compare17(x0, x1, ty_Char) 29.96/14.55 new_esEs14(False, False) 29.96/14.55 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_primCompAux00(x0, GT) 29.96/14.55 new_compare3(:(x0, x1), :(x2, x3), x4) 29.96/14.55 new_esEs34(x0, x1, ty_Float) 29.96/14.55 new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 29.96/14.55 new_gt(x0, x1, ty_Ordering) 29.96/14.55 new_esEs34(x0, x1, ty_Char) 29.96/14.55 new_ltEs20(x0, x1, ty_Bool) 29.96/14.55 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.96/14.55 new_ltEs23(x0, x1, ty_Integer) 29.96/14.55 new_lt15(x0, x1) 29.96/14.55 new_esEs28(x0, x1, ty_Double) 29.96/14.55 new_compare29(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.96/14.55 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 new_esEs34(x0, x1, ty_Int) 29.96/14.55 new_compare7(Just(x0), Just(x1), x2) 29.96/14.55 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs7(x0, x1, ty_Float) 29.96/14.55 new_lt23(x0, x1, app(ty_[], x2)) 29.96/14.55 new_lt24(x0, x1, ty_Ordering) 29.96/14.55 new_ltEs20(x0, x1, ty_Char) 29.96/14.55 new_compare3(:(x0, x1), [], x2) 29.96/14.55 new_esEs4(x0, x1, ty_Double) 29.96/14.55 new_ltEs24(x0, x1, ty_Bool) 29.96/14.55 new_compare32(@0, @0) 29.96/14.55 new_esEs37(x0, x1, ty_Double) 29.96/14.55 new_primCmpNat0(Zero, Zero) 29.96/14.55 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 29.96/14.55 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.55 new_lt22(x0, x1, ty_Ordering) 29.96/14.55 new_compare17(x0, x1, ty_Bool) 29.96/14.55 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.96/14.55 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.96/14.55 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.96/14.55 29.96/14.55 We have to consider all minimal (P,Q,R)-chains. 29.96/14.55 ---------------------------------------- 29.96/14.55 29.96/14.55 (24) QDPSizeChangeProof (EQUIVALENT) 29.96/14.55 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. 29.96/14.55 29.96/14.55 From the DPs we obtained the following set of size-change graphs: 29.96/14.55 *new_elemFM01(Branch(vyw40, vyw41, vyw42, vyw43, vyw44), vyw3, bd, be) -> new_elemFM0(vyw40, vyw41, vyw42, vyw43, vyw44, vyw3, new_lt24(vyw3, vyw40, be), bd, be) 29.96/14.55 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 8, 4 >= 9 29.96/14.55 29.96/14.55 29.96/14.55 *new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_elemFM01(vyw16, vyw18, h, ba) 29.96/14.55 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 29.96/14.55 29.96/14.55 29.96/14.55 *new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) 29.96/14.55 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 29.96/14.55 29.96/14.55 29.96/14.55 *new_elemFM00(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_elemFM01(vyw32, vyw33, bb, bc) 29.96/14.55 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 29.96/14.55 29.96/14.55 29.96/14.55 ---------------------------------------- 29.96/14.55 29.96/14.55 (25) 29.96/14.55 YES 29.96/14.55 29.96/14.55 ---------------------------------------- 29.96/14.55 29.96/14.55 (26) 29.96/14.55 Obligation: 29.96/14.55 Q DP problem: 29.96/14.55 The TRS P consists of the following rules: 29.96/14.55 29.96/14.55 new_primMulNat(Succ(vyw40000), Succ(vyw3100)) -> new_primMulNat(vyw40000, Succ(vyw3100)) 29.96/14.55 29.96/14.55 R is empty. 29.96/14.55 Q is empty. 29.96/14.55 We have to consider all minimal (P,Q,R)-chains. 29.96/14.55 ---------------------------------------- 29.96/14.55 29.96/14.55 (27) QDPSizeChangeProof (EQUIVALENT) 29.96/14.55 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. 29.96/14.55 29.96/14.55 From the DPs we obtained the following set of size-change graphs: 29.96/14.55 *new_primMulNat(Succ(vyw40000), Succ(vyw3100)) -> new_primMulNat(vyw40000, Succ(vyw3100)) 29.96/14.55 The graph contains the following edges 1 > 1, 2 >= 2 29.96/14.55 29.96/14.55 29.96/14.55 ---------------------------------------- 29.96/14.55 29.96/14.55 (28) 29.96/14.55 YES 29.96/14.55 29.96/14.55 ---------------------------------------- 29.96/14.55 29.96/14.55 (29) 29.96/14.55 Obligation: 29.96/14.55 Q DP problem: 29.96/14.55 The TRS P consists of the following rules: 29.96/14.55 29.96/14.55 new_ltEs1(vyw59, vyw60, bdh) -> new_compare1(vyw59, vyw60, bdh) 29.96/14.55 new_lt2(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare22(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(ty_[], ec)) -> new_ltEs1(vyw102, vyw105, ec) 29.96/14.55 new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(app(ty_@3, bcg), bch), bda)), gb) -> new_ltEs(vyw590, vyw600, bcg, bch, bda) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(app(ty_@3, cbb), cbc), cbd), cbe) -> new_lt(vyw113, vyw115, cbb, cbc, cbd) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(ty_Either, bee), bef)), bed), gb) -> new_lt0(vyw590, vyw600, bee, bef) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(ty_[], ge), fh, ga) -> new_lt1(vyw590, vyw600, ge) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(ty_Maybe, ef)) -> new_ltEs3(vyw102, vyw105, ef) 29.96/14.55 new_ltEs3(Just(vyw590), Just(vyw600), app(app(ty_@2, bhc), bhd)) -> new_ltEs2(vyw590, vyw600, bhc, bhd) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(ty_[], db), bd) -> new_lt1(vyw101, vyw104, db) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(ty_Either, he), hf)), ga), gb) -> new_lt0(vyw591, vyw601, he, hf) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(ty_Either, baf), bag)), gb) -> new_ltEs0(vyw592, vyw602, baf, bag) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(app(ty_@3, bfd), bfe), bff)), gb) -> new_ltEs(vyw591, vyw601, bfd, bfe, bff) 29.96/14.55 new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(app(ty_@3, bge), bgf), bgg)), gb) -> new_ltEs(vyw590, vyw600, bge, bgf, bgg) 29.96/14.55 new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(ty_[], bhb)), gb) -> new_ltEs1(vyw590, vyw600, bhb) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(app(ty_@3, fd), ff), fg)), fh), ga), gb) -> new_lt(vyw590, vyw600, fd, ff, fg) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(ty_Maybe, de), bd) -> new_lt3(vyw101, vyw104, de) 29.96/14.55 new_compare21(vyw66, vyw67, False, ceh, app(ty_[], cff)) -> new_ltEs1(vyw66, vyw67, cff) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(ty_@2, gf), gg), fh, ga) -> new_lt2(vyw590, vyw600, gf, gg) 29.96/14.55 new_compare23(vyw89, vyw90, False, app(app(ty_Either, ceb), cec)) -> new_ltEs0(vyw89, vyw90, ceb, cec) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(ty_Maybe, bgd)), gb) -> new_ltEs3(vyw591, vyw601, bgd) 29.96/14.55 new_compare21(vyw66, vyw67, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyw66, vyw67, cga) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(ty_[], bga)) -> new_ltEs1(vyw591, vyw601, bga) 29.96/14.55 new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(ty_Either, bbh), bca)), bbg), gb) -> new_ltEs0(vyw590, vyw600, bbh, bca) 29.96/14.55 new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(ty_Either, bdb), bdc)), gb) -> new_ltEs0(vyw590, vyw600, bdb, bdc) 29.96/14.55 new_lt1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(ty_[], ge)), fh), ga), gb) -> new_lt1(vyw590, vyw600, ge) 29.96/14.55 new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs(vyw590, vyw600, bcg, bch, bda) 29.96/14.55 new_ltEs3(Just(vyw590), Just(vyw600), app(app(ty_Either, bgh), bha)) -> new_ltEs0(vyw590, vyw600, bgh, bha) 29.96/14.55 new_compare23(vyw89, vyw90, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyw89, vyw90, ceg) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_@2, cca), ccb), cbe) -> new_lt2(vyw113, vyw115, cca, ccb) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_Either, cbf), cbg), cbe) -> new_lt0(vyw113, vyw115, cbf, cbg) 29.96/14.55 new_compare1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_compare1(vyw31, vyw401, bhf) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(ty_Maybe, bgd)) -> new_ltEs3(vyw591, vyw601, bgd) 29.96/14.55 new_compare0(Left(vyw30), Left(vyw400), fb, fc) -> new_compare20(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_@2, bh), ca), bc, bd) -> new_lt2(vyw100, vyw103, bh, ca) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(ty_@2, gf), gg)), fh), ga), gb) -> new_lt2(vyw590, vyw600, gf, gg) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(ty_Either, bfg), bfh)) -> new_ltEs0(vyw591, vyw601, bfg, bfh) 29.96/14.55 new_lt(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare2(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs(vyw592, vyw602, bac, bad, bae) 29.96/14.55 new_compare23(vyw89, vyw90, False, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs(vyw89, vyw90, cdg, cdh, cea) 29.96/14.55 new_compare1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(ty_Maybe, bfb), bed) -> new_lt3(vyw590, vyw600, bfb) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_Maybe, cb), bc, bd) -> new_lt3(vyw100, vyw103, cb) 29.96/14.55 new_ltEs3(Just(vyw590), Just(vyw600), app(ty_[], bhb)) -> new_ltEs1(vyw590, vyw600, bhb) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(ty_@2, bba), bbb)), gb) -> new_ltEs2(vyw592, vyw602, bba, bbb) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(app(ty_@3, bea), beb), bec)), bed), gb) -> new_lt(vyw590, vyw600, bea, beb, bec) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(ty_Either, gc), gd), fh, ga) -> new_lt0(vyw590, vyw600, gc, gd) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_lt(vyw100, vyw103, h, ba, bb) 29.96/14.55 new_lt1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_compare1(vyw31, vyw401, bhf) 29.96/14.55 new_lt0(Right(vyw30), Right(vyw400), fb, fc) -> new_compare21(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(ty_Maybe, bfb)), bed), gb) -> new_lt3(vyw590, vyw600, bfb) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(ty_Maybe, gh), fh, ga) -> new_lt3(vyw590, vyw600, gh) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(ty_@2, hh), baa), ga) -> new_lt2(vyw591, vyw601, hh, baa) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(ty_[], beg), bed) -> new_lt1(vyw590, vyw600, beg) 29.96/14.55 new_compare23(vyw89, vyw90, False, app(ty_[], ced)) -> new_ltEs1(vyw89, vyw90, ced) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_[], bg), bc, bd) -> new_lt1(vyw100, vyw103, bg) 29.96/14.55 new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(ty_[], bdd)), gb) -> new_ltEs1(vyw590, vyw600, bdd) 29.96/14.55 new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(ty_Maybe, bhe)), gb) -> new_ltEs3(vyw590, vyw600, bhe) 29.96/14.55 new_ltEs3(Just(vyw590), Just(vyw600), app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs(vyw590, vyw600, bge, bgf, bgg) 29.96/14.55 new_compare21(vyw66, vyw67, False, ceh, app(app(ty_@2, cfg), cfh)) -> new_ltEs2(vyw66, vyw67, cfg, cfh) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(ty_[], hg)), ga), gb) -> new_lt1(vyw591, vyw601, hg) 29.96/14.55 new_primCompAux(vyw30, vyw400, vyw39, app(ty_Maybe, cag)) -> new_compare5(vyw30, vyw400, cag) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(ty_@2, bgb), bgc)), gb) -> new_ltEs2(vyw591, vyw601, bgb, bgc) 29.96/14.55 new_ltEs0(Left(vyw590), Left(vyw600), app(ty_Maybe, bce), bbg) -> new_ltEs3(vyw590, vyw600, bce) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(ty_Either, bee), bef), bed) -> new_lt0(vyw590, vyw600, bee, bef) 29.96/14.55 new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(ty_Maybe, bce)), bbg), gb) -> new_ltEs3(vyw590, vyw600, bce) 29.96/14.55 new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(ty_@2, bcc), bcd)), bbg), gb) -> new_ltEs2(vyw590, vyw600, bcc, bcd) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(ty_[], cbh), cbe) -> new_lt1(vyw113, vyw115, cbh) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(ty_Maybe, cde)) -> new_ltEs3(vyw114, vyw116, cde) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(ty_Maybe, bab), ga) -> new_lt3(vyw591, vyw601, bab) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(ty_Either, ea), eb)) -> new_ltEs0(vyw102, vyw105, ea, eb) 29.96/14.55 new_compare5(Just(vyw30), Just(vyw400), cdf) -> new_compare23(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs(vyw114, vyw116, cce, ccf, ccg) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs(vyw102, vyw105, df, dg, dh) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(ty_@2, ed), ee)) -> new_ltEs2(vyw102, vyw105, ed, ee) 29.96/14.55 new_compare0(Right(vyw30), Right(vyw400), fb, fc) -> new_compare21(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) 29.96/14.55 new_ltEs3(Just(vyw590), Just(vyw600), app(ty_Maybe, bhe)) -> new_ltEs3(vyw590, vyw600, bhe) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(ty_[], beg)), bed), gb) -> new_lt1(vyw590, vyw600, beg) 29.96/14.55 new_ltEs0(Left(vyw590), Left(vyw600), app(ty_[], bcb), bbg) -> new_ltEs1(vyw590, vyw600, bcb) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_Either, be), bf), bc, bd) -> new_lt0(vyw100, vyw103, be, bf) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(ty_@2, dc), dd), bd) -> new_lt2(vyw101, vyw104, dc, dd) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(ty_[], hg), ga) -> new_lt1(vyw591, vyw601, hg) 29.96/14.55 new_ltEs0(Left(vyw590), Left(vyw600), app(app(ty_@2, bcc), bcd), bbg) -> new_ltEs2(vyw590, vyw600, bcc, bcd) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(app(ty_@3, fd), ff), fg), fh, ga) -> new_lt(vyw590, vyw600, fd, ff, fg) 29.96/14.55 new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(ty_Either, bdb), bdc)) -> new_ltEs0(vyw590, vyw600, bdb, bdc) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(ty_Maybe, bbc)) -> new_ltEs3(vyw592, vyw602, bbc) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(ty_Maybe, gh)), fh), ga), gb) -> new_lt3(vyw590, vyw600, gh) 29.96/14.55 new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(ty_Maybe, bdg)), gb) -> new_ltEs3(vyw590, vyw600, bdg) 29.96/14.55 new_primCompAux(vyw30, vyw400, vyw39, app(app(app(ty_@3, bhg), bhh), caa)) -> new_compare(vyw30, vyw400, bhg, bhh, caa) 29.96/14.55 new_lt3(Just(vyw30), Just(vyw400), cdf) -> new_compare23(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(ty_@2, hh), baa)), ga), gb) -> new_lt2(vyw591, vyw601, hh, baa) 29.96/14.55 new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(ty_@2, bhc), bhd)), gb) -> new_ltEs2(vyw590, vyw600, bhc, bhd) 29.96/14.55 new_compare21(vyw66, vyw67, False, ceh, app(app(ty_Either, cfd), cfe)) -> new_ltEs0(vyw66, vyw67, cfd, cfe) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(ty_Either, cch), cda)) -> new_ltEs0(vyw114, vyw116, cch, cda) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(ty_[], bah)) -> new_ltEs1(vyw592, vyw602, bah) 29.96/14.55 new_ltEs0(Left(vyw590), Left(vyw600), app(app(ty_Either, bbh), bca), bbg) -> new_ltEs0(vyw590, vyw600, bbh, bca) 29.96/14.55 new_compare21(vyw66, vyw67, False, ceh, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs(vyw66, vyw67, cfa, cfb, cfc) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(ty_@2, beh), bfa), bed) -> new_lt2(vyw590, vyw600, beh, bfa) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(ty_Either, he), hf), ga) -> new_lt0(vyw591, vyw601, he, hf) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(ty_@2, beh), bfa)), bed), gb) -> new_lt2(vyw590, vyw600, beh, bfa) 29.96/14.55 new_primCompAux(vyw30, vyw400, vyw39, app(ty_[], cad)) -> new_compare1(vyw30, vyw400, cad) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(ty_@2, bgb), bgc)) -> new_ltEs2(vyw591, vyw601, bgb, bgc) 29.96/14.55 new_lt0(Left(vyw30), Left(vyw400), fb, fc) -> new_compare20(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(ty_Maybe, ccc), cbe) -> new_lt3(vyw113, vyw115, ccc) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(app(ty_@3, hb), hc), hd)), ga), gb) -> new_lt(vyw591, vyw601, hb, hc, hd) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(ty_Either, bfg), bfh)), gb) -> new_ltEs0(vyw591, vyw601, bfg, bfh) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(ty_Either, baf), bag)) -> new_ltEs0(vyw592, vyw602, baf, bag) 29.96/14.55 new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(ty_@2, bde), bdf)), gb) -> new_ltEs2(vyw590, vyw600, bde, bdf) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(ty_[], cdb)) -> new_ltEs1(vyw114, vyw116, cdb) 29.96/14.55 new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(app(ty_@3, bbd), bbe), bbf)), bbg), gb) -> new_ltEs(vyw590, vyw600, bbd, bbe, bbf) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs(vyw591, vyw601, bfd, bfe, bff) 29.96/14.55 new_ltEs0(Left(vyw590), Left(vyw600), app(app(app(ty_@3, bbd), bbe), bbf), bbg) -> new_ltEs(vyw590, vyw600, bbd, bbe, bbf) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(ty_Either, cg), da), bd) -> new_lt0(vyw101, vyw104, cg, da) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(ty_Maybe, bab)), ga), gb) -> new_lt3(vyw591, vyw601, bab) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(app(ty_@3, hb), hc), hd), ga) -> new_lt(vyw591, vyw601, hb, hc, hd) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(ty_[], bah)), gb) -> new_ltEs1(vyw592, vyw602, bah) 29.96/14.55 new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_Either, cab), cac)) -> new_compare0(vyw30, vyw400, cab, cac) 29.96/14.55 new_compare(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare2(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) 29.96/14.55 new_compare23(vyw89, vyw90, False, app(app(ty_@2, cee), cef)) -> new_ltEs2(vyw89, vyw90, cee, cef) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), fh), ga), gb) -> new_lt0(vyw590, vyw600, gc, gd) 29.96/14.55 new_compare4(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare22(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) 29.96/14.55 new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(ty_[], bcb)), bbg), gb) -> new_ltEs1(vyw590, vyw600, bcb) 29.96/14.55 new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_@2, cae), caf)) -> new_compare4(vyw30, vyw400, cae, caf) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(app(ty_@3, bac), bad), bae)), gb) -> new_ltEs(vyw592, vyw602, bac, bad, bae) 29.96/14.55 new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(ty_Maybe, bdg)) -> new_ltEs3(vyw590, vyw600, bdg) 29.96/14.55 new_compare20(vyw59, vyw60, False, app(ty_[], bdh), gb) -> new_compare1(vyw59, vyw60, bdh) 29.96/14.55 new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(app(ty_@3, bea), beb), bec), bed) -> new_lt(vyw590, vyw600, bea, beb, bec) 29.96/14.55 new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(ty_Maybe, bbc)), gb) -> new_ltEs3(vyw592, vyw602, bbc) 29.96/14.55 new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(ty_@2, bde), bdf)) -> new_ltEs2(vyw590, vyw600, bde, bdf) 29.96/14.55 new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(ty_[], bga)), gb) -> new_ltEs1(vyw591, vyw601, bga) 29.96/14.55 new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(ty_[], bdd)) -> new_ltEs1(vyw590, vyw600, bdd) 29.96/14.55 new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(ty_@2, bba), bbb)) -> new_ltEs2(vyw592, vyw602, bba, bbb) 29.96/14.55 new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(ty_Either, bgh), bha)), gb) -> new_ltEs0(vyw590, vyw600, bgh, bha) 29.96/14.55 new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_lt(vyw101, vyw104, cd, ce, cf) 29.96/14.55 new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(ty_@2, cdc), cdd)) -> new_ltEs2(vyw114, vyw116, cdc, cdd) 29.96/14.55 29.96/14.55 The TRS R consists of the following rules: 29.96/14.55 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), app(app(ty_Either, bbh), bca), bbg) -> new_ltEs7(vyw590, vyw600, bbh, bca) 29.96/14.55 new_esEs29(EQ) -> False 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Double) -> new_esEs15(vyw590, vyw600) 29.96/14.55 new_esEs28(vyw590, vyw600, app(ty_Maybe, bfb)) -> new_esEs24(vyw590, vyw600, bfb) 29.96/14.55 new_ltEs7(Right(vyw590), Left(vyw600), bcf, bbg) -> False 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_Char) -> new_ltEs15(vyw590, vyw600) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, dae), daf), dag), dac) -> new_esEs17(vyw300, vyw4000, dae, daf, dag) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), app(app(ty_@2, eha), ehb)) -> new_esEs21(vyw300, vyw4000, eha, ehb) 29.96/14.55 new_primCmpInt(Neg(Succ(vyw300)), Pos(vyw400)) -> LT 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.55 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.96/14.55 new_ltEs22(vyw114, vyw116, app(ty_[], cdb)) -> new_ltEs8(vyw114, vyw116, cdb) 29.96/14.55 new_lt22(vyw100, vyw103, app(ty_Maybe, cb)) -> new_lt13(vyw100, vyw103, cb) 29.96/14.55 new_esEs33(vyw301, vyw4001, app(ty_Ratio, ech)) -> new_esEs23(vyw301, vyw4001, ech) 29.96/14.55 new_lt20(vyw590, vyw600, ty_Float) -> new_lt15(vyw590, vyw600) 29.96/14.55 new_ltEs23(vyw89, vyw90, app(ty_Ratio, egb)) -> new_ltEs13(vyw89, vyw90, egb) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.55 new_lt21(vyw113, vyw115, app(app(ty_Either, cbf), cbg)) -> new_lt8(vyw113, vyw115, cbf, cbg) 29.96/14.55 new_lt5(vyw591, vyw601, app(ty_Maybe, bab)) -> new_lt13(vyw591, vyw601, bab) 29.96/14.55 new_pePe(True, vyw191) -> True 29.96/14.55 new_lt4(vyw590, vyw600, app(app(ty_Either, gc), gd)) -> new_lt8(vyw590, vyw600, gc, gd) 29.96/14.55 new_esEs10(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Char) -> new_ltEs15(vyw592, vyw602) 29.96/14.55 new_esEs10(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.55 new_esEs6(vyw30, vyw400, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs17(vyw30, vyw400, eaf, eag, eah) 29.96/14.55 new_esEs33(vyw301, vyw4001, app(app(app(ty_@3, eca), ecb), ecc)) -> new_esEs17(vyw301, vyw4001, eca, ecb, ecc) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), app(app(ty_@2, dbb), dbc), dac) -> new_esEs21(vyw300, vyw4000, dbb, dbc) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Ordering) -> new_esEs25(vyw100, vyw103) 29.96/14.55 new_esEs27(vyw590, vyw600, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs17(vyw590, vyw600, fd, ff, fg) 29.96/14.55 new_ltEs24(vyw102, vyw105, app(app(ty_@2, ed), ee)) -> new_ltEs10(vyw102, vyw105, ed, ee) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Char, bbg) -> new_ltEs15(vyw590, vyw600) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), app(app(ty_@2, bcc), bcd), bbg) -> new_ltEs10(vyw590, vyw600, bcc, bcd) 29.96/14.55 new_esEs29(GT) -> False 29.96/14.55 new_compare28(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare210(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) 29.96/14.55 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.96/14.55 new_esEs27(vyw590, vyw600, app(ty_[], ge)) -> new_esEs16(vyw590, vyw600, ge) 29.96/14.55 new_primCmpInt(Pos(Zero), Neg(Succ(vyw4000))) -> GT 29.96/14.55 new_lt23(vyw101, vyw104, app(app(ty_@2, dc), dd)) -> new_lt11(vyw101, vyw104, dc, dd) 29.96/14.55 new_ltEs24(vyw102, vyw105, app(app(ty_Either, ea), eb)) -> new_ltEs7(vyw102, vyw105, ea, eb) 29.96/14.55 new_esEs7(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.55 new_primCmpInt(Neg(Succ(vyw300)), Neg(vyw400)) -> new_primCmpNat0(vyw400, Succ(vyw300)) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_Char) -> new_esEs20(vyw590, vyw600) 29.96/14.55 new_esEs20(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) 29.96/14.55 new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, dfd, dfe, dff) -> GT 29.96/14.55 new_ltEs11(GT, EQ) -> False 29.96/14.55 new_ltEs5(vyw592, vyw602, app(ty_Maybe, bbc)) -> new_ltEs12(vyw592, vyw602, bbc) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.55 new_esEs37(vyw300, vyw4000, app(app(ty_Either, fce), fcf)) -> new_esEs19(vyw300, vyw4000, fce, fcf) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_@0) -> new_ltEs18(vyw59, vyw60) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.55 new_esEs10(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Ordering, bbg) -> new_ltEs11(vyw590, vyw600) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Float) -> new_ltEs14(vyw66, vyw67) 29.96/14.55 new_lt23(vyw101, vyw104, ty_Int) -> new_lt18(vyw101, vyw104) 29.96/14.55 new_esEs6(vyw30, vyw400, app(ty_[], eae)) -> new_esEs16(vyw30, vyw400, eae) 29.96/14.55 new_lt22(vyw100, vyw103, app(ty_Ratio, ffg)) -> new_lt14(vyw100, vyw103, ffg) 29.96/14.55 new_esEs35(vyw302, vyw4002, ty_@0) -> new_esEs22(vyw302, vyw4002) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Ordering) -> new_ltEs11(vyw592, vyw602) 29.96/14.55 new_ltEs24(vyw102, vyw105, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs4(vyw102, vyw105, df, dg, dh) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.55 new_esEs33(vyw301, vyw4001, app(ty_[], ebh)) -> new_esEs16(vyw301, vyw4001, ebh) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.55 new_esEs37(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.55 new_compare3([], [], bhf) -> EQ 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_@0) -> new_ltEs18(vyw590, vyw600) 29.96/14.55 new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False 29.96/14.55 new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False 29.96/14.55 new_ltEs8(vyw59, vyw60, bdh) -> new_fsEs(new_compare3(vyw59, vyw60, bdh)) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Bool) -> new_ltEs9(vyw114, vyw116) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_Double, dac) -> new_esEs15(vyw300, vyw4000) 29.96/14.55 new_ltEs9(False, True) -> True 29.96/14.55 new_compare6(Left(vyw30), Left(vyw400), fb, fc) -> new_compare24(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) 29.96/14.55 new_esEs35(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.55 new_compare8(GT, GT) -> EQ 29.96/14.55 new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) 29.96/14.55 new_esEs37(vyw300, vyw4000, app(ty_Ratio, fda)) -> new_esEs23(vyw300, vyw4000, fda) 29.96/14.55 new_esEs37(vyw300, vyw4000, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs17(vyw300, vyw4000, fcb, fcc, fcd) 29.96/14.55 new_compare18(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare211(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) 29.96/14.55 new_lt4(vyw590, vyw600, app(app(app(ty_@3, fd), ff), fg)) -> new_lt6(vyw590, vyw600, fd, ff, fg) 29.96/14.55 new_esEs30(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) 29.96/14.55 new_lt7(vyw3, vyw40) -> new_esEs29(new_compare19(vyw3, vyw40)) 29.96/14.55 new_esEs38(vyw101, vyw104, app(ty_Maybe, de)) -> new_esEs24(vyw101, vyw104, de) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Double) -> new_ltEs6(vyw114, vyw116) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Ordering) -> new_ltEs11(vyw114, vyw116) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Char) -> new_lt16(vyw591, vyw601) 29.96/14.55 new_not(True) -> False 29.96/14.55 new_lt5(vyw591, vyw601, ty_Bool) -> new_lt10(vyw591, vyw601) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_Float) -> new_esEs12(vyw590, vyw600) 29.96/14.55 new_esEs4(vyw32, vyw402, ty_Bool) -> new_esEs14(vyw32, vyw402) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_Ordering) -> new_ltEs11(vyw590, vyw600) 29.96/14.55 new_esEs7(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.55 new_fsEs(vyw192) -> new_not(new_esEs25(vyw192, GT)) 29.96/14.55 new_lt22(vyw100, vyw103, app(app(app(ty_@3, h), ba), bb)) -> new_lt6(vyw100, vyw103, h, ba, bb) 29.96/14.55 new_lt22(vyw100, vyw103, ty_Integer) -> new_lt17(vyw100, vyw103) 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_Int) -> new_ltEs17(vyw102, vyw105) 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_@0) -> new_ltEs18(vyw591, vyw601) 29.96/14.55 new_esEs35(vyw302, vyw4002, app(app(ty_@2, fac), fad)) -> new_esEs21(vyw302, vyw4002, fac, fad) 29.96/14.55 new_lt22(vyw100, vyw103, ty_Ordering) -> new_lt12(vyw100, vyw103) 29.96/14.55 new_ltEs20(vyw59, vyw60, app(app(ty_@2, bfc), bed)) -> new_ltEs10(vyw59, vyw60, bfc, bed) 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_Char) -> new_ltEs15(vyw89, vyw90) 29.96/14.55 new_ltEs5(vyw592, vyw602, app(ty_Ratio, chf)) -> new_ltEs13(vyw592, vyw602, chf) 29.96/14.55 new_primCompAux00(vyw72, LT) -> LT 29.96/14.55 new_primCmpNat0(Zero, Zero) -> EQ 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), app(ty_Maybe, ehd)) -> new_esEs24(vyw300, vyw4000, ehd) 29.96/14.55 new_ltEs5(vyw592, vyw602, app(ty_[], bah)) -> new_ltEs8(vyw592, vyw602, bah) 29.96/14.55 new_esEs38(vyw101, vyw104, app(ty_Ratio, ffh)) -> new_esEs23(vyw101, vyw104, ffh) 29.96/14.55 new_esEs35(vyw302, vyw4002, ty_Ordering) -> new_esEs25(vyw302, vyw4002) 29.96/14.55 new_esEs38(vyw101, vyw104, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs17(vyw101, vyw104, cd, ce, cf) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_Ordering) -> new_esEs25(vyw590, vyw600) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Integer) -> new_compare14(vyw30, vyw400) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Double) -> new_ltEs6(vyw66, vyw67) 29.96/14.55 new_esEs36(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) 29.96/14.55 new_esEs34(vyw300, vyw4000, app(app(ty_@2, edh), eea)) -> new_esEs21(vyw300, vyw4000, edh, eea) 29.96/14.55 new_compare15(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, vyw172, dfd, dfe, dff) -> new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, dfd, dfe, dff) 29.96/14.55 new_esEs28(vyw590, vyw600, app(app(ty_@2, beh), bfa)) -> new_esEs21(vyw590, vyw600, beh, bfa) 29.96/14.55 new_esEs19(Left(vyw300), Left(vyw4000), ty_Float, dac) -> new_esEs12(vyw300, vyw4000) 29.96/14.55 new_esEs10(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Float) -> new_esEs12(vyw100, vyw103) 29.96/14.55 new_compare27(False, False) -> EQ 29.96/14.55 new_lt21(vyw113, vyw115, ty_Char) -> new_lt16(vyw113, vyw115) 29.96/14.55 new_ltEs24(vyw102, vyw105, ty_Integer) -> new_ltEs16(vyw102, vyw105) 29.96/14.55 new_ltEs20(vyw59, vyw60, app(app(ty_Either, bcf), bbg)) -> new_ltEs7(vyw59, vyw60, bcf, bbg) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Int) -> new_lt18(vyw591, vyw601) 29.96/14.55 new_compare19(Double(vyw30, Pos(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Pos(vyw310), vyw400)) 29.96/14.55 new_primEqNat0(Succ(vyw3000), Zero) -> False 29.96/14.55 new_primEqNat0(Zero, Succ(vyw40000)) -> False 29.96/14.55 new_esEs32(vyw113, vyw115, app(ty_[], cbh)) -> new_esEs16(vyw113, vyw115, cbh) 29.96/14.55 new_esEs35(vyw302, vyw4002, ty_Integer) -> new_esEs18(vyw302, vyw4002) 29.96/14.55 new_esEs39(vyw100, vyw103, app(ty_Maybe, cb)) -> new_esEs24(vyw100, vyw103, cb) 29.96/14.55 new_esEs10(vyw30, vyw400, app(app(ty_@2, ffc), ffd)) -> new_esEs21(vyw30, vyw400, ffc, ffd) 29.96/14.55 new_esEs6(vyw30, vyw400, app(app(ty_Either, dbf), dac)) -> new_esEs19(vyw30, vyw400, dbf, dac) 29.96/14.55 new_esEs23(:%(vyw300, vyw301), :%(vyw4000, vyw4001), ead) -> new_asAs(new_esEs31(vyw300, vyw4000, ead), new_esEs30(vyw301, vyw4001, ead)) 29.96/14.55 new_lt21(vyw113, vyw115, ty_Bool) -> new_lt10(vyw113, vyw115) 29.96/14.55 new_esEs14(False, True) -> False 29.96/14.55 new_esEs14(True, False) -> False 29.96/14.55 new_primCompAux00(vyw72, GT) -> GT 29.96/14.55 new_lt5(vyw591, vyw601, app(ty_Ratio, che)) -> new_lt14(vyw591, vyw601, che) 29.96/14.55 new_lt20(vyw590, vyw600, app(ty_[], beg)) -> new_lt9(vyw590, vyw600, beg) 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_Float) -> new_esEs12(vyw301, vyw4001) 29.96/14.55 new_esEs38(vyw101, vyw104, ty_Float) -> new_esEs12(vyw101, vyw104) 29.96/14.55 new_esEs4(vyw32, vyw402, ty_@0) -> new_esEs22(vyw32, vyw402) 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_Integer) -> new_ltEs16(vyw89, vyw90) 29.96/14.55 new_esEs40(vyw300, vyw4000, app(ty_Maybe, fhc)) -> new_esEs24(vyw300, vyw4000, fhc) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_lt16(vyw3, vyw40) -> new_esEs29(new_compare30(vyw3, vyw40)) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_Integer) -> new_esEs18(vyw100, vyw103) 29.96/14.55 new_esEs9(vyw31, vyw401, ty_@0) -> new_esEs22(vyw31, vyw401) 29.96/14.55 new_lt20(vyw590, vyw600, ty_@0) -> new_lt19(vyw590, vyw600) 29.96/14.55 new_lt22(vyw100, vyw103, ty_Bool) -> new_lt10(vyw100, vyw103) 29.96/14.55 new_primCmpInt(Pos(Succ(vyw300)), Neg(vyw400)) -> GT 29.96/14.55 new_esEs37(vyw300, vyw4000, app(ty_[], fca)) -> new_esEs16(vyw300, vyw4000, fca) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.55 new_esEs40(vyw300, vyw4000, app(app(ty_@2, fgh), fha)) -> new_esEs21(vyw300, vyw4000, fgh, fha) 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_Float) -> new_ltEs14(vyw591, vyw601) 29.96/14.55 new_lt15(vyw3, vyw40) -> new_esEs29(new_compare29(vyw3, vyw40)) 29.96/14.55 new_ltEs11(GT, LT) -> False 29.96/14.55 new_ltEs23(vyw89, vyw90, ty_Ordering) -> new_ltEs11(vyw89, vyw90) 29.96/14.55 new_compare110(vyw143, vyw144, True, efg, efh) -> LT 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Float) -> new_esEs12(vyw590, vyw600) 29.96/14.55 new_lt22(vyw100, vyw103, ty_Char) -> new_lt16(vyw100, vyw103) 29.96/14.55 new_compare11(vyw180, vyw181, vyw182, vyw183, True, daa, dab) -> LT 29.96/14.55 new_lt4(vyw590, vyw600, app(ty_Maybe, gh)) -> new_lt13(vyw590, vyw600, gh) 29.96/14.55 new_compare3(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux0(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Char) -> new_ltEs15(vyw114, vyw116) 29.96/14.55 new_esEs34(vyw300, vyw4000, app(ty_Maybe, eec)) -> new_esEs24(vyw300, vyw4000, eec) 29.96/14.55 new_lt20(vyw590, vyw600, app(app(ty_Either, bee), bef)) -> new_lt8(vyw590, vyw600, bee, bef) 29.96/14.55 new_esEs27(vyw590, vyw600, app(ty_Ratio, chd)) -> new_esEs23(vyw590, vyw600, chd) 29.96/14.55 new_lt23(vyw101, vyw104, ty_Integer) -> new_lt17(vyw101, vyw104) 29.96/14.55 new_esEs33(vyw301, vyw4001, ty_Double) -> new_esEs15(vyw301, vyw4001) 29.96/14.55 new_esEs39(vyw100, vyw103, ty_@0) -> new_esEs22(vyw100, vyw103) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Float) -> new_ltEs14(vyw59, vyw60) 29.96/14.55 new_ltEs17(vyw59, vyw60) -> new_fsEs(new_compare31(vyw59, vyw60)) 29.96/14.55 new_esEs5(vyw31, vyw401, app(app(ty_Either, eeh), efa)) -> new_esEs19(vyw31, vyw401, eeh, efa) 29.96/14.55 new_esEs35(vyw302, vyw4002, ty_Bool) -> new_esEs14(vyw302, vyw4002) 29.96/14.55 new_esEs24(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_primPlusNat1(Succ(vyw19300), Succ(vyw31000)) -> Succ(Succ(new_primPlusNat1(vyw19300, vyw31000))) 29.96/14.55 new_esEs34(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.55 new_esEs38(vyw101, vyw104, ty_Double) -> new_esEs15(vyw101, vyw104) 29.96/14.55 new_ltEs6(vyw59, vyw60) -> new_fsEs(new_compare19(vyw59, vyw60)) 29.96/14.55 new_ltEs11(LT, LT) -> True 29.96/14.55 new_esEs39(vyw100, vyw103, app(app(ty_@2, bh), ca)) -> new_esEs21(vyw100, vyw103, bh, ca) 29.96/14.55 new_lt5(vyw591, vyw601, app(app(ty_Either, he), hf)) -> new_lt8(vyw591, vyw601, he, hf) 29.96/14.55 new_esEs4(vyw32, vyw402, app(app(ty_@2, dge), dgf)) -> new_esEs21(vyw32, vyw402, dge, dgf) 29.96/14.55 new_primCmpNat0(Zero, Succ(vyw4000)) -> LT 29.96/14.55 new_esEs31(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.55 new_esEs16(:(vyw300, vyw301), :(vyw4000, vyw4001), eae) -> new_asAs(new_esEs40(vyw300, vyw4000, eae), new_esEs16(vyw301, vyw4001, eae)) 29.96/14.55 new_esEs4(vyw32, vyw402, ty_Ordering) -> new_esEs25(vyw32, vyw402) 29.96/14.55 new_compare17(vyw30, vyw400, ty_Bool) -> new_compare27(vyw30, vyw400) 29.96/14.55 new_ltEs23(vyw89, vyw90, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs4(vyw89, vyw90, cdg, cdh, cea) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_Bool) -> new_ltEs9(vyw66, vyw67) 29.96/14.55 new_esEs28(vyw590, vyw600, ty_Integer) -> new_esEs18(vyw590, vyw600) 29.96/14.55 new_esEs11(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.55 new_esEs26(vyw591, vyw601, app(ty_Ratio, che)) -> new_esEs23(vyw591, vyw601, che) 29.96/14.55 new_esEs28(vyw590, vyw600, app(ty_[], beg)) -> new_esEs16(vyw590, vyw600, beg) 29.96/14.55 new_ltEs19(vyw591, vyw601, ty_Double) -> new_ltEs6(vyw591, vyw601) 29.96/14.55 new_primCmpNat0(Succ(vyw300), Zero) -> GT 29.96/14.55 new_lt5(vyw591, vyw601, app(app(ty_@2, hh), baa)) -> new_lt11(vyw591, vyw601, hh, baa) 29.96/14.55 new_lt14(vyw3, vyw40, deh) -> new_esEs29(new_compare9(vyw3, vyw40, deh)) 29.96/14.55 new_esEs40(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.55 new_lt5(vyw591, vyw601, ty_Double) -> new_lt7(vyw591, vyw601) 29.96/14.55 new_ltEs19(vyw591, vyw601, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(vyw591, vyw601, bfg, bfh) 29.96/14.55 new_compare3([], :(vyw400, vyw401), bhf) -> LT 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Int) -> new_esEs13(vyw113, vyw115) 29.96/14.55 new_pePe(False, vyw191) -> vyw191 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(ty_[], bdd)) -> new_ltEs8(vyw590, vyw600, bdd) 29.96/14.55 new_esEs40(vyw300, vyw4000, app(app(app(ty_@3, fgc), fgd), fge)) -> new_esEs17(vyw300, vyw4000, fgc, fgd, fge) 29.96/14.55 new_ltEs18(vyw59, vyw60) -> new_fsEs(new_compare32(vyw59, vyw60)) 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Integer) -> new_ltEs16(vyw590, vyw600) 29.96/14.55 new_lt4(vyw590, vyw600, ty_Float) -> new_lt15(vyw590, vyw600) 29.96/14.55 new_compare25(vyw66, vyw67, True, ceh, ebd) -> EQ 29.96/14.55 new_ltEs22(vyw114, vyw116, app(ty_Ratio, ebg)) -> new_ltEs13(vyw114, vyw116, ebg) 29.96/14.55 new_ltEs9(True, True) -> True 29.96/14.55 new_esEs27(vyw590, vyw600, ty_Char) -> new_esEs20(vyw590, vyw600) 29.96/14.55 new_esEs8(vyw30, vyw400, app(ty_Maybe, dee)) -> new_esEs24(vyw30, vyw400, dee) 29.96/14.55 new_esEs31(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.55 new_esEs26(vyw591, vyw601, ty_Bool) -> new_esEs14(vyw591, vyw601) 29.96/14.55 new_esEs8(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.55 new_ltEs21(vyw66, vyw67, ty_@0) -> new_ltEs18(vyw66, vyw67) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_@0) -> new_esEs22(vyw31, vyw401) 29.96/14.55 new_compare31(vyw3, vyw40) -> new_primCmpInt(vyw3, vyw40) 29.96/14.55 new_ltEs24(vyw102, vyw105, app(ty_Ratio, fga)) -> new_ltEs13(vyw102, vyw105, fga) 29.96/14.55 new_lt4(vyw590, vyw600, app(ty_Ratio, chd)) -> new_lt14(vyw590, vyw600, chd) 29.96/14.55 new_ltEs19(vyw591, vyw601, app(app(ty_@2, bgb), bgc)) -> new_ltEs10(vyw591, vyw601, bgb, bgc) 29.96/14.55 new_esEs34(vyw300, vyw4000, app(ty_Ratio, eeb)) -> new_esEs23(vyw300, vyw4000, eeb) 29.96/14.55 new_lt23(vyw101, vyw104, app(ty_Maybe, de)) -> new_lt13(vyw101, vyw104, de) 29.96/14.55 new_esEs32(vyw113, vyw115, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs17(vyw113, vyw115, cbb, cbc, cbd) 29.96/14.55 new_esEs11(vyw30, vyw400, app(ty_Ratio, eaa)) -> new_esEs23(vyw30, vyw400, eaa) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), ty_Int) -> new_ltEs17(vyw590, vyw600) 29.96/14.55 new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.55 new_compare6(Left(vyw30), Right(vyw400), fb, fc) -> LT 29.96/14.55 new_esEs32(vyw113, vyw115, ty_@0) -> new_esEs22(vyw113, vyw115) 29.96/14.55 new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False 29.96/14.55 new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False 29.96/14.55 new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(app(ty_@2, bde), bdf)) -> new_ltEs10(vyw590, vyw600, bde, bdf) 29.96/14.55 new_ltEs20(vyw59, vyw60, ty_Integer) -> new_ltEs16(vyw59, vyw60) 29.96/14.55 new_esEs25(LT, GT) -> False 29.96/14.55 new_esEs25(GT, LT) -> False 29.96/14.55 new_esEs5(vyw31, vyw401, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs17(vyw31, vyw401, eee, eef, eeg) 29.96/14.55 new_lt22(vyw100, vyw103, app(app(ty_@2, bh), ca)) -> new_lt11(vyw100, vyw103, bh, ca) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Int) -> new_ltEs17(vyw592, vyw602) 29.96/14.55 new_ltEs22(vyw114, vyw116, ty_Float) -> new_ltEs14(vyw114, vyw116) 29.96/14.55 new_lt9(vyw3, vyw40, bhf) -> new_esEs29(new_compare3(vyw3, vyw40, bhf)) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Int, bbg) -> new_ltEs17(vyw590, vyw600) 29.96/14.55 new_esEs6(vyw30, vyw400, app(ty_Maybe, ebc)) -> new_esEs24(vyw30, vyw400, ebc) 29.96/14.55 new_ltEs7(Left(vyw590), Left(vyw600), ty_Bool, bbg) -> new_ltEs9(vyw590, vyw600) 29.96/14.55 new_lt17(vyw3, vyw40) -> new_esEs29(new_compare14(vyw3, vyw40)) 29.96/14.55 new_esEs5(vyw31, vyw401, ty_Double) -> new_esEs15(vyw31, vyw401) 29.96/14.55 new_esEs9(vyw31, vyw401, app(app(ty_Either, fdg), fdh)) -> new_esEs19(vyw31, vyw401, fdg, fdh) 29.96/14.55 new_ltEs5(vyw592, vyw602, app(app(ty_@2, bba), bbb)) -> new_ltEs10(vyw592, vyw602, bba, bbb) 29.96/14.55 new_esEs26(vyw591, vyw601, app(ty_[], hg)) -> new_esEs16(vyw591, vyw601, hg) 29.96/14.55 new_esEs32(vyw113, vyw115, ty_Double) -> new_esEs15(vyw113, vyw115) 29.96/14.55 new_ltEs5(vyw592, vyw602, ty_Bool) -> new_ltEs9(vyw592, vyw602) 29.96/14.55 new_esEs6(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.55 new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 29.96/14.55 new_ltEs12(Just(vyw590), Just(vyw600), app(app(ty_Either, bgh), bha)) -> new_ltEs7(vyw590, vyw600, bgh, bha) 29.96/14.55 new_esEs10(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), app(app(ty_@2, bhc), bhd)) -> new_ltEs10(vyw590, vyw600, bhc, bhd) 29.96/14.56 new_primCmpInt(Neg(Zero), Pos(Succ(vyw4000))) -> LT 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), ty_Char, dac) -> new_esEs20(vyw300, vyw4000) 29.96/14.56 new_esEs33(vyw301, vyw4001, ty_Ordering) -> new_esEs25(vyw301, vyw4001) 29.96/14.56 new_esEs8(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.56 new_esEs36(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs4(vyw590, vyw600, bge, bgf, bgg) 29.96/14.56 new_ltEs5(vyw592, vyw602, ty_Integer) -> new_ltEs16(vyw592, vyw602) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.56 new_primMulInt(Pos(vyw4000), Pos(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(app(ty_Either, bdb), bdc)) -> new_ltEs7(vyw590, vyw600, bdb, bdc) 29.96/14.56 new_esEs33(vyw301, vyw4001, app(ty_Maybe, eda)) -> new_esEs24(vyw301, vyw4001, eda) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), ty_Bool) -> new_ltEs9(vyw590, vyw600) 29.96/14.56 new_esEs37(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.56 new_ltEs21(vyw66, vyw67, ty_Char) -> new_ltEs15(vyw66, vyw67) 29.96/14.56 new_ltEs7(Left(vyw590), Left(vyw600), ty_Double, bbg) -> new_ltEs6(vyw590, vyw600) 29.96/14.56 new_esEs40(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.56 new_esEs11(vyw30, vyw400, app(app(ty_Either, dhe), dhf)) -> new_esEs19(vyw30, vyw400, dhe, dhf) 29.96/14.56 new_esEs28(vyw590, vyw600, ty_Double) -> new_esEs15(vyw590, vyw600) 29.96/14.56 new_esEs28(vyw590, vyw600, ty_Bool) -> new_esEs14(vyw590, vyw600) 29.96/14.56 new_esEs25(EQ, GT) -> False 29.96/14.56 new_esEs25(GT, EQ) -> False 29.96/14.56 new_ltEs5(vyw592, vyw602, ty_Double) -> new_ltEs6(vyw592, vyw602) 29.96/14.56 new_lt21(vyw113, vyw115, app(ty_Maybe, ccc)) -> new_lt13(vyw113, vyw115, ccc) 29.96/14.56 new_esEs21(@2(vyw300, vyw301), @2(vyw4000, vyw4001), eba, ebb) -> new_asAs(new_esEs34(vyw300, vyw4000, eba), new_esEs33(vyw301, vyw4001, ebb)) 29.96/14.56 new_esEs33(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) 29.96/14.56 new_compare27(False, True) -> LT 29.96/14.56 new_compare12(vyw153, vyw154, False, dda) -> GT 29.96/14.56 new_ltEs22(vyw114, vyw116, ty_Integer) -> new_ltEs16(vyw114, vyw116) 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, egd), ege), egf)) -> new_esEs17(vyw300, vyw4000, egd, ege, egf) 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.56 new_primMulNat0(Succ(vyw40000), Zero) -> Zero 29.96/14.56 new_primMulNat0(Zero, Succ(vyw3100)) -> Zero 29.96/14.56 new_esEs10(vyw30, vyw400, app(ty_Maybe, fff)) -> new_esEs24(vyw30, vyw400, fff) 29.96/14.56 new_primPlusNat0(Zero, vyw3100) -> Succ(vyw3100) 29.96/14.56 new_esEs40(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), ty_Double) -> new_ltEs6(vyw590, vyw600) 29.96/14.56 new_esEs18(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.56 new_esEs38(vyw101, vyw104, app(ty_[], db)) -> new_esEs16(vyw101, vyw104, db) 29.96/14.56 new_esEs7(vyw30, vyw400, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs17(vyw30, vyw400, cgc, cgd, cge) 29.96/14.56 new_esEs28(vyw590, vyw600, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs17(vyw590, vyw600, bea, beb, bec) 29.96/14.56 new_ltEs5(vyw592, vyw602, app(app(ty_Either, baf), bag)) -> new_ltEs7(vyw592, vyw602, baf, bag) 29.96/14.56 new_ltEs19(vyw591, vyw601, ty_Bool) -> new_ltEs9(vyw591, vyw601) 29.96/14.56 new_esEs7(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.56 new_compare26(vyw89, vyw90, True, ega) -> EQ 29.96/14.56 new_esEs8(vyw30, vyw400, app(app(ty_@2, deb), dec)) -> new_esEs21(vyw30, vyw400, deb, dec) 29.96/14.56 new_ltEs24(vyw102, vyw105, ty_Float) -> new_ltEs14(vyw102, vyw105) 29.96/14.56 new_lt23(vyw101, vyw104, ty_Char) -> new_lt16(vyw101, vyw104) 29.96/14.56 new_lt6(vyw3, vyw40, eg, eh, fa) -> new_esEs29(new_compare18(vyw3, vyw40, eg, eh, fa)) 29.96/14.56 new_esEs39(vyw100, vyw103, ty_Char) -> new_esEs20(vyw100, vyw103) 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), app(ty_[], egc)) -> new_esEs16(vyw300, vyw4000, egc) 29.96/14.56 new_esEs8(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.56 new_esEs39(vyw100, vyw103, ty_Bool) -> new_esEs14(vyw100, vyw103) 29.96/14.56 new_compare26(vyw89, vyw90, False, ega) -> new_compare12(vyw89, vyw90, new_ltEs23(vyw89, vyw90, ega), ega) 29.96/14.56 new_compare17(vyw30, vyw400, app(app(ty_@2, cae), caf)) -> new_compare28(vyw30, vyw400, cae, caf) 29.96/14.56 new_esEs9(vyw31, vyw401, ty_Int) -> new_esEs13(vyw31, vyw401) 29.96/14.56 new_esEs7(vyw30, vyw400, app(app(ty_Either, cgf), cgg)) -> new_esEs19(vyw30, vyw400, cgf, cgg) 29.96/14.56 new_esEs17(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eaf, eag, eah) -> new_asAs(new_esEs37(vyw300, vyw4000, eaf), new_asAs(new_esEs36(vyw301, vyw4001, eag), new_esEs35(vyw302, vyw4002, eah))) 29.96/14.56 new_ltEs19(vyw591, vyw601, ty_Integer) -> new_ltEs16(vyw591, vyw601) 29.96/14.56 new_lt8(vyw3, vyw40, fb, fc) -> new_esEs29(new_compare6(vyw3, vyw40, fb, fc)) 29.96/14.56 new_esEs25(GT, GT) -> True 29.96/14.56 new_lt20(vyw590, vyw600, ty_Bool) -> new_lt10(vyw590, vyw600) 29.96/14.56 new_lt21(vyw113, vyw115, ty_Int) -> new_lt18(vyw113, vyw115) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Float) -> new_ltEs14(vyw590, vyw600) 29.96/14.56 new_lt4(vyw590, vyw600, ty_Bool) -> new_lt10(vyw590, vyw600) 29.96/14.56 new_lt4(vyw590, vyw600, ty_Ordering) -> new_lt12(vyw590, vyw600) 29.96/14.56 new_esEs7(vyw30, vyw400, app(app(ty_@2, cgh), cha)) -> new_esEs21(vyw30, vyw400, cgh, cha) 29.96/14.56 new_compare17(vyw30, vyw400, app(ty_[], cad)) -> new_compare3(vyw30, vyw400, cad) 29.96/14.56 new_esEs4(vyw32, vyw402, ty_Char) -> new_esEs20(vyw32, vyw402) 29.96/14.56 new_compare17(vyw30, vyw400, ty_@0) -> new_compare32(vyw30, vyw400) 29.96/14.56 new_esEs38(vyw101, vyw104, ty_Char) -> new_esEs20(vyw101, vyw104) 29.96/14.56 new_esEs5(vyw31, vyw401, app(ty_[], eed)) -> new_esEs16(vyw31, vyw401, eed) 29.96/14.56 new_primPlusNat1(Succ(vyw19300), Zero) -> Succ(vyw19300) 29.96/14.56 new_primPlusNat1(Zero, Succ(vyw31000)) -> Succ(vyw31000) 29.96/14.56 new_compare8(LT, GT) -> LT 29.96/14.56 new_compare17(vyw30, vyw400, app(ty_Ratio, eac)) -> new_compare9(vyw30, vyw400, eac) 29.96/14.56 new_esEs37(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.56 new_esEs33(vyw301, vyw4001, app(app(ty_Either, ecd), ece)) -> new_esEs19(vyw301, vyw4001, ecd, ece) 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), ty_Bool, dac) -> new_esEs14(vyw300, vyw4000) 29.96/14.56 new_lt21(vyw113, vyw115, ty_Ordering) -> new_lt12(vyw113, vyw115) 29.96/14.56 new_esEs10(vyw30, vyw400, app(app(ty_Either, ffa), ffb)) -> new_esEs19(vyw30, vyw400, ffa, ffb) 29.96/14.56 new_esEs6(vyw30, vyw400, app(app(ty_@2, eba), ebb)) -> new_esEs21(vyw30, vyw400, eba, ebb) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), app(ty_[], bhb)) -> new_ltEs8(vyw590, vyw600, bhb) 29.96/14.56 new_esEs32(vyw113, vyw115, app(ty_Maybe, ccc)) -> new_esEs24(vyw113, vyw115, ccc) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(ty_Ratio, dcg)) -> new_esEs23(vyw300, vyw4000, dcg) 29.96/14.56 new_esEs5(vyw31, vyw401, ty_Float) -> new_esEs12(vyw31, vyw401) 29.96/14.56 new_esEs34(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.56 new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, dfd, dfe, dff) -> LT 29.96/14.56 new_esEs40(vyw300, vyw4000, app(ty_[], fgb)) -> new_esEs16(vyw300, vyw4000, fgb) 29.96/14.56 new_compare210(vyw113, vyw114, vyw115, vyw116, True, ccd, cbe) -> EQ 29.96/14.56 new_ltEs24(vyw102, vyw105, ty_@0) -> new_ltEs18(vyw102, vyw105) 29.96/14.56 new_esEs16([], [], eae) -> True 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), app(ty_Maybe, bhe)) -> new_ltEs12(vyw590, vyw600, bhe) 29.96/14.56 new_primMulInt(Neg(vyw4000), Neg(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) 29.96/14.56 new_primCmpInt(Pos(Zero), Pos(Succ(vyw4000))) -> new_primCmpNat0(Zero, Succ(vyw4000)) 29.96/14.56 new_ltEs19(vyw591, vyw601, ty_Char) -> new_ltEs15(vyw591, vyw601) 29.96/14.56 new_esEs11(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.56 new_esEs36(vyw301, vyw4001, app(ty_Ratio, fbg)) -> new_esEs23(vyw301, vyw4001, fbg) 29.96/14.56 new_esEs14(True, True) -> True 29.96/14.56 new_lt20(vyw590, vyw600, ty_Ordering) -> new_lt12(vyw590, vyw600) 29.96/14.56 new_compare8(EQ, GT) -> LT 29.96/14.56 new_compare11(vyw180, vyw181, vyw182, vyw183, False, daa, dab) -> GT 29.96/14.56 new_ltEs23(vyw89, vyw90, ty_@0) -> new_ltEs18(vyw89, vyw90) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs4(vyw590, vyw600, bcg, bch, bda) 29.96/14.56 new_esEs6(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.56 new_lt22(vyw100, vyw103, ty_Int) -> new_lt18(vyw100, vyw103) 29.96/14.56 new_esEs6(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.56 new_esEs32(vyw113, vyw115, app(app(ty_Either, cbf), cbg)) -> new_esEs19(vyw113, vyw115, cbf, cbg) 29.96/14.56 new_esEs7(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.56 new_esEs8(vyw30, vyw400, app(app(ty_Either, ddh), dea)) -> new_esEs19(vyw30, vyw400, ddh, dea) 29.96/14.56 new_esEs39(vyw100, vyw103, app(ty_[], bg)) -> new_esEs16(vyw100, vyw103, bg) 29.96/14.56 new_esEs7(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.56 new_esEs38(vyw101, vyw104, ty_Bool) -> new_esEs14(vyw101, vyw104) 29.96/14.56 new_compare25(vyw66, vyw67, False, ceh, ebd) -> new_compare110(vyw66, vyw67, new_ltEs21(vyw66, vyw67, ebd), ceh, ebd) 29.96/14.56 new_esEs7(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.56 new_esEs15(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) 29.96/14.56 new_esEs4(vyw32, vyw402, app(ty_[], dfg)) -> new_esEs16(vyw32, vyw402, dfg) 29.96/14.56 new_lt5(vyw591, vyw601, ty_Ordering) -> new_lt12(vyw591, vyw601) 29.96/14.56 new_esEs7(vyw30, vyw400, app(ty_Maybe, chc)) -> new_esEs24(vyw30, vyw400, chc) 29.96/14.56 new_esEs27(vyw590, vyw600, ty_Bool) -> new_esEs14(vyw590, vyw600) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(ty_Ratio, deg)) -> new_ltEs13(vyw590, vyw600, deg) 29.96/14.56 new_esEs33(vyw301, vyw4001, ty_@0) -> new_esEs22(vyw301, vyw4001) 29.96/14.56 new_esEs11(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.56 new_esEs10(vyw30, vyw400, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs17(vyw30, vyw400, fef, feg, feh) 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), app(ty_Maybe, dbe), dac) -> new_esEs24(vyw300, vyw4000, dbe) 29.96/14.56 new_ltEs7(Left(vyw590), Right(vyw600), bcf, bbg) -> True 29.96/14.56 new_esEs6(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) 29.96/14.56 new_primMulInt(Pos(vyw4000), Neg(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) 29.96/14.56 new_primMulInt(Neg(vyw4000), Pos(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), ty_Int, dac) -> new_esEs13(vyw300, vyw4000) 29.96/14.56 new_esEs35(vyw302, vyw4002, app(ty_[], ehe)) -> new_esEs16(vyw302, vyw4002, ehe) 29.96/14.56 new_ltEs11(EQ, GT) -> True 29.96/14.56 new_lt21(vyw113, vyw115, app(app(ty_@2, cca), ccb)) -> new_lt11(vyw113, vyw115, cca, ccb) 29.96/14.56 new_esEs10(vyw30, vyw400, app(ty_Ratio, ffe)) -> new_esEs23(vyw30, vyw400, ffe) 29.96/14.56 new_ltEs23(vyw89, vyw90, ty_Float) -> new_ltEs14(vyw89, vyw90) 29.96/14.56 new_esEs8(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.56 new_ltEs21(vyw66, vyw67, ty_Integer) -> new_ltEs16(vyw66, vyw67) 29.96/14.56 new_lt4(vyw590, vyw600, ty_Double) -> new_lt7(vyw590, vyw600) 29.96/14.56 new_ltEs7(Left(vyw590), Left(vyw600), app(ty_Ratio, def), bbg) -> new_ltEs13(vyw590, vyw600, def) 29.96/14.56 new_compare9(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Int) -> new_compare31(new_sr(vyw30, vyw401), new_sr(vyw400, vyw31)) 29.96/14.56 new_compare29(Float(vyw30, Pos(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Neg(vyw310), vyw400)) 29.96/14.56 new_compare29(Float(vyw30, Neg(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Pos(vyw310), vyw400)) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(ty_Maybe, dch)) -> new_esEs24(vyw300, vyw4000, dch) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Ordering) -> new_ltEs11(vyw590, vyw600) 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), app(app(ty_Either, dah), dba), dac) -> new_esEs19(vyw300, vyw4000, dah, dba) 29.96/14.56 new_esEs27(vyw590, vyw600, ty_@0) -> new_esEs22(vyw590, vyw600) 29.96/14.56 new_ltEs24(vyw102, vyw105, ty_Bool) -> new_ltEs9(vyw102, vyw105) 29.96/14.56 new_esEs33(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) 29.96/14.56 new_esEs33(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) 29.96/14.56 new_esEs8(vyw30, vyw400, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs17(vyw30, vyw400, dde, ddf, ddg) 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), ty_@0, dac) -> new_esEs22(vyw300, vyw4000) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.56 new_esEs36(vyw301, vyw4001, app(ty_Maybe, fbh)) -> new_esEs24(vyw301, vyw4001, fbh) 29.96/14.56 new_sr0(Integer(vyw4000), Integer(vyw310)) -> Integer(new_primMulInt(vyw4000, vyw310)) 29.96/14.56 new_esEs35(vyw302, vyw4002, ty_Double) -> new_esEs15(vyw302, vyw4002) 29.96/14.56 new_primCompAux0(vyw30, vyw400, vyw39, bhf) -> new_primCompAux00(vyw39, new_compare17(vyw30, vyw400, bhf)) 29.96/14.56 new_compare17(vyw30, vyw400, ty_Ordering) -> new_compare8(vyw30, vyw400) 29.96/14.56 new_esEs35(vyw302, vyw4002, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs17(vyw302, vyw4002, ehf, ehg, ehh) 29.96/14.56 new_compare17(vyw30, vyw400, ty_Int) -> new_compare31(vyw30, vyw400) 29.96/14.56 new_esEs6(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.56 new_esEs8(vyw30, vyw400, app(ty_Ratio, ded)) -> new_esEs23(vyw30, vyw400, ded) 29.96/14.56 new_ltEs20(vyw59, vyw60, ty_Ordering) -> new_ltEs11(vyw59, vyw60) 29.96/14.56 new_esEs9(vyw31, vyw401, app(ty_Maybe, fed)) -> new_esEs24(vyw31, vyw401, fed) 29.96/14.56 new_lt21(vyw113, vyw115, ty_Double) -> new_lt7(vyw113, vyw115) 29.96/14.56 new_ltEs11(EQ, EQ) -> True 29.96/14.56 new_lt4(vyw590, vyw600, app(app(ty_@2, gf), gg)) -> new_lt11(vyw590, vyw600, gf, gg) 29.96/14.56 new_lt20(vyw590, vyw600, app(ty_Maybe, bfb)) -> new_lt13(vyw590, vyw600, bfb) 29.96/14.56 new_ltEs24(vyw102, vyw105, ty_Double) -> new_ltEs6(vyw102, vyw105) 29.96/14.56 new_esEs36(vyw301, vyw4001, ty_Float) -> new_esEs12(vyw301, vyw4001) 29.96/14.56 new_ltEs21(vyw66, vyw67, app(ty_Ratio, ebe)) -> new_ltEs13(vyw66, vyw67, ebe) 29.96/14.56 new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) 29.96/14.56 new_esEs26(vyw591, vyw601, app(ty_Maybe, bab)) -> new_esEs24(vyw591, vyw601, bab) 29.96/14.56 new_esEs9(vyw31, vyw401, ty_Float) -> new_esEs12(vyw31, vyw401) 29.96/14.56 new_esEs32(vyw113, vyw115, ty_Integer) -> new_esEs18(vyw113, vyw115) 29.96/14.56 new_lt5(vyw591, vyw601, ty_Float) -> new_lt15(vyw591, vyw601) 29.96/14.56 new_esEs26(vyw591, vyw601, ty_Integer) -> new_esEs18(vyw591, vyw601) 29.96/14.56 new_esEs6(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.56 new_ltEs20(vyw59, vyw60, ty_Char) -> new_ltEs15(vyw59, vyw60) 29.96/14.56 new_esEs4(vyw32, vyw402, app(ty_Ratio, dgg)) -> new_esEs23(vyw32, vyw402, dgg) 29.96/14.56 new_esEs5(vyw31, vyw401, ty_Integer) -> new_esEs18(vyw31, vyw401) 29.96/14.56 new_esEs32(vyw113, vyw115, ty_Char) -> new_esEs20(vyw113, vyw115) 29.96/14.56 new_esEs25(LT, LT) -> True 29.96/14.56 new_compare6(Right(vyw30), Right(vyw400), fb, fc) -> new_compare25(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(ty_Maybe, bdg)) -> new_ltEs12(vyw590, vyw600, bdg) 29.96/14.56 new_esEs5(vyw31, vyw401, ty_Char) -> new_esEs20(vyw31, vyw401) 29.96/14.56 new_esEs35(vyw302, vyw4002, app(ty_Ratio, fae)) -> new_esEs23(vyw302, vyw4002, fae) 29.96/14.56 new_asAs(True, vyw131) -> vyw131 29.96/14.56 new_esEs22(@0, @0) -> True 29.96/14.56 new_esEs32(vyw113, vyw115, ty_Ordering) -> new_esEs25(vyw113, vyw115) 29.96/14.56 new_esEs32(vyw113, vyw115, app(app(ty_@2, cca), ccb)) -> new_esEs21(vyw113, vyw115, cca, ccb) 29.96/14.56 new_esEs5(vyw31, vyw401, ty_Ordering) -> new_esEs25(vyw31, vyw401) 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), app(app(ty_Either, egg), egh)) -> new_esEs19(vyw300, vyw4000, egg, egh) 29.96/14.56 new_compare9(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Integer) -> new_compare14(new_sr0(vyw30, vyw401), new_sr0(vyw400, vyw31)) 29.96/14.56 new_esEs26(vyw591, vyw601, app(app(ty_@2, hh), baa)) -> new_esEs21(vyw591, vyw601, hh, baa) 29.96/14.56 new_esEs26(vyw591, vyw601, ty_Ordering) -> new_esEs25(vyw591, vyw601) 29.96/14.56 new_ltEs22(vyw114, vyw116, app(app(ty_@2, cdc), cdd)) -> new_ltEs10(vyw114, vyw116, cdc, cdd) 29.96/14.56 new_ltEs16(vyw59, vyw60) -> new_fsEs(new_compare14(vyw59, vyw60)) 29.96/14.56 new_esEs10(vyw30, vyw400, app(ty_[], fee)) -> new_esEs16(vyw30, vyw400, fee) 29.96/14.56 new_esEs4(vyw32, vyw402, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs17(vyw32, vyw402, dfh, dga, dgb) 29.96/14.56 new_ltEs7(Left(vyw590), Left(vyw600), app(ty_Maybe, bce), bbg) -> new_ltEs12(vyw590, vyw600, bce) 29.96/14.56 new_esEs4(vyw32, vyw402, ty_Double) -> new_esEs15(vyw32, vyw402) 29.96/14.56 new_esEs5(vyw31, vyw401, app(app(ty_@2, efb), efc)) -> new_esEs21(vyw31, vyw401, efb, efc) 29.96/14.56 new_lt4(vyw590, vyw600, ty_@0) -> new_lt19(vyw590, vyw600) 29.96/14.56 new_esEs38(vyw101, vyw104, ty_Int) -> new_esEs13(vyw101, vyw104) 29.96/14.56 new_esEs26(vyw591, vyw601, ty_Char) -> new_esEs20(vyw591, vyw601) 29.96/14.56 new_ltEs7(Left(vyw590), Left(vyw600), ty_@0, bbg) -> new_ltEs18(vyw590, vyw600) 29.96/14.56 new_lt21(vyw113, vyw115, app(ty_[], cbh)) -> new_lt9(vyw113, vyw115, cbh) 29.96/14.56 new_compare27(True, True) -> EQ 29.96/14.56 new_ltEs22(vyw114, vyw116, app(app(ty_Either, cch), cda)) -> new_ltEs7(vyw114, vyw116, cch, cda) 29.96/14.56 new_ltEs5(vyw592, vyw602, ty_@0) -> new_ltEs18(vyw592, vyw602) 29.96/14.56 new_esEs11(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.56 new_compare24(vyw59, vyw60, True, dfa, gb) -> EQ 29.96/14.56 new_ltEs24(vyw102, vyw105, app(ty_[], ec)) -> new_ltEs8(vyw102, vyw105, ec) 29.96/14.56 new_ltEs22(vyw114, vyw116, ty_@0) -> new_ltEs18(vyw114, vyw116) 29.96/14.56 new_compare211(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, True, cc, bc, bd) -> EQ 29.96/14.56 new_primCmpInt(Pos(Succ(vyw300)), Pos(vyw400)) -> new_primCmpNat0(Succ(vyw300), vyw400) 29.96/14.56 new_esEs8(vyw30, vyw400, app(ty_[], ddd)) -> new_esEs16(vyw30, vyw400, ddd) 29.96/14.56 new_ltEs21(vyw66, vyw67, app(ty_Maybe, cga)) -> new_ltEs12(vyw66, vyw67, cga) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), ty_@0) -> new_ltEs18(vyw590, vyw600) 29.96/14.56 new_ltEs21(vyw66, vyw67, ty_Int) -> new_ltEs17(vyw66, vyw67) 29.96/14.56 new_esEs38(vyw101, vyw104, ty_@0) -> new_esEs22(vyw101, vyw104) 29.96/14.56 new_compare6(Right(vyw30), Left(vyw400), fb, fc) -> GT 29.96/14.56 new_lt13(vyw3, vyw40, cdf) -> new_esEs29(new_compare7(vyw3, vyw40, cdf)) 29.96/14.56 new_ltEs11(GT, GT) -> True 29.96/14.56 new_primCompAux00(vyw72, EQ) -> vyw72 29.96/14.56 new_esEs39(vyw100, vyw103, app(app(ty_Either, be), bf)) -> new_esEs19(vyw100, vyw103, be, bf) 29.96/14.56 new_sr(vyw400, vyw31) -> new_primMulInt(vyw400, vyw31) 29.96/14.56 new_lt4(vyw590, vyw600, ty_Int) -> new_lt18(vyw590, vyw600) 29.96/14.56 new_lt18(vyw3, vyw40) -> new_esEs29(new_compare31(vyw3, vyw40)) 29.96/14.56 new_ltEs21(vyw66, vyw67, app(app(ty_Either, cfd), cfe)) -> new_ltEs7(vyw66, vyw67, cfd, cfe) 29.96/14.56 new_compare8(GT, EQ) -> GT 29.96/14.56 new_esEs4(vyw32, vyw402, ty_Float) -> new_esEs12(vyw32, vyw402) 29.96/14.56 new_ltEs9(False, False) -> True 29.96/14.56 new_primMulNat0(Zero, Zero) -> Zero 29.96/14.56 new_esEs39(vyw100, vyw103, ty_Double) -> new_esEs15(vyw100, vyw103) 29.96/14.56 new_esEs11(vyw30, vyw400, app(app(ty_@2, dhg), dhh)) -> new_esEs21(vyw30, vyw400, dhg, dhh) 29.96/14.56 new_compare27(True, False) -> GT 29.96/14.56 new_lt12(vyw3, vyw40) -> new_esEs29(new_compare8(vyw3, vyw40)) 29.96/14.56 new_compare8(LT, LT) -> EQ 29.96/14.56 new_ltEs4(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, ga) -> new_pePe(new_lt4(vyw590, vyw600, ha), new_asAs(new_esEs27(vyw590, vyw600, ha), new_pePe(new_lt5(vyw591, vyw601, fh), new_asAs(new_esEs26(vyw591, vyw601, fh), new_ltEs5(vyw592, vyw602, ga))))) 29.96/14.56 new_ltEs14(vyw59, vyw60) -> new_fsEs(new_compare29(vyw59, vyw60)) 29.96/14.56 new_ltEs22(vyw114, vyw116, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs4(vyw114, vyw116, cce, ccf, ccg) 29.96/14.56 new_esEs34(vyw300, vyw4000, app(app(ty_Either, edf), edg)) -> new_esEs19(vyw300, vyw4000, edf, edg) 29.96/14.56 new_ltEs19(vyw591, vyw601, app(ty_[], bga)) -> new_ltEs8(vyw591, vyw601, bga) 29.96/14.56 new_ltEs20(vyw59, vyw60, ty_Bool) -> new_ltEs9(vyw59, vyw60) 29.96/14.56 new_ltEs20(vyw59, vyw60, app(ty_Maybe, dfb)) -> new_ltEs12(vyw59, vyw60, dfb) 29.96/14.56 new_compare8(LT, EQ) -> LT 29.96/14.56 new_compare17(vyw30, vyw400, ty_Double) -> new_compare19(vyw30, vyw400) 29.96/14.56 new_esEs9(vyw31, vyw401, app(app(ty_@2, fea), feb)) -> new_esEs21(vyw31, vyw401, fea, feb) 29.96/14.56 new_esEs4(vyw32, vyw402, app(ty_Maybe, dgh)) -> new_esEs24(vyw32, vyw402, dgh) 29.96/14.56 new_esEs40(vyw300, vyw4000, app(app(ty_Either, fgf), fgg)) -> new_esEs19(vyw300, vyw4000, fgf, fgg) 29.96/14.56 new_esEs32(vyw113, vyw115, ty_Float) -> new_esEs12(vyw113, vyw115) 29.96/14.56 new_ltEs24(vyw102, vyw105, ty_Ordering) -> new_ltEs11(vyw102, vyw105) 29.96/14.56 new_ltEs20(vyw59, vyw60, ty_Double) -> new_ltEs6(vyw59, vyw60) 29.96/14.56 new_ltEs5(vyw592, vyw602, ty_Float) -> new_ltEs14(vyw592, vyw602) 29.96/14.56 new_ltEs19(vyw591, vyw601, app(ty_Ratio, chh)) -> new_ltEs13(vyw591, vyw601, chh) 29.96/14.56 new_ltEs21(vyw66, vyw67, app(app(ty_@2, cfg), cfh)) -> new_ltEs10(vyw66, vyw67, cfg, cfh) 29.96/14.56 new_esEs39(vyw100, vyw103, app(app(app(ty_@3, h), ba), bb)) -> new_esEs17(vyw100, vyw103, h, ba, bb) 29.96/14.56 new_lt19(vyw3, vyw40) -> new_esEs29(new_compare32(vyw3, vyw40)) 29.96/14.56 new_esEs9(vyw31, vyw401, ty_Ordering) -> new_esEs25(vyw31, vyw401) 29.96/14.56 new_esEs39(vyw100, vyw103, app(ty_Ratio, ffg)) -> new_esEs23(vyw100, vyw103, ffg) 29.96/14.56 new_esEs27(vyw590, vyw600, ty_Ordering) -> new_esEs25(vyw590, vyw600) 29.96/14.56 new_esEs37(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.56 new_esEs9(vyw31, vyw401, ty_Integer) -> new_esEs18(vyw31, vyw401) 29.96/14.56 new_lt5(vyw591, vyw601, app(ty_[], hg)) -> new_lt9(vyw591, vyw601, hg) 29.96/14.56 new_esEs27(vyw590, vyw600, app(app(ty_@2, gf), gg)) -> new_esEs21(vyw590, vyw600, gf, gg) 29.96/14.56 new_compare32(@0, @0) -> EQ 29.96/14.56 new_lt21(vyw113, vyw115, ty_@0) -> new_lt19(vyw113, vyw115) 29.96/14.56 new_esEs33(vyw301, vyw4001, app(app(ty_@2, ecf), ecg)) -> new_esEs21(vyw301, vyw4001, ecf, ecg) 29.96/14.56 new_lt20(vyw590, vyw600, ty_Int) -> new_lt18(vyw590, vyw600) 29.96/14.56 new_esEs5(vyw31, vyw401, app(ty_Maybe, efe)) -> new_esEs24(vyw31, vyw401, efe) 29.96/14.56 new_esEs26(vyw591, vyw601, ty_Float) -> new_esEs12(vyw591, vyw601) 29.96/14.56 new_ltEs13(vyw59, vyw60, dfc) -> new_fsEs(new_compare9(vyw59, vyw60, dfc)) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.56 new_esEs9(vyw31, vyw401, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs17(vyw31, vyw401, fdd, fde, fdf) 29.96/14.56 new_ltEs9(True, False) -> False 29.96/14.56 new_ltEs20(vyw59, vyw60, app(ty_[], bdh)) -> new_ltEs8(vyw59, vyw60, bdh) 29.96/14.56 new_ltEs19(vyw591, vyw601, ty_Int) -> new_ltEs17(vyw591, vyw601) 29.96/14.56 new_esEs7(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) 29.96/14.56 new_esEs11(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) 29.96/14.56 new_esEs10(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) 29.96/14.56 new_esEs28(vyw590, vyw600, ty_@0) -> new_esEs22(vyw590, vyw600) 29.96/14.56 new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False 29.96/14.56 new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False 29.96/14.56 new_esEs9(vyw31, vyw401, app(ty_Ratio, fec)) -> new_esEs23(vyw31, vyw401, fec) 29.96/14.56 new_lt4(vyw590, vyw600, app(ty_[], ge)) -> new_lt9(vyw590, vyw600, ge) 29.96/14.56 new_ltEs20(vyw59, vyw60, app(ty_Ratio, dfc)) -> new_ltEs13(vyw59, vyw60, dfc) 29.96/14.56 new_compare19(Double(vyw30, Pos(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Neg(vyw310), vyw400)) 29.96/14.56 new_compare19(Double(vyw30, Neg(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Pos(vyw310), vyw400)) 29.96/14.56 new_compare7(Just(vyw30), Nothing, cdf) -> GT 29.96/14.56 new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Char) -> new_ltEs15(vyw590, vyw600) 29.96/14.56 new_lt20(vyw590, vyw600, ty_Double) -> new_lt7(vyw590, vyw600) 29.96/14.56 new_lt23(vyw101, vyw104, app(app(app(ty_@3, cd), ce), cf)) -> new_lt6(vyw101, vyw104, cd, ce, cf) 29.96/14.56 new_ltEs15(vyw59, vyw60) -> new_fsEs(new_compare30(vyw59, vyw60)) 29.96/14.56 new_esEs5(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) 29.96/14.56 new_lt5(vyw591, vyw601, ty_@0) -> new_lt19(vyw591, vyw601) 29.96/14.56 new_esEs34(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.56 new_lt23(vyw101, vyw104, ty_Ordering) -> new_lt12(vyw101, vyw104) 29.96/14.56 new_esEs7(vyw30, vyw400, app(ty_[], cgb)) -> new_esEs16(vyw30, vyw400, cgb) 29.96/14.56 new_ltEs19(vyw591, vyw601, app(ty_Maybe, bgd)) -> new_ltEs12(vyw591, vyw601, bgd) 29.96/14.56 new_lt20(vyw590, vyw600, app(app(ty_@2, beh), bfa)) -> new_lt11(vyw590, vyw600, beh, bfa) 29.96/14.56 new_esEs14(False, False) -> True 29.96/14.56 new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False 29.96/14.56 new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False 29.96/14.56 new_compare10(vyw180, vyw181, vyw182, vyw183, True, vyw185, daa, dab) -> new_compare11(vyw180, vyw181, vyw182, vyw183, True, daa, dab) 29.96/14.56 new_esEs11(vyw30, vyw400, app(ty_Maybe, eab)) -> new_esEs24(vyw30, vyw400, eab) 29.96/14.56 new_esEs10(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.56 new_primCmpInt(Neg(Zero), Neg(Succ(vyw4000))) -> new_primCmpNat0(Succ(vyw4000), Zero) 29.96/14.56 new_lt20(vyw590, vyw600, app(ty_Ratio, chg)) -> new_lt14(vyw590, vyw600, chg) 29.96/14.56 new_esEs35(vyw302, vyw4002, app(app(ty_Either, faa), fab)) -> new_esEs19(vyw302, vyw4002, faa, fab) 29.96/14.56 new_compare19(Double(vyw30, Neg(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Neg(vyw310), vyw400)) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(ty_[], dbg)) -> new_esEs16(vyw300, vyw4000, dbg) 29.96/14.56 new_esEs11(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) 29.96/14.56 new_esEs36(vyw301, vyw4001, ty_Char) -> new_esEs20(vyw301, vyw4001) 29.96/14.56 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs17(vyw300, vyw4000, dbh, dca, dcb) 29.96/14.56 new_esEs34(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) 29.96/14.56 new_ltEs19(vyw591, vyw601, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs4(vyw591, vyw601, bfd, bfe, bff) 29.96/14.56 new_compare17(vyw30, vyw400, ty_Float) -> new_compare29(vyw30, vyw400) 29.96/14.56 new_esEs34(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.56 new_esEs35(vyw302, vyw4002, app(ty_Maybe, faf)) -> new_esEs24(vyw302, vyw4002, faf) 29.96/14.56 new_compare17(vyw30, vyw400, app(app(app(ty_@3, bhg), bhh), caa)) -> new_compare18(vyw30, vyw400, bhg, bhh, caa) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(app(ty_Either, dcc), dcd)) -> new_esEs19(vyw300, vyw4000, dcc, dcd) 29.96/14.56 new_compare13(vyw136, vyw137, True, ddb, ddc) -> LT 29.96/14.56 new_esEs26(vyw591, vyw601, ty_@0) -> new_esEs22(vyw591, vyw601) 29.96/14.56 new_esEs11(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.56 new_esEs40(vyw300, vyw4000, app(ty_Ratio, fhb)) -> new_esEs23(vyw300, vyw4000, fhb) 29.96/14.56 new_compare12(vyw153, vyw154, True, dda) -> LT 29.96/14.56 new_esEs5(vyw31, vyw401, ty_Int) -> new_esEs13(vyw31, vyw401) 29.96/14.56 new_esEs9(vyw31, vyw401, app(ty_[], fdc)) -> new_esEs16(vyw31, vyw401, fdc) 29.96/14.56 new_lt22(vyw100, vyw103, ty_Double) -> new_lt7(vyw100, vyw103) 29.96/14.56 new_compare8(GT, LT) -> GT 29.96/14.56 new_compare7(Nothing, Nothing, cdf) -> EQ 29.96/14.56 new_esEs35(vyw302, vyw4002, ty_Char) -> new_esEs20(vyw302, vyw4002) 29.96/14.56 new_compare24(vyw59, vyw60, False, dfa, gb) -> new_compare13(vyw59, vyw60, new_ltEs20(vyw59, vyw60, dfa), dfa, gb) 29.96/14.56 new_ltEs20(vyw59, vyw60, ty_Int) -> new_ltEs17(vyw59, vyw60) 29.96/14.56 new_esEs11(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) 29.96/14.56 new_ltEs21(vyw66, vyw67, ty_Ordering) -> new_ltEs11(vyw66, vyw67) 29.96/14.56 new_ltEs23(vyw89, vyw90, app(ty_[], ced)) -> new_ltEs8(vyw89, vyw90, ced) 29.96/14.56 new_esEs35(vyw302, vyw4002, ty_Float) -> new_esEs12(vyw302, vyw4002) 29.96/14.56 new_esEs10(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.56 new_esEs7(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.56 new_ltEs7(Left(vyw590), Left(vyw600), app(ty_[], bcb), bbg) -> new_ltEs8(vyw590, vyw600, bcb) 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), ty_Integer, dac) -> new_esEs18(vyw300, vyw4000) 29.96/14.56 new_esEs7(vyw30, vyw400, app(ty_Ratio, chb)) -> new_esEs23(vyw30, vyw400, chb) 29.96/14.56 new_esEs8(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) 29.96/14.56 new_lt11(vyw3, vyw40, cah, cba) -> new_esEs29(new_compare28(vyw3, vyw40, cah, cba)) 29.96/14.56 new_esEs27(vyw590, vyw600, app(ty_Maybe, gh)) -> new_esEs24(vyw590, vyw600, gh) 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), app(ty_[], dad), dac) -> new_esEs16(vyw300, vyw4000, dad) 29.96/14.56 new_esEs4(vyw32, vyw402, ty_Integer) -> new_esEs18(vyw32, vyw402) 29.96/14.56 new_esEs38(vyw101, vyw104, app(app(ty_Either, cg), da)) -> new_esEs19(vyw101, vyw104, cg, da) 29.96/14.56 new_esEs40(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) 29.96/14.56 new_not(False) -> True 29.96/14.56 new_compare8(EQ, LT) -> GT 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), ty_Ordering, dac) -> new_esEs25(vyw300, vyw4000) 29.96/14.56 new_esEs36(vyw301, vyw4001, app(ty_[], fag)) -> new_esEs16(vyw301, vyw4001, fag) 29.96/14.56 new_lt22(vyw100, vyw103, app(app(ty_Either, be), bf)) -> new_lt8(vyw100, vyw103, be, bf) 29.96/14.56 new_compare15(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, vyw172, dfd, dfe, dff) -> new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, vyw172, dfd, dfe, dff) 29.96/14.56 new_esEs9(vyw31, vyw401, ty_Double) -> new_esEs15(vyw31, vyw401) 29.96/14.56 new_esEs26(vyw591, vyw601, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs17(vyw591, vyw601, hb, hc, hd) 29.96/14.56 new_esEs26(vyw591, vyw601, ty_Double) -> new_esEs15(vyw591, vyw601) 29.96/14.56 new_esEs27(vyw590, vyw600, ty_Integer) -> new_esEs18(vyw590, vyw600) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), ty_Integer) -> new_ltEs16(vyw590, vyw600) 29.96/14.56 new_esEs19(Left(vyw300), Left(vyw4000), app(ty_Ratio, dbd), dac) -> new_esEs23(vyw300, vyw4000, dbd) 29.96/14.56 new_esEs25(LT, EQ) -> False 29.96/14.56 new_esEs25(EQ, LT) -> False 29.96/14.56 new_esEs24(Just(vyw300), Just(vyw4000), app(ty_Ratio, ehc)) -> new_esEs23(vyw300, vyw4000, ehc) 29.96/14.56 new_esEs4(vyw32, vyw402, app(app(ty_Either, dgc), dgd)) -> new_esEs19(vyw32, vyw402, dgc, dgd) 29.96/14.56 new_esEs28(vyw590, vyw600, app(app(ty_Either, bee), bef)) -> new_esEs19(vyw590, vyw600, bee, bef) 29.96/14.56 new_esEs9(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) 29.96/14.56 new_esEs30(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) 29.96/14.56 new_compare7(Just(vyw30), Just(vyw400), cdf) -> new_compare26(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) 29.96/14.56 new_esEs38(vyw101, vyw104, app(app(ty_@2, dc), dd)) -> new_esEs21(vyw101, vyw104, dc, dd) 29.96/14.56 new_primPlusNat0(Succ(vyw1930), vyw3100) -> Succ(Succ(new_primPlusNat1(vyw1930, vyw3100))) 29.96/14.56 new_esEs28(vyw590, vyw600, app(ty_Ratio, chg)) -> new_esEs23(vyw590, vyw600, chg) 29.96/14.56 new_compare17(vyw30, vyw400, app(app(ty_Either, cab), cac)) -> new_compare6(vyw30, vyw400, cab, cac) 29.96/14.56 new_lt21(vyw113, vyw115, app(ty_Ratio, ebf)) -> new_lt14(vyw113, vyw115, ebf) 29.96/14.56 new_esEs36(vyw301, vyw4001, app(app(ty_Either, fbc), fbd)) -> new_esEs19(vyw301, vyw4001, fbc, fbd) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(app(ty_@2, dce), dcf)) -> new_esEs21(vyw300, vyw4000, dce, dcf) 29.96/14.56 new_ltEs7(Left(vyw590), Left(vyw600), ty_Integer, bbg) -> new_ltEs16(vyw590, vyw600) 29.96/14.56 new_esEs5(vyw31, vyw401, app(ty_Ratio, efd)) -> new_esEs23(vyw31, vyw401, efd) 29.96/14.56 new_ltEs11(LT, EQ) -> True 29.96/14.56 new_esEs11(vyw30, vyw400, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs17(vyw30, vyw400, dhb, dhc, dhd) 29.96/14.56 new_ltEs24(vyw102, vyw105, app(ty_Maybe, ef)) -> new_ltEs12(vyw102, vyw105, ef) 29.96/14.56 new_ltEs5(vyw592, vyw602, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs4(vyw592, vyw602, bac, bad, bae) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Char) -> new_esEs20(vyw300, vyw4000) 29.96/14.56 new_esEs32(vyw113, vyw115, app(ty_Ratio, ebf)) -> new_esEs23(vyw113, vyw115, ebf) 29.96/14.56 new_ltEs21(vyw66, vyw67, app(ty_[], cff)) -> new_ltEs8(vyw66, vyw67, cff) 29.96/14.56 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.96/14.56 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.96/14.56 new_lt4(vyw590, vyw600, ty_Integer) -> new_lt17(vyw590, vyw600) 29.96/14.56 new_esEs38(vyw101, vyw104, ty_Ordering) -> new_esEs25(vyw101, vyw104) 29.96/14.56 new_compare13(vyw136, vyw137, False, ddb, ddc) -> GT 29.96/14.56 new_esEs26(vyw591, vyw601, ty_Int) -> new_esEs13(vyw591, vyw601) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Double) -> new_ltEs6(vyw590, vyw600) 29.96/14.56 new_esEs37(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) 29.96/14.56 new_primPlusNat1(Zero, Zero) -> Zero 29.96/14.56 new_esEs38(vyw101, vyw104, ty_Integer) -> new_esEs18(vyw101, vyw104) 29.96/14.56 new_esEs34(vyw300, vyw4000, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs17(vyw300, vyw4000, edc, edd, ede) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Bool) -> new_ltEs9(vyw590, vyw600) 29.96/14.56 new_lt21(vyw113, vyw115, ty_Float) -> new_lt15(vyw113, vyw115) 29.96/14.56 new_compare210(vyw113, vyw114, vyw115, vyw116, False, ccd, cbe) -> new_compare10(vyw113, vyw114, vyw115, vyw116, new_lt21(vyw113, vyw115, ccd), new_asAs(new_esEs32(vyw113, vyw115, ccd), new_ltEs22(vyw114, vyw116, cbe)), ccd, cbe) 29.96/14.56 new_lt23(vyw101, vyw104, ty_Bool) -> new_lt10(vyw101, vyw104) 29.96/14.56 new_compare211(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, bd) -> new_compare15(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, new_lt22(vyw100, vyw103, cc), new_asAs(new_esEs39(vyw100, vyw103, cc), new_pePe(new_lt23(vyw101, vyw104, bc), new_asAs(new_esEs38(vyw101, vyw104, bc), new_ltEs24(vyw102, vyw105, bd)))), cc, bc, bd) 29.96/14.56 new_compare7(Nothing, Just(vyw400), cdf) -> LT 29.96/14.56 new_compare17(vyw30, vyw400, ty_Char) -> new_compare30(vyw30, vyw400) 29.96/14.56 new_ltEs12(Nothing, Just(vyw600), dfb) -> True 29.96/14.56 new_lt5(vyw591, vyw601, ty_Integer) -> new_lt17(vyw591, vyw601) 29.96/14.56 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.96/14.56 new_lt10(vyw3, vyw40) -> new_esEs29(new_compare27(vyw3, vyw40)) 29.96/14.56 new_esEs26(vyw591, vyw601, app(app(ty_Either, he), hf)) -> new_esEs19(vyw591, vyw601, he, hf) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), app(ty_Ratio, eff)) -> new_ltEs13(vyw590, vyw600, eff) 29.96/14.56 new_ltEs21(vyw66, vyw67, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs4(vyw66, vyw67, cfa, cfb, cfc) 29.96/14.56 new_esEs37(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) 29.96/14.56 new_primMulNat0(Succ(vyw40000), Succ(vyw3100)) -> new_primPlusNat0(new_primMulNat0(vyw40000, Succ(vyw3100)), vyw3100) 29.96/14.56 new_compare29(Float(vyw30, Pos(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Pos(vyw310), vyw400)) 29.96/14.56 new_ltEs7(Left(vyw590), Left(vyw600), ty_Float, bbg) -> new_ltEs14(vyw590, vyw600) 29.96/14.56 new_esEs37(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) 29.96/14.56 new_lt22(vyw100, vyw103, app(ty_[], bg)) -> new_lt9(vyw100, vyw103, bg) 29.96/14.56 new_lt4(vyw590, vyw600, ty_Char) -> new_lt16(vyw590, vyw600) 29.96/14.56 new_ltEs19(vyw591, vyw601, ty_Ordering) -> new_ltEs11(vyw591, vyw601) 29.96/14.56 new_lt5(vyw591, vyw601, app(app(app(ty_@3, hb), hc), hd)) -> new_lt6(vyw591, vyw601, hb, hc, hd) 29.96/14.56 new_primCmpNat0(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat0(vyw300, vyw4000) 29.96/14.56 new_lt20(vyw590, vyw600, ty_Char) -> new_lt16(vyw590, vyw600) 29.96/14.56 new_lt21(vyw113, vyw115, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt6(vyw113, vyw115, cbb, cbc, cbd) 29.96/14.56 new_ltEs10(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, bed) -> new_pePe(new_lt20(vyw590, vyw600, bfc), new_asAs(new_esEs28(vyw590, vyw600, bfc), new_ltEs19(vyw591, vyw601, bed))) 29.96/14.56 new_lt22(vyw100, vyw103, ty_@0) -> new_lt19(vyw100, vyw103) 29.96/14.56 new_ltEs7(Left(vyw590), Left(vyw600), app(app(app(ty_@3, bbd), bbe), bbf), bbg) -> new_ltEs4(vyw590, vyw600, bbd, bbe, bbf) 29.96/14.56 new_compare17(vyw30, vyw400, app(ty_Maybe, cag)) -> new_compare7(vyw30, vyw400, cag) 29.96/14.56 new_ltEs11(LT, GT) -> True 29.96/14.56 new_compare29(Float(vyw30, Neg(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Neg(vyw310), vyw400)) 29.96/14.56 new_compare30(Char(vyw30), Char(vyw400)) -> new_primCmpNat0(vyw30, vyw400) 29.96/14.56 new_esEs28(vyw590, vyw600, ty_Int) -> new_esEs13(vyw590, vyw600) 29.96/14.56 new_compare8(EQ, EQ) -> EQ 29.96/14.56 new_ltEs23(vyw89, vyw90, ty_Int) -> new_ltEs17(vyw89, vyw90) 29.96/14.56 new_esEs36(vyw301, vyw4001, ty_Ordering) -> new_esEs25(vyw301, vyw4001) 29.96/14.56 new_esEs36(vyw301, vyw4001, app(app(ty_@2, fbe), fbf)) -> new_esEs21(vyw301, vyw4001, fbe, fbf) 29.96/14.56 new_esEs27(vyw590, vyw600, app(app(ty_Either, gc), gd)) -> new_esEs19(vyw590, vyw600, gc, gd) 29.96/14.56 new_esEs24(Nothing, Nothing, ebc) -> True 29.96/14.56 new_ltEs22(vyw114, vyw116, app(ty_Maybe, cde)) -> new_ltEs12(vyw114, vyw116, cde) 29.96/14.56 new_compare3(:(vyw30, vyw31), [], bhf) -> GT 29.96/14.56 new_ltEs12(Nothing, Nothing, dfb) -> True 29.96/14.56 new_esEs16(:(vyw300, vyw301), [], eae) -> False 29.96/14.56 new_esEs16([], :(vyw4000, vyw4001), eae) -> False 29.96/14.56 new_lt23(vyw101, vyw104, app(ty_[], db)) -> new_lt9(vyw101, vyw104, db) 29.96/14.56 new_ltEs12(Just(vyw590), Nothing, dfb) -> False 29.96/14.56 new_esEs36(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) 29.96/14.56 new_esEs36(vyw301, vyw4001, ty_@0) -> new_esEs22(vyw301, vyw4001) 29.96/14.56 new_lt23(vyw101, vyw104, ty_Float) -> new_lt15(vyw101, vyw104) 29.96/14.56 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.96/14.56 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.96/14.56 new_ltEs24(vyw102, vyw105, ty_Char) -> new_ltEs15(vyw102, vyw105) 29.96/14.56 new_esEs29(LT) -> True 29.96/14.56 new_lt21(vyw113, vyw115, ty_Integer) -> new_lt17(vyw113, vyw115) 29.96/14.56 new_lt20(vyw590, vyw600, app(app(app(ty_@3, bea), beb), bec)) -> new_lt6(vyw590, vyw600, bea, beb, bec) 29.96/14.56 new_ltEs12(Just(vyw590), Just(vyw600), ty_Float) -> new_ltEs14(vyw590, vyw600) 29.96/14.56 new_compare110(vyw143, vyw144, False, efg, efh) -> GT 29.96/14.56 new_esEs27(vyw590, vyw600, ty_Int) -> new_esEs13(vyw590, vyw600) 29.96/14.56 new_ltEs23(vyw89, vyw90, ty_Bool) -> new_ltEs9(vyw89, vyw90) 29.96/14.56 new_primEqNat0(Zero, Zero) -> True 29.96/14.56 new_esEs37(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) 29.96/14.56 new_esEs37(vyw300, vyw4000, app(app(ty_@2, fcg), fch)) -> new_esEs21(vyw300, vyw4000, fcg, fch) 29.96/14.56 new_ltEs23(vyw89, vyw90, app(ty_Maybe, ceg)) -> new_ltEs12(vyw89, vyw90, ceg) 29.96/14.56 new_esEs36(vyw301, vyw4001, ty_Double) -> new_esEs15(vyw301, vyw4001) 29.96/14.56 new_esEs36(vyw301, vyw4001, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs17(vyw301, vyw4001, fah, fba, fbb) 29.96/14.56 new_ltEs23(vyw89, vyw90, app(app(ty_Either, ceb), cec)) -> new_ltEs7(vyw89, vyw90, ceb, cec) 29.96/14.56 new_esEs12(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) 29.96/14.56 new_ltEs23(vyw89, vyw90, ty_Double) -> new_ltEs6(vyw89, vyw90) 29.96/14.56 new_esEs24(Nothing, Just(vyw4000), ebc) -> False 29.96/14.56 new_esEs24(Just(vyw300), Nothing, ebc) -> False 29.96/14.56 new_lt23(vyw101, vyw104, app(app(ty_Either, cg), da)) -> new_lt8(vyw101, vyw104, cg, da) 29.96/14.56 new_esEs37(vyw300, vyw4000, app(ty_Maybe, fdb)) -> new_esEs24(vyw300, vyw4000, fdb) 29.96/14.56 new_ltEs22(vyw114, vyw116, ty_Int) -> new_ltEs17(vyw114, vyw116) 29.96/14.56 new_lt22(vyw100, vyw103, ty_Float) -> new_lt15(vyw100, vyw103) 29.96/14.56 new_esEs32(vyw113, vyw115, ty_Bool) -> new_esEs14(vyw113, vyw115) 29.96/14.56 new_lt20(vyw590, vyw600, ty_Integer) -> new_lt17(vyw590, vyw600) 29.96/14.56 new_asAs(False, vyw131) -> False 29.96/14.56 new_esEs33(vyw301, vyw4001, ty_Char) -> new_esEs20(vyw301, vyw4001) 29.96/14.56 new_esEs19(Left(vyw300), Right(vyw4000), dbf, dac) -> False 29.96/14.56 new_esEs19(Right(vyw300), Left(vyw4000), dbf, dac) -> False 29.96/14.56 new_lt23(vyw101, vyw104, app(ty_Ratio, ffh)) -> new_lt14(vyw101, vyw104, ffh) 29.96/14.56 new_esEs4(vyw32, vyw402, ty_Int) -> new_esEs13(vyw32, vyw402) 29.96/14.56 new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Bool) -> new_esEs14(vyw300, vyw4000) 29.96/14.56 new_esEs25(EQ, EQ) -> True 29.96/14.56 new_ltEs20(vyw59, vyw60, app(app(app(ty_@3, ha), fh), ga)) -> new_ltEs4(vyw59, vyw60, ha, fh, ga) 29.96/14.56 new_esEs34(vyw300, vyw4000, app(ty_[], edb)) -> new_esEs16(vyw300, vyw4000, edb) 29.96/14.56 new_compare10(vyw180, vyw181, vyw182, vyw183, False, vyw185, daa, dab) -> new_compare11(vyw180, vyw181, vyw182, vyw183, vyw185, daa, dab) 29.96/14.56 new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Int) -> new_ltEs17(vyw590, vyw600) 29.96/14.56 new_esEs8(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) 29.96/14.56 new_esEs11(vyw30, vyw400, app(ty_[], dha)) -> new_esEs16(vyw30, vyw400, dha) 29.96/14.56 new_ltEs23(vyw89, vyw90, app(app(ty_@2, cee), cef)) -> new_ltEs10(vyw89, vyw90, cee, cef) 29.96/14.56 new_lt23(vyw101, vyw104, ty_Double) -> new_lt7(vyw101, vyw104) 29.96/14.56 new_esEs39(vyw100, vyw103, ty_Int) -> new_esEs13(vyw100, vyw103) 29.96/14.56 new_esEs6(vyw30, vyw400, app(ty_Ratio, ead)) -> new_esEs23(vyw30, vyw400, ead) 29.96/14.56 new_compare14(Integer(vyw30), Integer(vyw400)) -> new_primCmpInt(vyw30, vyw400) 29.96/14.56 new_esEs9(vyw31, vyw401, ty_Char) -> new_esEs20(vyw31, vyw401) 29.96/14.56 new_ltEs11(EQ, LT) -> False 29.96/14.56 new_lt23(vyw101, vyw104, ty_@0) -> new_lt19(vyw101, vyw104) 29.96/14.56 29.96/14.56 The set Q consists of the following terms: 29.96/14.56 29.96/14.56 new_esEs32(x0, x1, ty_Double) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 29.96/14.56 new_primCompAux00(x0, EQ) 29.96/14.56 new_esEs35(x0, x1, ty_Int) 29.96/14.56 new_esEs8(x0, x1, ty_Int) 29.96/14.56 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 29.96/14.56 new_esEs10(x0, x1, ty_Char) 29.96/14.56 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 29.96/14.56 new_compare8(LT, GT) 29.96/14.56 new_compare8(GT, LT) 29.96/14.56 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 29.96/14.56 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs33(x0, x1, ty_Float) 29.96/14.56 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs6(x0, x1, ty_Char) 29.96/14.56 new_lt20(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.96/14.56 new_compare12(x0, x1, True, x2) 29.96/14.56 new_esEs4(x0, x1, ty_Bool) 29.96/14.56 new_esEs8(x0, x1, ty_Char) 29.96/14.56 new_primPlusNat1(Zero, Zero) 29.96/14.56 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs5(x0, x1, ty_@0) 29.96/14.56 new_esEs32(x0, x1, ty_Ordering) 29.96/14.56 new_ltEs5(x0, x1, ty_Float) 29.96/14.56 new_esEs10(x0, x1, ty_Int) 29.96/14.56 new_esEs40(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs36(x0, x1, ty_Ordering) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) 29.96/14.56 new_esEs9(x0, x1, ty_Char) 29.96/14.56 new_esEs36(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs28(x0, x1, ty_Integer) 29.96/14.56 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs39(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 29.96/14.56 new_esEs4(x0, x1, ty_@0) 29.96/14.56 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs5(x0, x1, ty_Bool) 29.96/14.56 new_lt23(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs26(x0, x1, ty_Double) 29.96/14.56 new_esEs34(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs16([], :(x0, x1), x2) 29.96/14.56 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_primEqInt(Pos(Zero), Pos(Zero)) 29.96/14.56 new_ltEs22(x0, x1, ty_Ordering) 29.96/14.56 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_ltEs21(x0, x1, ty_Float) 29.96/14.56 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_compare17(x0, x1, ty_Integer) 29.96/14.56 new_esEs28(x0, x1, ty_Bool) 29.96/14.56 new_compare210(x0, x1, x2, x3, False, x4, x5) 29.96/14.56 new_compare17(x0, x1, ty_@0) 29.96/14.56 new_ltEs6(x0, x1) 29.96/14.56 new_lt14(x0, x1, x2) 29.96/14.56 new_esEs35(x0, x1, ty_Ordering) 29.96/14.56 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs4(x0, x1, ty_Integer) 29.96/14.56 new_esEs32(x0, x1, ty_Int) 29.96/14.56 new_esEs9(x0, x1, ty_Int) 29.96/14.56 new_esEs7(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_ltEs22(x0, x1, ty_Double) 29.96/14.56 new_esEs38(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs14(True, True) 29.96/14.56 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs5(x0, x1, ty_Char) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.96/14.56 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_compare27(False, False) 29.96/14.56 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 29.96/14.56 new_primEqInt(Neg(Zero), Neg(Zero)) 29.96/14.56 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs36(x0, x1, ty_Double) 29.96/14.56 new_esEs9(x0, x1, ty_@0) 29.96/14.56 new_esEs25(LT, LT) 29.96/14.56 new_esEs30(x0, x1, ty_Int) 29.96/14.56 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 29.96/14.56 new_compare110(x0, x1, False, x2, x3) 29.96/14.56 new_primCmpNat0(Succ(x0), Zero) 29.96/14.56 new_esEs8(x0, x1, ty_Ordering) 29.96/14.56 new_esEs32(x0, x1, ty_Char) 29.96/14.56 new_compare29(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.96/14.56 new_compare29(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.96/14.56 new_esEs24(Just(x0), Just(x1), ty_Integer) 29.96/14.56 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_asAs(False, x0) 29.96/14.56 new_ltEs9(True, True) 29.96/14.56 new_esEs29(GT) 29.96/14.56 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs6(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_compare15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 29.96/14.56 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs5(x0, x1, ty_Int) 29.96/14.56 new_esEs16([], [], x0) 29.96/14.56 new_ltEs24(x0, x1, ty_Ordering) 29.96/14.56 new_primMulNat0(Succ(x0), Succ(x1)) 29.96/14.56 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 29.96/14.56 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 29.96/14.56 new_lt22(x0, x1, ty_Float) 29.96/14.56 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_ltEs22(x0, x1, ty_Int) 29.96/14.56 new_ltEs5(x0, x1, app(ty_[], x2)) 29.96/14.56 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.96/14.56 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.96/14.56 new_lt5(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_ltEs14(x0, x1) 29.96/14.56 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs6(x0, x1, ty_@0) 29.96/14.56 new_esEs24(Just(x0), Just(x1), ty_@0) 29.96/14.56 new_esEs10(x0, x1, ty_Ordering) 29.96/14.56 new_esEs6(x0, x1, ty_Double) 29.96/14.56 new_esEs26(x0, x1, ty_Int) 29.96/14.56 new_esEs14(False, True) 29.96/14.56 new_esEs14(True, False) 29.96/14.56 new_esEs35(x0, x1, ty_@0) 29.96/14.56 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.96/14.56 new_esEs27(x0, x1, ty_Double) 29.96/14.56 new_esEs9(x0, x1, ty_Double) 29.96/14.56 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs4(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs6(x0, x1, ty_Bool) 29.96/14.56 new_compare17(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_compare26(x0, x1, False, x2) 29.96/14.56 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.96/14.56 new_ltEs21(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs37(x0, x1, ty_Ordering) 29.96/14.56 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs38(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs34(x0, x1, ty_Integer) 29.96/14.56 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs11(x0, x1, ty_Float) 29.96/14.56 new_compare7(Nothing, Just(x0), x1) 29.96/14.56 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, ty_Float) 29.96/14.56 new_esEs26(x0, x1, ty_Char) 29.96/14.56 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_compare8(EQ, EQ) 29.96/14.56 new_compare29(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.96/14.56 new_primEqInt(Pos(Zero), Neg(Zero)) 29.96/14.56 new_primEqInt(Neg(Zero), Pos(Zero)) 29.96/14.56 new_esEs24(Just(x0), Just(x1), ty_Bool) 29.96/14.56 new_compare13(x0, x1, False, x2, x3) 29.96/14.56 new_lt4(x0, x1, ty_Float) 29.96/14.56 new_esEs35(x0, x1, ty_Bool) 29.96/14.56 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.96/14.56 new_esEs25(GT, GT) 29.96/14.56 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs33(x0, x1, ty_Integer) 29.96/14.56 new_esEs22(@0, @0) 29.96/14.56 new_esEs25(LT, EQ) 29.96/14.56 new_esEs25(EQ, LT) 29.96/14.56 new_esEs35(x0, x1, ty_Char) 29.96/14.56 new_esEs38(x0, x1, ty_Int) 29.96/14.56 new_esEs35(x0, x1, ty_Double) 29.96/14.56 new_esEs6(x0, x1, ty_Int) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), ty_Float) 29.96/14.56 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs40(x0, x1, ty_Float) 29.96/14.56 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.96/14.56 new_esEs10(x0, x1, ty_Integer) 29.96/14.56 new_esEs25(EQ, GT) 29.96/14.56 new_esEs25(GT, EQ) 29.96/14.56 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.96/14.56 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.96/14.56 new_esEs9(x0, x1, ty_Bool) 29.96/14.56 new_esEs38(x0, x1, ty_Double) 29.96/14.56 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs7(Right(x0), Left(x1), x2, x3) 29.96/14.56 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs7(Left(x0), Right(x1), x2, x3) 29.96/14.56 new_esEs33(x0, x1, app(ty_[], x2)) 29.96/14.56 new_compare8(EQ, GT) 29.96/14.56 new_compare8(GT, EQ) 29.96/14.56 new_esEs38(x0, x1, ty_Char) 29.96/14.56 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_primMulInt(Pos(x0), Neg(x1)) 29.96/14.56 new_primMulInt(Neg(x0), Pos(x1)) 29.96/14.56 new_ltEs11(LT, EQ) 29.96/14.56 new_ltEs11(EQ, LT) 29.96/14.56 new_lt21(x0, x1, ty_Double) 29.96/14.56 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_primEqNat0(Succ(x0), Zero) 29.96/14.56 new_esEs33(x0, x1, ty_Bool) 29.96/14.56 new_primPlusNat1(Zero, Succ(x0)) 29.96/14.56 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_lt7(x0, x1) 29.96/14.56 new_lt5(x0, x1, ty_Float) 29.96/14.56 new_esEs36(x0, x1, ty_@0) 29.96/14.56 new_sr0(Integer(x0), Integer(x1)) 29.96/14.56 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 29.96/14.56 new_ltEs5(x0, x1, ty_@0) 29.96/14.56 new_esEs7(x0, x1, ty_Integer) 29.96/14.56 new_ltEs11(GT, GT) 29.96/14.56 new_ltEs23(x0, x1, ty_Float) 29.96/14.56 new_compare7(Just(x0), Nothing, x1) 29.96/14.56 new_lt4(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs39(x0, x1, ty_Ordering) 29.96/14.56 new_lt12(x0, x1) 29.96/14.56 new_compare17(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_asAs(True, x0) 29.96/14.56 new_compare24(x0, x1, False, x2, x3) 29.96/14.56 new_compare6(Left(x0), Left(x1), x2, x3) 29.96/14.56 new_ltEs5(x0, x1, ty_Bool) 29.96/14.56 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_compare17(x0, x1, ty_Double) 29.96/14.56 new_esEs27(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs6(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs27(x0, x1, ty_Char) 29.96/14.56 new_esEs4(x0, x1, ty_Int) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.96/14.56 new_ltEs22(x0, x1, ty_@0) 29.96/14.56 new_esEs27(x0, x1, ty_Int) 29.96/14.56 new_ltEs23(x0, x1, ty_Double) 29.96/14.56 new_lt5(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_primMulInt(Pos(x0), Pos(x1)) 29.96/14.56 new_esEs26(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs11(x0, x1, ty_Integer) 29.96/14.56 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.96/14.56 new_sr(x0, x1) 29.96/14.56 new_esEs32(x0, x1, ty_Bool) 29.96/14.56 new_esEs4(x0, x1, ty_Ordering) 29.96/14.56 new_esEs30(x0, x1, ty_Integer) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), ty_@0, x2) 29.96/14.56 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 29.96/14.56 new_esEs6(x0, x1, ty_Integer) 29.96/14.56 new_esEs24(Just(x0), Just(x1), ty_Ordering) 29.96/14.56 new_lt21(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs9(x0, x1, ty_Integer) 29.96/14.56 new_primPlusNat1(Succ(x0), Zero) 29.96/14.56 new_lt23(x0, x1, ty_Double) 29.96/14.56 new_lt6(x0, x1, x2, x3, x4) 29.96/14.56 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_lt17(x0, x1) 29.96/14.56 new_lt13(x0, x1, x2) 29.96/14.56 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs9(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs26(x0, x1, ty_Bool) 29.96/14.56 new_ltEs21(x0, x1, ty_@0) 29.96/14.56 new_esEs5(x0, x1, ty_Double) 29.96/14.56 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.96/14.56 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.96/14.56 new_esEs7(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_ltEs24(x0, x1, ty_@0) 29.96/14.56 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs39(x0, x1, ty_Double) 29.96/14.56 new_ltEs22(x0, x1, app(ty_[], x2)) 29.96/14.56 new_lt9(x0, x1, x2) 29.96/14.56 new_esEs11(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, ty_Char) 29.96/14.56 new_esEs4(x0, x1, ty_Float) 29.96/14.56 new_lt22(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs8(x0, x1, ty_@0) 29.96/14.56 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs40(x0, x1, ty_Bool) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, ty_Int) 29.96/14.56 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs19(x0, x1, ty_Double) 29.96/14.56 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.96/14.56 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.96/14.56 new_compare25(x0, x1, False, x2, x3) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), ty_Double) 29.96/14.56 new_esEs4(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs5(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs8(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs10(x0, x1, ty_Bool) 29.96/14.56 new_esEs18(Integer(x0), Integer(x1)) 29.96/14.56 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs27(x0, x1, ty_Float) 29.96/14.56 new_ltEs16(x0, x1) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 29.96/14.56 new_compare3([], [], x0) 29.96/14.56 new_primMulInt(Neg(x0), Neg(x1)) 29.96/14.56 new_esEs24(Just(x0), Nothing, x1) 29.96/14.56 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.96/14.56 new_esEs24(Nothing, Nothing, x0) 29.96/14.56 new_esEs37(x0, x1, ty_Float) 29.96/14.56 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 29.96/14.56 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_ltEs9(False, True) 29.96/14.56 new_esEs31(x0, x1, ty_Int) 29.96/14.56 new_ltEs9(True, False) 29.96/14.56 new_ltEs15(x0, x1) 29.96/14.56 new_lt22(x0, x1, app(ty_[], x2)) 29.96/14.56 new_compare7(Just(x0), Just(x1), x2) 29.96/14.56 new_esEs9(x0, x1, ty_Ordering) 29.96/14.56 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs37(x0, x1, ty_Bool) 29.96/14.56 new_primEqNat0(Succ(x0), Succ(x1)) 29.96/14.56 new_esEs11(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs33(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) 29.96/14.56 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.96/14.56 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.96/14.56 new_lt21(x0, x1, app(ty_[], x2)) 29.96/14.56 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs26(x0, x1, ty_Integer) 29.96/14.56 new_compare31(x0, x1) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) 29.96/14.56 new_esEs11(x0, x1, ty_Bool) 29.96/14.56 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.96/14.56 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.96/14.56 new_esEs32(x0, x1, ty_Integer) 29.96/14.56 new_ltEs24(x0, x1, app(ty_[], x2)) 29.96/14.56 new_fsEs(x0) 29.96/14.56 new_esEs7(x0, x1, ty_@0) 29.96/14.56 new_esEs40(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_lt5(x0, x1, ty_Char) 29.96/14.56 new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) 29.96/14.56 new_ltEs24(x0, x1, ty_Double) 29.96/14.56 new_compare3([], :(x0, x1), x2) 29.96/14.56 new_ltEs5(x0, x1, ty_Integer) 29.96/14.56 new_ltEs20(x0, x1, ty_@0) 29.96/14.56 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.96/14.56 new_esEs28(x0, x1, ty_Float) 29.96/14.56 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs8(x0, x1, ty_Double) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) 29.96/14.56 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.96/14.56 new_esEs37(x0, x1, ty_Int) 29.96/14.56 new_esEs4(x0, x1, ty_Char) 29.96/14.56 new_ltEs20(x0, x1, ty_Double) 29.96/14.56 new_ltEs11(EQ, EQ) 29.96/14.56 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_lt20(x0, x1, ty_Double) 29.96/14.56 new_lt5(x0, x1, ty_Int) 29.96/14.56 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs6(x0, x1, ty_Ordering) 29.96/14.56 new_esEs40(x0, x1, ty_Ordering) 29.96/14.56 new_esEs34(x0, x1, ty_Double) 29.96/14.56 new_compare3(:(x0, x1), :(x2, x3), x4) 29.96/14.56 new_primCompAux00(x0, LT) 29.96/14.56 new_esEs34(x0, x1, ty_@0) 29.96/14.56 new_esEs28(x0, x1, ty_Char) 29.96/14.56 new_compare3(:(x0, x1), [], x2) 29.96/14.56 new_lt4(x0, x1, ty_Integer) 29.96/14.56 new_compare14(Integer(x0), Integer(x1)) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs26(x0, x1, ty_Ordering) 29.96/14.56 new_pePe(False, x0) 29.96/14.56 new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.96/14.56 new_lt4(x0, x1, ty_Ordering) 29.96/14.56 new_esEs40(x0, x1, ty_Integer) 29.96/14.56 new_lt23(x0, x1, ty_@0) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), ty_Double, x2) 29.96/14.56 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_ltEs5(x0, x1, ty_Ordering) 29.96/14.56 new_compare7(Nothing, Nothing, x0) 29.96/14.56 new_esEs10(x0, x1, ty_Float) 29.96/14.56 new_esEs19(Left(x0), Right(x1), x2, x3) 29.96/14.56 new_esEs19(Right(x0), Left(x1), x2, x3) 29.96/14.56 new_esEs37(x0, x1, ty_Char) 29.96/14.56 new_lt18(x0, x1) 29.96/14.56 new_esEs28(x0, x1, ty_Int) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.96/14.56 new_ltEs23(x0, x1, ty_Bool) 29.96/14.56 new_esEs27(x0, x1, ty_Integer) 29.96/14.56 new_lt5(x0, x1, ty_Bool) 29.96/14.56 new_esEs10(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_lt22(x0, x1, ty_Char) 29.96/14.56 new_esEs33(x0, x1, ty_Ordering) 29.96/14.56 new_esEs32(x0, x1, ty_Float) 29.96/14.56 new_esEs40(x0, x1, ty_Char) 29.96/14.56 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs5(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), ty_@0) 29.96/14.56 new_esEs27(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_compare24(x0, x1, True, x2, x3) 29.96/14.56 new_lt21(x0, x1, ty_Bool) 29.96/14.56 new_esEs40(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs20(Char(x0), Char(x1)) 29.96/14.56 new_ltEs20(x0, x1, ty_Integer) 29.96/14.56 new_esEs11(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_compare11(x0, x1, x2, x3, True, x4, x5) 29.96/14.56 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs19(x0, x1, ty_Bool) 29.96/14.56 new_lt5(x0, x1, ty_@0) 29.96/14.56 new_esEs11(x0, x1, ty_Char) 29.96/14.56 new_esEs34(x0, x1, app(ty_[], x2)) 29.96/14.56 new_primMulNat0(Zero, Succ(x0)) 29.96/14.56 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.96/14.56 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), ty_Float, x2) 29.96/14.56 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs39(x0, x1, ty_Bool) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.96/14.56 new_primMulNat0(Zero, Zero) 29.96/14.56 new_ltEs22(x0, x1, ty_Float) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.96/14.56 new_primPlusNat1(Succ(x0), Succ(x1)) 29.96/14.56 new_ltEs5(x0, x1, ty_Double) 29.96/14.56 new_esEs40(x0, x1, ty_Int) 29.96/14.56 new_esEs39(x0, x1, ty_Integer) 29.96/14.56 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs19(x0, x1, ty_@0) 29.96/14.56 new_esEs7(x0, x1, app(ty_[], x2)) 29.96/14.56 new_compare30(Char(x0), Char(x1)) 29.96/14.56 new_lt22(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_lt21(x0, x1, ty_@0) 29.96/14.56 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs7(x0, x1, ty_Int) 29.96/14.56 new_compare27(True, True) 29.96/14.56 new_esEs38(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_compare13(x0, x1, True, x2, x3) 29.96/14.56 new_lt20(x0, x1, ty_@0) 29.96/14.56 new_ltEs11(LT, LT) 29.96/14.56 new_ltEs21(x0, x1, ty_Char) 29.96/14.56 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs21(x0, x1, ty_Double) 29.96/14.56 new_lt23(x0, x1, ty_Bool) 29.96/14.56 new_ltEs24(x0, x1, ty_Integer) 29.96/14.56 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs19(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs37(x0, x1, ty_Integer) 29.96/14.56 new_esEs28(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs39(x0, x1, ty_@0) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), ty_Bool) 29.96/14.56 new_lt21(x0, x1, ty_Integer) 29.96/14.56 new_esEs38(x0, x1, ty_Integer) 29.96/14.56 new_esEs8(x0, x1, ty_Float) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, ty_Double) 29.96/14.56 new_esEs33(x0, x1, ty_Int) 29.96/14.56 new_esEs29(LT) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 29.96/14.56 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs37(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs37(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs7(x0, x1, ty_Char) 29.96/14.56 new_ltEs20(x0, x1, app(ty_[], x2)) 29.96/14.56 new_lt20(x0, x1, ty_Integer) 29.96/14.56 new_esEs11(x0, x1, ty_Ordering) 29.96/14.56 new_ltEs21(x0, x1, ty_Ordering) 29.96/14.56 new_compare6(Left(x0), Right(x1), x2, x3) 29.96/14.56 new_esEs7(x0, x1, ty_Double) 29.96/14.56 new_ltEs24(x0, x1, ty_Float) 29.96/14.56 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_compare6(Right(x0), Left(x1), x2, x3) 29.96/14.56 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs28(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_ltEs21(x0, x1, ty_Int) 29.96/14.56 new_compare8(LT, LT) 29.96/14.56 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs33(x0, x1, ty_Double) 29.96/14.56 new_lt4(x0, x1, ty_Bool) 29.96/14.56 new_esEs33(x0, x1, ty_Char) 29.96/14.56 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs11(x0, x1, ty_Int) 29.96/14.56 new_esEs35(x0, x1, ty_Float) 29.96/14.56 new_esEs11(x0, x1, ty_@0) 29.96/14.56 new_esEs25(EQ, EQ) 29.96/14.56 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 29.96/14.56 new_not(True) 29.96/14.56 new_ltEs5(x0, x1, ty_Char) 29.96/14.56 new_compare15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 29.96/14.56 new_esEs38(x0, x1, ty_Bool) 29.96/14.56 new_esEs31(x0, x1, ty_Integer) 29.96/14.56 new_esEs10(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_pePe(True, x0) 29.96/14.56 new_esEs9(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), ty_Char) 29.96/14.56 new_compare8(GT, GT) 29.96/14.56 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_lt4(x0, x1, ty_Int) 29.96/14.56 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs40(x0, x1, ty_Double) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 29.96/14.56 new_esEs40(x0, x1, ty_@0) 29.96/14.56 new_esEs38(x0, x1, ty_Float) 29.96/14.56 new_lt23(x0, x1, ty_Integer) 29.96/14.56 new_esEs27(x0, x1, ty_@0) 29.96/14.56 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_compare8(LT, EQ) 29.96/14.56 new_compare8(EQ, LT) 29.96/14.56 new_esEs34(x0, x1, ty_Ordering) 29.96/14.56 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.96/14.56 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs5(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 29.96/14.56 new_lt19(x0, x1) 29.96/14.56 new_ltEs17(x0, x1) 29.96/14.56 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs38(x0, x1, ty_@0) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), ty_Int) 29.96/14.56 new_ltEs23(x0, x1, ty_Char) 29.96/14.56 new_lt21(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs25(LT, GT) 29.96/14.56 new_esEs25(GT, LT) 29.96/14.56 new_lt8(x0, x1, x2, x3) 29.96/14.56 new_esEs16(:(x0, x1), [], x2) 29.96/14.56 new_lt4(x0, x1, ty_Char) 29.96/14.56 new_lt22(x0, x1, ty_Double) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 29.96/14.56 new_compare6(Right(x0), Right(x1), x2, x3) 29.96/14.56 new_esEs6(x0, x1, ty_Float) 29.96/14.56 new_esEs24(Nothing, Just(x0), x1) 29.96/14.56 new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.96/14.56 new_esEs35(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.96/14.56 new_ltEs23(x0, x1, ty_Int) 29.96/14.56 new_compare17(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_primPlusNat0(Succ(x0), x1) 29.96/14.56 new_esEs28(x0, x1, ty_Ordering) 29.96/14.56 new_esEs5(x0, x1, ty_Float) 29.96/14.56 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.96/14.56 new_esEs7(x0, x1, ty_Ordering) 29.96/14.56 new_esEs8(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 29.96/14.56 new_lt4(x0, x1, ty_@0) 29.96/14.56 new_esEs24(Just(x0), Just(x1), ty_Double) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.96/14.56 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs26(x0, x1, ty_Float) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.96/14.56 new_esEs36(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs19(x0, x1, ty_Float) 29.96/14.56 new_ltEs8(x0, x1, x2) 29.96/14.56 new_ltEs23(x0, x1, ty_@0) 29.96/14.56 new_ltEs12(Just(x0), Nothing, x1) 29.96/14.56 new_ltEs5(x0, x1, ty_Int) 29.96/14.56 new_esEs12(Float(x0, x1), Float(x2, x3)) 29.96/14.56 new_lt23(x0, x1, ty_Ordering) 29.96/14.56 new_lt22(x0, x1, ty_Int) 29.96/14.56 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.96/14.56 new_esEs36(x0, x1, ty_Integer) 29.96/14.56 new_lt5(x0, x1, ty_Integer) 29.96/14.56 new_esEs27(x0, x1, ty_Bool) 29.96/14.56 new_ltEs12(Nothing, Nothing, x0) 29.96/14.56 new_esEs6(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs26(x0, x1, ty_@0) 29.96/14.56 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.96/14.56 new_lt23(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_ltEs23(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs29(EQ) 29.96/14.56 new_lt22(x0, x1, ty_@0) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) 29.96/14.56 new_primPlusNat0(Zero, x0) 29.96/14.56 new_primCmpNat0(Zero, Succ(x0)) 29.96/14.56 new_compare11(x0, x1, x2, x3, False, x4, x5) 29.96/14.56 new_ltEs13(x0, x1, x2) 29.96/14.56 new_compare17(x0, x1, ty_Ordering) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.96/14.56 new_lt10(x0, x1) 29.96/14.56 new_esEs32(x0, x1, ty_@0) 29.96/14.56 new_compare110(x0, x1, True, x2, x3) 29.96/14.56 new_lt5(x0, x1, ty_Ordering) 29.96/14.56 new_esEs8(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_lt5(x0, x1, ty_Double) 29.96/14.56 new_primCompAux0(x0, x1, x2, x3) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.96/14.56 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_lt22(x0, x1, ty_Integer) 29.96/14.56 new_lt21(x0, x1, ty_Float) 29.96/14.56 new_esEs8(x0, x1, ty_Integer) 29.96/14.56 new_ltEs20(x0, x1, ty_Int) 29.96/14.56 new_esEs24(Just(x0), Just(x1), ty_Char) 29.96/14.56 new_compare12(x0, x1, False, x2) 29.96/14.56 new_esEs33(x0, x1, ty_@0) 29.96/14.56 new_ltEs21(x0, x1, ty_Integer) 29.96/14.56 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 29.96/14.56 new_esEs39(x0, x1, ty_Float) 29.96/14.56 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_lt21(x0, x1, ty_Ordering) 29.96/14.56 new_lt20(x0, x1, ty_Int) 29.96/14.56 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 29.96/14.56 new_lt20(x0, x1, ty_Ordering) 29.96/14.56 new_compare17(x0, x1, ty_Int) 29.96/14.56 new_ltEs24(x0, x1, ty_Char) 29.96/14.56 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs19(x0, x1, ty_Int) 29.96/14.56 new_esEs26(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.96/14.56 new_esEs15(Double(x0, x1), Double(x2, x3)) 29.96/14.56 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 29.96/14.56 new_ltEs20(x0, x1, ty_Ordering) 29.96/14.56 new_esEs24(Just(x0), Just(x1), ty_Int) 29.96/14.56 new_ltEs19(x0, x1, ty_Ordering) 29.96/14.56 new_ltEs22(x0, x1, ty_Bool) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.96/14.56 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 29.96/14.56 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.96/14.56 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs16(:(x0, x1), :(x2, x3), x4) 29.96/14.56 new_esEs34(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.96/14.56 new_ltEs20(x0, x1, ty_Float) 29.96/14.56 new_lt4(x0, x1, ty_Double) 29.96/14.56 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs39(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs27(x0, x1, ty_Ordering) 29.96/14.56 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.96/14.56 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_esEs39(x0, x1, ty_Char) 29.96/14.56 new_esEs5(x0, x1, ty_Ordering) 29.96/14.56 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_compare17(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs7(x0, x1, ty_Bool) 29.96/14.56 new_esEs33(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs24(x0, x1, ty_Int) 29.96/14.56 new_lt23(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, ty_@0) 29.96/14.56 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.96/14.56 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.96/14.56 new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 29.96/14.56 new_lt16(x0, x1) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) 29.96/14.56 new_esEs36(x0, x1, ty_Bool) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.96/14.56 new_lt22(x0, x1, ty_Bool) 29.96/14.56 new_esEs39(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_compare17(x0, x1, ty_Float) 29.96/14.56 new_esEs39(x0, x1, ty_Int) 29.96/14.56 new_lt20(x0, x1, ty_Float) 29.96/14.56 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs24(Just(x0), Just(x1), ty_Float) 29.96/14.56 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.96/14.56 new_ltEs19(x0, x1, ty_Char) 29.96/14.56 new_primEqNat0(Zero, Succ(x0)) 29.96/14.56 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs22(x0, x1, ty_Char) 29.96/14.56 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_esEs4(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs35(x0, x1, ty_Integer) 29.96/14.56 new_primEqNat0(Zero, Zero) 29.96/14.56 new_compare17(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs10(x0, x1, ty_Double) 29.96/14.56 new_compare28(@2(x0, x1), @2(x2, x3), x4, x5) 29.96/14.56 new_lt5(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs36(x0, x1, ty_Char) 29.96/14.56 new_esEs38(x0, x1, ty_Ordering) 29.96/14.56 new_ltEs22(x0, x1, ty_Integer) 29.96/14.56 new_esEs35(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), ty_Integer) 29.96/14.56 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.96/14.56 new_ltEs9(False, False) 29.96/14.56 new_not(False) 29.96/14.56 new_esEs5(x0, x1, ty_Integer) 29.96/14.56 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 29.96/14.56 new_esEs11(x0, x1, ty_Double) 29.96/14.56 new_ltEs11(GT, LT) 29.96/14.56 new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.96/14.56 new_ltEs11(LT, GT) 29.96/14.56 new_esEs9(x0, x1, ty_Float) 29.96/14.56 new_esEs10(x0, x1, ty_@0) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.96/14.56 new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs32(x0, x1, app(ty_[], x2)) 29.96/14.56 new_compare26(x0, x1, True, x2) 29.96/14.56 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_lt23(x0, x1, ty_Int) 29.96/14.56 new_lt4(x0, x1, app(ty_[], x2)) 29.96/14.56 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_esEs26(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs34(x0, x1, ty_Bool) 29.96/14.56 new_esEs37(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs36(x0, x1, ty_Int) 29.96/14.56 new_compare25(x0, x1, True, x2, x3) 29.96/14.56 new_esEs13(x0, x1) 29.96/14.56 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_compare17(x0, x1, ty_Char) 29.96/14.56 new_primCmpNat0(Succ(x0), Succ(x1)) 29.96/14.56 new_esEs14(False, False) 29.96/14.56 new_esEs28(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_primCompAux00(x0, GT) 29.96/14.56 new_esEs36(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.96/14.56 new_esEs27(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs37(x0, x1, ty_@0) 29.96/14.56 new_esEs34(x0, x1, ty_Float) 29.96/14.56 new_lt23(x0, x1, ty_Char) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), ty_Int, x2) 29.96/14.56 new_lt20(x0, x1, ty_Char) 29.96/14.56 new_esEs35(x0, x1, app(ty_Ratio, x2)) 29.96/14.56 new_esEs8(x0, x1, ty_Bool) 29.96/14.56 new_lt23(x0, x1, ty_Float) 29.96/14.56 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.96/14.56 new_esEs10(x0, x1, app(ty_[], x2)) 29.96/14.56 new_esEs34(x0, x1, ty_Char) 29.96/14.56 new_ltEs20(x0, x1, ty_Bool) 29.96/14.56 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_ltEs19(x0, x1, ty_Integer) 29.96/14.56 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_ltEs23(x0, x1, ty_Integer) 29.96/14.56 new_lt15(x0, x1) 29.96/14.56 new_esEs28(x0, x1, ty_Double) 29.96/14.56 new_compare29(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.96/14.56 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_ltEs21(x0, x1, ty_Bool) 29.96/14.56 new_compare27(False, True) 29.96/14.56 new_compare27(True, False) 29.96/14.56 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_compare210(x0, x1, x2, x3, True, x4, x5) 29.96/14.56 new_lt21(x0, x1, ty_Int) 29.96/14.56 new_lt20(x0, x1, ty_Bool) 29.96/14.56 new_ltEs11(GT, EQ) 29.96/14.56 new_ltEs11(EQ, GT) 29.96/14.56 new_esEs34(x0, x1, ty_Int) 29.96/14.56 new_esEs28(x0, x1, ty_@0) 29.96/14.56 new_esEs7(x0, x1, ty_Float) 29.96/14.56 new_esEs36(x0, x1, ty_Float) 29.96/14.56 new_ltEs18(x0, x1) 29.96/14.56 new_ltEs12(Nothing, Just(x0), x1) 29.96/14.56 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.96/14.56 new_lt11(x0, x1, x2, x3) 29.96/14.56 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 29.96/14.56 new_ltEs20(x0, x1, ty_Char) 29.96/14.56 new_primMulNat0(Succ(x0), Zero) 29.96/14.56 new_esEs9(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_esEs4(x0, x1, ty_Double) 29.96/14.56 new_lt4(x0, x1, app(ty_Maybe, x2)) 29.96/14.56 new_ltEs24(x0, x1, ty_Bool) 29.96/14.56 new_compare32(@0, @0) 29.96/14.56 new_esEs37(x0, x1, ty_Double) 29.96/14.56 new_ltEs23(x0, x1, ty_Ordering) 29.96/14.56 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_primCmpNat0(Zero, Zero) 29.96/14.56 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 29.96/14.56 new_ltEs7(Left(x0), Left(x1), ty_Char, x2) 29.96/14.56 new_lt22(x0, x1, ty_Ordering) 29.96/14.56 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.96/14.56 new_compare17(x0, x1, ty_Bool) 29.96/14.56 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.96/14.56 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.96/14.56 new_lt21(x0, x1, ty_Char) 29.96/14.56 29.96/14.56 We have to consider all minimal (P,Q,R)-chains. 29.96/14.56 ---------------------------------------- 29.96/14.56 29.96/14.56 (30) QDPSizeChangeProof (EQUIVALENT) 29.96/14.56 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. 29.96/14.56 29.96/14.56 From the DPs we obtained the following set of size-change graphs: 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(ty_[], cdb)) -> new_ltEs1(vyw114, vyw116, cdb) 29.96/14.56 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_@2, cca), ccb), cbe) -> new_lt2(vyw113, vyw115, cca, ccb) 29.96/14.56 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs1(vyw59, vyw60, bdh) -> new_compare1(vyw59, vyw60, bdh) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(ty_[], bah)) -> new_ltEs1(vyw592, vyw602, bah) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_lt(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare2(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) 29.96/14.56 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare2(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) 29.96/14.56 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 29.96/14.56 29.96/14.56 29.96/14.56 *new_lt0(Left(vyw30), Left(vyw400), fb, fc) -> new_compare20(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare0(Left(vyw30), Left(vyw400), fb, fc) -> new_compare20(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_lt0(Right(vyw30), Right(vyw400), fb, fc) -> new_compare21(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs(vyw114, vyw116, cce, ccf, ccg) 29.96/14.56 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs(vyw592, vyw602, bac, bad, bae) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs3(Just(vyw590), Just(vyw600), app(ty_[], bhb)) -> new_ltEs1(vyw590, vyw600, bhb) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs3(Just(vyw590), Just(vyw600), app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs(vyw590, vyw600, bge, bgf, bgg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(ty_[], bga)) -> new_ltEs1(vyw591, vyw601, bga) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(ty_Maybe, cde)) -> new_ltEs3(vyw114, vyw116, cde) 29.96/14.56 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(ty_@2, beh), bfa), bed) -> new_lt2(vyw590, vyw600, beh, bfa) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(ty_Maybe, bbc)) -> new_ltEs3(vyw592, vyw602, bbc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs(vyw591, vyw601, bfd, bfe, bff) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs3(Just(vyw590), Just(vyw600), app(ty_Maybe, bhe)) -> new_ltEs3(vyw590, vyw600, bhe) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(ty_Maybe, bgd)) -> new_ltEs3(vyw591, vyw601, bgd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_lt3(Just(vyw30), Just(vyw400), cdf) -> new_compare23(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare0(Right(vyw30), Right(vyw400), fb, fc) -> new_compare21(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_lt2(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare22(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) 29.96/14.56 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare4(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare22(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) 29.96/14.56 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare5(Just(vyw30), Just(vyw400), cdf) -> new_compare23(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(ty_@2, cdc), cdd)) -> new_ltEs2(vyw114, vyw116, cdc, cdd) 29.96/14.56 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(ty_@2, bba), bbb)) -> new_ltEs2(vyw592, vyw602, bba, bbb) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs3(Just(vyw590), Just(vyw600), app(app(ty_@2, bhc), bhd)) -> new_ltEs2(vyw590, vyw600, bhc, bhd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs3(Just(vyw590), Just(vyw600), app(app(ty_Either, bgh), bha)) -> new_ltEs0(vyw590, vyw600, bgh, bha) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(ty_@2, bgb), bgc)) -> new_ltEs2(vyw591, vyw601, bgb, bgc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(ty_[], cbh), cbe) -> new_lt1(vyw113, vyw115, cbh) 29.96/14.56 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(ty_[], beg), bed) -> new_lt1(vyw590, vyw600, beg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(ty_Either, cch), cda)) -> new_ltEs0(vyw114, vyw116, cch, cda) 29.96/14.56 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(ty_Either, baf), bag)) -> new_ltEs0(vyw592, vyw602, baf, bag) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(ty_Either, bfg), bfh)) -> new_ltEs0(vyw591, vyw601, bfg, bfh) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_compare1(vyw31, vyw401, bhf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_lt1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_compare1(vyw31, vyw401, bhf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_lt1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_primCompAux(vyw30, vyw400, vyw39, app(ty_[], cad)) -> new_compare1(vyw30, vyw400, cad) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(vyw59, vyw60, False, app(ty_[], bdh), gb) -> new_compare1(vyw59, vyw60, bdh) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_Either, cab), cac)) -> new_compare0(vyw30, vyw400, cab, cac) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(ty_[], ec)) -> new_ltEs1(vyw102, vyw105, ec) 29.96/14.56 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(app(ty_@3, cbb), cbc), cbd), cbe) -> new_lt(vyw113, vyw115, cbb, cbc, cbd) 29.96/14.56 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs(vyw102, vyw105, df, dg, dh) 29.96/14.56 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(app(ty_@3, bea), beb), bec), bed) -> new_lt(vyw590, vyw600, bea, beb, bec) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(ty_Maybe, ef)) -> new_ltEs3(vyw102, vyw105, ef) 29.96/14.56 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(ty_@2, ed), ee)) -> new_ltEs2(vyw102, vyw105, ed, ee) 29.96/14.56 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(ty_Either, ea), eb)) -> new_ltEs0(vyw102, vyw105, ea, eb) 29.96/14.56 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare21(vyw66, vyw67, False, ceh, app(ty_[], cff)) -> new_ltEs1(vyw66, vyw67, cff) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare23(vyw89, vyw90, False, app(ty_[], ced)) -> new_ltEs1(vyw89, vyw90, ced) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_Either, cbf), cbg), cbe) -> new_lt0(vyw113, vyw115, cbf, cbg) 29.96/14.56 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(ty_Maybe, ccc), cbe) -> new_lt3(vyw113, vyw115, ccc) 29.96/14.56 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare21(vyw66, vyw67, False, ceh, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs(vyw66, vyw67, cfa, cfb, cfc) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare23(vyw89, vyw90, False, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs(vyw89, vyw90, cdg, cdh, cea) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(ty_Either, bee), bef), bed) -> new_lt0(vyw590, vyw600, bee, bef) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(ty_Maybe, bfb), bed) -> new_lt3(vyw590, vyw600, bfb) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare21(vyw66, vyw67, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyw66, vyw67, cga) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare23(vyw89, vyw90, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyw89, vyw90, ceg) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare21(vyw66, vyw67, False, ceh, app(app(ty_@2, cfg), cfh)) -> new_ltEs2(vyw66, vyw67, cfg, cfh) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare23(vyw89, vyw90, False, app(app(ty_@2, cee), cef)) -> new_ltEs2(vyw89, vyw90, cee, cef) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare21(vyw66, vyw67, False, ceh, app(app(ty_Either, cfd), cfe)) -> new_ltEs0(vyw66, vyw67, cfd, cfe) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare23(vyw89, vyw90, False, app(app(ty_Either, ceb), cec)) -> new_ltEs0(vyw89, vyw90, ceb, cec) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_primCompAux(vyw30, vyw400, vyw39, app(ty_Maybe, cag)) -> new_compare5(vyw30, vyw400, cag) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_primCompAux(vyw30, vyw400, vyw39, app(app(app(ty_@3, bhg), bhh), caa)) -> new_compare(vyw30, vyw400, bhg, bhh, caa) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_@2, cae), caf)) -> new_compare4(vyw30, vyw400, cae, caf) 29.96/14.56 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Left(vyw590), Left(vyw600), app(ty_[], bcb), bbg) -> new_ltEs1(vyw590, vyw600, bcb) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(ty_[], bdd)) -> new_ltEs1(vyw590, vyw600, bdd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(ty_[], bhb)), gb) -> new_ltEs1(vyw590, vyw600, bhb) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(ty_[], bdd)), gb) -> new_ltEs1(vyw590, vyw600, bdd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(ty_[], bah)), gb) -> new_ltEs1(vyw592, vyw602, bah) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(ty_[], bcb)), bbg), gb) -> new_ltEs1(vyw590, vyw600, bcb) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(ty_[], bga)), gb) -> new_ltEs1(vyw591, vyw601, bga) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(ty_@2, gf), gg), fh, ga) -> new_lt2(vyw590, vyw600, gf, gg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(ty_@2, hh), baa), ga) -> new_lt2(vyw591, vyw601, hh, baa) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(ty_@2, gf), gg)), fh), ga), gb) -> new_lt2(vyw590, vyw600, gf, gg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(ty_@2, hh), baa)), ga), gb) -> new_lt2(vyw591, vyw601, hh, baa) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(ty_@2, beh), bfa)), bed), gb) -> new_lt2(vyw590, vyw600, beh, bfa) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_@2, bh), ca), bc, bd) -> new_lt2(vyw100, vyw103, bh, ca) 29.96/14.56 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(ty_@2, dc), dd), bd) -> new_lt2(vyw101, vyw104, dc, dd) 29.96/14.56 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(ty_[], ge), fh, ga) -> new_lt1(vyw590, vyw600, ge) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(ty_[], hg), ga) -> new_lt1(vyw591, vyw601, hg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(app(ty_@3, fd), ff), fg), fh, ga) -> new_lt(vyw590, vyw600, fd, ff, fg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(app(ty_@3, hb), hc), hd), ga) -> new_lt(vyw591, vyw601, hb, hc, hd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(ty_Either, gc), gd), fh, ga) -> new_lt0(vyw590, vyw600, gc, gd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(ty_Either, he), hf), ga) -> new_lt0(vyw591, vyw601, he, hf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(ty_Maybe, gh), fh, ga) -> new_lt3(vyw590, vyw600, gh) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(ty_Maybe, bab), ga) -> new_lt3(vyw591, vyw601, bab) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs(vyw590, vyw600, bcg, bch, bda) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Left(vyw590), Left(vyw600), app(app(app(ty_@3, bbd), bbe), bbf), bbg) -> new_ltEs(vyw590, vyw600, bbd, bbe, bbf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(app(ty_@3, bcg), bch), bda)), gb) -> new_ltEs(vyw590, vyw600, bcg, bch, bda) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(app(ty_@3, bfd), bfe), bff)), gb) -> new_ltEs(vyw591, vyw601, bfd, bfe, bff) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(app(ty_@3, bge), bgf), bgg)), gb) -> new_ltEs(vyw590, vyw600, bge, bgf, bgg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(app(ty_@3, bbd), bbe), bbf)), bbg), gb) -> new_ltEs(vyw590, vyw600, bbd, bbe, bbf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(app(ty_@3, bac), bad), bae)), gb) -> new_ltEs(vyw592, vyw602, bac, bad, bae) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Left(vyw590), Left(vyw600), app(ty_Maybe, bce), bbg) -> new_ltEs3(vyw590, vyw600, bce) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(ty_Maybe, bdg)) -> new_ltEs3(vyw590, vyw600, bdg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(ty_Maybe, bgd)), gb) -> new_ltEs3(vyw591, vyw601, bgd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(ty_Maybe, bhe)), gb) -> new_ltEs3(vyw590, vyw600, bhe) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(ty_Maybe, bce)), bbg), gb) -> new_ltEs3(vyw590, vyw600, bce) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(ty_Maybe, bdg)), gb) -> new_ltEs3(vyw590, vyw600, bdg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(ty_Maybe, bbc)), gb) -> new_ltEs3(vyw592, vyw602, bbc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Left(vyw590), Left(vyw600), app(app(ty_@2, bcc), bcd), bbg) -> new_ltEs2(vyw590, vyw600, bcc, bcd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(ty_@2, bde), bdf)) -> new_ltEs2(vyw590, vyw600, bde, bdf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(ty_Either, bdb), bdc)) -> new_ltEs0(vyw590, vyw600, bdb, bdc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_ltEs0(Left(vyw590), Left(vyw600), app(app(ty_Either, bbh), bca), bbg) -> new_ltEs0(vyw590, vyw600, bbh, bca) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(ty_@2, bba), bbb)), gb) -> new_ltEs2(vyw592, vyw602, bba, bbb) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(ty_@2, bgb), bgc)), gb) -> new_ltEs2(vyw591, vyw601, bgb, bgc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(ty_@2, bcc), bcd)), bbg), gb) -> new_ltEs2(vyw590, vyw600, bcc, bcd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(ty_@2, bhc), bhd)), gb) -> new_ltEs2(vyw590, vyw600, bhc, bhd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(ty_@2, bde), bdf)), gb) -> new_ltEs2(vyw590, vyw600, bde, bdf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(ty_[], ge)), fh), ga), gb) -> new_lt1(vyw590, vyw600, ge) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(ty_[], hg)), ga), gb) -> new_lt1(vyw591, vyw601, hg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(ty_[], beg)), bed), gb) -> new_lt1(vyw590, vyw600, beg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(ty_[], db), bd) -> new_lt1(vyw101, vyw104, db) 29.96/14.56 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_[], bg), bc, bd) -> new_lt1(vyw100, vyw103, bg) 29.96/14.56 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(ty_Either, baf), bag)), gb) -> new_ltEs0(vyw592, vyw602, baf, bag) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(ty_Either, bbh), bca)), bbg), gb) -> new_ltEs0(vyw590, vyw600, bbh, bca) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(ty_Either, bdb), bdc)), gb) -> new_ltEs0(vyw590, vyw600, bdb, bdc) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(ty_Either, bfg), bfh)), gb) -> new_ltEs0(vyw591, vyw601, bfg, bfh) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(ty_Either, bgh), bha)), gb) -> new_ltEs0(vyw590, vyw600, bgh, bha) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(app(ty_@3, fd), ff), fg)), fh), ga), gb) -> new_lt(vyw590, vyw600, fd, ff, fg) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(app(ty_@3, bea), beb), bec)), bed), gb) -> new_lt(vyw590, vyw600, bea, beb, bec) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(app(ty_@3, hb), hc), hd)), ga), gb) -> new_lt(vyw591, vyw601, hb, hc, hd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(ty_Either, bee), bef)), bed), gb) -> new_lt0(vyw590, vyw600, bee, bef) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(ty_Either, he), hf)), ga), gb) -> new_lt0(vyw591, vyw601, he, hf) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), fh), ga), gb) -> new_lt0(vyw590, vyw600, gc, gd) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(ty_Maybe, bfb)), bed), gb) -> new_lt3(vyw590, vyw600, bfb) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(ty_Maybe, gh)), fh), ga), gb) -> new_lt3(vyw590, vyw600, gh) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(ty_Maybe, bab)), ga), gb) -> new_lt3(vyw591, vyw601, bab) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_lt(vyw100, vyw103, h, ba, bb) 29.96/14.56 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_lt(vyw101, vyw104, cd, ce, cf) 29.96/14.56 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_Either, be), bf), bc, bd) -> new_lt0(vyw100, vyw103, be, bf) 29.96/14.56 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(ty_Either, cg), da), bd) -> new_lt0(vyw101, vyw104, cg, da) 29.96/14.56 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(ty_Maybe, de), bd) -> new_lt3(vyw101, vyw104, de) 29.96/14.56 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 29.96/14.56 29.96/14.56 29.96/14.56 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_Maybe, cb), bc, bd) -> new_lt3(vyw100, vyw103, cb) 29.96/14.56 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 29.96/14.56 29.96/14.56 29.96/14.56 ---------------------------------------- 29.96/14.56 29.96/14.56 (31) 29.96/14.56 YES 29.96/14.56 29.96/14.56 ---------------------------------------- 29.96/14.56 29.96/14.56 (32) 29.96/14.56 Obligation: 29.96/14.56 Q DP problem: 29.96/14.56 The TRS P consists of the following rules: 29.96/14.56 29.96/14.56 new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) 29.96/14.56 29.96/14.56 R is empty. 29.96/14.56 Q is empty. 29.96/14.56 We have to consider all minimal (P,Q,R)-chains. 29.96/14.56 ---------------------------------------- 29.96/14.56 29.96/14.56 (33) QDPSizeChangeProof (EQUIVALENT) 29.96/14.56 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. 29.96/14.56 29.96/14.56 From the DPs we obtained the following set of size-change graphs: 29.96/14.56 *new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2 29.96/14.56 29.96/14.56 29.96/14.56 ---------------------------------------- 29.96/14.56 29.96/14.56 (34) 29.96/14.56 YES 29.96/14.56 29.96/14.56 ---------------------------------------- 29.96/14.56 29.96/14.56 (35) 29.96/14.56 Obligation: 29.96/14.56 Q DP problem: 29.96/14.56 The TRS P consists of the following rules: 29.96/14.56 29.96/14.56 new_primPlusNat(Succ(vyw19300), Succ(vyw31000)) -> new_primPlusNat(vyw19300, vyw31000) 29.96/14.56 29.96/14.56 R is empty. 29.96/14.56 Q is empty. 29.96/14.56 We have to consider all minimal (P,Q,R)-chains. 29.96/14.56 ---------------------------------------- 29.96/14.56 29.96/14.56 (36) QDPSizeChangeProof (EQUIVALENT) 29.96/14.56 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. 29.96/14.56 29.96/14.56 From the DPs we obtained the following set of size-change graphs: 29.96/14.56 *new_primPlusNat(Succ(vyw19300), Succ(vyw31000)) -> new_primPlusNat(vyw19300, vyw31000) 29.96/14.56 The graph contains the following edges 1 > 1, 2 > 2 29.96/14.56 29.96/14.56 29.96/14.56 ---------------------------------------- 29.96/14.56 29.96/14.56 (37) 29.96/14.56 YES 30.07/14.61 EOF