/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 12 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 23 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 116 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; foldFM_GE :: Ord b => (b -> a -> c -> c) -> c -> b -> FiniteMap b a -> c; foldFM_GE k z fr EmptyFM = z; foldFM_GE k z fr (Branch key elt _ fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l | otherwise = foldFM_GE k z fr fm_r; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; foldFM_GE :: Ord b => (b -> a -> c -> c) -> c -> b -> FiniteMap b a -> c; foldFM_GE k z fr EmptyFM = z; foldFM_GE k z fr (Branch key elt _ fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l | otherwise = foldFM_GE k z fr fm_r; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; foldFM_GE :: Ord c => (c -> a -> b -> b) -> b -> c -> FiniteMap c a -> b; foldFM_GE k z fr EmptyFM = z; foldFM_GE k z fr (Branch key elt _ fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l | otherwise = foldFM_GE k z fr fm_r; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; foldFM_GE :: Ord c => (c -> a -> b -> b) -> b -> c -> FiniteMap c a -> b; foldFM_GE k z fr EmptyFM = z; foldFM_GE k z fr (Branch key elt _ fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l | otherwise = foldFM_GE k z fr fm_r; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; foldFM_GE :: Ord c => (c -> a -> b -> b) -> b -> c -> FiniteMap c a -> b; foldFM_GE k z fr EmptyFM = z; foldFM_GE k z fr (Branch key elt vux fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l | otherwise = foldFM_GE k z fr fm_r; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; " "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vvy vvz = gcd3 vvy vvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } ; " "gcd1 True vvy vvz = error []; gcd1 vwu vwv vww = gcd0 vwv vww; " "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; gcd2 vwx vwy vwz = gcd0 vwy vwz; " "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; gcd3 vxu vxv = gcd0 vxu vxv; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "foldFM_GE k z fr EmptyFM = z; foldFM_GE k z fr (Branch key elt vux fm_l fm_r)|key >= frfoldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l|otherwisefoldFM_GE k z fr fm_r; " is transformed to "foldFM_GE k z fr EmptyFM = foldFM_GE3 k z fr EmptyFM; foldFM_GE k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r); " "foldFM_GE0 k z fr key elt vux fm_l fm_r True = foldFM_GE k z fr fm_r; " "foldFM_GE1 k z fr key elt vux fm_l fm_r True = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l; foldFM_GE1 k z fr key elt vux fm_l fm_r False = foldFM_GE0 k z fr key elt vux fm_l fm_r otherwise; " "foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE1 k z fr key elt vux fm_l fm_r (key >= fr); " "foldFM_GE3 k z fr EmptyFM = z; foldFM_GE3 vxy vxz vyu vyv = foldFM_GE2 vxy vxz vyu vyv; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; foldFM_GE :: Ord c => (c -> b -> a -> a) -> a -> c -> FiniteMap c b -> a; foldFM_GE k z fr EmptyFM = foldFM_GE3 k z fr EmptyFM; foldFM_GE k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r); foldFM_GE0 k z fr key elt vux fm_l fm_r True = foldFM_GE k z fr fm_r; foldFM_GE1 k z fr key elt vux fm_l fm_r True = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l; foldFM_GE1 k z fr key elt vux fm_l fm_r False = foldFM_GE0 k z fr key elt vux fm_l fm_r otherwise; foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE1 k z fr key elt vux fm_l fm_r (key >= fr); foldFM_GE3 k z fr EmptyFM = z; foldFM_GE3 vxy vxz vyu vyv = foldFM_GE2 vxy vxz vyu vyv; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 vyw vyx x y True = x `quot` reduce2D vyw vyx :% (y `quot` reduce2D vyw vyx); " "reduce2D vyw vyx = gcd vyw vyx; " "reduce2Reduce1 vyw vyx x y True = error []; reduce2Reduce1 vyw vyx x y False = reduce2Reduce0 vyw vyx x y otherwise; " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; foldFM_GE :: Ord c => (c -> b -> a -> a) -> a -> c -> FiniteMap c b -> a; foldFM_GE k z fr EmptyFM = foldFM_GE3 k z fr EmptyFM; foldFM_GE k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r); foldFM_GE0 k z fr key elt vux fm_l fm_r True = foldFM_GE k z fr fm_r; foldFM_GE1 k z fr key elt vux fm_l fm_r True = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l; foldFM_GE1 k z fr key elt vux fm_l fm_r False = foldFM_GE0 k z fr key elt vux fm_l fm_r otherwise; foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE1 k z fr key elt vux fm_l fm_r (key >= fr); foldFM_GE3 k z fr EmptyFM = z; foldFM_GE3 vxy vxz vyu vyv = foldFM_GE2 vxy vxz vyu vyv; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; foldFM_GE :: Ord c => (c -> a -> b -> b) -> b -> c -> FiniteMap c a -> b; foldFM_GE k z fr EmptyFM = foldFM_GE3 k z fr EmptyFM; foldFM_GE k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r); foldFM_GE0 k z fr key elt vux fm_l fm_r True = foldFM_GE k z fr fm_r; foldFM_GE1 k z fr key elt vux fm_l fm_r True = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l; foldFM_GE1 k z fr key elt vux fm_l fm_r False = foldFM_GE0 k z fr key elt vux fm_l fm_r otherwise; foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE1 k z fr key elt vux fm_l fm_r (key >= fr); foldFM_GE3 k z fr EmptyFM = z; foldFM_GE3 vxy vxz vyu vyv = foldFM_GE2 vxy vxz vyu vyv; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.foldFM_GE",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.foldFM_GE vyy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.foldFM_GE vyy3 vyy4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 5[label="FiniteMap.foldFM_GE vyy3 vyy4 vyy5",fontsize=16,color="grey",shape="box"];5 -> 6[label="",style="dashed", color="grey", weight=3]; 6[label="FiniteMap.foldFM_GE vyy3 vyy4 vyy5 vyy6",fontsize=16,color="burlywood",shape="triangle"];5098[label="vyy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 5098[label="",style="solid", color="burlywood", weight=9]; 5098 -> 7[label="",style="solid", color="burlywood", weight=3]; 5099[label="vyy6/FiniteMap.Branch vyy60 vyy61 vyy62 vyy63 vyy64",fontsize=10,color="white",style="solid",shape="box"];6 -> 5099[label="",style="solid", color="burlywood", weight=9]; 5099 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="FiniteMap.foldFM_GE vyy3 vyy4 vyy5 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.foldFM_GE vyy3 vyy4 vyy5 (FiniteMap.Branch vyy60 vyy61 vyy62 vyy63 vyy64)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.foldFM_GE3 vyy3 vyy4 vyy5 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.foldFM_GE2 vyy3 vyy4 vyy5 (FiniteMap.Branch vyy60 vyy61 vyy62 vyy63 vyy64)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 11[label="vyy4",fontsize=16,color="green",shape="box"];12 -> 13[label="",style="dashed", color="red", weight=0]; 12[label="FiniteMap.foldFM_GE1 vyy3 vyy4 vyy5 vyy60 vyy61 vyy62 vyy63 vyy64 (vyy60 >= vyy5)",fontsize=16,color="magenta"];12 -> 14[label="",style="dashed", color="magenta", weight=3]; 12 -> 15[label="",style="dashed", color="magenta", weight=3]; 12 -> 16[label="",style="dashed", color="magenta", weight=3]; 12 -> 17[label="",style="dashed", color="magenta", weight=3]; 12 -> 18[label="",style="dashed", color="magenta", weight=3]; 12 -> 19[label="",style="dashed", color="magenta", weight=3]; 12 -> 20[label="",style="dashed", color="magenta", weight=3]; 12 -> 21[label="",style="dashed", color="magenta", weight=3]; 12 -> 22[label="",style="dashed", color="magenta", weight=3]; 14[label="vyy3",fontsize=16,color="green",shape="box"];15[label="vyy61",fontsize=16,color="green",shape="box"];16[label="vyy60 >= vyy5",fontsize=16,color="blue",shape="box"];5100[label=">= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5100[label="",style="solid", color="blue", weight=9]; 5100 -> 23[label="",style="solid", color="blue", weight=3]; 5101[label=">= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5101[label="",style="solid", color="blue", weight=9]; 5101 -> 24[label="",style="solid", color="blue", weight=3]; 5102[label=">= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5102[label="",style="solid", color="blue", weight=9]; 5102 -> 25[label="",style="solid", color="blue", weight=3]; 5103[label=">= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5103[label="",style="solid", color="blue", weight=9]; 5103 -> 26[label="",style="solid", color="blue", weight=3]; 5104[label=">= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5104[label="",style="solid", color="blue", weight=9]; 5104 -> 27[label="",style="solid", color="blue", weight=3]; 5105[label=">= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5105[label="",style="solid", color="blue", weight=9]; 5105 -> 28[label="",style="solid", color="blue", weight=3]; 5106[label=">= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5106[label="",style="solid", color="blue", weight=9]; 5106 -> 29[label="",style="solid", color="blue", weight=3]; 5107[label=">= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5107[label="",style="solid", color="blue", weight=9]; 5107 -> 30[label="",style="solid", color="blue", weight=3]; 5108[label=">= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5108[label="",style="solid", color="blue", weight=9]; 5108 -> 31[label="",style="solid", color="blue", weight=3]; 5109[label=">= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5109[label="",style="solid", color="blue", weight=9]; 5109 -> 32[label="",style="solid", color="blue", weight=3]; 5110[label=">= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5110[label="",style="solid", color="blue", weight=9]; 5110 -> 33[label="",style="solid", color="blue", weight=3]; 5111[label=">= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5111[label="",style="solid", color="blue", weight=9]; 5111 -> 34[label="",style="solid", color="blue", weight=3]; 5112[label=">= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5112[label="",style="solid", color="blue", weight=9]; 5112 -> 35[label="",style="solid", color="blue", weight=3]; 5113[label=">= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 5113[label="",style="solid", color="blue", weight=9]; 5113 -> 36[label="",style="solid", color="blue", weight=3]; 17[label="vyy60",fontsize=16,color="green",shape="box"];18[label="vyy4",fontsize=16,color="green",shape="box"];19[label="vyy5",fontsize=16,color="green",shape="box"];20[label="vyy62",fontsize=16,color="green",shape="box"];21[label="vyy63",fontsize=16,color="green",shape="box"];22[label="vyy64",fontsize=16,color="green",shape="box"];13[label="FiniteMap.foldFM_GE1 vyy17 vyy18 vyy19 vyy20 vyy21 vyy22 vyy23 vyy24 vyy25",fontsize=16,color="burlywood",shape="triangle"];5114[label="vyy25/False",fontsize=10,color="white",style="solid",shape="box"];13 -> 5114[label="",style="solid", color="burlywood", weight=9]; 5114 -> 37[label="",style="solid", color="burlywood", weight=3]; 5115[label="vyy25/True",fontsize=10,color="white",style="solid",shape="box"];13 -> 5115[label="",style="solid", color="burlywood", weight=9]; 5115 -> 38[label="",style="solid", color="burlywood", weight=3]; 23[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];23 -> 39[label="",style="solid", color="black", weight=3]; 24[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];24 -> 40[label="",style="solid", color="black", weight=3]; 25[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];25 -> 41[label="",style="solid", color="black", weight=3]; 26[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];26 -> 42[label="",style="solid", color="black", weight=3]; 27[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];27 -> 43[label="",style="solid", color="black", weight=3]; 28[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];28 -> 44[label="",style="solid", color="black", weight=3]; 29[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];29 -> 45[label="",style="solid", color="black", weight=3]; 30[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];30 -> 46[label="",style="solid", color="black", weight=3]; 31[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];31 -> 47[label="",style="solid", color="black", weight=3]; 32[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];32 -> 48[label="",style="solid", color="black", weight=3]; 33[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];33 -> 49[label="",style="solid", color="black", weight=3]; 34[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];34 -> 50[label="",style="solid", color="black", weight=3]; 35[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];35 -> 51[label="",style="solid", color="black", weight=3]; 36[label="vyy60 >= vyy5",fontsize=16,color="black",shape="box"];36 -> 52[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.foldFM_GE1 vyy17 vyy18 vyy19 vyy20 vyy21 vyy22 vyy23 vyy24 False",fontsize=16,color="black",shape="box"];37 -> 53[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.foldFM_GE1 vyy17 vyy18 vyy19 vyy20 vyy21 vyy22 vyy23 vyy24 True",fontsize=16,color="black",shape="box"];38 -> 54[label="",style="solid", color="black", weight=3]; 39[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];39 -> 55[label="",style="solid", color="black", weight=3]; 40[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];40 -> 56[label="",style="solid", color="black", weight=3]; 41[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];41 -> 57[label="",style="solid", color="black", weight=3]; 42[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];42 -> 58[label="",style="solid", color="black", weight=3]; 43[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];43 -> 59[label="",style="solid", color="black", weight=3]; 44[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];44 -> 60[label="",style="solid", color="black", weight=3]; 45[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];45 -> 61[label="",style="solid", color="black", weight=3]; 46[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];46 -> 62[label="",style="solid", color="black", weight=3]; 47[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];47 -> 63[label="",style="solid", color="black", weight=3]; 48[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];48 -> 64[label="",style="solid", color="black", weight=3]; 49[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];49 -> 65[label="",style="solid", color="black", weight=3]; 50[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];50 -> 66[label="",style="solid", color="black", weight=3]; 51[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];51 -> 67[label="",style="solid", color="black", weight=3]; 52[label="compare vyy60 vyy5 /= LT",fontsize=16,color="black",shape="box"];52 -> 68[label="",style="solid", color="black", weight=3]; 53[label="FiniteMap.foldFM_GE0 vyy17 vyy18 vyy19 vyy20 vyy21 vyy22 vyy23 vyy24 otherwise",fontsize=16,color="black",shape="box"];53 -> 69[label="",style="solid", color="black", weight=3]; 54 -> 6[label="",style="dashed", color="red", weight=0]; 54[label="FiniteMap.foldFM_GE vyy17 (vyy17 vyy20 vyy21 (FiniteMap.foldFM_GE vyy17 vyy18 vyy19 vyy24)) vyy19 vyy23",fontsize=16,color="magenta"];54 -> 70[label="",style="dashed", color="magenta", weight=3]; 54 -> 71[label="",style="dashed", color="magenta", weight=3]; 54 -> 72[label="",style="dashed", color="magenta", weight=3]; 54 -> 73[label="",style="dashed", color="magenta", weight=3]; 55 -> 2302[label="",style="dashed", color="red", weight=0]; 55[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];55 -> 2303[label="",style="dashed", color="magenta", weight=3]; 56 -> 2302[label="",style="dashed", color="red", weight=0]; 56[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];56 -> 2304[label="",style="dashed", color="magenta", weight=3]; 57 -> 2302[label="",style="dashed", color="red", weight=0]; 57[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];57 -> 2305[label="",style="dashed", color="magenta", weight=3]; 58 -> 2302[label="",style="dashed", color="red", weight=0]; 58[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];58 -> 2306[label="",style="dashed", color="magenta", weight=3]; 59 -> 2302[label="",style="dashed", color="red", weight=0]; 59[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];59 -> 2307[label="",style="dashed", color="magenta", weight=3]; 60 -> 2302[label="",style="dashed", color="red", weight=0]; 60[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];60 -> 2308[label="",style="dashed", color="magenta", weight=3]; 61 -> 2302[label="",style="dashed", color="red", weight=0]; 61[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];61 -> 2309[label="",style="dashed", color="magenta", weight=3]; 62 -> 2302[label="",style="dashed", color="red", weight=0]; 62[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];62 -> 2310[label="",style="dashed", color="magenta", weight=3]; 63 -> 2302[label="",style="dashed", color="red", weight=0]; 63[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];63 -> 2311[label="",style="dashed", color="magenta", weight=3]; 64 -> 2302[label="",style="dashed", color="red", weight=0]; 64[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];64 -> 2312[label="",style="dashed", color="magenta", weight=3]; 65 -> 2302[label="",style="dashed", color="red", weight=0]; 65[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];65 -> 2313[label="",style="dashed", color="magenta", weight=3]; 66 -> 2302[label="",style="dashed", color="red", weight=0]; 66[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];66 -> 2314[label="",style="dashed", color="magenta", weight=3]; 67 -> 2302[label="",style="dashed", color="red", weight=0]; 67[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];67 -> 2315[label="",style="dashed", color="magenta", weight=3]; 68 -> 2302[label="",style="dashed", color="red", weight=0]; 68[label="not (compare vyy60 vyy5 == LT)",fontsize=16,color="magenta"];68 -> 2316[label="",style="dashed", color="magenta", weight=3]; 69[label="FiniteMap.foldFM_GE0 vyy17 vyy18 vyy19 vyy20 vyy21 vyy22 vyy23 vyy24 True",fontsize=16,color="black",shape="box"];69 -> 89[label="",style="solid", color="black", weight=3]; 70[label="vyy23",fontsize=16,color="green",shape="box"];71[label="vyy17",fontsize=16,color="green",shape="box"];72[label="vyy17 vyy20 vyy21 (FiniteMap.foldFM_GE vyy17 vyy18 vyy19 vyy24)",fontsize=16,color="green",shape="box"];72 -> 90[label="",style="dashed", color="green", weight=3]; 72 -> 91[label="",style="dashed", color="green", weight=3]; 72 -> 92[label="",style="dashed", color="green", weight=3]; 73[label="vyy19",fontsize=16,color="green",shape="box"];2303 -> 2413[label="",style="dashed", color="red", weight=0]; 2303[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2303 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2302[label="not vyy169",fontsize=16,color="burlywood",shape="triangle"];5116[label="vyy169/False",fontsize=10,color="white",style="solid",shape="box"];2302 -> 5116[label="",style="solid", color="burlywood", weight=9]; 5116 -> 2323[label="",style="solid", color="burlywood", weight=3]; 5117[label="vyy169/True",fontsize=10,color="white",style="solid",shape="box"];2302 -> 5117[label="",style="solid", color="burlywood", weight=9]; 5117 -> 2324[label="",style="solid", color="burlywood", weight=3]; 2304 -> 2413[label="",style="dashed", color="red", weight=0]; 2304[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2304 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2413[label="",style="dashed", color="red", weight=0]; 2305[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2305 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2413[label="",style="dashed", color="red", weight=0]; 2306[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2306 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2413[label="",style="dashed", color="red", weight=0]; 2307[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2307 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2413[label="",style="dashed", color="red", weight=0]; 2308[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2308 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2413[label="",style="dashed", color="red", weight=0]; 2309[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2309 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2413[label="",style="dashed", color="red", weight=0]; 2310[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2310 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2413[label="",style="dashed", color="red", weight=0]; 2311[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2311 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2413[label="",style="dashed", color="red", weight=0]; 2312[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2312 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2413[label="",style="dashed", color="red", weight=0]; 2313[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2313 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2413[label="",style="dashed", color="red", weight=0]; 2314[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2314 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2413[label="",style="dashed", color="red", weight=0]; 2315[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2315 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2413[label="",style="dashed", color="red", weight=0]; 2316[label="compare vyy60 vyy5 == LT",fontsize=16,color="magenta"];2316 -> 2427[label="",style="dashed", color="magenta", weight=3]; 89 -> 6[label="",style="dashed", color="red", weight=0]; 89[label="FiniteMap.foldFM_GE vyy17 vyy18 vyy19 vyy24",fontsize=16,color="magenta"];89 -> 111[label="",style="dashed", color="magenta", weight=3]; 89 -> 112[label="",style="dashed", color="magenta", weight=3]; 89 -> 113[label="",style="dashed", color="magenta", weight=3]; 89 -> 114[label="",style="dashed", color="magenta", weight=3]; 90[label="vyy20",fontsize=16,color="green",shape="box"];91[label="vyy21",fontsize=16,color="green",shape="box"];92 -> 6[label="",style="dashed", color="red", weight=0]; 92[label="FiniteMap.foldFM_GE vyy17 vyy18 vyy19 vyy24",fontsize=16,color="magenta"];92 -> 115[label="",style="dashed", color="magenta", weight=3]; 92 -> 116[label="",style="dashed", color="magenta", weight=3]; 92 -> 117[label="",style="dashed", color="magenta", weight=3]; 92 -> 118[label="",style="dashed", color="magenta", weight=3]; 2414[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2414 -> 2453[label="",style="solid", color="black", weight=3]; 2413[label="vyy172 == LT",fontsize=16,color="burlywood",shape="triangle"];5118[label="vyy172/LT",fontsize=10,color="white",style="solid",shape="box"];2413 -> 5118[label="",style="solid", color="burlywood", weight=9]; 5118 -> 2454[label="",style="solid", color="burlywood", weight=3]; 5119[label="vyy172/EQ",fontsize=10,color="white",style="solid",shape="box"];2413 -> 5119[label="",style="solid", color="burlywood", weight=9]; 5119 -> 2455[label="",style="solid", color="burlywood", weight=3]; 5120[label="vyy172/GT",fontsize=10,color="white",style="solid",shape="box"];2413 -> 5120[label="",style="solid", color="burlywood", weight=9]; 5120 -> 2456[label="",style="solid", color="burlywood", weight=3]; 2323[label="not False",fontsize=16,color="black",shape="box"];2323 -> 2340[label="",style="solid", color="black", weight=3]; 2324[label="not True",fontsize=16,color="black",shape="box"];2324 -> 2341[label="",style="solid", color="black", weight=3]; 2415[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2415 -> 2457[label="",style="solid", color="black", weight=3]; 2416[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2416 -> 2458[label="",style="solid", color="black", weight=3]; 2417[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2417 -> 2459[label="",style="solid", color="black", weight=3]; 2418[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2418 -> 2460[label="",style="solid", color="black", weight=3]; 2419[label="compare vyy60 vyy5",fontsize=16,color="burlywood",shape="triangle"];5121[label="vyy60/()",fontsize=10,color="white",style="solid",shape="box"];2419 -> 5121[label="",style="solid", color="burlywood", weight=9]; 5121 -> 2461[label="",style="solid", color="burlywood", weight=3]; 2420[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2420 -> 2462[label="",style="solid", color="black", weight=3]; 2421[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2421 -> 2463[label="",style="solid", color="black", weight=3]; 2422[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2422 -> 2464[label="",style="solid", color="black", weight=3]; 2423[label="compare vyy60 vyy5",fontsize=16,color="burlywood",shape="triangle"];5122[label="vyy60/vyy600 : vyy601",fontsize=10,color="white",style="solid",shape="box"];2423 -> 5122[label="",style="solid", color="burlywood", weight=9]; 5122 -> 2465[label="",style="solid", color="burlywood", weight=3]; 5123[label="vyy60/[]",fontsize=10,color="white",style="solid",shape="box"];2423 -> 5123[label="",style="solid", color="burlywood", weight=9]; 5123 -> 2466[label="",style="solid", color="burlywood", weight=3]; 2424[label="compare vyy60 vyy5",fontsize=16,color="burlywood",shape="triangle"];5124[label="vyy60/vyy600 :% vyy601",fontsize=10,color="white",style="solid",shape="box"];2424 -> 5124[label="",style="solid", color="burlywood", weight=9]; 5124 -> 2467[label="",style="solid", color="burlywood", weight=3]; 2425[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2425 -> 2468[label="",style="solid", color="black", weight=3]; 2426[label="compare vyy60 vyy5",fontsize=16,color="black",shape="triangle"];2426 -> 2469[label="",style="solid", color="black", weight=3]; 2427[label="compare vyy60 vyy5",fontsize=16,color="burlywood",shape="triangle"];5125[label="vyy60/Integer vyy600",fontsize=10,color="white",style="solid",shape="box"];2427 -> 5125[label="",style="solid", color="burlywood", weight=9]; 5125 -> 2470[label="",style="solid", color="burlywood", weight=3]; 111[label="vyy24",fontsize=16,color="green",shape="box"];112[label="vyy17",fontsize=16,color="green",shape="box"];113[label="vyy18",fontsize=16,color="green",shape="box"];114[label="vyy19",fontsize=16,color="green",shape="box"];115[label="vyy24",fontsize=16,color="green",shape="box"];116[label="vyy17",fontsize=16,color="green",shape="box"];117[label="vyy18",fontsize=16,color="green",shape="box"];118[label="vyy19",fontsize=16,color="green",shape="box"];2453[label="compare3 vyy60 vyy5",fontsize=16,color="black",shape="box"];2453 -> 2471[label="",style="solid", color="black", weight=3]; 2454[label="LT == LT",fontsize=16,color="black",shape="box"];2454 -> 2472[label="",style="solid", color="black", weight=3]; 2455[label="EQ == LT",fontsize=16,color="black",shape="box"];2455 -> 2473[label="",style="solid", color="black", weight=3]; 2456[label="GT == LT",fontsize=16,color="black",shape="box"];2456 -> 2474[label="",style="solid", color="black", weight=3]; 2340[label="True",fontsize=16,color="green",shape="box"];2341[label="False",fontsize=16,color="green",shape="box"];2457[label="primCmpDouble vyy60 vyy5",fontsize=16,color="burlywood",shape="box"];5126[label="vyy60/Double vyy600 vyy601",fontsize=10,color="white",style="solid",shape="box"];2457 -> 5126[label="",style="solid", color="burlywood", weight=9]; 5126 -> 2475[label="",style="solid", color="burlywood", weight=3]; 2458[label="primCmpChar vyy60 vyy5",fontsize=16,color="burlywood",shape="box"];5127[label="vyy60/Char vyy600",fontsize=10,color="white",style="solid",shape="box"];2458 -> 5127[label="",style="solid", color="burlywood", weight=9]; 5127 -> 2476[label="",style="solid", color="burlywood", weight=3]; 2459[label="primCmpInt vyy60 vyy5",fontsize=16,color="burlywood",shape="triangle"];5128[label="vyy60/Pos vyy600",fontsize=10,color="white",style="solid",shape="box"];2459 -> 5128[label="",style="solid", color="burlywood", weight=9]; 5128 -> 2477[label="",style="solid", color="burlywood", weight=3]; 5129[label="vyy60/Neg vyy600",fontsize=10,color="white",style="solid",shape="box"];2459 -> 5129[label="",style="solid", color="burlywood", weight=9]; 5129 -> 2478[label="",style="solid", color="burlywood", weight=3]; 2460[label="compare3 vyy60 vyy5",fontsize=16,color="black",shape="box"];2460 -> 2479[label="",style="solid", color="black", weight=3]; 2461[label="compare () vyy5",fontsize=16,color="burlywood",shape="box"];5130[label="vyy5/()",fontsize=10,color="white",style="solid",shape="box"];2461 -> 5130[label="",style="solid", color="burlywood", weight=9]; 5130 -> 2480[label="",style="solid", color="burlywood", weight=3]; 2462[label="compare3 vyy60 vyy5",fontsize=16,color="black",shape="box"];2462 -> 2481[label="",style="solid", color="black", weight=3]; 2463[label="compare3 vyy60 vyy5",fontsize=16,color="black",shape="box"];2463 -> 2482[label="",style="solid", color="black", weight=3]; 2464[label="primCmpFloat vyy60 vyy5",fontsize=16,color="burlywood",shape="box"];5131[label="vyy60/Float vyy600 vyy601",fontsize=10,color="white",style="solid",shape="box"];2464 -> 5131[label="",style="solid", color="burlywood", weight=9]; 5131 -> 2483[label="",style="solid", color="burlywood", weight=3]; 2465[label="compare (vyy600 : vyy601) vyy5",fontsize=16,color="burlywood",shape="box"];5132[label="vyy5/vyy50 : vyy51",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5132[label="",style="solid", color="burlywood", weight=9]; 5132 -> 2484[label="",style="solid", color="burlywood", weight=3]; 5133[label="vyy5/[]",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5133[label="",style="solid", color="burlywood", weight=9]; 5133 -> 2485[label="",style="solid", color="burlywood", weight=3]; 2466[label="compare [] vyy5",fontsize=16,color="burlywood",shape="box"];5134[label="vyy5/vyy50 : vyy51",fontsize=10,color="white",style="solid",shape="box"];2466 -> 5134[label="",style="solid", color="burlywood", weight=9]; 5134 -> 2486[label="",style="solid", color="burlywood", weight=3]; 5135[label="vyy5/[]",fontsize=10,color="white",style="solid",shape="box"];2466 -> 5135[label="",style="solid", color="burlywood", weight=9]; 5135 -> 2487[label="",style="solid", color="burlywood", weight=3]; 2467[label="compare (vyy600 :% vyy601) vyy5",fontsize=16,color="burlywood",shape="box"];5136[label="vyy5/vyy50 :% vyy51",fontsize=10,color="white",style="solid",shape="box"];2467 -> 5136[label="",style="solid", color="burlywood", weight=9]; 5136 -> 2488[label="",style="solid", color="burlywood", weight=3]; 2468[label="compare3 vyy60 vyy5",fontsize=16,color="black",shape="box"];2468 -> 2489[label="",style="solid", color="black", weight=3]; 2469[label="compare3 vyy60 vyy5",fontsize=16,color="black",shape="box"];2469 -> 2490[label="",style="solid", color="black", weight=3]; 2470[label="compare (Integer vyy600) vyy5",fontsize=16,color="burlywood",shape="box"];5137[label="vyy5/Integer vyy50",fontsize=10,color="white",style="solid",shape="box"];2470 -> 5137[label="",style="solid", color="burlywood", weight=9]; 5137 -> 2491[label="",style="solid", color="burlywood", weight=3]; 2471[label="compare2 vyy60 vyy5 (vyy60 == vyy5)",fontsize=16,color="burlywood",shape="box"];5138[label="vyy60/False",fontsize=10,color="white",style="solid",shape="box"];2471 -> 5138[label="",style="solid", color="burlywood", weight=9]; 5138 -> 2492[label="",style="solid", color="burlywood", weight=3]; 5139[label="vyy60/True",fontsize=10,color="white",style="solid",shape="box"];2471 -> 5139[label="",style="solid", color="burlywood", weight=9]; 5139 -> 2493[label="",style="solid", color="burlywood", weight=3]; 2472[label="True",fontsize=16,color="green",shape="box"];2473[label="False",fontsize=16,color="green",shape="box"];2474[label="False",fontsize=16,color="green",shape="box"];2475[label="primCmpDouble (Double vyy600 vyy601) vyy5",fontsize=16,color="burlywood",shape="box"];5140[label="vyy601/Pos vyy6010",fontsize=10,color="white",style="solid",shape="box"];2475 -> 5140[label="",style="solid", color="burlywood", weight=9]; 5140 -> 2494[label="",style="solid", color="burlywood", weight=3]; 5141[label="vyy601/Neg vyy6010",fontsize=10,color="white",style="solid",shape="box"];2475 -> 5141[label="",style="solid", color="burlywood", weight=9]; 5141 -> 2495[label="",style="solid", color="burlywood", weight=3]; 2476[label="primCmpChar (Char vyy600) vyy5",fontsize=16,color="burlywood",shape="box"];5142[label="vyy5/Char vyy50",fontsize=10,color="white",style="solid",shape="box"];2476 -> 5142[label="",style="solid", color="burlywood", weight=9]; 5142 -> 2496[label="",style="solid", color="burlywood", weight=3]; 2477[label="primCmpInt (Pos vyy600) vyy5",fontsize=16,color="burlywood",shape="box"];5143[label="vyy600/Succ vyy6000",fontsize=10,color="white",style="solid",shape="box"];2477 -> 5143[label="",style="solid", color="burlywood", weight=9]; 5143 -> 2497[label="",style="solid", color="burlywood", weight=3]; 5144[label="vyy600/Zero",fontsize=10,color="white",style="solid",shape="box"];2477 -> 5144[label="",style="solid", color="burlywood", weight=9]; 5144 -> 2498[label="",style="solid", color="burlywood", weight=3]; 2478[label="primCmpInt (Neg vyy600) vyy5",fontsize=16,color="burlywood",shape="box"];5145[label="vyy600/Succ vyy6000",fontsize=10,color="white",style="solid",shape="box"];2478 -> 5145[label="",style="solid", color="burlywood", weight=9]; 5145 -> 2499[label="",style="solid", color="burlywood", weight=3]; 5146[label="vyy600/Zero",fontsize=10,color="white",style="solid",shape="box"];2478 -> 5146[label="",style="solid", color="burlywood", weight=9]; 5146 -> 2500[label="",style="solid", color="burlywood", weight=3]; 2479[label="compare2 vyy60 vyy5 (vyy60 == vyy5)",fontsize=16,color="burlywood",shape="box"];5147[label="vyy60/(vyy600,vyy601)",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5147[label="",style="solid", color="burlywood", weight=9]; 5147 -> 2501[label="",style="solid", color="burlywood", weight=3]; 2480[label="compare () ()",fontsize=16,color="black",shape="box"];2480 -> 2502[label="",style="solid", color="black", weight=3]; 2481[label="compare2 vyy60 vyy5 (vyy60 == vyy5)",fontsize=16,color="burlywood",shape="box"];5148[label="vyy60/Left vyy600",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5148[label="",style="solid", color="burlywood", weight=9]; 5148 -> 2503[label="",style="solid", color="burlywood", weight=3]; 5149[label="vyy60/Right vyy600",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5149[label="",style="solid", color="burlywood", weight=9]; 5149 -> 2504[label="",style="solid", color="burlywood", weight=3]; 2482[label="compare2 vyy60 vyy5 (vyy60 == vyy5)",fontsize=16,color="burlywood",shape="box"];5150[label="vyy60/(vyy600,vyy601,vyy602)",fontsize=10,color="white",style="solid",shape="box"];2482 -> 5150[label="",style="solid", color="burlywood", weight=9]; 5150 -> 2505[label="",style="solid", color="burlywood", weight=3]; 2483[label="primCmpFloat (Float vyy600 vyy601) vyy5",fontsize=16,color="burlywood",shape="box"];5151[label="vyy601/Pos vyy6010",fontsize=10,color="white",style="solid",shape="box"];2483 -> 5151[label="",style="solid", color="burlywood", weight=9]; 5151 -> 2506[label="",style="solid", color="burlywood", weight=3]; 5152[label="vyy601/Neg vyy6010",fontsize=10,color="white",style="solid",shape="box"];2483 -> 5152[label="",style="solid", color="burlywood", weight=9]; 5152 -> 2507[label="",style="solid", color="burlywood", weight=3]; 2484[label="compare (vyy600 : vyy601) (vyy50 : vyy51)",fontsize=16,color="black",shape="box"];2484 -> 2508[label="",style="solid", color="black", weight=3]; 2485[label="compare (vyy600 : vyy601) []",fontsize=16,color="black",shape="box"];2485 -> 2509[label="",style="solid", color="black", weight=3]; 2486[label="compare [] (vyy50 : vyy51)",fontsize=16,color="black",shape="box"];2486 -> 2510[label="",style="solid", color="black", weight=3]; 2487[label="compare [] []",fontsize=16,color="black",shape="box"];2487 -> 2511[label="",style="solid", color="black", weight=3]; 2488[label="compare (vyy600 :% vyy601) (vyy50 :% vyy51)",fontsize=16,color="black",shape="box"];2488 -> 2512[label="",style="solid", color="black", weight=3]; 2489[label="compare2 vyy60 vyy5 (vyy60 == vyy5)",fontsize=16,color="burlywood",shape="box"];5153[label="vyy60/LT",fontsize=10,color="white",style="solid",shape="box"];2489 -> 5153[label="",style="solid", color="burlywood", weight=9]; 5153 -> 2513[label="",style="solid", color="burlywood", weight=3]; 5154[label="vyy60/EQ",fontsize=10,color="white",style="solid",shape="box"];2489 -> 5154[label="",style="solid", color="burlywood", weight=9]; 5154 -> 2514[label="",style="solid", color="burlywood", weight=3]; 5155[label="vyy60/GT",fontsize=10,color="white",style="solid",shape="box"];2489 -> 5155[label="",style="solid", color="burlywood", weight=9]; 5155 -> 2515[label="",style="solid", color="burlywood", weight=3]; 2490[label="compare2 vyy60 vyy5 (vyy60 == vyy5)",fontsize=16,color="burlywood",shape="box"];5156[label="vyy60/Nothing",fontsize=10,color="white",style="solid",shape="box"];2490 -> 5156[label="",style="solid", color="burlywood", weight=9]; 5156 -> 2516[label="",style="solid", color="burlywood", weight=3]; 5157[label="vyy60/Just vyy600",fontsize=10,color="white",style="solid",shape="box"];2490 -> 5157[label="",style="solid", color="burlywood", weight=9]; 5157 -> 2517[label="",style="solid", color="burlywood", weight=3]; 2491[label="compare (Integer vyy600) (Integer vyy50)",fontsize=16,color="black",shape="box"];2491 -> 2518[label="",style="solid", color="black", weight=3]; 2492[label="compare2 False vyy5 (False == vyy5)",fontsize=16,color="burlywood",shape="box"];5158[label="vyy5/False",fontsize=10,color="white",style="solid",shape="box"];2492 -> 5158[label="",style="solid", color="burlywood", weight=9]; 5158 -> 2519[label="",style="solid", color="burlywood", weight=3]; 5159[label="vyy5/True",fontsize=10,color="white",style="solid",shape="box"];2492 -> 5159[label="",style="solid", color="burlywood", weight=9]; 5159 -> 2520[label="",style="solid", color="burlywood", weight=3]; 2493[label="compare2 True vyy5 (True == vyy5)",fontsize=16,color="burlywood",shape="box"];5160[label="vyy5/False",fontsize=10,color="white",style="solid",shape="box"];2493 -> 5160[label="",style="solid", color="burlywood", weight=9]; 5160 -> 2521[label="",style="solid", color="burlywood", weight=3]; 5161[label="vyy5/True",fontsize=10,color="white",style="solid",shape="box"];2493 -> 5161[label="",style="solid", color="burlywood", weight=9]; 5161 -> 2522[label="",style="solid", color="burlywood", weight=3]; 2494[label="primCmpDouble (Double vyy600 (Pos vyy6010)) vyy5",fontsize=16,color="burlywood",shape="box"];5162[label="vyy5/Double vyy50 vyy51",fontsize=10,color="white",style="solid",shape="box"];2494 -> 5162[label="",style="solid", color="burlywood", weight=9]; 5162 -> 2523[label="",style="solid", color="burlywood", weight=3]; 2495[label="primCmpDouble (Double vyy600 (Neg vyy6010)) vyy5",fontsize=16,color="burlywood",shape="box"];5163[label="vyy5/Double vyy50 vyy51",fontsize=10,color="white",style="solid",shape="box"];2495 -> 5163[label="",style="solid", color="burlywood", weight=9]; 5163 -> 2524[label="",style="solid", color="burlywood", weight=3]; 2496[label="primCmpChar (Char vyy600) (Char vyy50)",fontsize=16,color="black",shape="box"];2496 -> 2525[label="",style="solid", color="black", weight=3]; 2497[label="primCmpInt (Pos (Succ vyy6000)) vyy5",fontsize=16,color="burlywood",shape="box"];5164[label="vyy5/Pos vyy50",fontsize=10,color="white",style="solid",shape="box"];2497 -> 5164[label="",style="solid", color="burlywood", weight=9]; 5164 -> 2526[label="",style="solid", color="burlywood", weight=3]; 5165[label="vyy5/Neg vyy50",fontsize=10,color="white",style="solid",shape="box"];2497 -> 5165[label="",style="solid", color="burlywood", weight=9]; 5165 -> 2527[label="",style="solid", color="burlywood", weight=3]; 2498[label="primCmpInt (Pos Zero) vyy5",fontsize=16,color="burlywood",shape="box"];5166[label="vyy5/Pos vyy50",fontsize=10,color="white",style="solid",shape="box"];2498 -> 5166[label="",style="solid", color="burlywood", weight=9]; 5166 -> 2528[label="",style="solid", color="burlywood", weight=3]; 5167[label="vyy5/Neg vyy50",fontsize=10,color="white",style="solid",shape="box"];2498 -> 5167[label="",style="solid", color="burlywood", weight=9]; 5167 -> 2529[label="",style="solid", color="burlywood", weight=3]; 2499[label="primCmpInt (Neg (Succ vyy6000)) vyy5",fontsize=16,color="burlywood",shape="box"];5168[label="vyy5/Pos vyy50",fontsize=10,color="white",style="solid",shape="box"];2499 -> 5168[label="",style="solid", color="burlywood", weight=9]; 5168 -> 2530[label="",style="solid", color="burlywood", weight=3]; 5169[label="vyy5/Neg vyy50",fontsize=10,color="white",style="solid",shape="box"];2499 -> 5169[label="",style="solid", color="burlywood", weight=9]; 5169 -> 2531[label="",style="solid", color="burlywood", weight=3]; 2500[label="primCmpInt (Neg Zero) vyy5",fontsize=16,color="burlywood",shape="box"];5170[label="vyy5/Pos vyy50",fontsize=10,color="white",style="solid",shape="box"];2500 -> 5170[label="",style="solid", color="burlywood", weight=9]; 5170 -> 2532[label="",style="solid", color="burlywood", weight=3]; 5171[label="vyy5/Neg vyy50",fontsize=10,color="white",style="solid",shape="box"];2500 -> 5171[label="",style="solid", color="burlywood", weight=9]; 5171 -> 2533[label="",style="solid", color="burlywood", weight=3]; 2501[label="compare2 (vyy600,vyy601) vyy5 ((vyy600,vyy601) == vyy5)",fontsize=16,color="burlywood",shape="box"];5172[label="vyy5/(vyy50,vyy51)",fontsize=10,color="white",style="solid",shape="box"];2501 -> 5172[label="",style="solid", color="burlywood", weight=9]; 5172 -> 2534[label="",style="solid", color="burlywood", weight=3]; 2502[label="EQ",fontsize=16,color="green",shape="box"];2503[label="compare2 (Left vyy600) vyy5 (Left vyy600 == vyy5)",fontsize=16,color="burlywood",shape="box"];5173[label="vyy5/Left vyy50",fontsize=10,color="white",style="solid",shape="box"];2503 -> 5173[label="",style="solid", color="burlywood", weight=9]; 5173 -> 2535[label="",style="solid", color="burlywood", weight=3]; 5174[label="vyy5/Right vyy50",fontsize=10,color="white",style="solid",shape="box"];2503 -> 5174[label="",style="solid", color="burlywood", weight=9]; 5174 -> 2536[label="",style="solid", color="burlywood", weight=3]; 2504[label="compare2 (Right vyy600) vyy5 (Right vyy600 == vyy5)",fontsize=16,color="burlywood",shape="box"];5175[label="vyy5/Left vyy50",fontsize=10,color="white",style="solid",shape="box"];2504 -> 5175[label="",style="solid", color="burlywood", weight=9]; 5175 -> 2537[label="",style="solid", color="burlywood", weight=3]; 5176[label="vyy5/Right vyy50",fontsize=10,color="white",style="solid",shape="box"];2504 -> 5176[label="",style="solid", color="burlywood", weight=9]; 5176 -> 2538[label="",style="solid", color="burlywood", weight=3]; 2505[label="compare2 (vyy600,vyy601,vyy602) vyy5 ((vyy600,vyy601,vyy602) == vyy5)",fontsize=16,color="burlywood",shape="box"];5177[label="vyy5/(vyy50,vyy51,vyy52)",fontsize=10,color="white",style="solid",shape="box"];2505 -> 5177[label="",style="solid", color="burlywood", weight=9]; 5177 -> 2539[label="",style="solid", color="burlywood", weight=3]; 2506[label="primCmpFloat (Float vyy600 (Pos vyy6010)) vyy5",fontsize=16,color="burlywood",shape="box"];5178[label="vyy5/Float vyy50 vyy51",fontsize=10,color="white",style="solid",shape="box"];2506 -> 5178[label="",style="solid", color="burlywood", weight=9]; 5178 -> 2540[label="",style="solid", color="burlywood", weight=3]; 2507[label="primCmpFloat (Float vyy600 (Neg vyy6010)) vyy5",fontsize=16,color="burlywood",shape="box"];5179[label="vyy5/Float vyy50 vyy51",fontsize=10,color="white",style="solid",shape="box"];2507 -> 5179[label="",style="solid", color="burlywood", weight=9]; 5179 -> 2541[label="",style="solid", color="burlywood", weight=3]; 2508 -> 2542[label="",style="dashed", color="red", weight=0]; 2508[label="primCompAux vyy600 vyy50 (compare vyy601 vyy51)",fontsize=16,color="magenta"];2508 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2509[label="GT",fontsize=16,color="green",shape="box"];2510[label="LT",fontsize=16,color="green",shape="box"];2511[label="EQ",fontsize=16,color="green",shape="box"];2512[label="compare (vyy600 * vyy51) (vyy50 * vyy601)",fontsize=16,color="blue",shape="box"];5180[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2512 -> 5180[label="",style="solid", color="blue", weight=9]; 5180 -> 2544[label="",style="solid", color="blue", weight=3]; 5181[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2512 -> 5181[label="",style="solid", color="blue", weight=9]; 5181 -> 2545[label="",style="solid", color="blue", weight=3]; 2513[label="compare2 LT vyy5 (LT == vyy5)",fontsize=16,color="burlywood",shape="box"];5182[label="vyy5/LT",fontsize=10,color="white",style="solid",shape="box"];2513 -> 5182[label="",style="solid", color="burlywood", weight=9]; 5182 -> 2546[label="",style="solid", color="burlywood", weight=3]; 5183[label="vyy5/EQ",fontsize=10,color="white",style="solid",shape="box"];2513 -> 5183[label="",style="solid", color="burlywood", weight=9]; 5183 -> 2547[label="",style="solid", color="burlywood", weight=3]; 5184[label="vyy5/GT",fontsize=10,color="white",style="solid",shape="box"];2513 -> 5184[label="",style="solid", color="burlywood", weight=9]; 5184 -> 2548[label="",style="solid", color="burlywood", weight=3]; 2514[label="compare2 EQ vyy5 (EQ == vyy5)",fontsize=16,color="burlywood",shape="box"];5185[label="vyy5/LT",fontsize=10,color="white",style="solid",shape="box"];2514 -> 5185[label="",style="solid", color="burlywood", weight=9]; 5185 -> 2549[label="",style="solid", color="burlywood", weight=3]; 5186[label="vyy5/EQ",fontsize=10,color="white",style="solid",shape="box"];2514 -> 5186[label="",style="solid", color="burlywood", weight=9]; 5186 -> 2550[label="",style="solid", color="burlywood", weight=3]; 5187[label="vyy5/GT",fontsize=10,color="white",style="solid",shape="box"];2514 -> 5187[label="",style="solid", color="burlywood", weight=9]; 5187 -> 2551[label="",style="solid", color="burlywood", weight=3]; 2515[label="compare2 GT vyy5 (GT == vyy5)",fontsize=16,color="burlywood",shape="box"];5188[label="vyy5/LT",fontsize=10,color="white",style="solid",shape="box"];2515 -> 5188[label="",style="solid", color="burlywood", weight=9]; 5188 -> 2552[label="",style="solid", color="burlywood", weight=3]; 5189[label="vyy5/EQ",fontsize=10,color="white",style="solid",shape="box"];2515 -> 5189[label="",style="solid", color="burlywood", weight=9]; 5189 -> 2553[label="",style="solid", color="burlywood", weight=3]; 5190[label="vyy5/GT",fontsize=10,color="white",style="solid",shape="box"];2515 -> 5190[label="",style="solid", color="burlywood", weight=9]; 5190 -> 2554[label="",style="solid", color="burlywood", weight=3]; 2516[label="compare2 Nothing vyy5 (Nothing == vyy5)",fontsize=16,color="burlywood",shape="box"];5191[label="vyy5/Nothing",fontsize=10,color="white",style="solid",shape="box"];2516 -> 5191[label="",style="solid", color="burlywood", weight=9]; 5191 -> 2555[label="",style="solid", color="burlywood", weight=3]; 5192[label="vyy5/Just vyy50",fontsize=10,color="white",style="solid",shape="box"];2516 -> 5192[label="",style="solid", color="burlywood", weight=9]; 5192 -> 2556[label="",style="solid", color="burlywood", weight=3]; 2517[label="compare2 (Just vyy600) vyy5 (Just vyy600 == vyy5)",fontsize=16,color="burlywood",shape="box"];5193[label="vyy5/Nothing",fontsize=10,color="white",style="solid",shape="box"];2517 -> 5193[label="",style="solid", color="burlywood", weight=9]; 5193 -> 2557[label="",style="solid", color="burlywood", weight=3]; 5194[label="vyy5/Just vyy50",fontsize=10,color="white",style="solid",shape="box"];2517 -> 5194[label="",style="solid", color="burlywood", weight=9]; 5194 -> 2558[label="",style="solid", color="burlywood", weight=3]; 2518 -> 2459[label="",style="dashed", color="red", weight=0]; 2518[label="primCmpInt vyy600 vyy50",fontsize=16,color="magenta"];2518 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2519[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];2519 -> 2561[label="",style="solid", color="black", weight=3]; 2520[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];2520 -> 2562[label="",style="solid", color="black", weight=3]; 2521[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];2521 -> 2563[label="",style="solid", color="black", weight=3]; 2522[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];2522 -> 2564[label="",style="solid", color="black", weight=3]; 2523[label="primCmpDouble (Double vyy600 (Pos vyy6010)) (Double vyy50 vyy51)",fontsize=16,color="burlywood",shape="box"];5195[label="vyy51/Pos vyy510",fontsize=10,color="white",style="solid",shape="box"];2523 -> 5195[label="",style="solid", color="burlywood", weight=9]; 5195 -> 2565[label="",style="solid", color="burlywood", weight=3]; 5196[label="vyy51/Neg vyy510",fontsize=10,color="white",style="solid",shape="box"];2523 -> 5196[label="",style="solid", color="burlywood", weight=9]; 5196 -> 2566[label="",style="solid", color="burlywood", weight=3]; 2524[label="primCmpDouble (Double vyy600 (Neg vyy6010)) (Double vyy50 vyy51)",fontsize=16,color="burlywood",shape="box"];5197[label="vyy51/Pos vyy510",fontsize=10,color="white",style="solid",shape="box"];2524 -> 5197[label="",style="solid", color="burlywood", weight=9]; 5197 -> 2567[label="",style="solid", color="burlywood", weight=3]; 5198[label="vyy51/Neg vyy510",fontsize=10,color="white",style="solid",shape="box"];2524 -> 5198[label="",style="solid", color="burlywood", weight=9]; 5198 -> 2568[label="",style="solid", color="burlywood", weight=3]; 2525[label="primCmpNat vyy600 vyy50",fontsize=16,color="burlywood",shape="triangle"];5199[label="vyy600/Succ vyy6000",fontsize=10,color="white",style="solid",shape="box"];2525 -> 5199[label="",style="solid", color="burlywood", weight=9]; 5199 -> 2569[label="",style="solid", color="burlywood", weight=3]; 5200[label="vyy600/Zero",fontsize=10,color="white",style="solid",shape="box"];2525 -> 5200[label="",style="solid", color="burlywood", weight=9]; 5200 -> 2570[label="",style="solid", color="burlywood", weight=3]; 2526[label="primCmpInt (Pos (Succ vyy6000)) (Pos vyy50)",fontsize=16,color="black",shape="box"];2526 -> 2571[label="",style="solid", color="black", weight=3]; 2527[label="primCmpInt (Pos (Succ vyy6000)) (Neg vyy50)",fontsize=16,color="black",shape="box"];2527 -> 2572[label="",style="solid", color="black", weight=3]; 2528[label="primCmpInt (Pos Zero) (Pos vyy50)",fontsize=16,color="burlywood",shape="box"];5201[label="vyy50/Succ vyy500",fontsize=10,color="white",style="solid",shape="box"];2528 -> 5201[label="",style="solid", color="burlywood", weight=9]; 5201 -> 2573[label="",style="solid", color="burlywood", weight=3]; 5202[label="vyy50/Zero",fontsize=10,color="white",style="solid",shape="box"];2528 -> 5202[label="",style="solid", color="burlywood", weight=9]; 5202 -> 2574[label="",style="solid", color="burlywood", weight=3]; 2529[label="primCmpInt (Pos Zero) (Neg vyy50)",fontsize=16,color="burlywood",shape="box"];5203[label="vyy50/Succ vyy500",fontsize=10,color="white",style="solid",shape="box"];2529 -> 5203[label="",style="solid", color="burlywood", weight=9]; 5203 -> 2575[label="",style="solid", color="burlywood", weight=3]; 5204[label="vyy50/Zero",fontsize=10,color="white",style="solid",shape="box"];2529 -> 5204[label="",style="solid", color="burlywood", weight=9]; 5204 -> 2576[label="",style="solid", color="burlywood", weight=3]; 2530[label="primCmpInt (Neg (Succ vyy6000)) (Pos vyy50)",fontsize=16,color="black",shape="box"];2530 -> 2577[label="",style="solid", color="black", weight=3]; 2531[label="primCmpInt (Neg (Succ vyy6000)) (Neg vyy50)",fontsize=16,color="black",shape="box"];2531 -> 2578[label="",style="solid", color="black", weight=3]; 2532[label="primCmpInt (Neg Zero) (Pos vyy50)",fontsize=16,color="burlywood",shape="box"];5205[label="vyy50/Succ vyy500",fontsize=10,color="white",style="solid",shape="box"];2532 -> 5205[label="",style="solid", color="burlywood", weight=9]; 5205 -> 2579[label="",style="solid", color="burlywood", weight=3]; 5206[label="vyy50/Zero",fontsize=10,color="white",style="solid",shape="box"];2532 -> 5206[label="",style="solid", color="burlywood", weight=9]; 5206 -> 2580[label="",style="solid", color="burlywood", weight=3]; 2533[label="primCmpInt (Neg Zero) (Neg vyy50)",fontsize=16,color="burlywood",shape="box"];5207[label="vyy50/Succ vyy500",fontsize=10,color="white",style="solid",shape="box"];2533 -> 5207[label="",style="solid", color="burlywood", weight=9]; 5207 -> 2581[label="",style="solid", color="burlywood", weight=3]; 5208[label="vyy50/Zero",fontsize=10,color="white",style="solid",shape="box"];2533 -> 5208[label="",style="solid", color="burlywood", weight=9]; 5208 -> 2582[label="",style="solid", color="burlywood", weight=3]; 2534[label="compare2 (vyy600,vyy601) (vyy50,vyy51) ((vyy600,vyy601) == (vyy50,vyy51))",fontsize=16,color="black",shape="box"];2534 -> 2583[label="",style="solid", color="black", weight=3]; 2535[label="compare2 (Left vyy600) (Left vyy50) (Left vyy600 == Left vyy50)",fontsize=16,color="black",shape="box"];2535 -> 2584[label="",style="solid", color="black", weight=3]; 2536[label="compare2 (Left vyy600) (Right vyy50) (Left vyy600 == Right vyy50)",fontsize=16,color="black",shape="box"];2536 -> 2585[label="",style="solid", color="black", weight=3]; 2537[label="compare2 (Right vyy600) (Left vyy50) (Right vyy600 == Left vyy50)",fontsize=16,color="black",shape="box"];2537 -> 2586[label="",style="solid", color="black", weight=3]; 2538[label="compare2 (Right vyy600) (Right vyy50) (Right vyy600 == Right vyy50)",fontsize=16,color="black",shape="box"];2538 -> 2587[label="",style="solid", color="black", weight=3]; 2539[label="compare2 (vyy600,vyy601,vyy602) (vyy50,vyy51,vyy52) ((vyy600,vyy601,vyy602) == (vyy50,vyy51,vyy52))",fontsize=16,color="black",shape="box"];2539 -> 2588[label="",style="solid", color="black", weight=3]; 2540[label="primCmpFloat (Float vyy600 (Pos vyy6010)) (Float vyy50 vyy51)",fontsize=16,color="burlywood",shape="box"];5209[label="vyy51/Pos vyy510",fontsize=10,color="white",style="solid",shape="box"];2540 -> 5209[label="",style="solid", color="burlywood", weight=9]; 5209 -> 2589[label="",style="solid", color="burlywood", weight=3]; 5210[label="vyy51/Neg vyy510",fontsize=10,color="white",style="solid",shape="box"];2540 -> 5210[label="",style="solid", color="burlywood", weight=9]; 5210 -> 2590[label="",style="solid", color="burlywood", weight=3]; 2541[label="primCmpFloat (Float vyy600 (Neg vyy6010)) (Float vyy50 vyy51)",fontsize=16,color="burlywood",shape="box"];5211[label="vyy51/Pos vyy510",fontsize=10,color="white",style="solid",shape="box"];2541 -> 5211[label="",style="solid", color="burlywood", weight=9]; 5211 -> 2591[label="",style="solid", color="burlywood", weight=3]; 5212[label="vyy51/Neg vyy510",fontsize=10,color="white",style="solid",shape="box"];2541 -> 5212[label="",style="solid", color="burlywood", weight=9]; 5212 -> 2592[label="",style="solid", color="burlywood", weight=3]; 2543 -> 2423[label="",style="dashed", color="red", weight=0]; 2543[label="compare vyy601 vyy51",fontsize=16,color="magenta"];2543 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2542[label="primCompAux vyy600 vyy50 vyy173",fontsize=16,color="black",shape="triangle"];2542 -> 2595[label="",style="solid", color="black", weight=3]; 2544 -> 2417[label="",style="dashed", color="red", weight=0]; 2544[label="compare (vyy600 * vyy51) (vyy50 * vyy601)",fontsize=16,color="magenta"];2544 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2427[label="",style="dashed", color="red", weight=0]; 2545[label="compare (vyy600 * vyy51) (vyy50 * vyy601)",fontsize=16,color="magenta"];2545 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2546[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];2546 -> 2600[label="",style="solid", color="black", weight=3]; 2547[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];2547 -> 2601[label="",style="solid", color="black", weight=3]; 2548[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];2548 -> 2602[label="",style="solid", color="black", weight=3]; 2549[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];2549 -> 2603[label="",style="solid", color="black", weight=3]; 2550[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];2550 -> 2604[label="",style="solid", color="black", weight=3]; 2551[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];2551 -> 2605[label="",style="solid", color="black", weight=3]; 2552[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];2552 -> 2606[label="",style="solid", color="black", weight=3]; 2553[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];2553 -> 2607[label="",style="solid", color="black", weight=3]; 2554[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];2554 -> 2608[label="",style="solid", color="black", weight=3]; 2555[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];2555 -> 2609[label="",style="solid", color="black", weight=3]; 2556[label="compare2 Nothing (Just vyy50) (Nothing == Just vyy50)",fontsize=16,color="black",shape="box"];2556 -> 2610[label="",style="solid", color="black", weight=3]; 2557[label="compare2 (Just vyy600) Nothing (Just vyy600 == Nothing)",fontsize=16,color="black",shape="box"];2557 -> 2611[label="",style="solid", color="black", weight=3]; 2558[label="compare2 (Just vyy600) (Just vyy50) (Just vyy600 == Just vyy50)",fontsize=16,color="black",shape="box"];2558 -> 2612[label="",style="solid", color="black", weight=3]; 2559[label="vyy50",fontsize=16,color="green",shape="box"];2560[label="vyy600",fontsize=16,color="green",shape="box"];2561[label="compare2 False False True",fontsize=16,color="black",shape="box"];2561 -> 2613[label="",style="solid", color="black", weight=3]; 2562[label="compare2 False True False",fontsize=16,color="black",shape="box"];2562 -> 2614[label="",style="solid", color="black", weight=3]; 2563[label="compare2 True False False",fontsize=16,color="black",shape="box"];2563 -> 2615[label="",style="solid", color="black", weight=3]; 2564[label="compare2 True True True",fontsize=16,color="black",shape="box"];2564 -> 2616[label="",style="solid", color="black", weight=3]; 2565[label="primCmpDouble (Double vyy600 (Pos vyy6010)) (Double vyy50 (Pos vyy510))",fontsize=16,color="black",shape="box"];2565 -> 2617[label="",style="solid", color="black", weight=3]; 2566[label="primCmpDouble (Double vyy600 (Pos vyy6010)) (Double vyy50 (Neg vyy510))",fontsize=16,color="black",shape="box"];2566 -> 2618[label="",style="solid", color="black", weight=3]; 2567[label="primCmpDouble (Double vyy600 (Neg vyy6010)) (Double vyy50 (Pos vyy510))",fontsize=16,color="black",shape="box"];2567 -> 2619[label="",style="solid", color="black", weight=3]; 2568[label="primCmpDouble (Double vyy600 (Neg vyy6010)) (Double vyy50 (Neg vyy510))",fontsize=16,color="black",shape="box"];2568 -> 2620[label="",style="solid", color="black", weight=3]; 2569[label="primCmpNat (Succ vyy6000) vyy50",fontsize=16,color="burlywood",shape="box"];5213[label="vyy50/Succ vyy500",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5213[label="",style="solid", color="burlywood", weight=9]; 5213 -> 2621[label="",style="solid", color="burlywood", weight=3]; 5214[label="vyy50/Zero",fontsize=10,color="white",style="solid",shape="box"];2569 -> 5214[label="",style="solid", color="burlywood", weight=9]; 5214 -> 2622[label="",style="solid", color="burlywood", weight=3]; 2570[label="primCmpNat Zero vyy50",fontsize=16,color="burlywood",shape="box"];5215[label="vyy50/Succ vyy500",fontsize=10,color="white",style="solid",shape="box"];2570 -> 5215[label="",style="solid", color="burlywood", weight=9]; 5215 -> 2623[label="",style="solid", color="burlywood", weight=3]; 5216[label="vyy50/Zero",fontsize=10,color="white",style="solid",shape="box"];2570 -> 5216[label="",style="solid", color="burlywood", weight=9]; 5216 -> 2624[label="",style="solid", color="burlywood", weight=3]; 2571 -> 2525[label="",style="dashed", color="red", weight=0]; 2571[label="primCmpNat (Succ vyy6000) vyy50",fontsize=16,color="magenta"];2571 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2572[label="GT",fontsize=16,color="green",shape="box"];2573[label="primCmpInt (Pos Zero) (Pos (Succ vyy500))",fontsize=16,color="black",shape="box"];2573 -> 2627[label="",style="solid", color="black", weight=3]; 2574[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2574 -> 2628[label="",style="solid", color="black", weight=3]; 2575[label="primCmpInt (Pos Zero) (Neg (Succ vyy500))",fontsize=16,color="black",shape="box"];2575 -> 2629[label="",style="solid", color="black", weight=3]; 2576[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2576 -> 2630[label="",style="solid", color="black", weight=3]; 2577[label="LT",fontsize=16,color="green",shape="box"];2578 -> 2525[label="",style="dashed", color="red", weight=0]; 2578[label="primCmpNat vyy50 (Succ vyy6000)",fontsize=16,color="magenta"];2578 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2579[label="primCmpInt (Neg Zero) (Pos (Succ vyy500))",fontsize=16,color="black",shape="box"];2579 -> 2633[label="",style="solid", color="black", weight=3]; 2580[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2580 -> 2634[label="",style="solid", color="black", weight=3]; 2581[label="primCmpInt (Neg Zero) (Neg (Succ vyy500))",fontsize=16,color="black",shape="box"];2581 -> 2635[label="",style="solid", color="black", weight=3]; 2582[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2582 -> 2636[label="",style="solid", color="black", weight=3]; 2583 -> 3087[label="",style="dashed", color="red", weight=0]; 2583[label="compare2 (vyy600,vyy601) (vyy50,vyy51) (vyy600 == vyy50 && vyy601 == vyy51)",fontsize=16,color="magenta"];2583 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2583 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2583 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2583 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2583 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2643[label="",style="dashed", color="red", weight=0]; 2584[label="compare2 (Left vyy600) (Left vyy50) (vyy600 == vyy50)",fontsize=16,color="magenta"];2584 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2585[label="compare2 (Left vyy600) (Right vyy50) False",fontsize=16,color="black",shape="box"];2585 -> 2647[label="",style="solid", color="black", weight=3]; 2586[label="compare2 (Right vyy600) (Left vyy50) False",fontsize=16,color="black",shape="box"];2586 -> 2648[label="",style="solid", color="black", weight=3]; 2587 -> 2649[label="",style="dashed", color="red", weight=0]; 2587[label="compare2 (Right vyy600) (Right vyy50) (vyy600 == vyy50)",fontsize=16,color="magenta"];2587 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2588 -> 3134[label="",style="dashed", color="red", weight=0]; 2588[label="compare2 (vyy600,vyy601,vyy602) (vyy50,vyy51,vyy52) (vyy600 == vyy50 && vyy601 == vyy51 && vyy602 == vyy52)",fontsize=16,color="magenta"];2588 -> 3135[label="",style="dashed", color="magenta", weight=3]; 2588 -> 3136[label="",style="dashed", color="magenta", weight=3]; 2588 -> 3137[label="",style="dashed", color="magenta", weight=3]; 2588 -> 3138[label="",style="dashed", color="magenta", weight=3]; 2588 -> 3139[label="",style="dashed", color="magenta", weight=3]; 2588 -> 3140[label="",style="dashed", color="magenta", weight=3]; 2588 -> 3141[label="",style="dashed", color="magenta", weight=3]; 2589[label="primCmpFloat (Float vyy600 (Pos vyy6010)) (Float vyy50 (Pos vyy510))",fontsize=16,color="black",shape="box"];2589 -> 2661[label="",style="solid", color="black", weight=3]; 2590[label="primCmpFloat (Float vyy600 (Pos vyy6010)) (Float vyy50 (Neg vyy510))",fontsize=16,color="black",shape="box"];2590 -> 2662[label="",style="solid", color="black", weight=3]; 2591[label="primCmpFloat (Float vyy600 (Neg vyy6010)) (Float vyy50 (Pos vyy510))",fontsize=16,color="black",shape="box"];2591 -> 2663[label="",style="solid", color="black", weight=3]; 2592[label="primCmpFloat (Float vyy600 (Neg vyy6010)) (Float vyy50 (Neg vyy510))",fontsize=16,color="black",shape="box"];2592 -> 2664[label="",style="solid", color="black", weight=3]; 2593[label="vyy51",fontsize=16,color="green",shape="box"];2594[label="vyy601",fontsize=16,color="green",shape="box"];2595 -> 2665[label="",style="dashed", color="red", weight=0]; 2595[label="primCompAux0 vyy173 (compare vyy600 vyy50)",fontsize=16,color="magenta"];2595 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2596[label="vyy50 * vyy601",fontsize=16,color="black",shape="triangle"];2596 -> 2668[label="",style="solid", color="black", weight=3]; 2597 -> 2596[label="",style="dashed", color="red", weight=0]; 2597[label="vyy600 * vyy51",fontsize=16,color="magenta"];2597 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2598[label="vyy50 * vyy601",fontsize=16,color="burlywood",shape="triangle"];5217[label="vyy50/Integer vyy500",fontsize=10,color="white",style="solid",shape="box"];2598 -> 5217[label="",style="solid", color="burlywood", weight=9]; 5217 -> 2671[label="",style="solid", color="burlywood", weight=3]; 2599 -> 2598[label="",style="dashed", color="red", weight=0]; 2599[label="vyy600 * vyy51",fontsize=16,color="magenta"];2599 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2600[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];2600 -> 2674[label="",style="solid", color="black", weight=3]; 2601[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];2601 -> 2675[label="",style="solid", color="black", weight=3]; 2602[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];2602 -> 2676[label="",style="solid", color="black", weight=3]; 2603[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];2603 -> 2677[label="",style="solid", color="black", weight=3]; 2604[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];2604 -> 2678[label="",style="solid", color="black", weight=3]; 2605[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];2605 -> 2679[label="",style="solid", color="black", weight=3]; 2606[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];2606 -> 2680[label="",style="solid", color="black", weight=3]; 2607[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];2607 -> 2681[label="",style="solid", color="black", weight=3]; 2608[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];2608 -> 2682[label="",style="solid", color="black", weight=3]; 2609[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];2609 -> 2683[label="",style="solid", color="black", weight=3]; 2610[label="compare2 Nothing (Just vyy50) False",fontsize=16,color="black",shape="box"];2610 -> 2684[label="",style="solid", color="black", weight=3]; 2611[label="compare2 (Just vyy600) Nothing False",fontsize=16,color="black",shape="box"];2611 -> 2685[label="",style="solid", color="black", weight=3]; 2612 -> 2686[label="",style="dashed", color="red", weight=0]; 2612[label="compare2 (Just vyy600) (Just vyy50) (vyy600 == vyy50)",fontsize=16,color="magenta"];2612 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2613[label="EQ",fontsize=16,color="green",shape="box"];2614[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];2614 -> 2690[label="",style="solid", color="black", weight=3]; 2615[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];2615 -> 2691[label="",style="solid", color="black", weight=3]; 2616[label="EQ",fontsize=16,color="green",shape="box"];2617 -> 2417[label="",style="dashed", color="red", weight=0]; 2617[label="compare (vyy600 * Pos vyy510) (Pos vyy6010 * vyy50)",fontsize=16,color="magenta"];2617 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2417[label="",style="dashed", color="red", weight=0]; 2618[label="compare (vyy600 * Pos vyy510) (Neg vyy6010 * vyy50)",fontsize=16,color="magenta"];2618 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2417[label="",style="dashed", color="red", weight=0]; 2619[label="compare (vyy600 * Neg vyy510) (Pos vyy6010 * vyy50)",fontsize=16,color="magenta"];2619 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2417[label="",style="dashed", color="red", weight=0]; 2620[label="compare (vyy600 * Neg vyy510) (Neg vyy6010 * vyy50)",fontsize=16,color="magenta"];2620 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2621[label="primCmpNat (Succ vyy6000) (Succ vyy500)",fontsize=16,color="black",shape="box"];2621 -> 2700[label="",style="solid", color="black", weight=3]; 2622[label="primCmpNat (Succ vyy6000) Zero",fontsize=16,color="black",shape="box"];2622 -> 2701[label="",style="solid", color="black", weight=3]; 2623[label="primCmpNat Zero (Succ vyy500)",fontsize=16,color="black",shape="box"];2623 -> 2702[label="",style="solid", color="black", weight=3]; 2624[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2624 -> 2703[label="",style="solid", color="black", weight=3]; 2625[label="Succ vyy6000",fontsize=16,color="green",shape="box"];2626[label="vyy50",fontsize=16,color="green",shape="box"];2627 -> 2525[label="",style="dashed", color="red", weight=0]; 2627[label="primCmpNat Zero (Succ vyy500)",fontsize=16,color="magenta"];2627 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2628[label="EQ",fontsize=16,color="green",shape="box"];2629[label="GT",fontsize=16,color="green",shape="box"];2630[label="EQ",fontsize=16,color="green",shape="box"];2631[label="vyy50",fontsize=16,color="green",shape="box"];2632[label="Succ vyy6000",fontsize=16,color="green",shape="box"];2633[label="LT",fontsize=16,color="green",shape="box"];2634[label="EQ",fontsize=16,color="green",shape="box"];2635 -> 2525[label="",style="dashed", color="red", weight=0]; 2635[label="primCmpNat (Succ vyy500) Zero",fontsize=16,color="magenta"];2635 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2636[label="EQ",fontsize=16,color="green",shape="box"];3088[label="vyy51",fontsize=16,color="green",shape="box"];3089 -> 3166[label="",style="dashed", color="red", weight=0]; 3089[label="vyy600 == vyy50 && vyy601 == vyy51",fontsize=16,color="magenta"];3089 -> 3167[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3090[label="vyy600",fontsize=16,color="green",shape="box"];3091[label="vyy50",fontsize=16,color="green",shape="box"];3092[label="vyy601",fontsize=16,color="green",shape="box"];3087[label="compare2 (vyy232,vyy233) (vyy234,vyy235) vyy236",fontsize=16,color="burlywood",shape="triangle"];5218[label="vyy236/False",fontsize=10,color="white",style="solid",shape="box"];3087 -> 5218[label="",style="solid", color="burlywood", weight=9]; 5218 -> 3112[label="",style="solid", color="burlywood", weight=3]; 5219[label="vyy236/True",fontsize=10,color="white",style="solid",shape="box"];3087 -> 5219[label="",style="solid", color="burlywood", weight=9]; 5219 -> 3113[label="",style="solid", color="burlywood", weight=3]; 2644[label="vyy600 == vyy50",fontsize=16,color="blue",shape="box"];5220[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5220[label="",style="solid", color="blue", weight=9]; 5220 -> 2724[label="",style="solid", color="blue", weight=3]; 5221[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5221[label="",style="solid", color="blue", weight=9]; 5221 -> 2725[label="",style="solid", color="blue", weight=3]; 5222[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5222[label="",style="solid", color="blue", weight=9]; 5222 -> 2726[label="",style="solid", color="blue", weight=3]; 5223[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5223[label="",style="solid", color="blue", weight=9]; 5223 -> 2727[label="",style="solid", color="blue", weight=3]; 5224[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5224[label="",style="solid", color="blue", weight=9]; 5224 -> 2728[label="",style="solid", color="blue", weight=3]; 5225[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5225[label="",style="solid", color="blue", weight=9]; 5225 -> 2729[label="",style="solid", color="blue", weight=3]; 5226[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5226[label="",style="solid", color="blue", weight=9]; 5226 -> 2730[label="",style="solid", color="blue", weight=3]; 5227[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5227[label="",style="solid", color="blue", weight=9]; 5227 -> 2731[label="",style="solid", color="blue", weight=3]; 5228[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5228[label="",style="solid", color="blue", weight=9]; 5228 -> 2732[label="",style="solid", color="blue", weight=3]; 5229[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5229[label="",style="solid", color="blue", weight=9]; 5229 -> 2733[label="",style="solid", color="blue", weight=3]; 5230[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5230[label="",style="solid", color="blue", weight=9]; 5230 -> 2734[label="",style="solid", color="blue", weight=3]; 5231[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5231[label="",style="solid", color="blue", weight=9]; 5231 -> 2735[label="",style="solid", color="blue", weight=3]; 5232[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5232[label="",style="solid", color="blue", weight=9]; 5232 -> 2736[label="",style="solid", color="blue", weight=3]; 5233[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5233[label="",style="solid", color="blue", weight=9]; 5233 -> 2737[label="",style="solid", color="blue", weight=3]; 2645[label="vyy50",fontsize=16,color="green",shape="box"];2646[label="vyy600",fontsize=16,color="green",shape="box"];2643[label="compare2 (Left vyy189) (Left vyy190) vyy191",fontsize=16,color="burlywood",shape="triangle"];5234[label="vyy191/False",fontsize=10,color="white",style="solid",shape="box"];2643 -> 5234[label="",style="solid", color="burlywood", weight=9]; 5234 -> 2738[label="",style="solid", color="burlywood", weight=3]; 5235[label="vyy191/True",fontsize=10,color="white",style="solid",shape="box"];2643 -> 5235[label="",style="solid", color="burlywood", weight=9]; 5235 -> 2739[label="",style="solid", color="burlywood", weight=3]; 2647[label="compare1 (Left vyy600) (Right vyy50) (Left vyy600 <= Right vyy50)",fontsize=16,color="black",shape="box"];2647 -> 2740[label="",style="solid", color="black", weight=3]; 2648[label="compare1 (Right vyy600) (Left vyy50) (Right vyy600 <= Left vyy50)",fontsize=16,color="black",shape="box"];2648 -> 2741[label="",style="solid", color="black", weight=3]; 2650[label="vyy50",fontsize=16,color="green",shape="box"];2651[label="vyy600 == vyy50",fontsize=16,color="blue",shape="box"];5236[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5236[label="",style="solid", color="blue", weight=9]; 5236 -> 2742[label="",style="solid", color="blue", weight=3]; 5237[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5237[label="",style="solid", color="blue", weight=9]; 5237 -> 2743[label="",style="solid", color="blue", weight=3]; 5238[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5238[label="",style="solid", color="blue", weight=9]; 5238 -> 2744[label="",style="solid", color="blue", weight=3]; 5239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5239[label="",style="solid", color="blue", weight=9]; 5239 -> 2745[label="",style="solid", color="blue", weight=3]; 5240[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5240[label="",style="solid", color="blue", weight=9]; 5240 -> 2746[label="",style="solid", color="blue", weight=3]; 5241[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5241[label="",style="solid", color="blue", weight=9]; 5241 -> 2747[label="",style="solid", color="blue", weight=3]; 5242[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5242[label="",style="solid", color="blue", weight=9]; 5242 -> 2748[label="",style="solid", color="blue", weight=3]; 5243[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5243[label="",style="solid", color="blue", weight=9]; 5243 -> 2749[label="",style="solid", color="blue", weight=3]; 5244[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5244[label="",style="solid", color="blue", weight=9]; 5244 -> 2750[label="",style="solid", color="blue", weight=3]; 5245[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5245[label="",style="solid", color="blue", weight=9]; 5245 -> 2751[label="",style="solid", color="blue", weight=3]; 5246[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5246[label="",style="solid", color="blue", weight=9]; 5246 -> 2752[label="",style="solid", color="blue", weight=3]; 5247[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5247[label="",style="solid", color="blue", weight=9]; 5247 -> 2753[label="",style="solid", color="blue", weight=3]; 5248[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5248[label="",style="solid", color="blue", weight=9]; 5248 -> 2754[label="",style="solid", color="blue", weight=3]; 5249[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5249[label="",style="solid", color="blue", weight=9]; 5249 -> 2755[label="",style="solid", color="blue", weight=3]; 2652[label="vyy600",fontsize=16,color="green",shape="box"];2649[label="compare2 (Right vyy196) (Right vyy197) vyy198",fontsize=16,color="burlywood",shape="triangle"];5250[label="vyy198/False",fontsize=10,color="white",style="solid",shape="box"];2649 -> 5250[label="",style="solid", color="burlywood", weight=9]; 5250 -> 2756[label="",style="solid", color="burlywood", weight=3]; 5251[label="vyy198/True",fontsize=10,color="white",style="solid",shape="box"];2649 -> 5251[label="",style="solid", color="burlywood", weight=9]; 5251 -> 2757[label="",style="solid", color="burlywood", weight=3]; 3135[label="vyy52",fontsize=16,color="green",shape="box"];3136[label="vyy601",fontsize=16,color="green",shape="box"];3137[label="vyy50",fontsize=16,color="green",shape="box"];3138[label="vyy51",fontsize=16,color="green",shape="box"];3139[label="vyy602",fontsize=16,color="green",shape="box"];3140[label="vyy600",fontsize=16,color="green",shape="box"];3141 -> 3166[label="",style="dashed", color="red", weight=0]; 3141[label="vyy600 == vyy50 && vyy601 == vyy51 && vyy602 == vyy52",fontsize=16,color="magenta"];3141 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3134[label="compare2 (vyy207,vyy208,vyy209) (vyy210,vyy211,vyy212) vyy244",fontsize=16,color="burlywood",shape="triangle"];5252[label="vyy244/False",fontsize=10,color="white",style="solid",shape="box"];3134 -> 5252[label="",style="solid", color="burlywood", weight=9]; 5252 -> 3150[label="",style="solid", color="burlywood", weight=3]; 5253[label="vyy244/True",fontsize=10,color="white",style="solid",shape="box"];3134 -> 5253[label="",style="solid", color="burlywood", weight=9]; 5253 -> 3151[label="",style="solid", color="burlywood", weight=3]; 2661 -> 2417[label="",style="dashed", color="red", weight=0]; 2661[label="compare (vyy600 * Pos vyy510) (Pos vyy6010 * vyy50)",fontsize=16,color="magenta"];2661 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2417[label="",style="dashed", color="red", weight=0]; 2662[label="compare (vyy600 * Pos vyy510) (Neg vyy6010 * vyy50)",fontsize=16,color="magenta"];2662 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2417[label="",style="dashed", color="red", weight=0]; 2663[label="compare (vyy600 * Neg vyy510) (Pos vyy6010 * vyy50)",fontsize=16,color="magenta"];2663 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2417[label="",style="dashed", color="red", weight=0]; 2664[label="compare (vyy600 * Neg vyy510) (Neg vyy6010 * vyy50)",fontsize=16,color="magenta"];2664 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2666[label="vyy173",fontsize=16,color="green",shape="box"];2667[label="compare vyy600 vyy50",fontsize=16,color="blue",shape="box"];5254[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5254[label="",style="solid", color="blue", weight=9]; 5254 -> 2782[label="",style="solid", color="blue", weight=3]; 5255[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5255[label="",style="solid", color="blue", weight=9]; 5255 -> 2783[label="",style="solid", color="blue", weight=3]; 5256[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5256[label="",style="solid", color="blue", weight=9]; 5256 -> 2784[label="",style="solid", color="blue", weight=3]; 5257[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5257[label="",style="solid", color="blue", weight=9]; 5257 -> 2785[label="",style="solid", color="blue", weight=3]; 5258[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5258[label="",style="solid", color="blue", weight=9]; 5258 -> 2786[label="",style="solid", color="blue", weight=3]; 5259[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5259[label="",style="solid", color="blue", weight=9]; 5259 -> 2787[label="",style="solid", color="blue", weight=3]; 5260[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5260[label="",style="solid", color="blue", weight=9]; 5260 -> 2788[label="",style="solid", color="blue", weight=3]; 5261[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5261[label="",style="solid", color="blue", weight=9]; 5261 -> 2789[label="",style="solid", color="blue", weight=3]; 5262[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5262[label="",style="solid", color="blue", weight=9]; 5262 -> 2790[label="",style="solid", color="blue", weight=3]; 5263[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5263[label="",style="solid", color="blue", weight=9]; 5263 -> 2791[label="",style="solid", color="blue", weight=3]; 5264[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5264[label="",style="solid", color="blue", weight=9]; 5264 -> 2792[label="",style="solid", color="blue", weight=3]; 5265[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5265[label="",style="solid", color="blue", weight=9]; 5265 -> 2793[label="",style="solid", color="blue", weight=3]; 5266[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5266[label="",style="solid", color="blue", weight=9]; 5266 -> 2794[label="",style="solid", color="blue", weight=3]; 5267[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5267[label="",style="solid", color="blue", weight=9]; 5267 -> 2795[label="",style="solid", color="blue", weight=3]; 2665[label="primCompAux0 vyy217 vyy218",fontsize=16,color="burlywood",shape="triangle"];5268[label="vyy218/LT",fontsize=10,color="white",style="solid",shape="box"];2665 -> 5268[label="",style="solid", color="burlywood", weight=9]; 5268 -> 2796[label="",style="solid", color="burlywood", weight=3]; 5269[label="vyy218/EQ",fontsize=10,color="white",style="solid",shape="box"];2665 -> 5269[label="",style="solid", color="burlywood", weight=9]; 5269 -> 2797[label="",style="solid", color="burlywood", weight=3]; 5270[label="vyy218/GT",fontsize=10,color="white",style="solid",shape="box"];2665 -> 5270[label="",style="solid", color="burlywood", weight=9]; 5270 -> 2798[label="",style="solid", color="burlywood", weight=3]; 2668[label="primMulInt vyy50 vyy601",fontsize=16,color="burlywood",shape="triangle"];5271[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];2668 -> 5271[label="",style="solid", color="burlywood", weight=9]; 5271 -> 2799[label="",style="solid", color="burlywood", weight=3]; 5272[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];2668 -> 5272[label="",style="solid", color="burlywood", weight=9]; 5272 -> 2800[label="",style="solid", color="burlywood", weight=3]; 2669[label="vyy600",fontsize=16,color="green",shape="box"];2670[label="vyy51",fontsize=16,color="green",shape="box"];2671[label="Integer vyy500 * vyy601",fontsize=16,color="burlywood",shape="box"];5273[label="vyy601/Integer vyy6010",fontsize=10,color="white",style="solid",shape="box"];2671 -> 5273[label="",style="solid", color="burlywood", weight=9]; 5273 -> 2801[label="",style="solid", color="burlywood", weight=3]; 2672[label="vyy600",fontsize=16,color="green",shape="box"];2673[label="vyy51",fontsize=16,color="green",shape="box"];2674[label="EQ",fontsize=16,color="green",shape="box"];2675[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];2675 -> 2802[label="",style="solid", color="black", weight=3]; 2676[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];2676 -> 2803[label="",style="solid", color="black", weight=3]; 2677[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];2677 -> 2804[label="",style="solid", color="black", weight=3]; 2678[label="EQ",fontsize=16,color="green",shape="box"];2679[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];2679 -> 2805[label="",style="solid", color="black", weight=3]; 2680[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];2680 -> 2806[label="",style="solid", color="black", weight=3]; 2681[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];2681 -> 2807[label="",style="solid", color="black", weight=3]; 2682[label="EQ",fontsize=16,color="green",shape="box"];2683[label="EQ",fontsize=16,color="green",shape="box"];2684[label="compare1 Nothing (Just vyy50) (Nothing <= Just vyy50)",fontsize=16,color="black",shape="box"];2684 -> 2808[label="",style="solid", color="black", weight=3]; 2685[label="compare1 (Just vyy600) Nothing (Just vyy600 <= Nothing)",fontsize=16,color="black",shape="box"];2685 -> 2809[label="",style="solid", color="black", weight=3]; 2687[label="vyy600",fontsize=16,color="green",shape="box"];2688[label="vyy600 == vyy50",fontsize=16,color="blue",shape="box"];5274[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5274[label="",style="solid", color="blue", weight=9]; 5274 -> 2810[label="",style="solid", color="blue", weight=3]; 5275[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5275[label="",style="solid", color="blue", weight=9]; 5275 -> 2811[label="",style="solid", color="blue", weight=3]; 5276[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5276[label="",style="solid", color="blue", weight=9]; 5276 -> 2812[label="",style="solid", color="blue", weight=3]; 5277[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5277[label="",style="solid", color="blue", weight=9]; 5277 -> 2813[label="",style="solid", color="blue", weight=3]; 5278[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5278[label="",style="solid", color="blue", weight=9]; 5278 -> 2814[label="",style="solid", color="blue", weight=3]; 5279[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5279[label="",style="solid", color="blue", weight=9]; 5279 -> 2815[label="",style="solid", color="blue", weight=3]; 5280[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5280[label="",style="solid", color="blue", weight=9]; 5280 -> 2816[label="",style="solid", color="blue", weight=3]; 5281[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5281[label="",style="solid", color="blue", weight=9]; 5281 -> 2817[label="",style="solid", color="blue", weight=3]; 5282[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5282[label="",style="solid", color="blue", weight=9]; 5282 -> 2818[label="",style="solid", color="blue", weight=3]; 5283[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5283[label="",style="solid", color="blue", weight=9]; 5283 -> 2819[label="",style="solid", color="blue", weight=3]; 5284[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5284[label="",style="solid", color="blue", weight=9]; 5284 -> 2820[label="",style="solid", color="blue", weight=3]; 5285[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5285[label="",style="solid", color="blue", weight=9]; 5285 -> 2821[label="",style="solid", color="blue", weight=3]; 5286[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5286[label="",style="solid", color="blue", weight=9]; 5286 -> 2822[label="",style="solid", color="blue", weight=3]; 5287[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2688 -> 5287[label="",style="solid", color="blue", weight=9]; 5287 -> 2823[label="",style="solid", color="blue", weight=3]; 2689[label="vyy50",fontsize=16,color="green",shape="box"];2686[label="compare2 (Just vyy223) (Just vyy224) vyy225",fontsize=16,color="burlywood",shape="triangle"];5288[label="vyy225/False",fontsize=10,color="white",style="solid",shape="box"];2686 -> 5288[label="",style="solid", color="burlywood", weight=9]; 5288 -> 2824[label="",style="solid", color="burlywood", weight=3]; 5289[label="vyy225/True",fontsize=10,color="white",style="solid",shape="box"];2686 -> 5289[label="",style="solid", color="burlywood", weight=9]; 5289 -> 2825[label="",style="solid", color="burlywood", weight=3]; 2690[label="compare1 False True True",fontsize=16,color="black",shape="box"];2690 -> 2826[label="",style="solid", color="black", weight=3]; 2691[label="compare1 True False False",fontsize=16,color="black",shape="box"];2691 -> 2827[label="",style="solid", color="black", weight=3]; 2692 -> 2596[label="",style="dashed", color="red", weight=0]; 2692[label="Pos vyy6010 * vyy50",fontsize=16,color="magenta"];2692 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2596[label="",style="dashed", color="red", weight=0]; 2693[label="vyy600 * Pos vyy510",fontsize=16,color="magenta"];2693 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2596[label="",style="dashed", color="red", weight=0]; 2694[label="Neg vyy6010 * vyy50",fontsize=16,color="magenta"];2694 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2596[label="",style="dashed", color="red", weight=0]; 2695[label="vyy600 * Pos vyy510",fontsize=16,color="magenta"];2695 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2596[label="",style="dashed", color="red", weight=0]; 2696[label="Pos vyy6010 * vyy50",fontsize=16,color="magenta"];2696 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2596[label="",style="dashed", color="red", weight=0]; 2697[label="vyy600 * Neg vyy510",fontsize=16,color="magenta"];2697 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2596[label="",style="dashed", color="red", weight=0]; 2698[label="Neg vyy6010 * vyy50",fontsize=16,color="magenta"];2698 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2596[label="",style="dashed", color="red", weight=0]; 2699[label="vyy600 * Neg vyy510",fontsize=16,color="magenta"];2699 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2525[label="",style="dashed", color="red", weight=0]; 2700[label="primCmpNat vyy6000 vyy500",fontsize=16,color="magenta"];2700 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2701[label="GT",fontsize=16,color="green",shape="box"];2702[label="LT",fontsize=16,color="green",shape="box"];2703[label="EQ",fontsize=16,color="green",shape="box"];2704[label="Zero",fontsize=16,color="green",shape="box"];2705[label="Succ vyy500",fontsize=16,color="green",shape="box"];2706[label="Succ vyy500",fontsize=16,color="green",shape="box"];2707[label="Zero",fontsize=16,color="green",shape="box"];3167[label="vyy601 == vyy51",fontsize=16,color="blue",shape="box"];5290[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5290[label="",style="solid", color="blue", weight=9]; 5290 -> 3175[label="",style="solid", color="blue", weight=3]; 5291[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5291[label="",style="solid", color="blue", weight=9]; 5291 -> 3176[label="",style="solid", color="blue", weight=3]; 5292[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5292[label="",style="solid", color="blue", weight=9]; 5292 -> 3177[label="",style="solid", color="blue", weight=3]; 5293[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5293[label="",style="solid", color="blue", weight=9]; 5293 -> 3178[label="",style="solid", color="blue", weight=3]; 5294[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5294[label="",style="solid", color="blue", weight=9]; 5294 -> 3179[label="",style="solid", color="blue", weight=3]; 5295[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5295[label="",style="solid", color="blue", weight=9]; 5295 -> 3180[label="",style="solid", color="blue", weight=3]; 5296[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5296[label="",style="solid", color="blue", weight=9]; 5296 -> 3181[label="",style="solid", color="blue", weight=3]; 5297[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5297[label="",style="solid", color="blue", weight=9]; 5297 -> 3182[label="",style="solid", color="blue", weight=3]; 5298[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5298[label="",style="solid", color="blue", weight=9]; 5298 -> 3183[label="",style="solid", color="blue", weight=3]; 5299[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5299[label="",style="solid", color="blue", weight=9]; 5299 -> 3184[label="",style="solid", color="blue", weight=3]; 5300[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5300[label="",style="solid", color="blue", weight=9]; 5300 -> 3185[label="",style="solid", color="blue", weight=3]; 5301[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5301[label="",style="solid", color="blue", weight=9]; 5301 -> 3186[label="",style="solid", color="blue", weight=3]; 5302[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5302[label="",style="solid", color="blue", weight=9]; 5302 -> 3187[label="",style="solid", color="blue", weight=3]; 5303[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3167 -> 5303[label="",style="solid", color="blue", weight=9]; 5303 -> 3188[label="",style="solid", color="blue", weight=3]; 3168[label="vyy600 == vyy50",fontsize=16,color="blue",shape="box"];5304[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5304[label="",style="solid", color="blue", weight=9]; 5304 -> 3189[label="",style="solid", color="blue", weight=3]; 5305[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5305[label="",style="solid", color="blue", weight=9]; 5305 -> 3190[label="",style="solid", color="blue", weight=3]; 5306[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5306[label="",style="solid", color="blue", weight=9]; 5306 -> 3191[label="",style="solid", color="blue", weight=3]; 5307[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5307[label="",style="solid", color="blue", weight=9]; 5307 -> 3192[label="",style="solid", color="blue", weight=3]; 5308[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5308[label="",style="solid", color="blue", weight=9]; 5308 -> 3193[label="",style="solid", color="blue", weight=3]; 5309[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5309[label="",style="solid", color="blue", weight=9]; 5309 -> 3194[label="",style="solid", color="blue", weight=3]; 5310[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5310[label="",style="solid", color="blue", weight=9]; 5310 -> 3195[label="",style="solid", color="blue", weight=3]; 5311[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5311[label="",style="solid", color="blue", weight=9]; 5311 -> 3196[label="",style="solid", color="blue", weight=3]; 5312[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5312[label="",style="solid", color="blue", weight=9]; 5312 -> 3197[label="",style="solid", color="blue", weight=3]; 5313[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5313[label="",style="solid", color="blue", weight=9]; 5313 -> 3198[label="",style="solid", color="blue", weight=3]; 5314[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5314[label="",style="solid", color="blue", weight=9]; 5314 -> 3199[label="",style="solid", color="blue", weight=3]; 5315[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5315[label="",style="solid", color="blue", weight=9]; 5315 -> 3200[label="",style="solid", color="blue", weight=3]; 5316[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5316[label="",style="solid", color="blue", weight=9]; 5316 -> 3201[label="",style="solid", color="blue", weight=3]; 5317[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3168 -> 5317[label="",style="solid", color="blue", weight=9]; 5317 -> 3202[label="",style="solid", color="blue", weight=3]; 3166[label="vyy249 && vyy250",fontsize=16,color="burlywood",shape="triangle"];5318[label="vyy249/False",fontsize=10,color="white",style="solid",shape="box"];3166 -> 5318[label="",style="solid", color="burlywood", weight=9]; 5318 -> 3203[label="",style="solid", color="burlywood", weight=3]; 5319[label="vyy249/True",fontsize=10,color="white",style="solid",shape="box"];3166 -> 5319[label="",style="solid", color="burlywood", weight=9]; 5319 -> 3204[label="",style="solid", color="burlywood", weight=3]; 3112[label="compare2 (vyy232,vyy233) (vyy234,vyy235) False",fontsize=16,color="black",shape="box"];3112 -> 3205[label="",style="solid", color="black", weight=3]; 3113[label="compare2 (vyy232,vyy233) (vyy234,vyy235) True",fontsize=16,color="black",shape="box"];3113 -> 3206[label="",style="solid", color="black", weight=3]; 2724 -> 2708[label="",style="dashed", color="red", weight=0]; 2724[label="vyy600 == vyy50",fontsize=16,color="magenta"];2724 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2709[label="",style="dashed", color="red", weight=0]; 2725[label="vyy600 == vyy50",fontsize=16,color="magenta"];2725 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2710[label="",style="dashed", color="red", weight=0]; 2726[label="vyy600 == vyy50",fontsize=16,color="magenta"];2726 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2711[label="",style="dashed", color="red", weight=0]; 2727[label="vyy600 == vyy50",fontsize=16,color="magenta"];2727 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2712[label="",style="dashed", color="red", weight=0]; 2728[label="vyy600 == vyy50",fontsize=16,color="magenta"];2728 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2713[label="",style="dashed", color="red", weight=0]; 2729[label="vyy600 == vyy50",fontsize=16,color="magenta"];2729 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2714[label="",style="dashed", color="red", weight=0]; 2730[label="vyy600 == vyy50",fontsize=16,color="magenta"];2730 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2715[label="",style="dashed", color="red", weight=0]; 2731[label="vyy600 == vyy50",fontsize=16,color="magenta"];2731 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2716[label="",style="dashed", color="red", weight=0]; 2732[label="vyy600 == vyy50",fontsize=16,color="magenta"];2732 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2717[label="",style="dashed", color="red", weight=0]; 2733[label="vyy600 == vyy50",fontsize=16,color="magenta"];2733 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2718[label="",style="dashed", color="red", weight=0]; 2734[label="vyy600 == vyy50",fontsize=16,color="magenta"];2734 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2719[label="",style="dashed", color="red", weight=0]; 2735[label="vyy600 == vyy50",fontsize=16,color="magenta"];2735 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2720[label="",style="dashed", color="red", weight=0]; 2736[label="vyy600 == vyy50",fontsize=16,color="magenta"];2736 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2721[label="",style="dashed", color="red", weight=0]; 2737[label="vyy600 == vyy50",fontsize=16,color="magenta"];2737 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2738[label="compare2 (Left vyy189) (Left vyy190) False",fontsize=16,color="black",shape="box"];2738 -> 2896[label="",style="solid", color="black", weight=3]; 2739[label="compare2 (Left vyy189) (Left vyy190) True",fontsize=16,color="black",shape="box"];2739 -> 2897[label="",style="solid", color="black", weight=3]; 2740[label="compare1 (Left vyy600) (Right vyy50) True",fontsize=16,color="black",shape="box"];2740 -> 2898[label="",style="solid", color="black", weight=3]; 2741[label="compare1 (Right vyy600) (Left vyy50) False",fontsize=16,color="black",shape="box"];2741 -> 2899[label="",style="solid", color="black", weight=3]; 2742 -> 2708[label="",style="dashed", color="red", weight=0]; 2742[label="vyy600 == vyy50",fontsize=16,color="magenta"];2742 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2709[label="",style="dashed", color="red", weight=0]; 2743[label="vyy600 == vyy50",fontsize=16,color="magenta"];2743 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2710[label="",style="dashed", color="red", weight=0]; 2744[label="vyy600 == vyy50",fontsize=16,color="magenta"];2744 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2711[label="",style="dashed", color="red", weight=0]; 2745[label="vyy600 == vyy50",fontsize=16,color="magenta"];2745 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2712[label="",style="dashed", color="red", weight=0]; 2746[label="vyy600 == vyy50",fontsize=16,color="magenta"];2746 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2713[label="",style="dashed", color="red", weight=0]; 2747[label="vyy600 == vyy50",fontsize=16,color="magenta"];2747 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2714[label="",style="dashed", color="red", weight=0]; 2748[label="vyy600 == vyy50",fontsize=16,color="magenta"];2748 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2715[label="",style="dashed", color="red", weight=0]; 2749[label="vyy600 == vyy50",fontsize=16,color="magenta"];2749 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2716[label="",style="dashed", color="red", weight=0]; 2750[label="vyy600 == vyy50",fontsize=16,color="magenta"];2750 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2717[label="",style="dashed", color="red", weight=0]; 2751[label="vyy600 == vyy50",fontsize=16,color="magenta"];2751 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2718[label="",style="dashed", color="red", weight=0]; 2752[label="vyy600 == vyy50",fontsize=16,color="magenta"];2752 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2719[label="",style="dashed", color="red", weight=0]; 2753[label="vyy600 == vyy50",fontsize=16,color="magenta"];2753 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2720[label="",style="dashed", color="red", weight=0]; 2754[label="vyy600 == vyy50",fontsize=16,color="magenta"];2754 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2721[label="",style="dashed", color="red", weight=0]; 2755[label="vyy600 == vyy50",fontsize=16,color="magenta"];2755 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2756[label="compare2 (Right vyy196) (Right vyy197) False",fontsize=16,color="black",shape="box"];2756 -> 2928[label="",style="solid", color="black", weight=3]; 2757[label="compare2 (Right vyy196) (Right vyy197) True",fontsize=16,color="black",shape="box"];2757 -> 2929[label="",style="solid", color="black", weight=3]; 3169 -> 3166[label="",style="dashed", color="red", weight=0]; 3169[label="vyy601 == vyy51 && vyy602 == vyy52",fontsize=16,color="magenta"];3169 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3169 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3170[label="vyy600 == vyy50",fontsize=16,color="blue",shape="box"];5320[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5320[label="",style="solid", color="blue", weight=9]; 5320 -> 3209[label="",style="solid", color="blue", weight=3]; 5321[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5321[label="",style="solid", color="blue", weight=9]; 5321 -> 3210[label="",style="solid", color="blue", weight=3]; 5322[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5322[label="",style="solid", color="blue", weight=9]; 5322 -> 3211[label="",style="solid", color="blue", weight=3]; 5323[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5323[label="",style="solid", color="blue", weight=9]; 5323 -> 3212[label="",style="solid", color="blue", weight=3]; 5324[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5324[label="",style="solid", color="blue", weight=9]; 5324 -> 3213[label="",style="solid", color="blue", weight=3]; 5325[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5325[label="",style="solid", color="blue", weight=9]; 5325 -> 3214[label="",style="solid", color="blue", weight=3]; 5326[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5326[label="",style="solid", color="blue", weight=9]; 5326 -> 3215[label="",style="solid", color="blue", weight=3]; 5327[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5327[label="",style="solid", color="blue", weight=9]; 5327 -> 3216[label="",style="solid", color="blue", weight=3]; 5328[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5328[label="",style="solid", color="blue", weight=9]; 5328 -> 3217[label="",style="solid", color="blue", weight=3]; 5329[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5329[label="",style="solid", color="blue", weight=9]; 5329 -> 3218[label="",style="solid", color="blue", weight=3]; 5330[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5330[label="",style="solid", color="blue", weight=9]; 5330 -> 3219[label="",style="solid", color="blue", weight=3]; 5331[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5331[label="",style="solid", color="blue", weight=9]; 5331 -> 3220[label="",style="solid", color="blue", weight=3]; 5332[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5332[label="",style="solid", color="blue", weight=9]; 5332 -> 3221[label="",style="solid", color="blue", weight=3]; 5333[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 5333[label="",style="solid", color="blue", weight=9]; 5333 -> 3222[label="",style="solid", color="blue", weight=3]; 3150[label="compare2 (vyy207,vyy208,vyy209) (vyy210,vyy211,vyy212) False",fontsize=16,color="black",shape="box"];3150 -> 3223[label="",style="solid", color="black", weight=3]; 3151[label="compare2 (vyy207,vyy208,vyy209) (vyy210,vyy211,vyy212) True",fontsize=16,color="black",shape="box"];3151 -> 3224[label="",style="solid", color="black", weight=3]; 2774 -> 2596[label="",style="dashed", color="red", weight=0]; 2774[label="Pos vyy6010 * vyy50",fontsize=16,color="magenta"];2774 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2596[label="",style="dashed", color="red", weight=0]; 2775[label="vyy600 * Pos vyy510",fontsize=16,color="magenta"];2775 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2596[label="",style="dashed", color="red", weight=0]; 2776[label="Neg vyy6010 * vyy50",fontsize=16,color="magenta"];2776 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2596[label="",style="dashed", color="red", weight=0]; 2777[label="vyy600 * Pos vyy510",fontsize=16,color="magenta"];2777 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2596[label="",style="dashed", color="red", weight=0]; 2778[label="Pos vyy6010 * vyy50",fontsize=16,color="magenta"];2778 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2596[label="",style="dashed", color="red", weight=0]; 2779[label="vyy600 * Neg vyy510",fontsize=16,color="magenta"];2779 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2596[label="",style="dashed", color="red", weight=0]; 2780[label="Neg vyy6010 * vyy50",fontsize=16,color="magenta"];2780 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2596[label="",style="dashed", color="red", weight=0]; 2781[label="vyy600 * Neg vyy510",fontsize=16,color="magenta"];2781 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2414[label="",style="dashed", color="red", weight=0]; 2782[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2782 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2415[label="",style="dashed", color="red", weight=0]; 2783[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2783 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2416[label="",style="dashed", color="red", weight=0]; 2784[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2784 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2417[label="",style="dashed", color="red", weight=0]; 2785[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2785 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2418[label="",style="dashed", color="red", weight=0]; 2786[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2786 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2419[label="",style="dashed", color="red", weight=0]; 2787[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2787 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2420[label="",style="dashed", color="red", weight=0]; 2788[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2788 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2421[label="",style="dashed", color="red", weight=0]; 2789[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2789 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2422[label="",style="dashed", color="red", weight=0]; 2790[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2790 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2423[label="",style="dashed", color="red", weight=0]; 2791[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2791 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2424[label="",style="dashed", color="red", weight=0]; 2792[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2792 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2425[label="",style="dashed", color="red", weight=0]; 2793[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2793 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2794 -> 2426[label="",style="dashed", color="red", weight=0]; 2794[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2794 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2794 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2795 -> 2427[label="",style="dashed", color="red", weight=0]; 2795[label="compare vyy600 vyy50",fontsize=16,color="magenta"];2795 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2795 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2796[label="primCompAux0 vyy217 LT",fontsize=16,color="black",shape="box"];2796 -> 3004[label="",style="solid", color="black", weight=3]; 2797[label="primCompAux0 vyy217 EQ",fontsize=16,color="black",shape="box"];2797 -> 3005[label="",style="solid", color="black", weight=3]; 2798[label="primCompAux0 vyy217 GT",fontsize=16,color="black",shape="box"];2798 -> 3006[label="",style="solid", color="black", weight=3]; 2799[label="primMulInt (Pos vyy500) vyy601",fontsize=16,color="burlywood",shape="box"];5334[label="vyy601/Pos vyy6010",fontsize=10,color="white",style="solid",shape="box"];2799 -> 5334[label="",style="solid", color="burlywood", weight=9]; 5334 -> 3007[label="",style="solid", color="burlywood", weight=3]; 5335[label="vyy601/Neg vyy6010",fontsize=10,color="white",style="solid",shape="box"];2799 -> 5335[label="",style="solid", color="burlywood", weight=9]; 5335 -> 3008[label="",style="solid", color="burlywood", weight=3]; 2800[label="primMulInt (Neg vyy500) vyy601",fontsize=16,color="burlywood",shape="box"];5336[label="vyy601/Pos vyy6010",fontsize=10,color="white",style="solid",shape="box"];2800 -> 5336[label="",style="solid", color="burlywood", weight=9]; 5336 -> 3009[label="",style="solid", color="burlywood", weight=3]; 5337[label="vyy601/Neg vyy6010",fontsize=10,color="white",style="solid",shape="box"];2800 -> 5337[label="",style="solid", color="burlywood", weight=9]; 5337 -> 3010[label="",style="solid", color="burlywood", weight=3]; 2801[label="Integer vyy500 * Integer vyy6010",fontsize=16,color="black",shape="box"];2801 -> 3011[label="",style="solid", color="black", weight=3]; 2802[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];2802 -> 3012[label="",style="solid", color="black", weight=3]; 2803[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];2803 -> 3013[label="",style="solid", color="black", weight=3]; 2804[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];2804 -> 3014[label="",style="solid", color="black", weight=3]; 2805[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];2805 -> 3015[label="",style="solid", color="black", weight=3]; 2806[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];2806 -> 3016[label="",style="solid", color="black", weight=3]; 2807[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];2807 -> 3017[label="",style="solid", color="black", weight=3]; 2808[label="compare1 Nothing (Just vyy50) True",fontsize=16,color="black",shape="box"];2808 -> 3018[label="",style="solid", color="black", weight=3]; 2809[label="compare1 (Just vyy600) Nothing False",fontsize=16,color="black",shape="box"];2809 -> 3019[label="",style="solid", color="black", weight=3]; 2810 -> 2708[label="",style="dashed", color="red", weight=0]; 2810[label="vyy600 == vyy50",fontsize=16,color="magenta"];2810 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2810 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2811 -> 2709[label="",style="dashed", color="red", weight=0]; 2811[label="vyy600 == vyy50",fontsize=16,color="magenta"];2811 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2811 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2812 -> 2710[label="",style="dashed", color="red", weight=0]; 2812[label="vyy600 == vyy50",fontsize=16,color="magenta"];2812 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2812 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2813 -> 2711[label="",style="dashed", color="red", weight=0]; 2813[label="vyy600 == vyy50",fontsize=16,color="magenta"];2813 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2813 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2814 -> 2712[label="",style="dashed", color="red", weight=0]; 2814[label="vyy600 == vyy50",fontsize=16,color="magenta"];2814 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2814 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2815 -> 2713[label="",style="dashed", color="red", weight=0]; 2815[label="vyy600 == vyy50",fontsize=16,color="magenta"];2815 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2815 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2816 -> 2714[label="",style="dashed", color="red", weight=0]; 2816[label="vyy600 == vyy50",fontsize=16,color="magenta"];2816 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2816 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2715[label="",style="dashed", color="red", weight=0]; 2817[label="vyy600 == vyy50",fontsize=16,color="magenta"];2817 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2817 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2716[label="",style="dashed", color="red", weight=0]; 2818[label="vyy600 == vyy50",fontsize=16,color="magenta"];2818 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2818 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2717[label="",style="dashed", color="red", weight=0]; 2819[label="vyy600 == vyy50",fontsize=16,color="magenta"];2819 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2819 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2718[label="",style="dashed", color="red", weight=0]; 2820[label="vyy600 == vyy50",fontsize=16,color="magenta"];2820 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2820 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2719[label="",style="dashed", color="red", weight=0]; 2821[label="vyy600 == vyy50",fontsize=16,color="magenta"];2821 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2821 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2720[label="",style="dashed", color="red", weight=0]; 2822[label="vyy600 == vyy50",fontsize=16,color="magenta"];2822 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2822 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2721[label="",style="dashed", color="red", weight=0]; 2823[label="vyy600 == vyy50",fontsize=16,color="magenta"];2823 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2823 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2824[label="compare2 (Just vyy223) (Just vyy224) False",fontsize=16,color="black",shape="box"];2824 -> 3048[label="",style="solid", color="black", weight=3]; 2825[label="compare2 (Just vyy223) (Just vyy224) True",fontsize=16,color="black",shape="box"];2825 -> 3049[label="",style="solid", color="black", weight=3]; 2826[label="LT",fontsize=16,color="green",shape="box"];2827[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];2827 -> 3050[label="",style="solid", color="black", weight=3]; 2828[label="Pos vyy6010",fontsize=16,color="green",shape="box"];2829[label="vyy50",fontsize=16,color="green",shape="box"];2830[label="vyy600",fontsize=16,color="green",shape="box"];2831[label="Pos vyy510",fontsize=16,color="green",shape="box"];2832[label="Neg vyy6010",fontsize=16,color="green",shape="box"];2833[label="vyy50",fontsize=16,color="green",shape="box"];2834[label="vyy600",fontsize=16,color="green",shape="box"];2835[label="Pos vyy510",fontsize=16,color="green",shape="box"];2836[label="Pos vyy6010",fontsize=16,color="green",shape="box"];2837[label="vyy50",fontsize=16,color="green",shape="box"];2838[label="vyy600",fontsize=16,color="green",shape="box"];2839[label="Neg vyy510",fontsize=16,color="green",shape="box"];2840[label="Neg vyy6010",fontsize=16,color="green",shape="box"];2841[label="vyy50",fontsize=16,color="green",shape="box"];2842[label="vyy600",fontsize=16,color="green",shape="box"];2843[label="Neg vyy510",fontsize=16,color="green",shape="box"];2844[label="vyy6000",fontsize=16,color="green",shape="box"];2845[label="vyy500",fontsize=16,color="green",shape="box"];3175 -> 2708[label="",style="dashed", color="red", weight=0]; 3175[label="vyy601 == vyy51",fontsize=16,color="magenta"];3175 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3175 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3176 -> 2709[label="",style="dashed", color="red", weight=0]; 3176[label="vyy601 == vyy51",fontsize=16,color="magenta"];3176 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3176 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3177 -> 2710[label="",style="dashed", color="red", weight=0]; 3177[label="vyy601 == vyy51",fontsize=16,color="magenta"];3177 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3177 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3178 -> 2711[label="",style="dashed", color="red", weight=0]; 3178[label="vyy601 == vyy51",fontsize=16,color="magenta"];3178 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3178 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3179 -> 2712[label="",style="dashed", color="red", weight=0]; 3179[label="vyy601 == vyy51",fontsize=16,color="magenta"];3179 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3179 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3180 -> 2713[label="",style="dashed", color="red", weight=0]; 3180[label="vyy601 == vyy51",fontsize=16,color="magenta"];3180 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3181 -> 2714[label="",style="dashed", color="red", weight=0]; 3181[label="vyy601 == vyy51",fontsize=16,color="magenta"];3181 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3181 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3182 -> 2715[label="",style="dashed", color="red", weight=0]; 3182[label="vyy601 == vyy51",fontsize=16,color="magenta"];3182 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3182 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3183 -> 2716[label="",style="dashed", color="red", weight=0]; 3183[label="vyy601 == vyy51",fontsize=16,color="magenta"];3183 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3184 -> 2717[label="",style="dashed", color="red", weight=0]; 3184[label="vyy601 == vyy51",fontsize=16,color="magenta"];3184 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3184 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3185 -> 2718[label="",style="dashed", color="red", weight=0]; 3185[label="vyy601 == vyy51",fontsize=16,color="magenta"];3185 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3185 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3186 -> 2719[label="",style="dashed", color="red", weight=0]; 3186[label="vyy601 == vyy51",fontsize=16,color="magenta"];3186 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3186 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3187 -> 2720[label="",style="dashed", color="red", weight=0]; 3187[label="vyy601 == vyy51",fontsize=16,color="magenta"];3187 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3187 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3188 -> 2721[label="",style="dashed", color="red", weight=0]; 3188[label="vyy601 == vyy51",fontsize=16,color="magenta"];3188 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3188 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3189 -> 2708[label="",style="dashed", color="red", weight=0]; 3189[label="vyy600 == vyy50",fontsize=16,color="magenta"];3190 -> 2709[label="",style="dashed", color="red", weight=0]; 3190[label="vyy600 == vyy50",fontsize=16,color="magenta"];3191 -> 2710[label="",style="dashed", color="red", weight=0]; 3191[label="vyy600 == vyy50",fontsize=16,color="magenta"];3192 -> 2711[label="",style="dashed", color="red", weight=0]; 3192[label="vyy600 == vyy50",fontsize=16,color="magenta"];3193 -> 2712[label="",style="dashed", color="red", weight=0]; 3193[label="vyy600 == vyy50",fontsize=16,color="magenta"];3194 -> 2713[label="",style="dashed", color="red", weight=0]; 3194[label="vyy600 == vyy50",fontsize=16,color="magenta"];3195 -> 2714[label="",style="dashed", color="red", weight=0]; 3195[label="vyy600 == vyy50",fontsize=16,color="magenta"];3196 -> 2715[label="",style="dashed", color="red", weight=0]; 3196[label="vyy600 == vyy50",fontsize=16,color="magenta"];3197 -> 2716[label="",style="dashed", color="red", weight=0]; 3197[label="vyy600 == vyy50",fontsize=16,color="magenta"];3198 -> 2717[label="",style="dashed", color="red", weight=0]; 3198[label="vyy600 == vyy50",fontsize=16,color="magenta"];3199 -> 2718[label="",style="dashed", color="red", weight=0]; 3199[label="vyy600 == vyy50",fontsize=16,color="magenta"];3200 -> 2719[label="",style="dashed", color="red", weight=0]; 3200[label="vyy600 == vyy50",fontsize=16,color="magenta"];3201 -> 2720[label="",style="dashed", color="red", weight=0]; 3201[label="vyy600 == vyy50",fontsize=16,color="magenta"];3202 -> 2721[label="",style="dashed", color="red", weight=0]; 3202[label="vyy600 == vyy50",fontsize=16,color="magenta"];3203[label="False && vyy250",fontsize=16,color="black",shape="box"];3203 -> 3271[label="",style="solid", color="black", weight=3]; 3204[label="True && vyy250",fontsize=16,color="black",shape="box"];3204 -> 3272[label="",style="solid", color="black", weight=3]; 3205[label="compare1 (vyy232,vyy233) (vyy234,vyy235) ((vyy232,vyy233) <= (vyy234,vyy235))",fontsize=16,color="black",shape="box"];3205 -> 3273[label="",style="solid", color="black", weight=3]; 3206[label="EQ",fontsize=16,color="green",shape="box"];2868[label="vyy50",fontsize=16,color="green",shape="box"];2869[label="vyy600",fontsize=16,color="green",shape="box"];2708[label="vyy600 == vyy50",fontsize=16,color="black",shape="triangle"];2708 -> 2846[label="",style="solid", color="black", weight=3]; 2870[label="vyy50",fontsize=16,color="green",shape="box"];2871[label="vyy600",fontsize=16,color="green",shape="box"];2709[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5338[label="vyy600/Left vyy6000",fontsize=10,color="white",style="solid",shape="box"];2709 -> 5338[label="",style="solid", color="burlywood", weight=9]; 5338 -> 2847[label="",style="solid", color="burlywood", weight=3]; 5339[label="vyy600/Right vyy6000",fontsize=10,color="white",style="solid",shape="box"];2709 -> 5339[label="",style="solid", color="burlywood", weight=9]; 5339 -> 2848[label="",style="solid", color="burlywood", weight=3]; 2872[label="vyy50",fontsize=16,color="green",shape="box"];2873[label="vyy600",fontsize=16,color="green",shape="box"];2710[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5340[label="vyy600/vyy6000 : vyy6001",fontsize=10,color="white",style="solid",shape="box"];2710 -> 5340[label="",style="solid", color="burlywood", weight=9]; 5340 -> 2849[label="",style="solid", color="burlywood", weight=3]; 5341[label="vyy600/[]",fontsize=10,color="white",style="solid",shape="box"];2710 -> 5341[label="",style="solid", color="burlywood", weight=9]; 5341 -> 2850[label="",style="solid", color="burlywood", weight=3]; 2874[label="vyy50",fontsize=16,color="green",shape="box"];2875[label="vyy600",fontsize=16,color="green",shape="box"];2711[label="vyy600 == vyy50",fontsize=16,color="black",shape="triangle"];2711 -> 2851[label="",style="solid", color="black", weight=3]; 2876[label="vyy50",fontsize=16,color="green",shape="box"];2877[label="vyy600",fontsize=16,color="green",shape="box"];2712[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5342[label="vyy600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2712 -> 5342[label="",style="solid", color="burlywood", weight=9]; 5342 -> 2852[label="",style="solid", color="burlywood", weight=3]; 5343[label="vyy600/Just vyy6000",fontsize=10,color="white",style="solid",shape="box"];2712 -> 5343[label="",style="solid", color="burlywood", weight=9]; 5343 -> 2853[label="",style="solid", color="burlywood", weight=3]; 2878[label="vyy50",fontsize=16,color="green",shape="box"];2879[label="vyy600",fontsize=16,color="green",shape="box"];2713[label="vyy600 == vyy50",fontsize=16,color="black",shape="triangle"];2713 -> 2854[label="",style="solid", color="black", weight=3]; 2880[label="vyy50",fontsize=16,color="green",shape="box"];2881[label="vyy600",fontsize=16,color="green",shape="box"];2714[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5344[label="vyy600/vyy6000 :% vyy6001",fontsize=10,color="white",style="solid",shape="box"];2714 -> 5344[label="",style="solid", color="burlywood", weight=9]; 5344 -> 2855[label="",style="solid", color="burlywood", weight=3]; 2882[label="vyy50",fontsize=16,color="green",shape="box"];2883[label="vyy600",fontsize=16,color="green",shape="box"];2715[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5345[label="vyy600/LT",fontsize=10,color="white",style="solid",shape="box"];2715 -> 5345[label="",style="solid", color="burlywood", weight=9]; 5345 -> 2856[label="",style="solid", color="burlywood", weight=3]; 5346[label="vyy600/EQ",fontsize=10,color="white",style="solid",shape="box"];2715 -> 5346[label="",style="solid", color="burlywood", weight=9]; 5346 -> 2857[label="",style="solid", color="burlywood", weight=3]; 5347[label="vyy600/GT",fontsize=10,color="white",style="solid",shape="box"];2715 -> 5347[label="",style="solid", color="burlywood", weight=9]; 5347 -> 2858[label="",style="solid", color="burlywood", weight=3]; 2884[label="vyy50",fontsize=16,color="green",shape="box"];2885[label="vyy600",fontsize=16,color="green",shape="box"];2716[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5348[label="vyy600/(vyy6000,vyy6001)",fontsize=10,color="white",style="solid",shape="box"];2716 -> 5348[label="",style="solid", color="burlywood", weight=9]; 5348 -> 2859[label="",style="solid", color="burlywood", weight=3]; 2886[label="vyy50",fontsize=16,color="green",shape="box"];2887[label="vyy600",fontsize=16,color="green",shape="box"];2717[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5349[label="vyy600/(vyy6000,vyy6001,vyy6002)",fontsize=10,color="white",style="solid",shape="box"];2717 -> 5349[label="",style="solid", color="burlywood", weight=9]; 5349 -> 2860[label="",style="solid", color="burlywood", weight=3]; 2888[label="vyy50",fontsize=16,color="green",shape="box"];2889[label="vyy600",fontsize=16,color="green",shape="box"];2718[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5350[label="vyy600/False",fontsize=10,color="white",style="solid",shape="box"];2718 -> 5350[label="",style="solid", color="burlywood", weight=9]; 5350 -> 2861[label="",style="solid", color="burlywood", weight=3]; 5351[label="vyy600/True",fontsize=10,color="white",style="solid",shape="box"];2718 -> 5351[label="",style="solid", color="burlywood", weight=9]; 5351 -> 2862[label="",style="solid", color="burlywood", weight=3]; 2890[label="vyy50",fontsize=16,color="green",shape="box"];2891[label="vyy600",fontsize=16,color="green",shape="box"];2719[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5352[label="vyy600/()",fontsize=10,color="white",style="solid",shape="box"];2719 -> 5352[label="",style="solid", color="burlywood", weight=9]; 5352 -> 2863[label="",style="solid", color="burlywood", weight=3]; 2892[label="vyy50",fontsize=16,color="green",shape="box"];2893[label="vyy600",fontsize=16,color="green",shape="box"];2720[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];5353[label="vyy600/Integer vyy6000",fontsize=10,color="white",style="solid",shape="box"];2720 -> 5353[label="",style="solid", color="burlywood", weight=9]; 5353 -> 2864[label="",style="solid", color="burlywood", weight=3]; 2894[label="vyy50",fontsize=16,color="green",shape="box"];2895[label="vyy600",fontsize=16,color="green",shape="box"];2721[label="vyy600 == vyy50",fontsize=16,color="black",shape="triangle"];2721 -> 2865[label="",style="solid", color="black", weight=3]; 2896 -> 3236[label="",style="dashed", color="red", weight=0]; 2896[label="compare1 (Left vyy189) (Left vyy190) (Left vyy189 <= Left vyy190)",fontsize=16,color="magenta"];2896 -> 3237[label="",style="dashed", color="magenta", weight=3]; 2896 -> 3238[label="",style="dashed", color="magenta", weight=3]; 2896 -> 3239[label="",style="dashed", color="magenta", weight=3]; 2897[label="EQ",fontsize=16,color="green",shape="box"];2898[label="LT",fontsize=16,color="green",shape="box"];2899[label="compare0 (Right vyy600) (Left vyy50) otherwise",fontsize=16,color="black",shape="box"];2899 -> 3131[label="",style="solid", color="black", weight=3]; 2900[label="vyy50",fontsize=16,color="green",shape="box"];2901[label="vyy600",fontsize=16,color="green",shape="box"];2902[label="vyy50",fontsize=16,color="green",shape="box"];2903[label="vyy600",fontsize=16,color="green",shape="box"];2904[label="vyy50",fontsize=16,color="green",shape="box"];2905[label="vyy600",fontsize=16,color="green",shape="box"];2906[label="vyy50",fontsize=16,color="green",shape="box"];2907[label="vyy600",fontsize=16,color="green",shape="box"];2908[label="vyy50",fontsize=16,color="green",shape="box"];2909[label="vyy600",fontsize=16,color="green",shape="box"];2910[label="vyy50",fontsize=16,color="green",shape="box"];2911[label="vyy600",fontsize=16,color="green",shape="box"];2912[label="vyy50",fontsize=16,color="green",shape="box"];2913[label="vyy600",fontsize=16,color="green",shape="box"];2914[label="vyy50",fontsize=16,color="green",shape="box"];2915[label="vyy600",fontsize=16,color="green",shape="box"];2916[label="vyy50",fontsize=16,color="green",shape="box"];2917[label="vyy600",fontsize=16,color="green",shape="box"];2918[label="vyy50",fontsize=16,color="green",shape="box"];2919[label="vyy600",fontsize=16,color="green",shape="box"];2920[label="vyy50",fontsize=16,color="green",shape="box"];2921[label="vyy600",fontsize=16,color="green",shape="box"];2922[label="vyy50",fontsize=16,color="green",shape="box"];2923[label="vyy600",fontsize=16,color="green",shape="box"];2924[label="vyy50",fontsize=16,color="green",shape="box"];2925[label="vyy600",fontsize=16,color="green",shape="box"];2926[label="vyy50",fontsize=16,color="green",shape="box"];2927[label="vyy600",fontsize=16,color="green",shape="box"];2928 -> 3335[label="",style="dashed", color="red", weight=0]; 2928[label="compare1 (Right vyy196) (Right vyy197) (Right vyy196 <= Right vyy197)",fontsize=16,color="magenta"];2928 -> 3336[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3337[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3338[label="",style="dashed", color="magenta", weight=3]; 2929[label="EQ",fontsize=16,color="green",shape="box"];3207[label="vyy602 == vyy52",fontsize=16,color="blue",shape="box"];5354[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5354[label="",style="solid", color="blue", weight=9]; 5354 -> 3274[label="",style="solid", color="blue", weight=3]; 5355[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5355[label="",style="solid", color="blue", weight=9]; 5355 -> 3275[label="",style="solid", color="blue", weight=3]; 5356[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5356[label="",style="solid", color="blue", weight=9]; 5356 -> 3276[label="",style="solid", color="blue", weight=3]; 5357[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5357[label="",style="solid", color="blue", weight=9]; 5357 -> 3277[label="",style="solid", color="blue", weight=3]; 5358[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5358[label="",style="solid", color="blue", weight=9]; 5358 -> 3278[label="",style="solid", color="blue", weight=3]; 5359[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5359[label="",style="solid", color="blue", weight=9]; 5359 -> 3279[label="",style="solid", color="blue", weight=3]; 5360[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5360[label="",style="solid", color="blue", weight=9]; 5360 -> 3280[label="",style="solid", color="blue", weight=3]; 5361[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5361[label="",style="solid", color="blue", weight=9]; 5361 -> 3281[label="",style="solid", color="blue", weight=3]; 5362[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5362[label="",style="solid", color="blue", weight=9]; 5362 -> 3282[label="",style="solid", color="blue", weight=3]; 5363[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5363[label="",style="solid", color="blue", weight=9]; 5363 -> 3283[label="",style="solid", color="blue", weight=3]; 5364[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5364[label="",style="solid", color="blue", weight=9]; 5364 -> 3284[label="",style="solid", color="blue", weight=3]; 5365[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5365[label="",style="solid", color="blue", weight=9]; 5365 -> 3285[label="",style="solid", color="blue", weight=3]; 5366[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5366[label="",style="solid", color="blue", weight=9]; 5366 -> 3286[label="",style="solid", color="blue", weight=3]; 5367[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3207 -> 5367[label="",style="solid", color="blue", weight=9]; 5367 -> 3287[label="",style="solid", color="blue", weight=3]; 3208[label="vyy601 == vyy51",fontsize=16,color="blue",shape="box"];5368[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5368[label="",style="solid", color="blue", weight=9]; 5368 -> 3288[label="",style="solid", color="blue", weight=3]; 5369[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5369[label="",style="solid", color="blue", weight=9]; 5369 -> 3289[label="",style="solid", color="blue", weight=3]; 5370[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5370[label="",style="solid", color="blue", weight=9]; 5370 -> 3290[label="",style="solid", color="blue", weight=3]; 5371[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5371[label="",style="solid", color="blue", weight=9]; 5371 -> 3291[label="",style="solid", color="blue", weight=3]; 5372[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5372[label="",style="solid", color="blue", weight=9]; 5372 -> 3292[label="",style="solid", color="blue", weight=3]; 5373[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5373[label="",style="solid", color="blue", weight=9]; 5373 -> 3293[label="",style="solid", color="blue", weight=3]; 5374[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5374[label="",style="solid", color="blue", weight=9]; 5374 -> 3294[label="",style="solid", color="blue", weight=3]; 5375[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5375[label="",style="solid", color="blue", weight=9]; 5375 -> 3295[label="",style="solid", color="blue", weight=3]; 5376[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5376[label="",style="solid", color="blue", weight=9]; 5376 -> 3296[label="",style="solid", color="blue", weight=3]; 5377[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5377[label="",style="solid", color="blue", weight=9]; 5377 -> 3297[label="",style="solid", color="blue", weight=3]; 5378[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5378[label="",style="solid", color="blue", weight=9]; 5378 -> 3298[label="",style="solid", color="blue", weight=3]; 5379[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5379[label="",style="solid", color="blue", weight=9]; 5379 -> 3299[label="",style="solid", color="blue", weight=3]; 5380[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5380[label="",style="solid", color="blue", weight=9]; 5380 -> 3300[label="",style="solid", color="blue", weight=3]; 5381[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5381[label="",style="solid", color="blue", weight=9]; 5381 -> 3301[label="",style="solid", color="blue", weight=3]; 3209 -> 2708[label="",style="dashed", color="red", weight=0]; 3209[label="vyy600 == vyy50",fontsize=16,color="magenta"];3209 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3210 -> 2709[label="",style="dashed", color="red", weight=0]; 3210[label="vyy600 == vyy50",fontsize=16,color="magenta"];3210 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3211 -> 2710[label="",style="dashed", color="red", weight=0]; 3211[label="vyy600 == vyy50",fontsize=16,color="magenta"];3211 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3212 -> 2711[label="",style="dashed", color="red", weight=0]; 3212[label="vyy600 == vyy50",fontsize=16,color="magenta"];3212 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3213 -> 2712[label="",style="dashed", color="red", weight=0]; 3213[label="vyy600 == vyy50",fontsize=16,color="magenta"];3213 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3214 -> 2713[label="",style="dashed", color="red", weight=0]; 3214[label="vyy600 == vyy50",fontsize=16,color="magenta"];3214 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3214 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3215 -> 2714[label="",style="dashed", color="red", weight=0]; 3215[label="vyy600 == vyy50",fontsize=16,color="magenta"];3215 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3215 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3216 -> 2715[label="",style="dashed", color="red", weight=0]; 3216[label="vyy600 == vyy50",fontsize=16,color="magenta"];3216 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3217 -> 2716[label="",style="dashed", color="red", weight=0]; 3217[label="vyy600 == vyy50",fontsize=16,color="magenta"];3217 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3218 -> 2717[label="",style="dashed", color="red", weight=0]; 3218[label="vyy600 == vyy50",fontsize=16,color="magenta"];3218 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3218 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3219 -> 2718[label="",style="dashed", color="red", weight=0]; 3219[label="vyy600 == vyy50",fontsize=16,color="magenta"];3219 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3220 -> 2719[label="",style="dashed", color="red", weight=0]; 3220[label="vyy600 == vyy50",fontsize=16,color="magenta"];3220 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3220 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3221 -> 2720[label="",style="dashed", color="red", weight=0]; 3221[label="vyy600 == vyy50",fontsize=16,color="magenta"];3221 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3222 -> 2721[label="",style="dashed", color="red", weight=0]; 3222[label="vyy600 == vyy50",fontsize=16,color="magenta"];3222 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3223[label="compare1 (vyy207,vyy208,vyy209) (vyy210,vyy211,vyy212) ((vyy207,vyy208,vyy209) <= (vyy210,vyy211,vyy212))",fontsize=16,color="black",shape="box"];3223 -> 3330[label="",style="solid", color="black", weight=3]; 3224[label="EQ",fontsize=16,color="green",shape="box"];2960[label="Pos vyy6010",fontsize=16,color="green",shape="box"];2961[label="vyy50",fontsize=16,color="green",shape="box"];2962[label="vyy600",fontsize=16,color="green",shape="box"];2963[label="Pos vyy510",fontsize=16,color="green",shape="box"];2964[label="Neg vyy6010",fontsize=16,color="green",shape="box"];2965[label="vyy50",fontsize=16,color="green",shape="box"];2966[label="vyy600",fontsize=16,color="green",shape="box"];2967[label="Pos vyy510",fontsize=16,color="green",shape="box"];2968[label="Pos vyy6010",fontsize=16,color="green",shape="box"];2969[label="vyy50",fontsize=16,color="green",shape="box"];2970[label="vyy600",fontsize=16,color="green",shape="box"];2971[label="Neg vyy510",fontsize=16,color="green",shape="box"];2972[label="Neg vyy6010",fontsize=16,color="green",shape="box"];2973[label="vyy50",fontsize=16,color="green",shape="box"];2974[label="vyy600",fontsize=16,color="green",shape="box"];2975[label="Neg vyy510",fontsize=16,color="green",shape="box"];2976[label="vyy50",fontsize=16,color="green",shape="box"];2977[label="vyy600",fontsize=16,color="green",shape="box"];2978[label="vyy50",fontsize=16,color="green",shape="box"];2979[label="vyy600",fontsize=16,color="green",shape="box"];2980[label="vyy50",fontsize=16,color="green",shape="box"];2981[label="vyy600",fontsize=16,color="green",shape="box"];2982[label="vyy50",fontsize=16,color="green",shape="box"];2983[label="vyy600",fontsize=16,color="green",shape="box"];2984[label="vyy50",fontsize=16,color="green",shape="box"];2985[label="vyy600",fontsize=16,color="green",shape="box"];2986[label="vyy50",fontsize=16,color="green",shape="box"];2987[label="vyy600",fontsize=16,color="green",shape="box"];2988[label="vyy50",fontsize=16,color="green",shape="box"];2989[label="vyy600",fontsize=16,color="green",shape="box"];2990[label="vyy50",fontsize=16,color="green",shape="box"];2991[label="vyy600",fontsize=16,color="green",shape="box"];2992[label="vyy50",fontsize=16,color="green",shape="box"];2993[label="vyy600",fontsize=16,color="green",shape="box"];2994[label="vyy50",fontsize=16,color="green",shape="box"];2995[label="vyy600",fontsize=16,color="green",shape="box"];2996[label="vyy50",fontsize=16,color="green",shape="box"];2997[label="vyy600",fontsize=16,color="green",shape="box"];2998[label="vyy50",fontsize=16,color="green",shape="box"];2999[label="vyy600",fontsize=16,color="green",shape="box"];3000[label="vyy50",fontsize=16,color="green",shape="box"];3001[label="vyy600",fontsize=16,color="green",shape="box"];3002[label="vyy50",fontsize=16,color="green",shape="box"];3003[label="vyy600",fontsize=16,color="green",shape="box"];3004[label="LT",fontsize=16,color="green",shape="box"];3005[label="vyy217",fontsize=16,color="green",shape="box"];3006[label="GT",fontsize=16,color="green",shape="box"];3007[label="primMulInt (Pos vyy500) (Pos vyy6010)",fontsize=16,color="black",shape="box"];3007 -> 3225[label="",style="solid", color="black", weight=3]; 3008[label="primMulInt (Pos vyy500) (Neg vyy6010)",fontsize=16,color="black",shape="box"];3008 -> 3226[label="",style="solid", color="black", weight=3]; 3009[label="primMulInt (Neg vyy500) (Pos vyy6010)",fontsize=16,color="black",shape="box"];3009 -> 3227[label="",style="solid", color="black", weight=3]; 3010[label="primMulInt (Neg vyy500) (Neg vyy6010)",fontsize=16,color="black",shape="box"];3010 -> 3228[label="",style="solid", color="black", weight=3]; 3011[label="Integer (primMulInt vyy500 vyy6010)",fontsize=16,color="green",shape="box"];3011 -> 3229[label="",style="dashed", color="green", weight=3]; 3012[label="LT",fontsize=16,color="green",shape="box"];3013[label="LT",fontsize=16,color="green",shape="box"];3014[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];3014 -> 3230[label="",style="solid", color="black", weight=3]; 3015[label="LT",fontsize=16,color="green",shape="box"];3016[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];3016 -> 3231[label="",style="solid", color="black", weight=3]; 3017[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];3017 -> 3232[label="",style="solid", color="black", weight=3]; 3018[label="LT",fontsize=16,color="green",shape="box"];3019[label="compare0 (Just vyy600) Nothing otherwise",fontsize=16,color="black",shape="box"];3019 -> 3233[label="",style="solid", color="black", weight=3]; 3020[label="vyy50",fontsize=16,color="green",shape="box"];3021[label="vyy600",fontsize=16,color="green",shape="box"];3022[label="vyy50",fontsize=16,color="green",shape="box"];3023[label="vyy600",fontsize=16,color="green",shape="box"];3024[label="vyy50",fontsize=16,color="green",shape="box"];3025[label="vyy600",fontsize=16,color="green",shape="box"];3026[label="vyy50",fontsize=16,color="green",shape="box"];3027[label="vyy600",fontsize=16,color="green",shape="box"];3028[label="vyy50",fontsize=16,color="green",shape="box"];3029[label="vyy600",fontsize=16,color="green",shape="box"];3030[label="vyy50",fontsize=16,color="green",shape="box"];3031[label="vyy600",fontsize=16,color="green",shape="box"];3032[label="vyy50",fontsize=16,color="green",shape="box"];3033[label="vyy600",fontsize=16,color="green",shape="box"];3034[label="vyy50",fontsize=16,color="green",shape="box"];3035[label="vyy600",fontsize=16,color="green",shape="box"];3036[label="vyy50",fontsize=16,color="green",shape="box"];3037[label="vyy600",fontsize=16,color="green",shape="box"];3038[label="vyy50",fontsize=16,color="green",shape="box"];3039[label="vyy600",fontsize=16,color="green",shape="box"];3040[label="vyy50",fontsize=16,color="green",shape="box"];3041[label="vyy600",fontsize=16,color="green",shape="box"];3042[label="vyy50",fontsize=16,color="green",shape="box"];3043[label="vyy600",fontsize=16,color="green",shape="box"];3044[label="vyy50",fontsize=16,color="green",shape="box"];3045[label="vyy600",fontsize=16,color="green",shape="box"];3046[label="vyy50",fontsize=16,color="green",shape="box"];3047[label="vyy600",fontsize=16,color="green",shape="box"];3048 -> 3415[label="",style="dashed", color="red", weight=0]; 3048[label="compare1 (Just vyy223) (Just vyy224) (Just vyy223 <= Just vyy224)",fontsize=16,color="magenta"];3048 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3048 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3048 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3049[label="EQ",fontsize=16,color="green",shape="box"];3050[label="compare0 True False True",fontsize=16,color="black",shape="box"];3050 -> 3235[label="",style="solid", color="black", weight=3]; 3243[label="vyy51",fontsize=16,color="green",shape="box"];3244[label="vyy601",fontsize=16,color="green",shape="box"];3245[label="vyy51",fontsize=16,color="green",shape="box"];3246[label="vyy601",fontsize=16,color="green",shape="box"];3247[label="vyy51",fontsize=16,color="green",shape="box"];3248[label="vyy601",fontsize=16,color="green",shape="box"];3249[label="vyy51",fontsize=16,color="green",shape="box"];3250[label="vyy601",fontsize=16,color="green",shape="box"];3251[label="vyy51",fontsize=16,color="green",shape="box"];3252[label="vyy601",fontsize=16,color="green",shape="box"];3253[label="vyy51",fontsize=16,color="green",shape="box"];3254[label="vyy601",fontsize=16,color="green",shape="box"];3255[label="vyy51",fontsize=16,color="green",shape="box"];3256[label="vyy601",fontsize=16,color="green",shape="box"];3257[label="vyy51",fontsize=16,color="green",shape="box"];3258[label="vyy601",fontsize=16,color="green",shape="box"];3259[label="vyy51",fontsize=16,color="green",shape="box"];3260[label="vyy601",fontsize=16,color="green",shape="box"];3261[label="vyy51",fontsize=16,color="green",shape="box"];3262[label="vyy601",fontsize=16,color="green",shape="box"];3263[label="vyy51",fontsize=16,color="green",shape="box"];3264[label="vyy601",fontsize=16,color="green",shape="box"];3265[label="vyy51",fontsize=16,color="green",shape="box"];3266[label="vyy601",fontsize=16,color="green",shape="box"];3267[label="vyy51",fontsize=16,color="green",shape="box"];3268[label="vyy601",fontsize=16,color="green",shape="box"];3269[label="vyy51",fontsize=16,color="green",shape="box"];3270[label="vyy601",fontsize=16,color="green",shape="box"];3271[label="False",fontsize=16,color="green",shape="box"];3272[label="vyy250",fontsize=16,color="green",shape="box"];3273 -> 3427[label="",style="dashed", color="red", weight=0]; 3273[label="compare1 (vyy232,vyy233) (vyy234,vyy235) (vyy232 < vyy234 || vyy232 == vyy234 && vyy233 <= vyy235)",fontsize=16,color="magenta"];3273 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3433[label="",style="dashed", color="magenta", weight=3]; 2846[label="primEqFloat vyy600 vyy50",fontsize=16,color="burlywood",shape="box"];5382[label="vyy600/Float vyy6000 vyy6001",fontsize=10,color="white",style="solid",shape="box"];2846 -> 5382[label="",style="solid", color="burlywood", weight=9]; 5382 -> 3051[label="",style="solid", color="burlywood", weight=3]; 2847[label="Left vyy6000 == vyy50",fontsize=16,color="burlywood",shape="box"];5383[label="vyy50/Left vyy500",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5383[label="",style="solid", color="burlywood", weight=9]; 5383 -> 3052[label="",style="solid", color="burlywood", weight=3]; 5384[label="vyy50/Right vyy500",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5384[label="",style="solid", color="burlywood", weight=9]; 5384 -> 3053[label="",style="solid", color="burlywood", weight=3]; 2848[label="Right vyy6000 == vyy50",fontsize=16,color="burlywood",shape="box"];5385[label="vyy50/Left vyy500",fontsize=10,color="white",style="solid",shape="box"];2848 -> 5385[label="",style="solid", color="burlywood", weight=9]; 5385 -> 3054[label="",style="solid", color="burlywood", weight=3]; 5386[label="vyy50/Right vyy500",fontsize=10,color="white",style="solid",shape="box"];2848 -> 5386[label="",style="solid", color="burlywood", weight=9]; 5386 -> 3055[label="",style="solid", color="burlywood", weight=3]; 2849[label="vyy6000 : vyy6001 == vyy50",fontsize=16,color="burlywood",shape="box"];5387[label="vyy50/vyy500 : vyy501",fontsize=10,color="white",style="solid",shape="box"];2849 -> 5387[label="",style="solid", color="burlywood", weight=9]; 5387 -> 3056[label="",style="solid", color="burlywood", weight=3]; 5388[label="vyy50/[]",fontsize=10,color="white",style="solid",shape="box"];2849 -> 5388[label="",style="solid", color="burlywood", weight=9]; 5388 -> 3057[label="",style="solid", color="burlywood", weight=3]; 2850[label="[] == vyy50",fontsize=16,color="burlywood",shape="box"];5389[label="vyy50/vyy500 : vyy501",fontsize=10,color="white",style="solid",shape="box"];2850 -> 5389[label="",style="solid", color="burlywood", weight=9]; 5389 -> 3058[label="",style="solid", color="burlywood", weight=3]; 5390[label="vyy50/[]",fontsize=10,color="white",style="solid",shape="box"];2850 -> 5390[label="",style="solid", color="burlywood", weight=9]; 5390 -> 3059[label="",style="solid", color="burlywood", weight=3]; 2851[label="primEqInt vyy600 vyy50",fontsize=16,color="burlywood",shape="triangle"];5391[label="vyy600/Pos vyy6000",fontsize=10,color="white",style="solid",shape="box"];2851 -> 5391[label="",style="solid", color="burlywood", weight=9]; 5391 -> 3060[label="",style="solid", color="burlywood", weight=3]; 5392[label="vyy600/Neg vyy6000",fontsize=10,color="white",style="solid",shape="box"];2851 -> 5392[label="",style="solid", color="burlywood", weight=9]; 5392 -> 3061[label="",style="solid", color="burlywood", weight=3]; 2852[label="Nothing == vyy50",fontsize=16,color="burlywood",shape="box"];5393[label="vyy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];2852 -> 5393[label="",style="solid", color="burlywood", weight=9]; 5393 -> 3062[label="",style="solid", color="burlywood", weight=3]; 5394[label="vyy50/Just vyy500",fontsize=10,color="white",style="solid",shape="box"];2852 -> 5394[label="",style="solid", color="burlywood", weight=9]; 5394 -> 3063[label="",style="solid", color="burlywood", weight=3]; 2853[label="Just vyy6000 == vyy50",fontsize=16,color="burlywood",shape="box"];5395[label="vyy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5395[label="",style="solid", color="burlywood", weight=9]; 5395 -> 3064[label="",style="solid", color="burlywood", weight=3]; 5396[label="vyy50/Just vyy500",fontsize=10,color="white",style="solid",shape="box"];2853 -> 5396[label="",style="solid", color="burlywood", weight=9]; 5396 -> 3065[label="",style="solid", color="burlywood", weight=3]; 2854[label="primEqChar vyy600 vyy50",fontsize=16,color="burlywood",shape="box"];5397[label="vyy600/Char vyy6000",fontsize=10,color="white",style="solid",shape="box"];2854 -> 5397[label="",style="solid", color="burlywood", weight=9]; 5397 -> 3066[label="",style="solid", color="burlywood", weight=3]; 2855[label="vyy6000 :% vyy6001 == vyy50",fontsize=16,color="burlywood",shape="box"];5398[label="vyy50/vyy500 :% vyy501",fontsize=10,color="white",style="solid",shape="box"];2855 -> 5398[label="",style="solid", color="burlywood", weight=9]; 5398 -> 3067[label="",style="solid", color="burlywood", weight=3]; 2856[label="LT == vyy50",fontsize=16,color="burlywood",shape="box"];5399[label="vyy50/LT",fontsize=10,color="white",style="solid",shape="box"];2856 -> 5399[label="",style="solid", color="burlywood", weight=9]; 5399 -> 3068[label="",style="solid", color="burlywood", weight=3]; 5400[label="vyy50/EQ",fontsize=10,color="white",style="solid",shape="box"];2856 -> 5400[label="",style="solid", color="burlywood", weight=9]; 5400 -> 3069[label="",style="solid", color="burlywood", weight=3]; 5401[label="vyy50/GT",fontsize=10,color="white",style="solid",shape="box"];2856 -> 5401[label="",style="solid", color="burlywood", weight=9]; 5401 -> 3070[label="",style="solid", color="burlywood", weight=3]; 2857[label="EQ == vyy50",fontsize=16,color="burlywood",shape="box"];5402[label="vyy50/LT",fontsize=10,color="white",style="solid",shape="box"];2857 -> 5402[label="",style="solid", color="burlywood", weight=9]; 5402 -> 3071[label="",style="solid", color="burlywood", weight=3]; 5403[label="vyy50/EQ",fontsize=10,color="white",style="solid",shape="box"];2857 -> 5403[label="",style="solid", color="burlywood", weight=9]; 5403 -> 3072[label="",style="solid", color="burlywood", weight=3]; 5404[label="vyy50/GT",fontsize=10,color="white",style="solid",shape="box"];2857 -> 5404[label="",style="solid", color="burlywood", weight=9]; 5404 -> 3073[label="",style="solid", color="burlywood", weight=3]; 2858[label="GT == vyy50",fontsize=16,color="burlywood",shape="box"];5405[label="vyy50/LT",fontsize=10,color="white",style="solid",shape="box"];2858 -> 5405[label="",style="solid", color="burlywood", weight=9]; 5405 -> 3074[label="",style="solid", color="burlywood", weight=3]; 5406[label="vyy50/EQ",fontsize=10,color="white",style="solid",shape="box"];2858 -> 5406[label="",style="solid", color="burlywood", weight=9]; 5406 -> 3075[label="",style="solid", color="burlywood", weight=3]; 5407[label="vyy50/GT",fontsize=10,color="white",style="solid",shape="box"];2858 -> 5407[label="",style="solid", color="burlywood", weight=9]; 5407 -> 3076[label="",style="solid", color="burlywood", weight=3]; 2859[label="(vyy6000,vyy6001) == vyy50",fontsize=16,color="burlywood",shape="box"];5408[label="vyy50/(vyy500,vyy501)",fontsize=10,color="white",style="solid",shape="box"];2859 -> 5408[label="",style="solid", color="burlywood", weight=9]; 5408 -> 3077[label="",style="solid", color="burlywood", weight=3]; 2860[label="(vyy6000,vyy6001,vyy6002) == vyy50",fontsize=16,color="burlywood",shape="box"];5409[label="vyy50/(vyy500,vyy501,vyy502)",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5409[label="",style="solid", color="burlywood", weight=9]; 5409 -> 3078[label="",style="solid", color="burlywood", weight=3]; 2861[label="False == vyy50",fontsize=16,color="burlywood",shape="box"];5410[label="vyy50/False",fontsize=10,color="white",style="solid",shape="box"];2861 -> 5410[label="",style="solid", color="burlywood", weight=9]; 5410 -> 3079[label="",style="solid", color="burlywood", weight=3]; 5411[label="vyy50/True",fontsize=10,color="white",style="solid",shape="box"];2861 -> 5411[label="",style="solid", color="burlywood", weight=9]; 5411 -> 3080[label="",style="solid", color="burlywood", weight=3]; 2862[label="True == vyy50",fontsize=16,color="burlywood",shape="box"];5412[label="vyy50/False",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5412[label="",style="solid", color="burlywood", weight=9]; 5412 -> 3081[label="",style="solid", color="burlywood", weight=3]; 5413[label="vyy50/True",fontsize=10,color="white",style="solid",shape="box"];2862 -> 5413[label="",style="solid", color="burlywood", weight=9]; 5413 -> 3082[label="",style="solid", color="burlywood", weight=3]; 2863[label="() == vyy50",fontsize=16,color="burlywood",shape="box"];5414[label="vyy50/()",fontsize=10,color="white",style="solid",shape="box"];2863 -> 5414[label="",style="solid", color="burlywood", weight=9]; 5414 -> 3083[label="",style="solid", color="burlywood", weight=3]; 2864[label="Integer vyy6000 == vyy50",fontsize=16,color="burlywood",shape="box"];5415[label="vyy50/Integer vyy500",fontsize=10,color="white",style="solid",shape="box"];2864 -> 5415[label="",style="solid", color="burlywood", weight=9]; 5415 -> 3084[label="",style="solid", color="burlywood", weight=3]; 2865[label="primEqDouble vyy600 vyy50",fontsize=16,color="burlywood",shape="box"];5416[label="vyy600/Double vyy6000 vyy6001",fontsize=10,color="white",style="solid",shape="box"];2865 -> 5416[label="",style="solid", color="burlywood", weight=9]; 5416 -> 3085[label="",style="solid", color="burlywood", weight=3]; 3237[label="vyy190",fontsize=16,color="green",shape="box"];3238[label="Left vyy189 <= Left vyy190",fontsize=16,color="black",shape="box"];3238 -> 3331[label="",style="solid", color="black", weight=3]; 3239[label="vyy189",fontsize=16,color="green",shape="box"];3236[label="compare1 (Left vyy255) (Left vyy256) vyy257",fontsize=16,color="burlywood",shape="triangle"];5417[label="vyy257/False",fontsize=10,color="white",style="solid",shape="box"];3236 -> 5417[label="",style="solid", color="burlywood", weight=9]; 5417 -> 3332[label="",style="solid", color="burlywood", weight=3]; 5418[label="vyy257/True",fontsize=10,color="white",style="solid",shape="box"];3236 -> 5418[label="",style="solid", color="burlywood", weight=9]; 5418 -> 3333[label="",style="solid", color="burlywood", weight=3]; 3131[label="compare0 (Right vyy600) (Left vyy50) True",fontsize=16,color="black",shape="box"];3131 -> 3334[label="",style="solid", color="black", weight=3]; 3336[label="Right vyy196 <= Right vyy197",fontsize=16,color="black",shape="box"];3336 -> 3344[label="",style="solid", color="black", weight=3]; 3337[label="vyy197",fontsize=16,color="green",shape="box"];3338[label="vyy196",fontsize=16,color="green",shape="box"];3335[label="compare1 (Right vyy262) (Right vyy263) vyy264",fontsize=16,color="burlywood",shape="triangle"];5419[label="vyy264/False",fontsize=10,color="white",style="solid",shape="box"];3335 -> 5419[label="",style="solid", color="burlywood", weight=9]; 5419 -> 3345[label="",style="solid", color="burlywood", weight=3]; 5420[label="vyy264/True",fontsize=10,color="white",style="solid",shape="box"];3335 -> 5420[label="",style="solid", color="burlywood", weight=9]; 5420 -> 3346[label="",style="solid", color="burlywood", weight=3]; 3274 -> 2708[label="",style="dashed", color="red", weight=0]; 3274[label="vyy602 == vyy52",fontsize=16,color="magenta"];3274 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3274 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3275 -> 2709[label="",style="dashed", color="red", weight=0]; 3275[label="vyy602 == vyy52",fontsize=16,color="magenta"];3275 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3275 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3276 -> 2710[label="",style="dashed", color="red", weight=0]; 3276[label="vyy602 == vyy52",fontsize=16,color="magenta"];3276 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3276 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3277 -> 2711[label="",style="dashed", color="red", weight=0]; 3277[label="vyy602 == vyy52",fontsize=16,color="magenta"];3277 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3277 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3278 -> 2712[label="",style="dashed", color="red", weight=0]; 3278[label="vyy602 == vyy52",fontsize=16,color="magenta"];3278 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3278 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3279 -> 2713[label="",style="dashed", color="red", weight=0]; 3279[label="vyy602 == vyy52",fontsize=16,color="magenta"];3279 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3279 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3280 -> 2714[label="",style="dashed", color="red", weight=0]; 3280[label="vyy602 == vyy52",fontsize=16,color="magenta"];3280 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3280 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3281 -> 2715[label="",style="dashed", color="red", weight=0]; 3281[label="vyy602 == vyy52",fontsize=16,color="magenta"];3281 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3281 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3282 -> 2716[label="",style="dashed", color="red", weight=0]; 3282[label="vyy602 == vyy52",fontsize=16,color="magenta"];3282 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3282 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3283 -> 2717[label="",style="dashed", color="red", weight=0]; 3283[label="vyy602 == vyy52",fontsize=16,color="magenta"];3283 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3283 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3284 -> 2718[label="",style="dashed", color="red", weight=0]; 3284[label="vyy602 == vyy52",fontsize=16,color="magenta"];3284 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3284 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3285 -> 2719[label="",style="dashed", color="red", weight=0]; 3285[label="vyy602 == vyy52",fontsize=16,color="magenta"];3285 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3286 -> 2720[label="",style="dashed", color="red", weight=0]; 3286[label="vyy602 == vyy52",fontsize=16,color="magenta"];3286 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3287 -> 2721[label="",style="dashed", color="red", weight=0]; 3287[label="vyy602 == vyy52",fontsize=16,color="magenta"];3287 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3287 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3288 -> 2708[label="",style="dashed", color="red", weight=0]; 3288[label="vyy601 == vyy51",fontsize=16,color="magenta"];3288 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3288 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3289 -> 2709[label="",style="dashed", color="red", weight=0]; 3289[label="vyy601 == vyy51",fontsize=16,color="magenta"];3289 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3289 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3290 -> 2710[label="",style="dashed", color="red", weight=0]; 3290[label="vyy601 == vyy51",fontsize=16,color="magenta"];3290 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3291 -> 2711[label="",style="dashed", color="red", weight=0]; 3291[label="vyy601 == vyy51",fontsize=16,color="magenta"];3291 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3291 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3292 -> 2712[label="",style="dashed", color="red", weight=0]; 3292[label="vyy601 == vyy51",fontsize=16,color="magenta"];3292 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3293 -> 2713[label="",style="dashed", color="red", weight=0]; 3293[label="vyy601 == vyy51",fontsize=16,color="magenta"];3293 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3293 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3294 -> 2714[label="",style="dashed", color="red", weight=0]; 3294[label="vyy601 == vyy51",fontsize=16,color="magenta"];3294 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3295 -> 2715[label="",style="dashed", color="red", weight=0]; 3295[label="vyy601 == vyy51",fontsize=16,color="magenta"];3295 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3296 -> 2716[label="",style="dashed", color="red", weight=0]; 3296[label="vyy601 == vyy51",fontsize=16,color="magenta"];3296 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3297 -> 2717[label="",style="dashed", color="red", weight=0]; 3297[label="vyy601 == vyy51",fontsize=16,color="magenta"];3297 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3297 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3298 -> 2718[label="",style="dashed", color="red", weight=0]; 3298[label="vyy601 == vyy51",fontsize=16,color="magenta"];3298 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3299 -> 2719[label="",style="dashed", color="red", weight=0]; 3299[label="vyy601 == vyy51",fontsize=16,color="magenta"];3299 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3299 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3300 -> 2720[label="",style="dashed", color="red", weight=0]; 3300[label="vyy601 == vyy51",fontsize=16,color="magenta"];3300 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3300 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3301 -> 2721[label="",style="dashed", color="red", weight=0]; 3301[label="vyy601 == vyy51",fontsize=16,color="magenta"];3301 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3301 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3302[label="vyy50",fontsize=16,color="green",shape="box"];3303[label="vyy600",fontsize=16,color="green",shape="box"];3304[label="vyy50",fontsize=16,color="green",shape="box"];3305[label="vyy600",fontsize=16,color="green",shape="box"];3306[label="vyy50",fontsize=16,color="green",shape="box"];3307[label="vyy600",fontsize=16,color="green",shape="box"];3308[label="vyy50",fontsize=16,color="green",shape="box"];3309[label="vyy600",fontsize=16,color="green",shape="box"];3310[label="vyy50",fontsize=16,color="green",shape="box"];3311[label="vyy600",fontsize=16,color="green",shape="box"];3312[label="vyy50",fontsize=16,color="green",shape="box"];3313[label="vyy600",fontsize=16,color="green",shape="box"];3314[label="vyy50",fontsize=16,color="green",shape="box"];3315[label="vyy600",fontsize=16,color="green",shape="box"];3316[label="vyy50",fontsize=16,color="green",shape="box"];3317[label="vyy600",fontsize=16,color="green",shape="box"];3318[label="vyy50",fontsize=16,color="green",shape="box"];3319[label="vyy600",fontsize=16,color="green",shape="box"];3320[label="vyy50",fontsize=16,color="green",shape="box"];3321[label="vyy600",fontsize=16,color="green",shape="box"];3322[label="vyy50",fontsize=16,color="green",shape="box"];3323[label="vyy600",fontsize=16,color="green",shape="box"];3324[label="vyy50",fontsize=16,color="green",shape="box"];3325[label="vyy600",fontsize=16,color="green",shape="box"];3326[label="vyy50",fontsize=16,color="green",shape="box"];3327[label="vyy600",fontsize=16,color="green",shape="box"];3328[label="vyy50",fontsize=16,color="green",shape="box"];3329[label="vyy600",fontsize=16,color="green",shape="box"];3330 -> 3529[label="",style="dashed", color="red", weight=0]; 3330[label="compare1 (vyy207,vyy208,vyy209) (vyy210,vyy211,vyy212) (vyy207 < vyy210 || vyy207 == vyy210 && (vyy208 < vyy211 || vyy208 == vyy211 && vyy209 <= vyy212))",fontsize=16,color="magenta"];3330 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3225[label="Pos (primMulNat vyy500 vyy6010)",fontsize=16,color="green",shape="box"];3225 -> 3405[label="",style="dashed", color="green", weight=3]; 3226[label="Neg (primMulNat vyy500 vyy6010)",fontsize=16,color="green",shape="box"];3226 -> 3406[label="",style="dashed", color="green", weight=3]; 3227[label="Neg (primMulNat vyy500 vyy6010)",fontsize=16,color="green",shape="box"];3227 -> 3407[label="",style="dashed", color="green", weight=3]; 3228[label="Pos (primMulNat vyy500 vyy6010)",fontsize=16,color="green",shape="box"];3228 -> 3408[label="",style="dashed", color="green", weight=3]; 3229 -> 2668[label="",style="dashed", color="red", weight=0]; 3229[label="primMulInt vyy500 vyy6010",fontsize=16,color="magenta"];3229 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3230[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];3230 -> 3411[label="",style="solid", color="black", weight=3]; 3231[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];3231 -> 3412[label="",style="solid", color="black", weight=3]; 3232[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];3232 -> 3413[label="",style="solid", color="black", weight=3]; 3233[label="compare0 (Just vyy600) Nothing True",fontsize=16,color="black",shape="box"];3233 -> 3414[label="",style="solid", color="black", weight=3]; 3416[label="Just vyy223 <= Just vyy224",fontsize=16,color="black",shape="box"];3416 -> 3422[label="",style="solid", color="black", weight=3]; 3417[label="vyy224",fontsize=16,color="green",shape="box"];3418[label="vyy223",fontsize=16,color="green",shape="box"];3415[label="compare1 (Just vyy272) (Just vyy273) vyy274",fontsize=16,color="burlywood",shape="triangle"];5421[label="vyy274/False",fontsize=10,color="white",style="solid",shape="box"];3415 -> 5421[label="",style="solid", color="burlywood", weight=9]; 5421 -> 3423[label="",style="solid", color="burlywood", weight=3]; 5422[label="vyy274/True",fontsize=10,color="white",style="solid",shape="box"];3415 -> 5422[label="",style="solid", color="burlywood", weight=9]; 5422 -> 3424[label="",style="solid", color="burlywood", weight=3]; 3235[label="GT",fontsize=16,color="green",shape="box"];3428[label="vyy235",fontsize=16,color="green",shape="box"];3429[label="vyy234",fontsize=16,color="green",shape="box"];3430 -> 3166[label="",style="dashed", color="red", weight=0]; 3430[label="vyy232 == vyy234 && vyy233 <= vyy235",fontsize=16,color="magenta"];3430 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3430 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3431[label="vyy233",fontsize=16,color="green",shape="box"];3432[label="vyy232 < vyy234",fontsize=16,color="blue",shape="box"];5423[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5423[label="",style="solid", color="blue", weight=9]; 5423 -> 3442[label="",style="solid", color="blue", weight=3]; 5424[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5424[label="",style="solid", color="blue", weight=9]; 5424 -> 3443[label="",style="solid", color="blue", weight=3]; 5425[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5425[label="",style="solid", color="blue", weight=9]; 5425 -> 3444[label="",style="solid", color="blue", weight=3]; 5426[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5426[label="",style="solid", color="blue", weight=9]; 5426 -> 3445[label="",style="solid", color="blue", weight=3]; 5427[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5427[label="",style="solid", color="blue", weight=9]; 5427 -> 3446[label="",style="solid", color="blue", weight=3]; 5428[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5428[label="",style="solid", color="blue", weight=9]; 5428 -> 3447[label="",style="solid", color="blue", weight=3]; 5429[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5429[label="",style="solid", color="blue", weight=9]; 5429 -> 3448[label="",style="solid", color="blue", weight=3]; 5430[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5430[label="",style="solid", color="blue", weight=9]; 5430 -> 3449[label="",style="solid", color="blue", weight=3]; 5431[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5431[label="",style="solid", color="blue", weight=9]; 5431 -> 3450[label="",style="solid", color="blue", weight=3]; 5432[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5432[label="",style="solid", color="blue", weight=9]; 5432 -> 3451[label="",style="solid", color="blue", weight=3]; 5433[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5433[label="",style="solid", color="blue", weight=9]; 5433 -> 3452[label="",style="solid", color="blue", weight=3]; 5434[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5434[label="",style="solid", color="blue", weight=9]; 5434 -> 3453[label="",style="solid", color="blue", weight=3]; 5435[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5435[label="",style="solid", color="blue", weight=9]; 5435 -> 3454[label="",style="solid", color="blue", weight=3]; 5436[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3432 -> 5436[label="",style="solid", color="blue", weight=9]; 5436 -> 3455[label="",style="solid", color="blue", weight=3]; 3433[label="vyy232",fontsize=16,color="green",shape="box"];3427[label="compare1 (vyy282,vyy283) (vyy284,vyy285) (vyy286 || vyy287)",fontsize=16,color="burlywood",shape="triangle"];5437[label="vyy286/False",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5437[label="",style="solid", color="burlywood", weight=9]; 5437 -> 3456[label="",style="solid", color="burlywood", weight=3]; 5438[label="vyy286/True",fontsize=10,color="white",style="solid",shape="box"];3427 -> 5438[label="",style="solid", color="burlywood", weight=9]; 5438 -> 3457[label="",style="solid", color="burlywood", weight=3]; 3051[label="primEqFloat (Float vyy6000 vyy6001) vyy50",fontsize=16,color="burlywood",shape="box"];5439[label="vyy50/Float vyy500 vyy501",fontsize=10,color="white",style="solid",shape="box"];3051 -> 5439[label="",style="solid", color="burlywood", weight=9]; 5439 -> 3458[label="",style="solid", color="burlywood", weight=3]; 3052[label="Left vyy6000 == Left vyy500",fontsize=16,color="black",shape="box"];3052 -> 3459[label="",style="solid", color="black", weight=3]; 3053[label="Left vyy6000 == Right vyy500",fontsize=16,color="black",shape="box"];3053 -> 3460[label="",style="solid", color="black", weight=3]; 3054[label="Right vyy6000 == Left vyy500",fontsize=16,color="black",shape="box"];3054 -> 3461[label="",style="solid", color="black", weight=3]; 3055[label="Right vyy6000 == Right vyy500",fontsize=16,color="black",shape="box"];3055 -> 3462[label="",style="solid", color="black", weight=3]; 3056[label="vyy6000 : vyy6001 == vyy500 : vyy501",fontsize=16,color="black",shape="box"];3056 -> 3463[label="",style="solid", color="black", weight=3]; 3057[label="vyy6000 : vyy6001 == []",fontsize=16,color="black",shape="box"];3057 -> 3464[label="",style="solid", color="black", weight=3]; 3058[label="[] == vyy500 : vyy501",fontsize=16,color="black",shape="box"];3058 -> 3465[label="",style="solid", color="black", weight=3]; 3059[label="[] == []",fontsize=16,color="black",shape="box"];3059 -> 3466[label="",style="solid", color="black", weight=3]; 3060[label="primEqInt (Pos vyy6000) vyy50",fontsize=16,color="burlywood",shape="box"];5440[label="vyy6000/Succ vyy60000",fontsize=10,color="white",style="solid",shape="box"];3060 -> 5440[label="",style="solid", color="burlywood", weight=9]; 5440 -> 3467[label="",style="solid", color="burlywood", weight=3]; 5441[label="vyy6000/Zero",fontsize=10,color="white",style="solid",shape="box"];3060 -> 5441[label="",style="solid", color="burlywood", weight=9]; 5441 -> 3468[label="",style="solid", color="burlywood", weight=3]; 3061[label="primEqInt (Neg vyy6000) vyy50",fontsize=16,color="burlywood",shape="box"];5442[label="vyy6000/Succ vyy60000",fontsize=10,color="white",style="solid",shape="box"];3061 -> 5442[label="",style="solid", color="burlywood", weight=9]; 5442 -> 3469[label="",style="solid", color="burlywood", weight=3]; 5443[label="vyy6000/Zero",fontsize=10,color="white",style="solid",shape="box"];3061 -> 5443[label="",style="solid", color="burlywood", weight=9]; 5443 -> 3470[label="",style="solid", color="burlywood", weight=3]; 3062[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];3062 -> 3471[label="",style="solid", color="black", weight=3]; 3063[label="Nothing == Just vyy500",fontsize=16,color="black",shape="box"];3063 -> 3472[label="",style="solid", color="black", weight=3]; 3064[label="Just vyy6000 == Nothing",fontsize=16,color="black",shape="box"];3064 -> 3473[label="",style="solid", color="black", weight=3]; 3065[label="Just vyy6000 == Just vyy500",fontsize=16,color="black",shape="box"];3065 -> 3474[label="",style="solid", color="black", weight=3]; 3066[label="primEqChar (Char vyy6000) vyy50",fontsize=16,color="burlywood",shape="box"];5444[label="vyy50/Char vyy500",fontsize=10,color="white",style="solid",shape="box"];3066 -> 5444[label="",style="solid", color="burlywood", weight=9]; 5444 -> 3475[label="",style="solid", color="burlywood", weight=3]; 3067[label="vyy6000 :% vyy6001 == vyy500 :% vyy501",fontsize=16,color="black",shape="box"];3067 -> 3476[label="",style="solid", color="black", weight=3]; 3068[label="LT == LT",fontsize=16,color="black",shape="box"];3068 -> 3477[label="",style="solid", color="black", weight=3]; 3069[label="LT == EQ",fontsize=16,color="black",shape="box"];3069 -> 3478[label="",style="solid", color="black", weight=3]; 3070[label="LT == GT",fontsize=16,color="black",shape="box"];3070 -> 3479[label="",style="solid", color="black", weight=3]; 3071[label="EQ == LT",fontsize=16,color="black",shape="box"];3071 -> 3480[label="",style="solid", color="black", weight=3]; 3072[label="EQ == EQ",fontsize=16,color="black",shape="box"];3072 -> 3481[label="",style="solid", color="black", weight=3]; 3073[label="EQ == GT",fontsize=16,color="black",shape="box"];3073 -> 3482[label="",style="solid", color="black", weight=3]; 3074[label="GT == LT",fontsize=16,color="black",shape="box"];3074 -> 3483[label="",style="solid", color="black", weight=3]; 3075[label="GT == EQ",fontsize=16,color="black",shape="box"];3075 -> 3484[label="",style="solid", color="black", weight=3]; 3076[label="GT == GT",fontsize=16,color="black",shape="box"];3076 -> 3485[label="",style="solid", color="black", weight=3]; 3077[label="(vyy6000,vyy6001) == (vyy500,vyy501)",fontsize=16,color="black",shape="box"];3077 -> 3486[label="",style="solid", color="black", weight=3]; 3078[label="(vyy6000,vyy6001,vyy6002) == (vyy500,vyy501,vyy502)",fontsize=16,color="black",shape="box"];3078 -> 3487[label="",style="solid", color="black", weight=3]; 3079[label="False == False",fontsize=16,color="black",shape="box"];3079 -> 3488[label="",style="solid", color="black", weight=3]; 3080[label="False == True",fontsize=16,color="black",shape="box"];3080 -> 3489[label="",style="solid", color="black", weight=3]; 3081[label="True == False",fontsize=16,color="black",shape="box"];3081 -> 3490[label="",style="solid", color="black", weight=3]; 3082[label="True == True",fontsize=16,color="black",shape="box"];3082 -> 3491[label="",style="solid", color="black", weight=3]; 3083[label="() == ()",fontsize=16,color="black",shape="box"];3083 -> 3492[label="",style="solid", color="black", weight=3]; 3084[label="Integer vyy6000 == Integer vyy500",fontsize=16,color="black",shape="box"];3084 -> 3493[label="",style="solid", color="black", weight=3]; 3085[label="primEqDouble (Double vyy6000 vyy6001) vyy50",fontsize=16,color="burlywood",shape="box"];5445[label="vyy50/Double vyy500 vyy501",fontsize=10,color="white",style="solid",shape="box"];3085 -> 5445[label="",style="solid", color="burlywood", weight=9]; 5445 -> 3494[label="",style="solid", color="burlywood", weight=3]; 3331[label="vyy189 <= vyy190",fontsize=16,color="blue",shape="box"];5446[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5446[label="",style="solid", color="blue", weight=9]; 5446 -> 3495[label="",style="solid", color="blue", weight=3]; 5447[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5447[label="",style="solid", color="blue", weight=9]; 5447 -> 3496[label="",style="solid", color="blue", weight=3]; 5448[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5448[label="",style="solid", color="blue", weight=9]; 5448 -> 3497[label="",style="solid", color="blue", weight=3]; 5449[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5449[label="",style="solid", color="blue", weight=9]; 5449 -> 3498[label="",style="solid", color="blue", weight=3]; 5450[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5450[label="",style="solid", color="blue", weight=9]; 5450 -> 3499[label="",style="solid", color="blue", weight=3]; 5451[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5451[label="",style="solid", color="blue", weight=9]; 5451 -> 3500[label="",style="solid", color="blue", weight=3]; 5452[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5452[label="",style="solid", color="blue", weight=9]; 5452 -> 3501[label="",style="solid", color="blue", weight=3]; 5453[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5453[label="",style="solid", color="blue", weight=9]; 5453 -> 3502[label="",style="solid", color="blue", weight=3]; 5454[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5454[label="",style="solid", color="blue", weight=9]; 5454 -> 3503[label="",style="solid", color="blue", weight=3]; 5455[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5455[label="",style="solid", color="blue", weight=9]; 5455 -> 3504[label="",style="solid", color="blue", weight=3]; 5456[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5456[label="",style="solid", color="blue", weight=9]; 5456 -> 3505[label="",style="solid", color="blue", weight=3]; 5457[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5457[label="",style="solid", color="blue", weight=9]; 5457 -> 3506[label="",style="solid", color="blue", weight=3]; 5458[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5458[label="",style="solid", color="blue", weight=9]; 5458 -> 3507[label="",style="solid", color="blue", weight=3]; 5459[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3331 -> 5459[label="",style="solid", color="blue", weight=9]; 5459 -> 3508[label="",style="solid", color="blue", weight=3]; 3332[label="compare1 (Left vyy255) (Left vyy256) False",fontsize=16,color="black",shape="box"];3332 -> 3509[label="",style="solid", color="black", weight=3]; 3333[label="compare1 (Left vyy255) (Left vyy256) True",fontsize=16,color="black",shape="box"];3333 -> 3510[label="",style="solid", color="black", weight=3]; 3334[label="GT",fontsize=16,color="green",shape="box"];3344[label="vyy196 <= vyy197",fontsize=16,color="blue",shape="box"];5460[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5460[label="",style="solid", color="blue", weight=9]; 5460 -> 3511[label="",style="solid", color="blue", weight=3]; 5461[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5461[label="",style="solid", color="blue", weight=9]; 5461 -> 3512[label="",style="solid", color="blue", weight=3]; 5462[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5462[label="",style="solid", color="blue", weight=9]; 5462 -> 3513[label="",style="solid", color="blue", weight=3]; 5463[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5463[label="",style="solid", color="blue", weight=9]; 5463 -> 3514[label="",style="solid", color="blue", weight=3]; 5464[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5464[label="",style="solid", color="blue", weight=9]; 5464 -> 3515[label="",style="solid", color="blue", weight=3]; 5465[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5465[label="",style="solid", color="blue", weight=9]; 5465 -> 3516[label="",style="solid", color="blue", weight=3]; 5466[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5466[label="",style="solid", color="blue", weight=9]; 5466 -> 3517[label="",style="solid", color="blue", weight=3]; 5467[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5467[label="",style="solid", color="blue", weight=9]; 5467 -> 3518[label="",style="solid", color="blue", weight=3]; 5468[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5468[label="",style="solid", color="blue", weight=9]; 5468 -> 3519[label="",style="solid", color="blue", weight=3]; 5469[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5469[label="",style="solid", color="blue", weight=9]; 5469 -> 3520[label="",style="solid", color="blue", weight=3]; 5470[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5470[label="",style="solid", color="blue", weight=9]; 5470 -> 3521[label="",style="solid", color="blue", weight=3]; 5471[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5471[label="",style="solid", color="blue", weight=9]; 5471 -> 3522[label="",style="solid", color="blue", weight=3]; 5472[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5472[label="",style="solid", color="blue", weight=9]; 5472 -> 3523[label="",style="solid", color="blue", weight=3]; 5473[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5473[label="",style="solid", color="blue", weight=9]; 5473 -> 3524[label="",style="solid", color="blue", weight=3]; 3345[label="compare1 (Right vyy262) (Right vyy263) False",fontsize=16,color="black",shape="box"];3345 -> 3525[label="",style="solid", color="black", weight=3]; 3346[label="compare1 (Right vyy262) (Right vyy263) True",fontsize=16,color="black",shape="box"];3346 -> 3526[label="",style="solid", color="black", weight=3]; 3347[label="vyy52",fontsize=16,color="green",shape="box"];3348[label="vyy602",fontsize=16,color="green",shape="box"];3349[label="vyy52",fontsize=16,color="green",shape="box"];3350[label="vyy602",fontsize=16,color="green",shape="box"];3351[label="vyy52",fontsize=16,color="green",shape="box"];3352[label="vyy602",fontsize=16,color="green",shape="box"];3353[label="vyy52",fontsize=16,color="green",shape="box"];3354[label="vyy602",fontsize=16,color="green",shape="box"];3355[label="vyy52",fontsize=16,color="green",shape="box"];3356[label="vyy602",fontsize=16,color="green",shape="box"];3357[label="vyy52",fontsize=16,color="green",shape="box"];3358[label="vyy602",fontsize=16,color="green",shape="box"];3359[label="vyy52",fontsize=16,color="green",shape="box"];3360[label="vyy602",fontsize=16,color="green",shape="box"];3361[label="vyy52",fontsize=16,color="green",shape="box"];3362[label="vyy602",fontsize=16,color="green",shape="box"];3363[label="vyy52",fontsize=16,color="green",shape="box"];3364[label="vyy602",fontsize=16,color="green",shape="box"];3365[label="vyy52",fontsize=16,color="green",shape="box"];3366[label="vyy602",fontsize=16,color="green",shape="box"];3367[label="vyy52",fontsize=16,color="green",shape="box"];3368[label="vyy602",fontsize=16,color="green",shape="box"];3369[label="vyy52",fontsize=16,color="green",shape="box"];3370[label="vyy602",fontsize=16,color="green",shape="box"];3371[label="vyy52",fontsize=16,color="green",shape="box"];3372[label="vyy602",fontsize=16,color="green",shape="box"];3373[label="vyy52",fontsize=16,color="green",shape="box"];3374[label="vyy602",fontsize=16,color="green",shape="box"];3375[label="vyy51",fontsize=16,color="green",shape="box"];3376[label="vyy601",fontsize=16,color="green",shape="box"];3377[label="vyy51",fontsize=16,color="green",shape="box"];3378[label="vyy601",fontsize=16,color="green",shape="box"];3379[label="vyy51",fontsize=16,color="green",shape="box"];3380[label="vyy601",fontsize=16,color="green",shape="box"];3381[label="vyy51",fontsize=16,color="green",shape="box"];3382[label="vyy601",fontsize=16,color="green",shape="box"];3383[label="vyy51",fontsize=16,color="green",shape="box"];3384[label="vyy601",fontsize=16,color="green",shape="box"];3385[label="vyy51",fontsize=16,color="green",shape="box"];3386[label="vyy601",fontsize=16,color="green",shape="box"];3387[label="vyy51",fontsize=16,color="green",shape="box"];3388[label="vyy601",fontsize=16,color="green",shape="box"];3389[label="vyy51",fontsize=16,color="green",shape="box"];3390[label="vyy601",fontsize=16,color="green",shape="box"];3391[label="vyy51",fontsize=16,color="green",shape="box"];3392[label="vyy601",fontsize=16,color="green",shape="box"];3393[label="vyy51",fontsize=16,color="green",shape="box"];3394[label="vyy601",fontsize=16,color="green",shape="box"];3395[label="vyy51",fontsize=16,color="green",shape="box"];3396[label="vyy601",fontsize=16,color="green",shape="box"];3397[label="vyy51",fontsize=16,color="green",shape="box"];3398[label="vyy601",fontsize=16,color="green",shape="box"];3399[label="vyy51",fontsize=16,color="green",shape="box"];3400[label="vyy601",fontsize=16,color="green",shape="box"];3401[label="vyy51",fontsize=16,color="green",shape="box"];3402[label="vyy601",fontsize=16,color="green",shape="box"];3530[label="vyy207",fontsize=16,color="green",shape="box"];3531[label="vyy207 < vyy210",fontsize=16,color="blue",shape="box"];5474[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5474[label="",style="solid", color="blue", weight=9]; 5474 -> 3546[label="",style="solid", color="blue", weight=3]; 5475[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5475[label="",style="solid", color="blue", weight=9]; 5475 -> 3547[label="",style="solid", color="blue", weight=3]; 5476[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5476[label="",style="solid", color="blue", weight=9]; 5476 -> 3548[label="",style="solid", color="blue", weight=3]; 5477[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5477[label="",style="solid", color="blue", weight=9]; 5477 -> 3549[label="",style="solid", color="blue", weight=3]; 5478[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5478[label="",style="solid", color="blue", weight=9]; 5478 -> 3550[label="",style="solid", color="blue", weight=3]; 5479[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5479[label="",style="solid", color="blue", weight=9]; 5479 -> 3551[label="",style="solid", color="blue", weight=3]; 5480[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5480[label="",style="solid", color="blue", weight=9]; 5480 -> 3552[label="",style="solid", color="blue", weight=3]; 5481[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5481[label="",style="solid", color="blue", weight=9]; 5481 -> 3553[label="",style="solid", color="blue", weight=3]; 5482[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5482[label="",style="solid", color="blue", weight=9]; 5482 -> 3554[label="",style="solid", color="blue", weight=3]; 5483[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5483[label="",style="solid", color="blue", weight=9]; 5483 -> 3555[label="",style="solid", color="blue", weight=3]; 5484[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5484[label="",style="solid", color="blue", weight=9]; 5484 -> 3556[label="",style="solid", color="blue", weight=3]; 5485[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5485[label="",style="solid", color="blue", weight=9]; 5485 -> 3557[label="",style="solid", color="blue", weight=3]; 5486[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5486[label="",style="solid", color="blue", weight=9]; 5486 -> 3558[label="",style="solid", color="blue", weight=3]; 5487[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3531 -> 5487[label="",style="solid", color="blue", weight=9]; 5487 -> 3559[label="",style="solid", color="blue", weight=3]; 3532[label="vyy210",fontsize=16,color="green",shape="box"];3533[label="vyy209",fontsize=16,color="green",shape="box"];3534[label="vyy212",fontsize=16,color="green",shape="box"];3535[label="vyy211",fontsize=16,color="green",shape="box"];3536 -> 3166[label="",style="dashed", color="red", weight=0]; 3536[label="vyy207 == vyy210 && (vyy208 < vyy211 || vyy208 == vyy211 && vyy209 <= vyy212)",fontsize=16,color="magenta"];3536 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3536 -> 3561[label="",style="dashed", color="magenta", weight=3]; 3537[label="vyy208",fontsize=16,color="green",shape="box"];3529[label="compare1 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) (vyy303 || vyy304)",fontsize=16,color="burlywood",shape="triangle"];5488[label="vyy303/False",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5488[label="",style="solid", color="burlywood", weight=9]; 5488 -> 3562[label="",style="solid", color="burlywood", weight=3]; 5489[label="vyy303/True",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5489[label="",style="solid", color="burlywood", weight=9]; 5489 -> 3563[label="",style="solid", color="burlywood", weight=3]; 3405[label="primMulNat vyy500 vyy6010",fontsize=16,color="burlywood",shape="triangle"];5490[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];3405 -> 5490[label="",style="solid", color="burlywood", weight=9]; 5490 -> 3564[label="",style="solid", color="burlywood", weight=3]; 5491[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];3405 -> 5491[label="",style="solid", color="burlywood", weight=9]; 5491 -> 3565[label="",style="solid", color="burlywood", weight=3]; 3406 -> 3405[label="",style="dashed", color="red", weight=0]; 3406[label="primMulNat vyy500 vyy6010",fontsize=16,color="magenta"];3406 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3407 -> 3405[label="",style="dashed", color="red", weight=0]; 3407[label="primMulNat vyy500 vyy6010",fontsize=16,color="magenta"];3407 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3408 -> 3405[label="",style="dashed", color="red", weight=0]; 3408[label="primMulNat vyy500 vyy6010",fontsize=16,color="magenta"];3408 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3408 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3409[label="vyy500",fontsize=16,color="green",shape="box"];3410[label="vyy6010",fontsize=16,color="green",shape="box"];3411[label="GT",fontsize=16,color="green",shape="box"];3412[label="GT",fontsize=16,color="green",shape="box"];3413[label="GT",fontsize=16,color="green",shape="box"];3414[label="GT",fontsize=16,color="green",shape="box"];3422[label="vyy223 <= vyy224",fontsize=16,color="blue",shape="box"];5492[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5492[label="",style="solid", color="blue", weight=9]; 5492 -> 3570[label="",style="solid", color="blue", weight=3]; 5493[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5493[label="",style="solid", color="blue", weight=9]; 5493 -> 3571[label="",style="solid", color="blue", weight=3]; 5494[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5494[label="",style="solid", color="blue", weight=9]; 5494 -> 3572[label="",style="solid", color="blue", weight=3]; 5495[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5495[label="",style="solid", color="blue", weight=9]; 5495 -> 3573[label="",style="solid", color="blue", weight=3]; 5496[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5496[label="",style="solid", color="blue", weight=9]; 5496 -> 3574[label="",style="solid", color="blue", weight=3]; 5497[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5497[label="",style="solid", color="blue", weight=9]; 5497 -> 3575[label="",style="solid", color="blue", weight=3]; 5498[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5498[label="",style="solid", color="blue", weight=9]; 5498 -> 3576[label="",style="solid", color="blue", weight=3]; 5499[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5499[label="",style="solid", color="blue", weight=9]; 5499 -> 3577[label="",style="solid", color="blue", weight=3]; 5500[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5500[label="",style="solid", color="blue", weight=9]; 5500 -> 3578[label="",style="solid", color="blue", weight=3]; 5501[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5501[label="",style="solid", color="blue", weight=9]; 5501 -> 3579[label="",style="solid", color="blue", weight=3]; 5502[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5502[label="",style="solid", color="blue", weight=9]; 5502 -> 3580[label="",style="solid", color="blue", weight=3]; 5503[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5503[label="",style="solid", color="blue", weight=9]; 5503 -> 3581[label="",style="solid", color="blue", weight=3]; 5504[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5504[label="",style="solid", color="blue", weight=9]; 5504 -> 3582[label="",style="solid", color="blue", weight=3]; 5505[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3422 -> 5505[label="",style="solid", color="blue", weight=9]; 5505 -> 3583[label="",style="solid", color="blue", weight=3]; 3423[label="compare1 (Just vyy272) (Just vyy273) False",fontsize=16,color="black",shape="box"];3423 -> 3584[label="",style="solid", color="black", weight=3]; 3424[label="compare1 (Just vyy272) (Just vyy273) True",fontsize=16,color="black",shape="box"];3424 -> 3585[label="",style="solid", color="black", weight=3]; 3440[label="vyy233 <= vyy235",fontsize=16,color="blue",shape="box"];5506[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5506[label="",style="solid", color="blue", weight=9]; 5506 -> 3586[label="",style="solid", color="blue", weight=3]; 5507[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5507[label="",style="solid", color="blue", weight=9]; 5507 -> 3587[label="",style="solid", color="blue", weight=3]; 5508[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5508[label="",style="solid", color="blue", weight=9]; 5508 -> 3588[label="",style="solid", color="blue", weight=3]; 5509[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5509[label="",style="solid", color="blue", weight=9]; 5509 -> 3589[label="",style="solid", color="blue", weight=3]; 5510[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5510[label="",style="solid", color="blue", weight=9]; 5510 -> 3590[label="",style="solid", color="blue", weight=3]; 5511[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5511[label="",style="solid", color="blue", weight=9]; 5511 -> 3591[label="",style="solid", color="blue", weight=3]; 5512[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5512[label="",style="solid", color="blue", weight=9]; 5512 -> 3592[label="",style="solid", color="blue", weight=3]; 5513[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5513[label="",style="solid", color="blue", weight=9]; 5513 -> 3593[label="",style="solid", color="blue", weight=3]; 5514[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5514[label="",style="solid", color="blue", weight=9]; 5514 -> 3594[label="",style="solid", color="blue", weight=3]; 5515[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5515[label="",style="solid", color="blue", weight=9]; 5515 -> 3595[label="",style="solid", color="blue", weight=3]; 5516[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5516[label="",style="solid", color="blue", weight=9]; 5516 -> 3596[label="",style="solid", color="blue", weight=3]; 5517[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5517[label="",style="solid", color="blue", weight=9]; 5517 -> 3597[label="",style="solid", color="blue", weight=3]; 5518[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5518[label="",style="solid", color="blue", weight=9]; 5518 -> 3598[label="",style="solid", color="blue", weight=3]; 5519[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3440 -> 5519[label="",style="solid", color="blue", weight=9]; 5519 -> 3599[label="",style="solid", color="blue", weight=3]; 3441[label="vyy232 == vyy234",fontsize=16,color="blue",shape="box"];5520[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5520[label="",style="solid", color="blue", weight=9]; 5520 -> 3600[label="",style="solid", color="blue", weight=3]; 5521[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5521[label="",style="solid", color="blue", weight=9]; 5521 -> 3601[label="",style="solid", color="blue", weight=3]; 5522[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5522[label="",style="solid", color="blue", weight=9]; 5522 -> 3602[label="",style="solid", color="blue", weight=3]; 5523[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5523[label="",style="solid", color="blue", weight=9]; 5523 -> 3603[label="",style="solid", color="blue", weight=3]; 5524[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5524[label="",style="solid", color="blue", weight=9]; 5524 -> 3604[label="",style="solid", color="blue", weight=3]; 5525[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5525[label="",style="solid", color="blue", weight=9]; 5525 -> 3605[label="",style="solid", color="blue", weight=3]; 5526[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5526[label="",style="solid", color="blue", weight=9]; 5526 -> 3606[label="",style="solid", color="blue", weight=3]; 5527[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5527[label="",style="solid", color="blue", weight=9]; 5527 -> 3607[label="",style="solid", color="blue", weight=3]; 5528[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5528[label="",style="solid", color="blue", weight=9]; 5528 -> 3608[label="",style="solid", color="blue", weight=3]; 5529[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5529[label="",style="solid", color="blue", weight=9]; 5529 -> 3609[label="",style="solid", color="blue", weight=3]; 5530[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5530[label="",style="solid", color="blue", weight=9]; 5530 -> 3610[label="",style="solid", color="blue", weight=3]; 5531[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5531[label="",style="solid", color="blue", weight=9]; 5531 -> 3611[label="",style="solid", color="blue", weight=3]; 5532[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5532[label="",style="solid", color="blue", weight=9]; 5532 -> 3612[label="",style="solid", color="blue", weight=3]; 5533[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5533[label="",style="solid", color="blue", weight=9]; 5533 -> 3613[label="",style="solid", color="blue", weight=3]; 3442[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3442 -> 3614[label="",style="solid", color="black", weight=3]; 3443[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3443 -> 3615[label="",style="solid", color="black", weight=3]; 3444[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3444 -> 3616[label="",style="solid", color="black", weight=3]; 3445[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3445 -> 3617[label="",style="solid", color="black", weight=3]; 3446[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3446 -> 3618[label="",style="solid", color="black", weight=3]; 3447[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3447 -> 3619[label="",style="solid", color="black", weight=3]; 3448[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3448 -> 3620[label="",style="solid", color="black", weight=3]; 3449[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3449 -> 3621[label="",style="solid", color="black", weight=3]; 3450[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3450 -> 3622[label="",style="solid", color="black", weight=3]; 3451[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3451 -> 3623[label="",style="solid", color="black", weight=3]; 3452[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3452 -> 3624[label="",style="solid", color="black", weight=3]; 3453[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3453 -> 3625[label="",style="solid", color="black", weight=3]; 3454[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3454 -> 3626[label="",style="solid", color="black", weight=3]; 3455[label="vyy232 < vyy234",fontsize=16,color="black",shape="triangle"];3455 -> 3627[label="",style="solid", color="black", weight=3]; 3456[label="compare1 (vyy282,vyy283) (vyy284,vyy285) (False || vyy287)",fontsize=16,color="black",shape="box"];3456 -> 3628[label="",style="solid", color="black", weight=3]; 3457[label="compare1 (vyy282,vyy283) (vyy284,vyy285) (True || vyy287)",fontsize=16,color="black",shape="box"];3457 -> 3629[label="",style="solid", color="black", weight=3]; 3458[label="primEqFloat (Float vyy6000 vyy6001) (Float vyy500 vyy501)",fontsize=16,color="black",shape="box"];3458 -> 3630[label="",style="solid", color="black", weight=3]; 3459[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];5534[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5534[label="",style="solid", color="blue", weight=9]; 5534 -> 3631[label="",style="solid", color="blue", weight=3]; 5535[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5535[label="",style="solid", color="blue", weight=9]; 5535 -> 3632[label="",style="solid", color="blue", weight=3]; 5536[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5536[label="",style="solid", color="blue", weight=9]; 5536 -> 3633[label="",style="solid", color="blue", weight=3]; 5537[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5537[label="",style="solid", color="blue", weight=9]; 5537 -> 3634[label="",style="solid", color="blue", weight=3]; 5538[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5538[label="",style="solid", color="blue", weight=9]; 5538 -> 3635[label="",style="solid", color="blue", weight=3]; 5539[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5539[label="",style="solid", color="blue", weight=9]; 5539 -> 3636[label="",style="solid", color="blue", weight=3]; 5540[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5540[label="",style="solid", color="blue", weight=9]; 5540 -> 3637[label="",style="solid", color="blue", weight=3]; 5541[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5541[label="",style="solid", color="blue", weight=9]; 5541 -> 3638[label="",style="solid", color="blue", weight=3]; 5542[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5542[label="",style="solid", color="blue", weight=9]; 5542 -> 3639[label="",style="solid", color="blue", weight=3]; 5543[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5543[label="",style="solid", color="blue", weight=9]; 5543 -> 3640[label="",style="solid", color="blue", weight=3]; 5544[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5544[label="",style="solid", color="blue", weight=9]; 5544 -> 3641[label="",style="solid", color="blue", weight=3]; 5545[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5545[label="",style="solid", color="blue", weight=9]; 5545 -> 3642[label="",style="solid", color="blue", weight=3]; 5546[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5546[label="",style="solid", color="blue", weight=9]; 5546 -> 3643[label="",style="solid", color="blue", weight=3]; 5547[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3459 -> 5547[label="",style="solid", color="blue", weight=9]; 5547 -> 3644[label="",style="solid", color="blue", weight=3]; 3460[label="False",fontsize=16,color="green",shape="box"];3461[label="False",fontsize=16,color="green",shape="box"];3462[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];5548[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5548[label="",style="solid", color="blue", weight=9]; 5548 -> 3645[label="",style="solid", color="blue", weight=3]; 5549[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5549[label="",style="solid", color="blue", weight=9]; 5549 -> 3646[label="",style="solid", color="blue", weight=3]; 5550[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5550[label="",style="solid", color="blue", weight=9]; 5550 -> 3647[label="",style="solid", color="blue", weight=3]; 5551[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5551[label="",style="solid", color="blue", weight=9]; 5551 -> 3648[label="",style="solid", color="blue", weight=3]; 5552[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5552[label="",style="solid", color="blue", weight=9]; 5552 -> 3649[label="",style="solid", color="blue", weight=3]; 5553[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5553[label="",style="solid", color="blue", weight=9]; 5553 -> 3650[label="",style="solid", color="blue", weight=3]; 5554[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5554[label="",style="solid", color="blue", weight=9]; 5554 -> 3651[label="",style="solid", color="blue", weight=3]; 5555[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5555[label="",style="solid", color="blue", weight=9]; 5555 -> 3652[label="",style="solid", color="blue", weight=3]; 5556[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5556[label="",style="solid", color="blue", weight=9]; 5556 -> 3653[label="",style="solid", color="blue", weight=3]; 5557[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5557[label="",style="solid", color="blue", weight=9]; 5557 -> 3654[label="",style="solid", color="blue", weight=3]; 5558[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5558[label="",style="solid", color="blue", weight=9]; 5558 -> 3655[label="",style="solid", color="blue", weight=3]; 5559[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5559[label="",style="solid", color="blue", weight=9]; 5559 -> 3656[label="",style="solid", color="blue", weight=3]; 5560[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5560[label="",style="solid", color="blue", weight=9]; 5560 -> 3657[label="",style="solid", color="blue", weight=3]; 5561[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3462 -> 5561[label="",style="solid", color="blue", weight=9]; 5561 -> 3658[label="",style="solid", color="blue", weight=3]; 3463 -> 3166[label="",style="dashed", color="red", weight=0]; 3463[label="vyy6000 == vyy500 && vyy6001 == vyy501",fontsize=16,color="magenta"];3463 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3464[label="False",fontsize=16,color="green",shape="box"];3465[label="False",fontsize=16,color="green",shape="box"];3466[label="True",fontsize=16,color="green",shape="box"];3467[label="primEqInt (Pos (Succ vyy60000)) vyy50",fontsize=16,color="burlywood",shape="box"];5562[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];3467 -> 5562[label="",style="solid", color="burlywood", weight=9]; 5562 -> 3661[label="",style="solid", color="burlywood", weight=3]; 5563[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];3467 -> 5563[label="",style="solid", color="burlywood", weight=9]; 5563 -> 3662[label="",style="solid", color="burlywood", weight=3]; 3468[label="primEqInt (Pos Zero) vyy50",fontsize=16,color="burlywood",shape="box"];5564[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];3468 -> 5564[label="",style="solid", color="burlywood", weight=9]; 5564 -> 3663[label="",style="solid", color="burlywood", weight=3]; 5565[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];3468 -> 5565[label="",style="solid", color="burlywood", weight=9]; 5565 -> 3664[label="",style="solid", color="burlywood", weight=3]; 3469[label="primEqInt (Neg (Succ vyy60000)) vyy50",fontsize=16,color="burlywood",shape="box"];5566[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];3469 -> 5566[label="",style="solid", color="burlywood", weight=9]; 5566 -> 3665[label="",style="solid", color="burlywood", weight=3]; 5567[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];3469 -> 5567[label="",style="solid", color="burlywood", weight=9]; 5567 -> 3666[label="",style="solid", color="burlywood", weight=3]; 3470[label="primEqInt (Neg Zero) vyy50",fontsize=16,color="burlywood",shape="box"];5568[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];3470 -> 5568[label="",style="solid", color="burlywood", weight=9]; 5568 -> 3667[label="",style="solid", color="burlywood", weight=3]; 5569[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];3470 -> 5569[label="",style="solid", color="burlywood", weight=9]; 5569 -> 3668[label="",style="solid", color="burlywood", weight=3]; 3471[label="True",fontsize=16,color="green",shape="box"];3472[label="False",fontsize=16,color="green",shape="box"];3473[label="False",fontsize=16,color="green",shape="box"];3474[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];5570[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5570[label="",style="solid", color="blue", weight=9]; 5570 -> 3669[label="",style="solid", color="blue", weight=3]; 5571[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5571[label="",style="solid", color="blue", weight=9]; 5571 -> 3670[label="",style="solid", color="blue", weight=3]; 5572[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5572[label="",style="solid", color="blue", weight=9]; 5572 -> 3671[label="",style="solid", color="blue", weight=3]; 5573[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5573[label="",style="solid", color="blue", weight=9]; 5573 -> 3672[label="",style="solid", color="blue", weight=3]; 5574[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5574[label="",style="solid", color="blue", weight=9]; 5574 -> 3673[label="",style="solid", color="blue", weight=3]; 5575[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5575[label="",style="solid", color="blue", weight=9]; 5575 -> 3674[label="",style="solid", color="blue", weight=3]; 5576[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5576[label="",style="solid", color="blue", weight=9]; 5576 -> 3675[label="",style="solid", color="blue", weight=3]; 5577[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5577[label="",style="solid", color="blue", weight=9]; 5577 -> 3676[label="",style="solid", color="blue", weight=3]; 5578[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5578[label="",style="solid", color="blue", weight=9]; 5578 -> 3677[label="",style="solid", color="blue", weight=3]; 5579[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5579[label="",style="solid", color="blue", weight=9]; 5579 -> 3678[label="",style="solid", color="blue", weight=3]; 5580[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5580[label="",style="solid", color="blue", weight=9]; 5580 -> 3679[label="",style="solid", color="blue", weight=3]; 5581[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5581[label="",style="solid", color="blue", weight=9]; 5581 -> 3680[label="",style="solid", color="blue", weight=3]; 5582[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5582[label="",style="solid", color="blue", weight=9]; 5582 -> 3681[label="",style="solid", color="blue", weight=3]; 5583[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3474 -> 5583[label="",style="solid", color="blue", weight=9]; 5583 -> 3682[label="",style="solid", color="blue", weight=3]; 3475[label="primEqChar (Char vyy6000) (Char vyy500)",fontsize=16,color="black",shape="box"];3475 -> 3683[label="",style="solid", color="black", weight=3]; 3476 -> 3166[label="",style="dashed", color="red", weight=0]; 3476[label="vyy6000 == vyy500 && vyy6001 == vyy501",fontsize=16,color="magenta"];3476 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3477[label="True",fontsize=16,color="green",shape="box"];3478[label="False",fontsize=16,color="green",shape="box"];3479[label="False",fontsize=16,color="green",shape="box"];3480[label="False",fontsize=16,color="green",shape="box"];3481[label="True",fontsize=16,color="green",shape="box"];3482[label="False",fontsize=16,color="green",shape="box"];3483[label="False",fontsize=16,color="green",shape="box"];3484[label="False",fontsize=16,color="green",shape="box"];3485[label="True",fontsize=16,color="green",shape="box"];3486 -> 3166[label="",style="dashed", color="red", weight=0]; 3486[label="vyy6000 == vyy500 && vyy6001 == vyy501",fontsize=16,color="magenta"];3486 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3166[label="",style="dashed", color="red", weight=0]; 3487[label="vyy6000 == vyy500 && vyy6001 == vyy501 && vyy6002 == vyy502",fontsize=16,color="magenta"];3487 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3488[label="True",fontsize=16,color="green",shape="box"];3489[label="False",fontsize=16,color="green",shape="box"];3490[label="False",fontsize=16,color="green",shape="box"];3491[label="True",fontsize=16,color="green",shape="box"];3492[label="True",fontsize=16,color="green",shape="box"];3493 -> 2851[label="",style="dashed", color="red", weight=0]; 3493[label="primEqInt vyy6000 vyy500",fontsize=16,color="magenta"];3493 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3493 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3494[label="primEqDouble (Double vyy6000 vyy6001) (Double vyy500 vyy501)",fontsize=16,color="black",shape="box"];3494 -> 3692[label="",style="solid", color="black", weight=3]; 3495[label="vyy189 <= vyy190",fontsize=16,color="burlywood",shape="triangle"];5584[label="vyy189/False",fontsize=10,color="white",style="solid",shape="box"];3495 -> 5584[label="",style="solid", color="burlywood", weight=9]; 5584 -> 3693[label="",style="solid", color="burlywood", weight=3]; 5585[label="vyy189/True",fontsize=10,color="white",style="solid",shape="box"];3495 -> 5585[label="",style="solid", color="burlywood", weight=9]; 5585 -> 3694[label="",style="solid", color="burlywood", weight=3]; 3496[label="vyy189 <= vyy190",fontsize=16,color="black",shape="triangle"];3496 -> 3695[label="",style="solid", color="black", weight=3]; 3497[label="vyy189 <= vyy190",fontsize=16,color="black",shape="triangle"];3497 -> 3696[label="",style="solid", color="black", weight=3]; 3498[label="vyy189 <= vyy190",fontsize=16,color="black",shape="triangle"];3498 -> 3697[label="",style="solid", color="black", weight=3]; 3499[label="vyy189 <= vyy190",fontsize=16,color="burlywood",shape="triangle"];5586[label="vyy189/(vyy1890,vyy1891)",fontsize=10,color="white",style="solid",shape="box"];3499 -> 5586[label="",style="solid", color="burlywood", weight=9]; 5586 -> 3698[label="",style="solid", color="burlywood", weight=3]; 3500[label="vyy189 <= vyy190",fontsize=16,color="black",shape="triangle"];3500 -> 3699[label="",style="solid", color="black", weight=3]; 3501[label="vyy189 <= vyy190",fontsize=16,color="burlywood",shape="triangle"];5587[label="vyy189/Left vyy1890",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5587[label="",style="solid", color="burlywood", weight=9]; 5587 -> 3700[label="",style="solid", color="burlywood", weight=3]; 5588[label="vyy189/Right vyy1890",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5588[label="",style="solid", color="burlywood", weight=9]; 5588 -> 3701[label="",style="solid", color="burlywood", weight=3]; 3502[label="vyy189 <= vyy190",fontsize=16,color="burlywood",shape="triangle"];5589[label="vyy189/(vyy1890,vyy1891,vyy1892)",fontsize=10,color="white",style="solid",shape="box"];3502 -> 5589[label="",style="solid", color="burlywood", weight=9]; 5589 -> 3702[label="",style="solid", color="burlywood", weight=3]; 3503[label="vyy189 <= vyy190",fontsize=16,color="black",shape="triangle"];3503 -> 3703[label="",style="solid", color="black", weight=3]; 3504[label="vyy189 <= vyy190",fontsize=16,color="black",shape="triangle"];3504 -> 3704[label="",style="solid", color="black", weight=3]; 3505[label="vyy189 <= vyy190",fontsize=16,color="black",shape="triangle"];3505 -> 3705[label="",style="solid", color="black", weight=3]; 3506[label="vyy189 <= vyy190",fontsize=16,color="burlywood",shape="triangle"];5590[label="vyy189/LT",fontsize=10,color="white",style="solid",shape="box"];3506 -> 5590[label="",style="solid", color="burlywood", weight=9]; 5590 -> 3706[label="",style="solid", color="burlywood", weight=3]; 5591[label="vyy189/EQ",fontsize=10,color="white",style="solid",shape="box"];3506 -> 5591[label="",style="solid", color="burlywood", weight=9]; 5591 -> 3707[label="",style="solid", color="burlywood", weight=3]; 5592[label="vyy189/GT",fontsize=10,color="white",style="solid",shape="box"];3506 -> 5592[label="",style="solid", color="burlywood", weight=9]; 5592 -> 3708[label="",style="solid", color="burlywood", weight=3]; 3507[label="vyy189 <= vyy190",fontsize=16,color="burlywood",shape="triangle"];5593[label="vyy189/Nothing",fontsize=10,color="white",style="solid",shape="box"];3507 -> 5593[label="",style="solid", color="burlywood", weight=9]; 5593 -> 3709[label="",style="solid", color="burlywood", weight=3]; 5594[label="vyy189/Just vyy1890",fontsize=10,color="white",style="solid",shape="box"];3507 -> 5594[label="",style="solid", color="burlywood", weight=9]; 5594 -> 3710[label="",style="solid", color="burlywood", weight=3]; 3508[label="vyy189 <= vyy190",fontsize=16,color="black",shape="triangle"];3508 -> 3711[label="",style="solid", color="black", weight=3]; 3509[label="compare0 (Left vyy255) (Left vyy256) otherwise",fontsize=16,color="black",shape="box"];3509 -> 3712[label="",style="solid", color="black", weight=3]; 3510[label="LT",fontsize=16,color="green",shape="box"];3511 -> 3495[label="",style="dashed", color="red", weight=0]; 3511[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3511 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3714[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3496[label="",style="dashed", color="red", weight=0]; 3512[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3512 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3497[label="",style="dashed", color="red", weight=0]; 3513[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3513 -> 3717[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3498[label="",style="dashed", color="red", weight=0]; 3514[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3514 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3499[label="",style="dashed", color="red", weight=0]; 3515[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3515 -> 3721[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3500[label="",style="dashed", color="red", weight=0]; 3516[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3516 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3501[label="",style="dashed", color="red", weight=0]; 3517[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3517 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3502[label="",style="dashed", color="red", weight=0]; 3518[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3518 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3503[label="",style="dashed", color="red", weight=0]; 3519[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3519 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3504[label="",style="dashed", color="red", weight=0]; 3520[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3520 -> 3731[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3732[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3505[label="",style="dashed", color="red", weight=0]; 3521[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3521 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3506[label="",style="dashed", color="red", weight=0]; 3522[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3522 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3507[label="",style="dashed", color="red", weight=0]; 3523[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3523 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3508[label="",style="dashed", color="red", weight=0]; 3524[label="vyy196 <= vyy197",fontsize=16,color="magenta"];3524 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3525[label="compare0 (Right vyy262) (Right vyy263) otherwise",fontsize=16,color="black",shape="box"];3525 -> 3741[label="",style="solid", color="black", weight=3]; 3526[label="LT",fontsize=16,color="green",shape="box"];3546 -> 3442[label="",style="dashed", color="red", weight=0]; 3546[label="vyy207 < vyy210",fontsize=16,color="magenta"];3546 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3443[label="",style="dashed", color="red", weight=0]; 3547[label="vyy207 < vyy210",fontsize=16,color="magenta"];3547 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3444[label="",style="dashed", color="red", weight=0]; 3548[label="vyy207 < vyy210",fontsize=16,color="magenta"];3548 -> 3746[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3445[label="",style="dashed", color="red", weight=0]; 3549[label="vyy207 < vyy210",fontsize=16,color="magenta"];3549 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3446[label="",style="dashed", color="red", weight=0]; 3550[label="vyy207 < vyy210",fontsize=16,color="magenta"];3550 -> 3750[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3751[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3447[label="",style="dashed", color="red", weight=0]; 3551[label="vyy207 < vyy210",fontsize=16,color="magenta"];3551 -> 3752[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3448[label="",style="dashed", color="red", weight=0]; 3552[label="vyy207 < vyy210",fontsize=16,color="magenta"];3552 -> 3754[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3449[label="",style="dashed", color="red", weight=0]; 3553[label="vyy207 < vyy210",fontsize=16,color="magenta"];3553 -> 3756[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3757[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3450[label="",style="dashed", color="red", weight=0]; 3554[label="vyy207 < vyy210",fontsize=16,color="magenta"];3554 -> 3758[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3759[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3451[label="",style="dashed", color="red", weight=0]; 3555[label="vyy207 < vyy210",fontsize=16,color="magenta"];3555 -> 3760[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3761[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3452[label="",style="dashed", color="red", weight=0]; 3556[label="vyy207 < vyy210",fontsize=16,color="magenta"];3556 -> 3762[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3453[label="",style="dashed", color="red", weight=0]; 3557[label="vyy207 < vyy210",fontsize=16,color="magenta"];3557 -> 3764[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3765[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3454[label="",style="dashed", color="red", weight=0]; 3558[label="vyy207 < vyy210",fontsize=16,color="magenta"];3558 -> 3766[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3767[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3455[label="",style="dashed", color="red", weight=0]; 3559[label="vyy207 < vyy210",fontsize=16,color="magenta"];3559 -> 3768[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3769[label="",style="dashed", color="magenta", weight=3]; 3560 -> 4112[label="",style="dashed", color="red", weight=0]; 3560[label="vyy208 < vyy211 || vyy208 == vyy211 && vyy209 <= vyy212",fontsize=16,color="magenta"];3560 -> 4113[label="",style="dashed", color="magenta", weight=3]; 3560 -> 4114[label="",style="dashed", color="magenta", weight=3]; 3561[label="vyy207 == vyy210",fontsize=16,color="blue",shape="box"];5595[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5595[label="",style="solid", color="blue", weight=9]; 5595 -> 3772[label="",style="solid", color="blue", weight=3]; 5596[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5596[label="",style="solid", color="blue", weight=9]; 5596 -> 3773[label="",style="solid", color="blue", weight=3]; 5597[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5597[label="",style="solid", color="blue", weight=9]; 5597 -> 3774[label="",style="solid", color="blue", weight=3]; 5598[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5598[label="",style="solid", color="blue", weight=9]; 5598 -> 3775[label="",style="solid", color="blue", weight=3]; 5599[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5599[label="",style="solid", color="blue", weight=9]; 5599 -> 3776[label="",style="solid", color="blue", weight=3]; 5600[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5600[label="",style="solid", color="blue", weight=9]; 5600 -> 3777[label="",style="solid", color="blue", weight=3]; 5601[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5601[label="",style="solid", color="blue", weight=9]; 5601 -> 3778[label="",style="solid", color="blue", weight=3]; 5602[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5602[label="",style="solid", color="blue", weight=9]; 5602 -> 3779[label="",style="solid", color="blue", weight=3]; 5603[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5603[label="",style="solid", color="blue", weight=9]; 5603 -> 3780[label="",style="solid", color="blue", weight=3]; 5604[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5604[label="",style="solid", color="blue", weight=9]; 5604 -> 3781[label="",style="solid", color="blue", weight=3]; 5605[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5605[label="",style="solid", color="blue", weight=9]; 5605 -> 3782[label="",style="solid", color="blue", weight=3]; 5606[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5606[label="",style="solid", color="blue", weight=9]; 5606 -> 3783[label="",style="solid", color="blue", weight=3]; 5607[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5607[label="",style="solid", color="blue", weight=9]; 5607 -> 3784[label="",style="solid", color="blue", weight=3]; 5608[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3561 -> 5608[label="",style="solid", color="blue", weight=9]; 5608 -> 3785[label="",style="solid", color="blue", weight=3]; 3562[label="compare1 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) (False || vyy304)",fontsize=16,color="black",shape="box"];3562 -> 3786[label="",style="solid", color="black", weight=3]; 3563[label="compare1 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) (True || vyy304)",fontsize=16,color="black",shape="box"];3563 -> 3787[label="",style="solid", color="black", weight=3]; 3564[label="primMulNat (Succ vyy5000) vyy6010",fontsize=16,color="burlywood",shape="box"];5609[label="vyy6010/Succ vyy60100",fontsize=10,color="white",style="solid",shape="box"];3564 -> 5609[label="",style="solid", color="burlywood", weight=9]; 5609 -> 3788[label="",style="solid", color="burlywood", weight=3]; 5610[label="vyy6010/Zero",fontsize=10,color="white",style="solid",shape="box"];3564 -> 5610[label="",style="solid", color="burlywood", weight=9]; 5610 -> 3789[label="",style="solid", color="burlywood", weight=3]; 3565[label="primMulNat Zero vyy6010",fontsize=16,color="burlywood",shape="box"];5611[label="vyy6010/Succ vyy60100",fontsize=10,color="white",style="solid",shape="box"];3565 -> 5611[label="",style="solid", color="burlywood", weight=9]; 5611 -> 3790[label="",style="solid", color="burlywood", weight=3]; 5612[label="vyy6010/Zero",fontsize=10,color="white",style="solid",shape="box"];3565 -> 5612[label="",style="solid", color="burlywood", weight=9]; 5612 -> 3791[label="",style="solid", color="burlywood", weight=3]; 3566[label="vyy6010",fontsize=16,color="green",shape="box"];3567[label="vyy500",fontsize=16,color="green",shape="box"];3568[label="vyy500",fontsize=16,color="green",shape="box"];3569[label="vyy6010",fontsize=16,color="green",shape="box"];3570 -> 3495[label="",style="dashed", color="red", weight=0]; 3570[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3570 -> 3792[label="",style="dashed", color="magenta", weight=3]; 3570 -> 3793[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3496[label="",style="dashed", color="red", weight=0]; 3571[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3571 -> 3794[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3795[label="",style="dashed", color="magenta", weight=3]; 3572 -> 3497[label="",style="dashed", color="red", weight=0]; 3572[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3572 -> 3796[label="",style="dashed", color="magenta", weight=3]; 3572 -> 3797[label="",style="dashed", color="magenta", weight=3]; 3573 -> 3498[label="",style="dashed", color="red", weight=0]; 3573[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3573 -> 3798[label="",style="dashed", color="magenta", weight=3]; 3573 -> 3799[label="",style="dashed", color="magenta", weight=3]; 3574 -> 3499[label="",style="dashed", color="red", weight=0]; 3574[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3574 -> 3800[label="",style="dashed", color="magenta", weight=3]; 3574 -> 3801[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3500[label="",style="dashed", color="red", weight=0]; 3575[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3575 -> 3802[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3803[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3501[label="",style="dashed", color="red", weight=0]; 3576[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3576 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3805[label="",style="dashed", color="magenta", weight=3]; 3577 -> 3502[label="",style="dashed", color="red", weight=0]; 3577[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3577 -> 3806[label="",style="dashed", color="magenta", weight=3]; 3577 -> 3807[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3503[label="",style="dashed", color="red", weight=0]; 3578[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3578 -> 3808[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3809[label="",style="dashed", color="magenta", weight=3]; 3579 -> 3504[label="",style="dashed", color="red", weight=0]; 3579[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3579 -> 3810[label="",style="dashed", color="magenta", weight=3]; 3579 -> 3811[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3505[label="",style="dashed", color="red", weight=0]; 3580[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3580 -> 3812[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3813[label="",style="dashed", color="magenta", weight=3]; 3581 -> 3506[label="",style="dashed", color="red", weight=0]; 3581[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3581 -> 3814[label="",style="dashed", color="magenta", weight=3]; 3581 -> 3815[label="",style="dashed", color="magenta", weight=3]; 3582 -> 3507[label="",style="dashed", color="red", weight=0]; 3582[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3582 -> 3816[label="",style="dashed", color="magenta", weight=3]; 3582 -> 3817[label="",style="dashed", color="magenta", weight=3]; 3583 -> 3508[label="",style="dashed", color="red", weight=0]; 3583[label="vyy223 <= vyy224",fontsize=16,color="magenta"];3583 -> 3818[label="",style="dashed", color="magenta", weight=3]; 3583 -> 3819[label="",style="dashed", color="magenta", weight=3]; 3584[label="compare0 (Just vyy272) (Just vyy273) otherwise",fontsize=16,color="black",shape="box"];3584 -> 3820[label="",style="solid", color="black", weight=3]; 3585[label="LT",fontsize=16,color="green",shape="box"];3586 -> 3495[label="",style="dashed", color="red", weight=0]; 3586[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3586 -> 3821[label="",style="dashed", color="magenta", weight=3]; 3586 -> 3822[label="",style="dashed", color="magenta", weight=3]; 3587 -> 3496[label="",style="dashed", color="red", weight=0]; 3587[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3587 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3587 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3588 -> 3497[label="",style="dashed", color="red", weight=0]; 3588[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3588 -> 3825[label="",style="dashed", color="magenta", weight=3]; 3588 -> 3826[label="",style="dashed", color="magenta", weight=3]; 3589 -> 3498[label="",style="dashed", color="red", weight=0]; 3589[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3589 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3589 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3590 -> 3499[label="",style="dashed", color="red", weight=0]; 3590[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3590 -> 3829[label="",style="dashed", color="magenta", weight=3]; 3590 -> 3830[label="",style="dashed", color="magenta", weight=3]; 3591 -> 3500[label="",style="dashed", color="red", weight=0]; 3591[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3591 -> 3831[label="",style="dashed", color="magenta", weight=3]; 3591 -> 3832[label="",style="dashed", color="magenta", weight=3]; 3592 -> 3501[label="",style="dashed", color="red", weight=0]; 3592[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3592 -> 3833[label="",style="dashed", color="magenta", weight=3]; 3592 -> 3834[label="",style="dashed", color="magenta", weight=3]; 3593 -> 3502[label="",style="dashed", color="red", weight=0]; 3593[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3593 -> 3835[label="",style="dashed", color="magenta", weight=3]; 3593 -> 3836[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3503[label="",style="dashed", color="red", weight=0]; 3594[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3594 -> 3837[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3838[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3504[label="",style="dashed", color="red", weight=0]; 3595[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3595 -> 3839[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3840[label="",style="dashed", color="magenta", weight=3]; 3596 -> 3505[label="",style="dashed", color="red", weight=0]; 3596[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3596 -> 3841[label="",style="dashed", color="magenta", weight=3]; 3596 -> 3842[label="",style="dashed", color="magenta", weight=3]; 3597 -> 3506[label="",style="dashed", color="red", weight=0]; 3597[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3597 -> 3843[label="",style="dashed", color="magenta", weight=3]; 3597 -> 3844[label="",style="dashed", color="magenta", weight=3]; 3598 -> 3507[label="",style="dashed", color="red", weight=0]; 3598[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3598 -> 3845[label="",style="dashed", color="magenta", weight=3]; 3598 -> 3846[label="",style="dashed", color="magenta", weight=3]; 3599 -> 3508[label="",style="dashed", color="red", weight=0]; 3599[label="vyy233 <= vyy235",fontsize=16,color="magenta"];3599 -> 3847[label="",style="dashed", color="magenta", weight=3]; 3599 -> 3848[label="",style="dashed", color="magenta", weight=3]; 3600 -> 2718[label="",style="dashed", color="red", weight=0]; 3600[label="vyy232 == vyy234",fontsize=16,color="magenta"];3600 -> 3849[label="",style="dashed", color="magenta", weight=3]; 3600 -> 3850[label="",style="dashed", color="magenta", weight=3]; 3601 -> 2721[label="",style="dashed", color="red", weight=0]; 3601[label="vyy232 == vyy234",fontsize=16,color="magenta"];3601 -> 3851[label="",style="dashed", color="magenta", weight=3]; 3601 -> 3852[label="",style="dashed", color="magenta", weight=3]; 3602 -> 2713[label="",style="dashed", color="red", weight=0]; 3602[label="vyy232 == vyy234",fontsize=16,color="magenta"];3602 -> 3853[label="",style="dashed", color="magenta", weight=3]; 3602 -> 3854[label="",style="dashed", color="magenta", weight=3]; 3603 -> 2711[label="",style="dashed", color="red", weight=0]; 3603[label="vyy232 == vyy234",fontsize=16,color="magenta"];3603 -> 3855[label="",style="dashed", color="magenta", weight=3]; 3603 -> 3856[label="",style="dashed", color="magenta", weight=3]; 3604 -> 2716[label="",style="dashed", color="red", weight=0]; 3604[label="vyy232 == vyy234",fontsize=16,color="magenta"];3604 -> 3857[label="",style="dashed", color="magenta", weight=3]; 3604 -> 3858[label="",style="dashed", color="magenta", weight=3]; 3605 -> 2719[label="",style="dashed", color="red", weight=0]; 3605[label="vyy232 == vyy234",fontsize=16,color="magenta"];3605 -> 3859[label="",style="dashed", color="magenta", weight=3]; 3605 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3606 -> 2709[label="",style="dashed", color="red", weight=0]; 3606[label="vyy232 == vyy234",fontsize=16,color="magenta"];3606 -> 3861[label="",style="dashed", color="magenta", weight=3]; 3606 -> 3862[label="",style="dashed", color="magenta", weight=3]; 3607 -> 2717[label="",style="dashed", color="red", weight=0]; 3607[label="vyy232 == vyy234",fontsize=16,color="magenta"];3607 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3607 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3608 -> 2708[label="",style="dashed", color="red", weight=0]; 3608[label="vyy232 == vyy234",fontsize=16,color="magenta"];3608 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3608 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3609 -> 2710[label="",style="dashed", color="red", weight=0]; 3609[label="vyy232 == vyy234",fontsize=16,color="magenta"];3609 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3609 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3610 -> 2714[label="",style="dashed", color="red", weight=0]; 3610[label="vyy232 == vyy234",fontsize=16,color="magenta"];3610 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3610 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3611 -> 2715[label="",style="dashed", color="red", weight=0]; 3611[label="vyy232 == vyy234",fontsize=16,color="magenta"];3611 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3611 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3612 -> 2712[label="",style="dashed", color="red", weight=0]; 3612[label="vyy232 == vyy234",fontsize=16,color="magenta"];3612 -> 3873[label="",style="dashed", color="magenta", weight=3]; 3612 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3613 -> 2720[label="",style="dashed", color="red", weight=0]; 3613[label="vyy232 == vyy234",fontsize=16,color="magenta"];3613 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3613 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3614 -> 2715[label="",style="dashed", color="red", weight=0]; 3614[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3614 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3614 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3615 -> 2715[label="",style="dashed", color="red", weight=0]; 3615[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3615 -> 3879[label="",style="dashed", color="magenta", weight=3]; 3615 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3616 -> 2715[label="",style="dashed", color="red", weight=0]; 3616[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3616 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3616 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3617 -> 2715[label="",style="dashed", color="red", weight=0]; 3617[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3617 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3617 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3618 -> 2715[label="",style="dashed", color="red", weight=0]; 3618[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3618 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3618 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3619 -> 2715[label="",style="dashed", color="red", weight=0]; 3619[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3619 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3619 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3620 -> 2715[label="",style="dashed", color="red", weight=0]; 3620[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3620 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3620 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3621 -> 2715[label="",style="dashed", color="red", weight=0]; 3621[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3621 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3621 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3622 -> 2715[label="",style="dashed", color="red", weight=0]; 3622[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3622 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3622 -> 3894[label="",style="dashed", color="magenta", weight=3]; 3623 -> 2715[label="",style="dashed", color="red", weight=0]; 3623[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3623 -> 3895[label="",style="dashed", color="magenta", weight=3]; 3623 -> 3896[label="",style="dashed", color="magenta", weight=3]; 3624 -> 2715[label="",style="dashed", color="red", weight=0]; 3624[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3624 -> 3897[label="",style="dashed", color="magenta", weight=3]; 3624 -> 3898[label="",style="dashed", color="magenta", weight=3]; 3625 -> 2715[label="",style="dashed", color="red", weight=0]; 3625[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3625 -> 3899[label="",style="dashed", color="magenta", weight=3]; 3625 -> 3900[label="",style="dashed", color="magenta", weight=3]; 3626 -> 2715[label="",style="dashed", color="red", weight=0]; 3626[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3626 -> 3901[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3902[label="",style="dashed", color="magenta", weight=3]; 3627 -> 2715[label="",style="dashed", color="red", weight=0]; 3627[label="compare vyy232 vyy234 == LT",fontsize=16,color="magenta"];3627 -> 3903[label="",style="dashed", color="magenta", weight=3]; 3627 -> 3904[label="",style="dashed", color="magenta", weight=3]; 3628[label="compare1 (vyy282,vyy283) (vyy284,vyy285) vyy287",fontsize=16,color="burlywood",shape="triangle"];5613[label="vyy287/False",fontsize=10,color="white",style="solid",shape="box"];3628 -> 5613[label="",style="solid", color="burlywood", weight=9]; 5613 -> 3905[label="",style="solid", color="burlywood", weight=3]; 5614[label="vyy287/True",fontsize=10,color="white",style="solid",shape="box"];3628 -> 5614[label="",style="solid", color="burlywood", weight=9]; 5614 -> 3906[label="",style="solid", color="burlywood", weight=3]; 3629 -> 3628[label="",style="dashed", color="red", weight=0]; 3629[label="compare1 (vyy282,vyy283) (vyy284,vyy285) True",fontsize=16,color="magenta"];3629 -> 3907[label="",style="dashed", color="magenta", weight=3]; 3630 -> 2711[label="",style="dashed", color="red", weight=0]; 3630[label="vyy6000 * vyy501 == vyy6001 * vyy500",fontsize=16,color="magenta"];3630 -> 3908[label="",style="dashed", color="magenta", weight=3]; 3630 -> 3909[label="",style="dashed", color="magenta", weight=3]; 3631 -> 2708[label="",style="dashed", color="red", weight=0]; 3631[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3631 -> 3910[label="",style="dashed", color="magenta", weight=3]; 3631 -> 3911[label="",style="dashed", color="magenta", weight=3]; 3632 -> 2709[label="",style="dashed", color="red", weight=0]; 3632[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3632 -> 3912[label="",style="dashed", color="magenta", weight=3]; 3632 -> 3913[label="",style="dashed", color="magenta", weight=3]; 3633 -> 2710[label="",style="dashed", color="red", weight=0]; 3633[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3633 -> 3914[label="",style="dashed", color="magenta", weight=3]; 3633 -> 3915[label="",style="dashed", color="magenta", weight=3]; 3634 -> 2711[label="",style="dashed", color="red", weight=0]; 3634[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3634 -> 3916[label="",style="dashed", color="magenta", weight=3]; 3634 -> 3917[label="",style="dashed", color="magenta", weight=3]; 3635 -> 2712[label="",style="dashed", color="red", weight=0]; 3635[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3635 -> 3918[label="",style="dashed", color="magenta", weight=3]; 3635 -> 3919[label="",style="dashed", color="magenta", weight=3]; 3636 -> 2713[label="",style="dashed", color="red", weight=0]; 3636[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3636 -> 3920[label="",style="dashed", color="magenta", weight=3]; 3636 -> 3921[label="",style="dashed", color="magenta", weight=3]; 3637 -> 2714[label="",style="dashed", color="red", weight=0]; 3637[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3637 -> 3922[label="",style="dashed", color="magenta", weight=3]; 3637 -> 3923[label="",style="dashed", color="magenta", weight=3]; 3638 -> 2715[label="",style="dashed", color="red", weight=0]; 3638[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3638 -> 3924[label="",style="dashed", color="magenta", weight=3]; 3638 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3639 -> 2716[label="",style="dashed", color="red", weight=0]; 3639[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3639 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3639 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3640 -> 2717[label="",style="dashed", color="red", weight=0]; 3640[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3640 -> 3928[label="",style="dashed", color="magenta", weight=3]; 3640 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3641 -> 2718[label="",style="dashed", color="red", weight=0]; 3641[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3641 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3931[label="",style="dashed", color="magenta", weight=3]; 3642 -> 2719[label="",style="dashed", color="red", weight=0]; 3642[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3642 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3642 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3643 -> 2720[label="",style="dashed", color="red", weight=0]; 3643[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3643 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3643 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3644 -> 2721[label="",style="dashed", color="red", weight=0]; 3644[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3644 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3644 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3645 -> 2708[label="",style="dashed", color="red", weight=0]; 3645[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3645 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3645 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3646 -> 2709[label="",style="dashed", color="red", weight=0]; 3646[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3646 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3646 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3647 -> 2710[label="",style="dashed", color="red", weight=0]; 3647[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3647 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3647 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3648 -> 2711[label="",style="dashed", color="red", weight=0]; 3648[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3648 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3649 -> 2712[label="",style="dashed", color="red", weight=0]; 3649[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3649 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3649 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3650 -> 2713[label="",style="dashed", color="red", weight=0]; 3650[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3650 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3650 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3651 -> 2714[label="",style="dashed", color="red", weight=0]; 3651[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3651 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3651 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3652 -> 2715[label="",style="dashed", color="red", weight=0]; 3652[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3652 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3652 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3653 -> 2716[label="",style="dashed", color="red", weight=0]; 3653[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3653 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3653 -> 3955[label="",style="dashed", color="magenta", weight=3]; 3654 -> 2717[label="",style="dashed", color="red", weight=0]; 3654[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3654 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3654 -> 3957[label="",style="dashed", color="magenta", weight=3]; 3655 -> 2718[label="",style="dashed", color="red", weight=0]; 3655[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3655 -> 3958[label="",style="dashed", color="magenta", weight=3]; 3655 -> 3959[label="",style="dashed", color="magenta", weight=3]; 3656 -> 2719[label="",style="dashed", color="red", weight=0]; 3656[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3656 -> 3960[label="",style="dashed", color="magenta", weight=3]; 3656 -> 3961[label="",style="dashed", color="magenta", weight=3]; 3657 -> 2720[label="",style="dashed", color="red", weight=0]; 3657[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3657 -> 3962[label="",style="dashed", color="magenta", weight=3]; 3657 -> 3963[label="",style="dashed", color="magenta", weight=3]; 3658 -> 2721[label="",style="dashed", color="red", weight=0]; 3658[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3658 -> 3964[label="",style="dashed", color="magenta", weight=3]; 3658 -> 3965[label="",style="dashed", color="magenta", weight=3]; 3659 -> 2710[label="",style="dashed", color="red", weight=0]; 3659[label="vyy6001 == vyy501",fontsize=16,color="magenta"];3659 -> 3966[label="",style="dashed", color="magenta", weight=3]; 3659 -> 3967[label="",style="dashed", color="magenta", weight=3]; 3660[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];5615[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5615[label="",style="solid", color="blue", weight=9]; 5615 -> 3968[label="",style="solid", color="blue", weight=3]; 5616[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5616[label="",style="solid", color="blue", weight=9]; 5616 -> 3969[label="",style="solid", color="blue", weight=3]; 5617[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5617[label="",style="solid", color="blue", weight=9]; 5617 -> 3970[label="",style="solid", color="blue", weight=3]; 5618[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5618[label="",style="solid", color="blue", weight=9]; 5618 -> 3971[label="",style="solid", color="blue", weight=3]; 5619[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5619[label="",style="solid", color="blue", weight=9]; 5619 -> 3972[label="",style="solid", color="blue", weight=3]; 5620[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5620[label="",style="solid", color="blue", weight=9]; 5620 -> 3973[label="",style="solid", color="blue", weight=3]; 5621[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5621[label="",style="solid", color="blue", weight=9]; 5621 -> 3974[label="",style="solid", color="blue", weight=3]; 5622[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5622[label="",style="solid", color="blue", weight=9]; 5622 -> 3975[label="",style="solid", color="blue", weight=3]; 5623[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5623[label="",style="solid", color="blue", weight=9]; 5623 -> 3976[label="",style="solid", color="blue", weight=3]; 5624[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5624[label="",style="solid", color="blue", weight=9]; 5624 -> 3977[label="",style="solid", color="blue", weight=3]; 5625[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5625[label="",style="solid", color="blue", weight=9]; 5625 -> 3978[label="",style="solid", color="blue", weight=3]; 5626[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5626[label="",style="solid", color="blue", weight=9]; 5626 -> 3979[label="",style="solid", color="blue", weight=3]; 5627[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5627[label="",style="solid", color="blue", weight=9]; 5627 -> 3980[label="",style="solid", color="blue", weight=3]; 5628[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3660 -> 5628[label="",style="solid", color="blue", weight=9]; 5628 -> 3981[label="",style="solid", color="blue", weight=3]; 3661[label="primEqInt (Pos (Succ vyy60000)) (Pos vyy500)",fontsize=16,color="burlywood",shape="box"];5629[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];3661 -> 5629[label="",style="solid", color="burlywood", weight=9]; 5629 -> 3982[label="",style="solid", color="burlywood", weight=3]; 5630[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];3661 -> 5630[label="",style="solid", color="burlywood", weight=9]; 5630 -> 3983[label="",style="solid", color="burlywood", weight=3]; 3662[label="primEqInt (Pos (Succ vyy60000)) (Neg vyy500)",fontsize=16,color="black",shape="box"];3662 -> 3984[label="",style="solid", color="black", weight=3]; 3663[label="primEqInt (Pos Zero) (Pos vyy500)",fontsize=16,color="burlywood",shape="box"];5631[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];3663 -> 5631[label="",style="solid", color="burlywood", weight=9]; 5631 -> 3985[label="",style="solid", color="burlywood", weight=3]; 5632[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];3663 -> 5632[label="",style="solid", color="burlywood", weight=9]; 5632 -> 3986[label="",style="solid", color="burlywood", weight=3]; 3664[label="primEqInt (Pos Zero) (Neg vyy500)",fontsize=16,color="burlywood",shape="box"];5633[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];3664 -> 5633[label="",style="solid", color="burlywood", weight=9]; 5633 -> 3987[label="",style="solid", color="burlywood", weight=3]; 5634[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];3664 -> 5634[label="",style="solid", color="burlywood", weight=9]; 5634 -> 3988[label="",style="solid", color="burlywood", weight=3]; 3665[label="primEqInt (Neg (Succ vyy60000)) (Pos vyy500)",fontsize=16,color="black",shape="box"];3665 -> 3989[label="",style="solid", color="black", weight=3]; 3666[label="primEqInt (Neg (Succ vyy60000)) (Neg vyy500)",fontsize=16,color="burlywood",shape="box"];5635[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];3666 -> 5635[label="",style="solid", color="burlywood", weight=9]; 5635 -> 3990[label="",style="solid", color="burlywood", weight=3]; 5636[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];3666 -> 5636[label="",style="solid", color="burlywood", weight=9]; 5636 -> 3991[label="",style="solid", color="burlywood", weight=3]; 3667[label="primEqInt (Neg Zero) (Pos vyy500)",fontsize=16,color="burlywood",shape="box"];5637[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];3667 -> 5637[label="",style="solid", color="burlywood", weight=9]; 5637 -> 3992[label="",style="solid", color="burlywood", weight=3]; 5638[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];3667 -> 5638[label="",style="solid", color="burlywood", weight=9]; 5638 -> 3993[label="",style="solid", color="burlywood", weight=3]; 3668[label="primEqInt (Neg Zero) (Neg vyy500)",fontsize=16,color="burlywood",shape="box"];5639[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];3668 -> 5639[label="",style="solid", color="burlywood", weight=9]; 5639 -> 3994[label="",style="solid", color="burlywood", weight=3]; 5640[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];3668 -> 5640[label="",style="solid", color="burlywood", weight=9]; 5640 -> 3995[label="",style="solid", color="burlywood", weight=3]; 3669 -> 2708[label="",style="dashed", color="red", weight=0]; 3669[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3669 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3669 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3670 -> 2709[label="",style="dashed", color="red", weight=0]; 3670[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3670 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3670 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3671 -> 2710[label="",style="dashed", color="red", weight=0]; 3671[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3671 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3671 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3672 -> 2711[label="",style="dashed", color="red", weight=0]; 3672[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3672 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3672 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3673 -> 2712[label="",style="dashed", color="red", weight=0]; 3673[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3673 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3673 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3674 -> 2713[label="",style="dashed", color="red", weight=0]; 3674[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3674 -> 4006[label="",style="dashed", color="magenta", weight=3]; 3674 -> 4007[label="",style="dashed", color="magenta", weight=3]; 3675 -> 2714[label="",style="dashed", color="red", weight=0]; 3675[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3675 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3675 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3676 -> 2715[label="",style="dashed", color="red", weight=0]; 3676[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3676 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3676 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3677 -> 2716[label="",style="dashed", color="red", weight=0]; 3677[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3677 -> 4012[label="",style="dashed", color="magenta", weight=3]; 3677 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3678 -> 2717[label="",style="dashed", color="red", weight=0]; 3678[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3678 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3678 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3679 -> 2718[label="",style="dashed", color="red", weight=0]; 3679[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3679 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3679 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3680 -> 2719[label="",style="dashed", color="red", weight=0]; 3680[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3680 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3680 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3681 -> 2720[label="",style="dashed", color="red", weight=0]; 3681[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3681 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3681 -> 4021[label="",style="dashed", color="magenta", weight=3]; 3682 -> 2721[label="",style="dashed", color="red", weight=0]; 3682[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3682 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3682 -> 4023[label="",style="dashed", color="magenta", weight=3]; 3683[label="primEqNat vyy6000 vyy500",fontsize=16,color="burlywood",shape="triangle"];5641[label="vyy6000/Succ vyy60000",fontsize=10,color="white",style="solid",shape="box"];3683 -> 5641[label="",style="solid", color="burlywood", weight=9]; 5641 -> 4024[label="",style="solid", color="burlywood", weight=3]; 5642[label="vyy6000/Zero",fontsize=10,color="white",style="solid",shape="box"];3683 -> 5642[label="",style="solid", color="burlywood", weight=9]; 5642 -> 4025[label="",style="solid", color="burlywood", weight=3]; 3684[label="vyy6001 == vyy501",fontsize=16,color="blue",shape="box"];5643[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3684 -> 5643[label="",style="solid", color="blue", weight=9]; 5643 -> 4026[label="",style="solid", color="blue", weight=3]; 5644[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3684 -> 5644[label="",style="solid", color="blue", weight=9]; 5644 -> 4027[label="",style="solid", color="blue", weight=3]; 3685[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];5645[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3685 -> 5645[label="",style="solid", color="blue", weight=9]; 5645 -> 4028[label="",style="solid", color="blue", weight=3]; 5646[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3685 -> 5646[label="",style="solid", color="blue", weight=9]; 5646 -> 4029[label="",style="solid", color="blue", weight=3]; 3686[label="vyy6001 == vyy501",fontsize=16,color="blue",shape="box"];5647[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5647[label="",style="solid", color="blue", weight=9]; 5647 -> 4030[label="",style="solid", color="blue", weight=3]; 5648[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5648[label="",style="solid", color="blue", weight=9]; 5648 -> 4031[label="",style="solid", color="blue", weight=3]; 5649[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5649[label="",style="solid", color="blue", weight=9]; 5649 -> 4032[label="",style="solid", color="blue", weight=3]; 5650[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5650[label="",style="solid", color="blue", weight=9]; 5650 -> 4033[label="",style="solid", color="blue", weight=3]; 5651[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5651[label="",style="solid", color="blue", weight=9]; 5651 -> 4034[label="",style="solid", color="blue", weight=3]; 5652[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5652[label="",style="solid", color="blue", weight=9]; 5652 -> 4035[label="",style="solid", color="blue", weight=3]; 5653[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5653[label="",style="solid", color="blue", weight=9]; 5653 -> 4036[label="",style="solid", color="blue", weight=3]; 5654[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5654[label="",style="solid", color="blue", weight=9]; 5654 -> 4037[label="",style="solid", color="blue", weight=3]; 5655[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5655[label="",style="solid", color="blue", weight=9]; 5655 -> 4038[label="",style="solid", color="blue", weight=3]; 5656[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5656[label="",style="solid", color="blue", weight=9]; 5656 -> 4039[label="",style="solid", color="blue", weight=3]; 5657[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5657[label="",style="solid", color="blue", weight=9]; 5657 -> 4040[label="",style="solid", color="blue", weight=3]; 5658[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5658[label="",style="solid", color="blue", weight=9]; 5658 -> 4041[label="",style="solid", color="blue", weight=3]; 5659[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5659[label="",style="solid", color="blue", weight=9]; 5659 -> 4042[label="",style="solid", color="blue", weight=3]; 5660[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3686 -> 5660[label="",style="solid", color="blue", weight=9]; 5660 -> 4043[label="",style="solid", color="blue", weight=3]; 3687[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];5661[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5661[label="",style="solid", color="blue", weight=9]; 5661 -> 4044[label="",style="solid", color="blue", weight=3]; 5662[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5662[label="",style="solid", color="blue", weight=9]; 5662 -> 4045[label="",style="solid", color="blue", weight=3]; 5663[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5663[label="",style="solid", color="blue", weight=9]; 5663 -> 4046[label="",style="solid", color="blue", weight=3]; 5664[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5664[label="",style="solid", color="blue", weight=9]; 5664 -> 4047[label="",style="solid", color="blue", weight=3]; 5665[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5665[label="",style="solid", color="blue", weight=9]; 5665 -> 4048[label="",style="solid", color="blue", weight=3]; 5666[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5666[label="",style="solid", color="blue", weight=9]; 5666 -> 4049[label="",style="solid", color="blue", weight=3]; 5667[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5667[label="",style="solid", color="blue", weight=9]; 5667 -> 4050[label="",style="solid", color="blue", weight=3]; 5668[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5668[label="",style="solid", color="blue", weight=9]; 5668 -> 4051[label="",style="solid", color="blue", weight=3]; 5669[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5669[label="",style="solid", color="blue", weight=9]; 5669 -> 4052[label="",style="solid", color="blue", weight=3]; 5670[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5670[label="",style="solid", color="blue", weight=9]; 5670 -> 4053[label="",style="solid", color="blue", weight=3]; 5671[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5671[label="",style="solid", color="blue", weight=9]; 5671 -> 4054[label="",style="solid", color="blue", weight=3]; 5672[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5672[label="",style="solid", color="blue", weight=9]; 5672 -> 4055[label="",style="solid", color="blue", weight=3]; 5673[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5673[label="",style="solid", color="blue", weight=9]; 5673 -> 4056[label="",style="solid", color="blue", weight=3]; 5674[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3687 -> 5674[label="",style="solid", color="blue", weight=9]; 5674 -> 4057[label="",style="solid", color="blue", weight=3]; 3688 -> 3166[label="",style="dashed", color="red", weight=0]; 3688[label="vyy6001 == vyy501 && vyy6002 == vyy502",fontsize=16,color="magenta"];3688 -> 4058[label="",style="dashed", color="magenta", weight=3]; 3688 -> 4059[label="",style="dashed", color="magenta", weight=3]; 3689[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];5675[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5675[label="",style="solid", color="blue", weight=9]; 5675 -> 4060[label="",style="solid", color="blue", weight=3]; 5676[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5676[label="",style="solid", color="blue", weight=9]; 5676 -> 4061[label="",style="solid", color="blue", weight=3]; 5677[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5677[label="",style="solid", color="blue", weight=9]; 5677 -> 4062[label="",style="solid", color="blue", weight=3]; 5678[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5678[label="",style="solid", color="blue", weight=9]; 5678 -> 4063[label="",style="solid", color="blue", weight=3]; 5679[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5679[label="",style="solid", color="blue", weight=9]; 5679 -> 4064[label="",style="solid", color="blue", weight=3]; 5680[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5680[label="",style="solid", color="blue", weight=9]; 5680 -> 4065[label="",style="solid", color="blue", weight=3]; 5681[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5681[label="",style="solid", color="blue", weight=9]; 5681 -> 4066[label="",style="solid", color="blue", weight=3]; 5682[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5682[label="",style="solid", color="blue", weight=9]; 5682 -> 4067[label="",style="solid", color="blue", weight=3]; 5683[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5683[label="",style="solid", color="blue", weight=9]; 5683 -> 4068[label="",style="solid", color="blue", weight=3]; 5684[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5684[label="",style="solid", color="blue", weight=9]; 5684 -> 4069[label="",style="solid", color="blue", weight=3]; 5685[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5685[label="",style="solid", color="blue", weight=9]; 5685 -> 4070[label="",style="solid", color="blue", weight=3]; 5686[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5686[label="",style="solid", color="blue", weight=9]; 5686 -> 4071[label="",style="solid", color="blue", weight=3]; 5687[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5687[label="",style="solid", color="blue", weight=9]; 5687 -> 4072[label="",style="solid", color="blue", weight=3]; 5688[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3689 -> 5688[label="",style="solid", color="blue", weight=9]; 5688 -> 4073[label="",style="solid", color="blue", weight=3]; 3690[label="vyy500",fontsize=16,color="green",shape="box"];3691[label="vyy6000",fontsize=16,color="green",shape="box"];3692 -> 2711[label="",style="dashed", color="red", weight=0]; 3692[label="vyy6000 * vyy501 == vyy6001 * vyy500",fontsize=16,color="magenta"];3692 -> 4074[label="",style="dashed", color="magenta", weight=3]; 3692 -> 4075[label="",style="dashed", color="magenta", weight=3]; 3693[label="False <= vyy190",fontsize=16,color="burlywood",shape="box"];5689[label="vyy190/False",fontsize=10,color="white",style="solid",shape="box"];3693 -> 5689[label="",style="solid", color="burlywood", weight=9]; 5689 -> 4076[label="",style="solid", color="burlywood", weight=3]; 5690[label="vyy190/True",fontsize=10,color="white",style="solid",shape="box"];3693 -> 5690[label="",style="solid", color="burlywood", weight=9]; 5690 -> 4077[label="",style="solid", color="burlywood", weight=3]; 3694[label="True <= vyy190",fontsize=16,color="burlywood",shape="box"];5691[label="vyy190/False",fontsize=10,color="white",style="solid",shape="box"];3694 -> 5691[label="",style="solid", color="burlywood", weight=9]; 5691 -> 4078[label="",style="solid", color="burlywood", weight=3]; 5692[label="vyy190/True",fontsize=10,color="white",style="solid",shape="box"];3694 -> 5692[label="",style="solid", color="burlywood", weight=9]; 5692 -> 4079[label="",style="solid", color="burlywood", weight=3]; 3695 -> 4080[label="",style="dashed", color="red", weight=0]; 3695[label="compare vyy189 vyy190 /= GT",fontsize=16,color="magenta"];3695 -> 4081[label="",style="dashed", color="magenta", weight=3]; 3696 -> 4080[label="",style="dashed", color="red", weight=0]; 3696[label="compare vyy189 vyy190 /= GT",fontsize=16,color="magenta"];3696 -> 4082[label="",style="dashed", color="magenta", weight=3]; 3697 -> 4080[label="",style="dashed", color="red", weight=0]; 3697[label="compare vyy189 vyy190 /= GT",fontsize=16,color="magenta"];3697 -> 4083[label="",style="dashed", color="magenta", weight=3]; 3698[label="(vyy1890,vyy1891) <= vyy190",fontsize=16,color="burlywood",shape="box"];5693[label="vyy190/(vyy1900,vyy1901)",fontsize=10,color="white",style="solid",shape="box"];3698 -> 5693[label="",style="solid", color="burlywood", weight=9]; 5693 -> 4089[label="",style="solid", color="burlywood", weight=3]; 3699 -> 4080[label="",style="dashed", color="red", weight=0]; 3699[label="compare vyy189 vyy190 /= GT",fontsize=16,color="magenta"];3699 -> 4084[label="",style="dashed", color="magenta", weight=3]; 3700[label="Left vyy1890 <= vyy190",fontsize=16,color="burlywood",shape="box"];5694[label="vyy190/Left vyy1900",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5694[label="",style="solid", color="burlywood", weight=9]; 5694 -> 4090[label="",style="solid", color="burlywood", weight=3]; 5695[label="vyy190/Right vyy1900",fontsize=10,color="white",style="solid",shape="box"];3700 -> 5695[label="",style="solid", color="burlywood", weight=9]; 5695 -> 4091[label="",style="solid", color="burlywood", weight=3]; 3701[label="Right vyy1890 <= vyy190",fontsize=16,color="burlywood",shape="box"];5696[label="vyy190/Left vyy1900",fontsize=10,color="white",style="solid",shape="box"];3701 -> 5696[label="",style="solid", color="burlywood", weight=9]; 5696 -> 4092[label="",style="solid", color="burlywood", weight=3]; 5697[label="vyy190/Right vyy1900",fontsize=10,color="white",style="solid",shape="box"];3701 -> 5697[label="",style="solid", color="burlywood", weight=9]; 5697 -> 4093[label="",style="solid", color="burlywood", weight=3]; 3702[label="(vyy1890,vyy1891,vyy1892) <= vyy190",fontsize=16,color="burlywood",shape="box"];5698[label="vyy190/(vyy1900,vyy1901,vyy1902)",fontsize=10,color="white",style="solid",shape="box"];3702 -> 5698[label="",style="solid", color="burlywood", weight=9]; 5698 -> 4094[label="",style="solid", color="burlywood", weight=3]; 3703 -> 4080[label="",style="dashed", color="red", weight=0]; 3703[label="compare vyy189 vyy190 /= GT",fontsize=16,color="magenta"];3703 -> 4085[label="",style="dashed", color="magenta", weight=3]; 3704 -> 4080[label="",style="dashed", color="red", weight=0]; 3704[label="compare vyy189 vyy190 /= GT",fontsize=16,color="magenta"];3704 -> 4086[label="",style="dashed", color="magenta", weight=3]; 3705 -> 4080[label="",style="dashed", color="red", weight=0]; 3705[label="compare vyy189 vyy190 /= GT",fontsize=16,color="magenta"];3705 -> 4087[label="",style="dashed", color="magenta", weight=3]; 3706[label="LT <= vyy190",fontsize=16,color="burlywood",shape="box"];5699[label="vyy190/LT",fontsize=10,color="white",style="solid",shape="box"];3706 -> 5699[label="",style="solid", color="burlywood", weight=9]; 5699 -> 4095[label="",style="solid", color="burlywood", weight=3]; 5700[label="vyy190/EQ",fontsize=10,color="white",style="solid",shape="box"];3706 -> 5700[label="",style="solid", color="burlywood", weight=9]; 5700 -> 4096[label="",style="solid", color="burlywood", weight=3]; 5701[label="vyy190/GT",fontsize=10,color="white",style="solid",shape="box"];3706 -> 5701[label="",style="solid", color="burlywood", weight=9]; 5701 -> 4097[label="",style="solid", color="burlywood", weight=3]; 3707[label="EQ <= vyy190",fontsize=16,color="burlywood",shape="box"];5702[label="vyy190/LT",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5702[label="",style="solid", color="burlywood", weight=9]; 5702 -> 4098[label="",style="solid", color="burlywood", weight=3]; 5703[label="vyy190/EQ",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5703[label="",style="solid", color="burlywood", weight=9]; 5703 -> 4099[label="",style="solid", color="burlywood", weight=3]; 5704[label="vyy190/GT",fontsize=10,color="white",style="solid",shape="box"];3707 -> 5704[label="",style="solid", color="burlywood", weight=9]; 5704 -> 4100[label="",style="solid", color="burlywood", weight=3]; 3708[label="GT <= vyy190",fontsize=16,color="burlywood",shape="box"];5705[label="vyy190/LT",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5705[label="",style="solid", color="burlywood", weight=9]; 5705 -> 4101[label="",style="solid", color="burlywood", weight=3]; 5706[label="vyy190/EQ",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5706[label="",style="solid", color="burlywood", weight=9]; 5706 -> 4102[label="",style="solid", color="burlywood", weight=3]; 5707[label="vyy190/GT",fontsize=10,color="white",style="solid",shape="box"];3708 -> 5707[label="",style="solid", color="burlywood", weight=9]; 5707 -> 4103[label="",style="solid", color="burlywood", weight=3]; 3709[label="Nothing <= vyy190",fontsize=16,color="burlywood",shape="box"];5708[label="vyy190/Nothing",fontsize=10,color="white",style="solid",shape="box"];3709 -> 5708[label="",style="solid", color="burlywood", weight=9]; 5708 -> 4104[label="",style="solid", color="burlywood", weight=3]; 5709[label="vyy190/Just vyy1900",fontsize=10,color="white",style="solid",shape="box"];3709 -> 5709[label="",style="solid", color="burlywood", weight=9]; 5709 -> 4105[label="",style="solid", color="burlywood", weight=3]; 3710[label="Just vyy1890 <= vyy190",fontsize=16,color="burlywood",shape="box"];5710[label="vyy190/Nothing",fontsize=10,color="white",style="solid",shape="box"];3710 -> 5710[label="",style="solid", color="burlywood", weight=9]; 5710 -> 4106[label="",style="solid", color="burlywood", weight=3]; 5711[label="vyy190/Just vyy1900",fontsize=10,color="white",style="solid",shape="box"];3710 -> 5711[label="",style="solid", color="burlywood", weight=9]; 5711 -> 4107[label="",style="solid", color="burlywood", weight=3]; 3711 -> 4080[label="",style="dashed", color="red", weight=0]; 3711[label="compare vyy189 vyy190 /= GT",fontsize=16,color="magenta"];3711 -> 4088[label="",style="dashed", color="magenta", weight=3]; 3712[label="compare0 (Left vyy255) (Left vyy256) True",fontsize=16,color="black",shape="box"];3712 -> 4108[label="",style="solid", color="black", weight=3]; 3713[label="vyy197",fontsize=16,color="green",shape="box"];3714[label="vyy196",fontsize=16,color="green",shape="box"];3715[label="vyy197",fontsize=16,color="green",shape="box"];3716[label="vyy196",fontsize=16,color="green",shape="box"];3717[label="vyy197",fontsize=16,color="green",shape="box"];3718[label="vyy196",fontsize=16,color="green",shape="box"];3719[label="vyy197",fontsize=16,color="green",shape="box"];3720[label="vyy196",fontsize=16,color="green",shape="box"];3721[label="vyy197",fontsize=16,color="green",shape="box"];3722[label="vyy196",fontsize=16,color="green",shape="box"];3723[label="vyy197",fontsize=16,color="green",shape="box"];3724[label="vyy196",fontsize=16,color="green",shape="box"];3725[label="vyy197",fontsize=16,color="green",shape="box"];3726[label="vyy196",fontsize=16,color="green",shape="box"];3727[label="vyy197",fontsize=16,color="green",shape="box"];3728[label="vyy196",fontsize=16,color="green",shape="box"];3729[label="vyy197",fontsize=16,color="green",shape="box"];3730[label="vyy196",fontsize=16,color="green",shape="box"];3731[label="vyy197",fontsize=16,color="green",shape="box"];3732[label="vyy196",fontsize=16,color="green",shape="box"];3733[label="vyy197",fontsize=16,color="green",shape="box"];3734[label="vyy196",fontsize=16,color="green",shape="box"];3735[label="vyy197",fontsize=16,color="green",shape="box"];3736[label="vyy196",fontsize=16,color="green",shape="box"];3737[label="vyy197",fontsize=16,color="green",shape="box"];3738[label="vyy196",fontsize=16,color="green",shape="box"];3739[label="vyy197",fontsize=16,color="green",shape="box"];3740[label="vyy196",fontsize=16,color="green",shape="box"];3741[label="compare0 (Right vyy262) (Right vyy263) True",fontsize=16,color="black",shape="box"];3741 -> 4109[label="",style="solid", color="black", weight=3]; 3742[label="vyy207",fontsize=16,color="green",shape="box"];3743[label="vyy210",fontsize=16,color="green",shape="box"];3744[label="vyy207",fontsize=16,color="green",shape="box"];3745[label="vyy210",fontsize=16,color="green",shape="box"];3746[label="vyy207",fontsize=16,color="green",shape="box"];3747[label="vyy210",fontsize=16,color="green",shape="box"];3748[label="vyy207",fontsize=16,color="green",shape="box"];3749[label="vyy210",fontsize=16,color="green",shape="box"];3750[label="vyy207",fontsize=16,color="green",shape="box"];3751[label="vyy210",fontsize=16,color="green",shape="box"];3752[label="vyy207",fontsize=16,color="green",shape="box"];3753[label="vyy210",fontsize=16,color="green",shape="box"];3754[label="vyy207",fontsize=16,color="green",shape="box"];3755[label="vyy210",fontsize=16,color="green",shape="box"];3756[label="vyy207",fontsize=16,color="green",shape="box"];3757[label="vyy210",fontsize=16,color="green",shape="box"];3758[label="vyy207",fontsize=16,color="green",shape="box"];3759[label="vyy210",fontsize=16,color="green",shape="box"];3760[label="vyy207",fontsize=16,color="green",shape="box"];3761[label="vyy210",fontsize=16,color="green",shape="box"];3762[label="vyy207",fontsize=16,color="green",shape="box"];3763[label="vyy210",fontsize=16,color="green",shape="box"];3764[label="vyy207",fontsize=16,color="green",shape="box"];3765[label="vyy210",fontsize=16,color="green",shape="box"];3766[label="vyy207",fontsize=16,color="green",shape="box"];3767[label="vyy210",fontsize=16,color="green",shape="box"];3768[label="vyy207",fontsize=16,color="green",shape="box"];3769[label="vyy210",fontsize=16,color="green",shape="box"];4113[label="vyy208 < vyy211",fontsize=16,color="blue",shape="box"];5712[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5712[label="",style="solid", color="blue", weight=9]; 5712 -> 4117[label="",style="solid", color="blue", weight=3]; 5713[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5713[label="",style="solid", color="blue", weight=9]; 5713 -> 4118[label="",style="solid", color="blue", weight=3]; 5714[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5714[label="",style="solid", color="blue", weight=9]; 5714 -> 4119[label="",style="solid", color="blue", weight=3]; 5715[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5715[label="",style="solid", color="blue", weight=9]; 5715 -> 4120[label="",style="solid", color="blue", weight=3]; 5716[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5716[label="",style="solid", color="blue", weight=9]; 5716 -> 4121[label="",style="solid", color="blue", weight=3]; 5717[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5717[label="",style="solid", color="blue", weight=9]; 5717 -> 4122[label="",style="solid", color="blue", weight=3]; 5718[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5718[label="",style="solid", color="blue", weight=9]; 5718 -> 4123[label="",style="solid", color="blue", weight=3]; 5719[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5719[label="",style="solid", color="blue", weight=9]; 5719 -> 4124[label="",style="solid", color="blue", weight=3]; 5720[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5720[label="",style="solid", color="blue", weight=9]; 5720 -> 4125[label="",style="solid", color="blue", weight=3]; 5721[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5721[label="",style="solid", color="blue", weight=9]; 5721 -> 4126[label="",style="solid", color="blue", weight=3]; 5722[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5722[label="",style="solid", color="blue", weight=9]; 5722 -> 4127[label="",style="solid", color="blue", weight=3]; 5723[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5723[label="",style="solid", color="blue", weight=9]; 5723 -> 4128[label="",style="solid", color="blue", weight=3]; 5724[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5724[label="",style="solid", color="blue", weight=9]; 5724 -> 4129[label="",style="solid", color="blue", weight=3]; 5725[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4113 -> 5725[label="",style="solid", color="blue", weight=9]; 5725 -> 4130[label="",style="solid", color="blue", weight=3]; 4114 -> 3166[label="",style="dashed", color="red", weight=0]; 4114[label="vyy208 == vyy211 && vyy209 <= vyy212",fontsize=16,color="magenta"];4114 -> 4131[label="",style="dashed", color="magenta", weight=3]; 4114 -> 4132[label="",style="dashed", color="magenta", weight=3]; 4112[label="vyy310 || vyy311",fontsize=16,color="burlywood",shape="triangle"];5726[label="vyy310/False",fontsize=10,color="white",style="solid",shape="box"];4112 -> 5726[label="",style="solid", color="burlywood", weight=9]; 5726 -> 4133[label="",style="solid", color="burlywood", weight=3]; 5727[label="vyy310/True",fontsize=10,color="white",style="solid",shape="box"];4112 -> 5727[label="",style="solid", color="burlywood", weight=9]; 5727 -> 4134[label="",style="solid", color="burlywood", weight=3]; 3772 -> 2718[label="",style="dashed", color="red", weight=0]; 3772[label="vyy207 == vyy210",fontsize=16,color="magenta"];3772 -> 4135[label="",style="dashed", color="magenta", weight=3]; 3772 -> 4136[label="",style="dashed", color="magenta", weight=3]; 3773 -> 2721[label="",style="dashed", color="red", weight=0]; 3773[label="vyy207 == vyy210",fontsize=16,color="magenta"];3773 -> 4137[label="",style="dashed", color="magenta", weight=3]; 3773 -> 4138[label="",style="dashed", color="magenta", weight=3]; 3774 -> 2713[label="",style="dashed", color="red", weight=0]; 3774[label="vyy207 == vyy210",fontsize=16,color="magenta"];3774 -> 4139[label="",style="dashed", color="magenta", weight=3]; 3774 -> 4140[label="",style="dashed", color="magenta", weight=3]; 3775 -> 2711[label="",style="dashed", color="red", weight=0]; 3775[label="vyy207 == vyy210",fontsize=16,color="magenta"];3775 -> 4141[label="",style="dashed", color="magenta", weight=3]; 3775 -> 4142[label="",style="dashed", color="magenta", weight=3]; 3776 -> 2716[label="",style="dashed", color="red", weight=0]; 3776[label="vyy207 == vyy210",fontsize=16,color="magenta"];3776 -> 4143[label="",style="dashed", color="magenta", weight=3]; 3776 -> 4144[label="",style="dashed", color="magenta", weight=3]; 3777 -> 2719[label="",style="dashed", color="red", weight=0]; 3777[label="vyy207 == vyy210",fontsize=16,color="magenta"];3777 -> 4145[label="",style="dashed", color="magenta", weight=3]; 3777 -> 4146[label="",style="dashed", color="magenta", weight=3]; 3778 -> 2709[label="",style="dashed", color="red", weight=0]; 3778[label="vyy207 == vyy210",fontsize=16,color="magenta"];3778 -> 4147[label="",style="dashed", color="magenta", weight=3]; 3778 -> 4148[label="",style="dashed", color="magenta", weight=3]; 3779 -> 2717[label="",style="dashed", color="red", weight=0]; 3779[label="vyy207 == vyy210",fontsize=16,color="magenta"];3779 -> 4149[label="",style="dashed", color="magenta", weight=3]; 3779 -> 4150[label="",style="dashed", color="magenta", weight=3]; 3780 -> 2708[label="",style="dashed", color="red", weight=0]; 3780[label="vyy207 == vyy210",fontsize=16,color="magenta"];3780 -> 4151[label="",style="dashed", color="magenta", weight=3]; 3780 -> 4152[label="",style="dashed", color="magenta", weight=3]; 3781 -> 2710[label="",style="dashed", color="red", weight=0]; 3781[label="vyy207 == vyy210",fontsize=16,color="magenta"];3781 -> 4153[label="",style="dashed", color="magenta", weight=3]; 3781 -> 4154[label="",style="dashed", color="magenta", weight=3]; 3782 -> 2714[label="",style="dashed", color="red", weight=0]; 3782[label="vyy207 == vyy210",fontsize=16,color="magenta"];3782 -> 4155[label="",style="dashed", color="magenta", weight=3]; 3782 -> 4156[label="",style="dashed", color="magenta", weight=3]; 3783 -> 2715[label="",style="dashed", color="red", weight=0]; 3783[label="vyy207 == vyy210",fontsize=16,color="magenta"];3783 -> 4157[label="",style="dashed", color="magenta", weight=3]; 3783 -> 4158[label="",style="dashed", color="magenta", weight=3]; 3784 -> 2712[label="",style="dashed", color="red", weight=0]; 3784[label="vyy207 == vyy210",fontsize=16,color="magenta"];3784 -> 4159[label="",style="dashed", color="magenta", weight=3]; 3784 -> 4160[label="",style="dashed", color="magenta", weight=3]; 3785 -> 2720[label="",style="dashed", color="red", weight=0]; 3785[label="vyy207 == vyy210",fontsize=16,color="magenta"];3785 -> 4161[label="",style="dashed", color="magenta", weight=3]; 3785 -> 4162[label="",style="dashed", color="magenta", weight=3]; 3786[label="compare1 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) vyy304",fontsize=16,color="burlywood",shape="triangle"];5728[label="vyy304/False",fontsize=10,color="white",style="solid",shape="box"];3786 -> 5728[label="",style="solid", color="burlywood", weight=9]; 5728 -> 4163[label="",style="solid", color="burlywood", weight=3]; 5729[label="vyy304/True",fontsize=10,color="white",style="solid",shape="box"];3786 -> 5729[label="",style="solid", color="burlywood", weight=9]; 5729 -> 4164[label="",style="solid", color="burlywood", weight=3]; 3787 -> 3786[label="",style="dashed", color="red", weight=0]; 3787[label="compare1 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) True",fontsize=16,color="magenta"];3787 -> 4165[label="",style="dashed", color="magenta", weight=3]; 3788[label="primMulNat (Succ vyy5000) (Succ vyy60100)",fontsize=16,color="black",shape="box"];3788 -> 4166[label="",style="solid", color="black", weight=3]; 3789[label="primMulNat (Succ vyy5000) Zero",fontsize=16,color="black",shape="box"];3789 -> 4167[label="",style="solid", color="black", weight=3]; 3790[label="primMulNat Zero (Succ vyy60100)",fontsize=16,color="black",shape="box"];3790 -> 4168[label="",style="solid", color="black", weight=3]; 3791[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];3791 -> 4169[label="",style="solid", color="black", weight=3]; 3792[label="vyy224",fontsize=16,color="green",shape="box"];3793[label="vyy223",fontsize=16,color="green",shape="box"];3794[label="vyy224",fontsize=16,color="green",shape="box"];3795[label="vyy223",fontsize=16,color="green",shape="box"];3796[label="vyy224",fontsize=16,color="green",shape="box"];3797[label="vyy223",fontsize=16,color="green",shape="box"];3798[label="vyy224",fontsize=16,color="green",shape="box"];3799[label="vyy223",fontsize=16,color="green",shape="box"];3800[label="vyy224",fontsize=16,color="green",shape="box"];3801[label="vyy223",fontsize=16,color="green",shape="box"];3802[label="vyy224",fontsize=16,color="green",shape="box"];3803[label="vyy223",fontsize=16,color="green",shape="box"];3804[label="vyy224",fontsize=16,color="green",shape="box"];3805[label="vyy223",fontsize=16,color="green",shape="box"];3806[label="vyy224",fontsize=16,color="green",shape="box"];3807[label="vyy223",fontsize=16,color="green",shape="box"];3808[label="vyy224",fontsize=16,color="green",shape="box"];3809[label="vyy223",fontsize=16,color="green",shape="box"];3810[label="vyy224",fontsize=16,color="green",shape="box"];3811[label="vyy223",fontsize=16,color="green",shape="box"];3812[label="vyy224",fontsize=16,color="green",shape="box"];3813[label="vyy223",fontsize=16,color="green",shape="box"];3814[label="vyy224",fontsize=16,color="green",shape="box"];3815[label="vyy223",fontsize=16,color="green",shape="box"];3816[label="vyy224",fontsize=16,color="green",shape="box"];3817[label="vyy223",fontsize=16,color="green",shape="box"];3818[label="vyy224",fontsize=16,color="green",shape="box"];3819[label="vyy223",fontsize=16,color="green",shape="box"];3820[label="compare0 (Just vyy272) (Just vyy273) True",fontsize=16,color="black",shape="box"];3820 -> 4170[label="",style="solid", color="black", weight=3]; 3821[label="vyy235",fontsize=16,color="green",shape="box"];3822[label="vyy233",fontsize=16,color="green",shape="box"];3823[label="vyy235",fontsize=16,color="green",shape="box"];3824[label="vyy233",fontsize=16,color="green",shape="box"];3825[label="vyy235",fontsize=16,color="green",shape="box"];3826[label="vyy233",fontsize=16,color="green",shape="box"];3827[label="vyy235",fontsize=16,color="green",shape="box"];3828[label="vyy233",fontsize=16,color="green",shape="box"];3829[label="vyy235",fontsize=16,color="green",shape="box"];3830[label="vyy233",fontsize=16,color="green",shape="box"];3831[label="vyy235",fontsize=16,color="green",shape="box"];3832[label="vyy233",fontsize=16,color="green",shape="box"];3833[label="vyy235",fontsize=16,color="green",shape="box"];3834[label="vyy233",fontsize=16,color="green",shape="box"];3835[label="vyy235",fontsize=16,color="green",shape="box"];3836[label="vyy233",fontsize=16,color="green",shape="box"];3837[label="vyy235",fontsize=16,color="green",shape="box"];3838[label="vyy233",fontsize=16,color="green",shape="box"];3839[label="vyy235",fontsize=16,color="green",shape="box"];3840[label="vyy233",fontsize=16,color="green",shape="box"];3841[label="vyy235",fontsize=16,color="green",shape="box"];3842[label="vyy233",fontsize=16,color="green",shape="box"];3843[label="vyy235",fontsize=16,color="green",shape="box"];3844[label="vyy233",fontsize=16,color="green",shape="box"];3845[label="vyy235",fontsize=16,color="green",shape="box"];3846[label="vyy233",fontsize=16,color="green",shape="box"];3847[label="vyy235",fontsize=16,color="green",shape="box"];3848[label="vyy233",fontsize=16,color="green",shape="box"];3849[label="vyy234",fontsize=16,color="green",shape="box"];3850[label="vyy232",fontsize=16,color="green",shape="box"];3851[label="vyy234",fontsize=16,color="green",shape="box"];3852[label="vyy232",fontsize=16,color="green",shape="box"];3853[label="vyy234",fontsize=16,color="green",shape="box"];3854[label="vyy232",fontsize=16,color="green",shape="box"];3855[label="vyy234",fontsize=16,color="green",shape="box"];3856[label="vyy232",fontsize=16,color="green",shape="box"];3857[label="vyy234",fontsize=16,color="green",shape="box"];3858[label="vyy232",fontsize=16,color="green",shape="box"];3859[label="vyy234",fontsize=16,color="green",shape="box"];3860[label="vyy232",fontsize=16,color="green",shape="box"];3861[label="vyy234",fontsize=16,color="green",shape="box"];3862[label="vyy232",fontsize=16,color="green",shape="box"];3863[label="vyy234",fontsize=16,color="green",shape="box"];3864[label="vyy232",fontsize=16,color="green",shape="box"];3865[label="vyy234",fontsize=16,color="green",shape="box"];3866[label="vyy232",fontsize=16,color="green",shape="box"];3867[label="vyy234",fontsize=16,color="green",shape="box"];3868[label="vyy232",fontsize=16,color="green",shape="box"];3869[label="vyy234",fontsize=16,color="green",shape="box"];3870[label="vyy232",fontsize=16,color="green",shape="box"];3871[label="vyy234",fontsize=16,color="green",shape="box"];3872[label="vyy232",fontsize=16,color="green",shape="box"];3873[label="vyy234",fontsize=16,color="green",shape="box"];3874[label="vyy232",fontsize=16,color="green",shape="box"];3875[label="vyy234",fontsize=16,color="green",shape="box"];3876[label="vyy232",fontsize=16,color="green",shape="box"];3877[label="LT",fontsize=16,color="green",shape="box"];3878 -> 2414[label="",style="dashed", color="red", weight=0]; 3878[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3878 -> 4171[label="",style="dashed", color="magenta", weight=3]; 3878 -> 4172[label="",style="dashed", color="magenta", weight=3]; 3879[label="LT",fontsize=16,color="green",shape="box"];3880 -> 2415[label="",style="dashed", color="red", weight=0]; 3880[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3880 -> 4173[label="",style="dashed", color="magenta", weight=3]; 3880 -> 4174[label="",style="dashed", color="magenta", weight=3]; 3881[label="LT",fontsize=16,color="green",shape="box"];3882 -> 2416[label="",style="dashed", color="red", weight=0]; 3882[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3882 -> 4175[label="",style="dashed", color="magenta", weight=3]; 3882 -> 4176[label="",style="dashed", color="magenta", weight=3]; 3883[label="LT",fontsize=16,color="green",shape="box"];3884 -> 2417[label="",style="dashed", color="red", weight=0]; 3884[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3884 -> 4177[label="",style="dashed", color="magenta", weight=3]; 3884 -> 4178[label="",style="dashed", color="magenta", weight=3]; 3885[label="LT",fontsize=16,color="green",shape="box"];3886 -> 2418[label="",style="dashed", color="red", weight=0]; 3886[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3886 -> 4179[label="",style="dashed", color="magenta", weight=3]; 3886 -> 4180[label="",style="dashed", color="magenta", weight=3]; 3887[label="LT",fontsize=16,color="green",shape="box"];3888 -> 2419[label="",style="dashed", color="red", weight=0]; 3888[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3888 -> 4181[label="",style="dashed", color="magenta", weight=3]; 3888 -> 4182[label="",style="dashed", color="magenta", weight=3]; 3889[label="LT",fontsize=16,color="green",shape="box"];3890 -> 2420[label="",style="dashed", color="red", weight=0]; 3890[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3890 -> 4183[label="",style="dashed", color="magenta", weight=3]; 3890 -> 4184[label="",style="dashed", color="magenta", weight=3]; 3891[label="LT",fontsize=16,color="green",shape="box"];3892 -> 2421[label="",style="dashed", color="red", weight=0]; 3892[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3892 -> 4185[label="",style="dashed", color="magenta", weight=3]; 3892 -> 4186[label="",style="dashed", color="magenta", weight=3]; 3893[label="LT",fontsize=16,color="green",shape="box"];3894 -> 2422[label="",style="dashed", color="red", weight=0]; 3894[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3894 -> 4187[label="",style="dashed", color="magenta", weight=3]; 3894 -> 4188[label="",style="dashed", color="magenta", weight=3]; 3895[label="LT",fontsize=16,color="green",shape="box"];3896 -> 2423[label="",style="dashed", color="red", weight=0]; 3896[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3896 -> 4189[label="",style="dashed", color="magenta", weight=3]; 3896 -> 4190[label="",style="dashed", color="magenta", weight=3]; 3897[label="LT",fontsize=16,color="green",shape="box"];3898 -> 2424[label="",style="dashed", color="red", weight=0]; 3898[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3898 -> 4191[label="",style="dashed", color="magenta", weight=3]; 3898 -> 4192[label="",style="dashed", color="magenta", weight=3]; 3899[label="LT",fontsize=16,color="green",shape="box"];3900 -> 2425[label="",style="dashed", color="red", weight=0]; 3900[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3900 -> 4193[label="",style="dashed", color="magenta", weight=3]; 3900 -> 4194[label="",style="dashed", color="magenta", weight=3]; 3901[label="LT",fontsize=16,color="green",shape="box"];3902 -> 2426[label="",style="dashed", color="red", weight=0]; 3902[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3902 -> 4195[label="",style="dashed", color="magenta", weight=3]; 3902 -> 4196[label="",style="dashed", color="magenta", weight=3]; 3903[label="LT",fontsize=16,color="green",shape="box"];3904 -> 2427[label="",style="dashed", color="red", weight=0]; 3904[label="compare vyy232 vyy234",fontsize=16,color="magenta"];3904 -> 4197[label="",style="dashed", color="magenta", weight=3]; 3904 -> 4198[label="",style="dashed", color="magenta", weight=3]; 3905[label="compare1 (vyy282,vyy283) (vyy284,vyy285) False",fontsize=16,color="black",shape="box"];3905 -> 4199[label="",style="solid", color="black", weight=3]; 3906[label="compare1 (vyy282,vyy283) (vyy284,vyy285) True",fontsize=16,color="black",shape="box"];3906 -> 4200[label="",style="solid", color="black", weight=3]; 3907[label="True",fontsize=16,color="green",shape="box"];3908 -> 2596[label="",style="dashed", color="red", weight=0]; 3908[label="vyy6001 * vyy500",fontsize=16,color="magenta"];3908 -> 4201[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4202[label="",style="dashed", color="magenta", weight=3]; 3909 -> 2596[label="",style="dashed", color="red", weight=0]; 3909[label="vyy6000 * vyy501",fontsize=16,color="magenta"];3909 -> 4203[label="",style="dashed", color="magenta", weight=3]; 3909 -> 4204[label="",style="dashed", color="magenta", weight=3]; 3910[label="vyy500",fontsize=16,color="green",shape="box"];3911[label="vyy6000",fontsize=16,color="green",shape="box"];3912[label="vyy500",fontsize=16,color="green",shape="box"];3913[label="vyy6000",fontsize=16,color="green",shape="box"];3914[label="vyy500",fontsize=16,color="green",shape="box"];3915[label="vyy6000",fontsize=16,color="green",shape="box"];3916[label="vyy500",fontsize=16,color="green",shape="box"];3917[label="vyy6000",fontsize=16,color="green",shape="box"];3918[label="vyy500",fontsize=16,color="green",shape="box"];3919[label="vyy6000",fontsize=16,color="green",shape="box"];3920[label="vyy500",fontsize=16,color="green",shape="box"];3921[label="vyy6000",fontsize=16,color="green",shape="box"];3922[label="vyy500",fontsize=16,color="green",shape="box"];3923[label="vyy6000",fontsize=16,color="green",shape="box"];3924[label="vyy500",fontsize=16,color="green",shape="box"];3925[label="vyy6000",fontsize=16,color="green",shape="box"];3926[label="vyy500",fontsize=16,color="green",shape="box"];3927[label="vyy6000",fontsize=16,color="green",shape="box"];3928[label="vyy500",fontsize=16,color="green",shape="box"];3929[label="vyy6000",fontsize=16,color="green",shape="box"];3930[label="vyy500",fontsize=16,color="green",shape="box"];3931[label="vyy6000",fontsize=16,color="green",shape="box"];3932[label="vyy500",fontsize=16,color="green",shape="box"];3933[label="vyy6000",fontsize=16,color="green",shape="box"];3934[label="vyy500",fontsize=16,color="green",shape="box"];3935[label="vyy6000",fontsize=16,color="green",shape="box"];3936[label="vyy500",fontsize=16,color="green",shape="box"];3937[label="vyy6000",fontsize=16,color="green",shape="box"];3938[label="vyy500",fontsize=16,color="green",shape="box"];3939[label="vyy6000",fontsize=16,color="green",shape="box"];3940[label="vyy500",fontsize=16,color="green",shape="box"];3941[label="vyy6000",fontsize=16,color="green",shape="box"];3942[label="vyy500",fontsize=16,color="green",shape="box"];3943[label="vyy6000",fontsize=16,color="green",shape="box"];3944[label="vyy500",fontsize=16,color="green",shape="box"];3945[label="vyy6000",fontsize=16,color="green",shape="box"];3946[label="vyy500",fontsize=16,color="green",shape="box"];3947[label="vyy6000",fontsize=16,color="green",shape="box"];3948[label="vyy500",fontsize=16,color="green",shape="box"];3949[label="vyy6000",fontsize=16,color="green",shape="box"];3950[label="vyy500",fontsize=16,color="green",shape="box"];3951[label="vyy6000",fontsize=16,color="green",shape="box"];3952[label="vyy500",fontsize=16,color="green",shape="box"];3953[label="vyy6000",fontsize=16,color="green",shape="box"];3954[label="vyy500",fontsize=16,color="green",shape="box"];3955[label="vyy6000",fontsize=16,color="green",shape="box"];3956[label="vyy500",fontsize=16,color="green",shape="box"];3957[label="vyy6000",fontsize=16,color="green",shape="box"];3958[label="vyy500",fontsize=16,color="green",shape="box"];3959[label="vyy6000",fontsize=16,color="green",shape="box"];3960[label="vyy500",fontsize=16,color="green",shape="box"];3961[label="vyy6000",fontsize=16,color="green",shape="box"];3962[label="vyy500",fontsize=16,color="green",shape="box"];3963[label="vyy6000",fontsize=16,color="green",shape="box"];3964[label="vyy500",fontsize=16,color="green",shape="box"];3965[label="vyy6000",fontsize=16,color="green",shape="box"];3966[label="vyy501",fontsize=16,color="green",shape="box"];3967[label="vyy6001",fontsize=16,color="green",shape="box"];3968 -> 2708[label="",style="dashed", color="red", weight=0]; 3968[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3968 -> 4205[label="",style="dashed", color="magenta", weight=3]; 3968 -> 4206[label="",style="dashed", color="magenta", weight=3]; 3969 -> 2709[label="",style="dashed", color="red", weight=0]; 3969[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3969 -> 4207[label="",style="dashed", color="magenta", weight=3]; 3969 -> 4208[label="",style="dashed", color="magenta", weight=3]; 3970 -> 2710[label="",style="dashed", color="red", weight=0]; 3970[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3970 -> 4209[label="",style="dashed", color="magenta", weight=3]; 3970 -> 4210[label="",style="dashed", color="magenta", weight=3]; 3971 -> 2711[label="",style="dashed", color="red", weight=0]; 3971[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3971 -> 4211[label="",style="dashed", color="magenta", weight=3]; 3971 -> 4212[label="",style="dashed", color="magenta", weight=3]; 3972 -> 2712[label="",style="dashed", color="red", weight=0]; 3972[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3972 -> 4213[label="",style="dashed", color="magenta", weight=3]; 3972 -> 4214[label="",style="dashed", color="magenta", weight=3]; 3973 -> 2713[label="",style="dashed", color="red", weight=0]; 3973[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3973 -> 4215[label="",style="dashed", color="magenta", weight=3]; 3973 -> 4216[label="",style="dashed", color="magenta", weight=3]; 3974 -> 2714[label="",style="dashed", color="red", weight=0]; 3974[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3974 -> 4217[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4218[label="",style="dashed", color="magenta", weight=3]; 3975 -> 2715[label="",style="dashed", color="red", weight=0]; 3975[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3975 -> 4219[label="",style="dashed", color="magenta", weight=3]; 3975 -> 4220[label="",style="dashed", color="magenta", weight=3]; 3976 -> 2716[label="",style="dashed", color="red", weight=0]; 3976[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3976 -> 4221[label="",style="dashed", color="magenta", weight=3]; 3976 -> 4222[label="",style="dashed", color="magenta", weight=3]; 3977 -> 2717[label="",style="dashed", color="red", weight=0]; 3977[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3977 -> 4223[label="",style="dashed", color="magenta", weight=3]; 3977 -> 4224[label="",style="dashed", color="magenta", weight=3]; 3978 -> 2718[label="",style="dashed", color="red", weight=0]; 3978[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3978 -> 4225[label="",style="dashed", color="magenta", weight=3]; 3978 -> 4226[label="",style="dashed", color="magenta", weight=3]; 3979 -> 2719[label="",style="dashed", color="red", weight=0]; 3979[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3979 -> 4227[label="",style="dashed", color="magenta", weight=3]; 3979 -> 4228[label="",style="dashed", color="magenta", weight=3]; 3980 -> 2720[label="",style="dashed", color="red", weight=0]; 3980[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3980 -> 4229[label="",style="dashed", color="magenta", weight=3]; 3980 -> 4230[label="",style="dashed", color="magenta", weight=3]; 3981 -> 2721[label="",style="dashed", color="red", weight=0]; 3981[label="vyy6000 == vyy500",fontsize=16,color="magenta"];3981 -> 4231[label="",style="dashed", color="magenta", weight=3]; 3981 -> 4232[label="",style="dashed", color="magenta", weight=3]; 3982[label="primEqInt (Pos (Succ vyy60000)) (Pos (Succ vyy5000))",fontsize=16,color="black",shape="box"];3982 -> 4233[label="",style="solid", color="black", weight=3]; 3983[label="primEqInt (Pos (Succ vyy60000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3983 -> 4234[label="",style="solid", color="black", weight=3]; 3984[label="False",fontsize=16,color="green",shape="box"];3985[label="primEqInt (Pos Zero) (Pos (Succ vyy5000))",fontsize=16,color="black",shape="box"];3985 -> 4235[label="",style="solid", color="black", weight=3]; 3986[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3986 -> 4236[label="",style="solid", color="black", weight=3]; 3987[label="primEqInt (Pos Zero) (Neg (Succ vyy5000))",fontsize=16,color="black",shape="box"];3987 -> 4237[label="",style="solid", color="black", weight=3]; 3988[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3988 -> 4238[label="",style="solid", color="black", weight=3]; 3989[label="False",fontsize=16,color="green",shape="box"];3990[label="primEqInt (Neg (Succ vyy60000)) (Neg (Succ vyy5000))",fontsize=16,color="black",shape="box"];3990 -> 4239[label="",style="solid", color="black", weight=3]; 3991[label="primEqInt (Neg (Succ vyy60000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3991 -> 4240[label="",style="solid", color="black", weight=3]; 3992[label="primEqInt (Neg Zero) (Pos (Succ vyy5000))",fontsize=16,color="black",shape="box"];3992 -> 4241[label="",style="solid", color="black", weight=3]; 3993[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3993 -> 4242[label="",style="solid", color="black", weight=3]; 3994[label="primEqInt (Neg Zero) (Neg (Succ vyy5000))",fontsize=16,color="black",shape="box"];3994 -> 4243[label="",style="solid", color="black", weight=3]; 3995[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3995 -> 4244[label="",style="solid", color="black", weight=3]; 3996[label="vyy500",fontsize=16,color="green",shape="box"];3997[label="vyy6000",fontsize=16,color="green",shape="box"];3998[label="vyy500",fontsize=16,color="green",shape="box"];3999[label="vyy6000",fontsize=16,color="green",shape="box"];4000[label="vyy500",fontsize=16,color="green",shape="box"];4001[label="vyy6000",fontsize=16,color="green",shape="box"];4002[label="vyy500",fontsize=16,color="green",shape="box"];4003[label="vyy6000",fontsize=16,color="green",shape="box"];4004[label="vyy500",fontsize=16,color="green",shape="box"];4005[label="vyy6000",fontsize=16,color="green",shape="box"];4006[label="vyy500",fontsize=16,color="green",shape="box"];4007[label="vyy6000",fontsize=16,color="green",shape="box"];4008[label="vyy500",fontsize=16,color="green",shape="box"];4009[label="vyy6000",fontsize=16,color="green",shape="box"];4010[label="vyy500",fontsize=16,color="green",shape="box"];4011[label="vyy6000",fontsize=16,color="green",shape="box"];4012[label="vyy500",fontsize=16,color="green",shape="box"];4013[label="vyy6000",fontsize=16,color="green",shape="box"];4014[label="vyy500",fontsize=16,color="green",shape="box"];4015[label="vyy6000",fontsize=16,color="green",shape="box"];4016[label="vyy500",fontsize=16,color="green",shape="box"];4017[label="vyy6000",fontsize=16,color="green",shape="box"];4018[label="vyy500",fontsize=16,color="green",shape="box"];4019[label="vyy6000",fontsize=16,color="green",shape="box"];4020[label="vyy500",fontsize=16,color="green",shape="box"];4021[label="vyy6000",fontsize=16,color="green",shape="box"];4022[label="vyy500",fontsize=16,color="green",shape="box"];4023[label="vyy6000",fontsize=16,color="green",shape="box"];4024[label="primEqNat (Succ vyy60000) vyy500",fontsize=16,color="burlywood",shape="box"];5730[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];4024 -> 5730[label="",style="solid", color="burlywood", weight=9]; 5730 -> 4245[label="",style="solid", color="burlywood", weight=3]; 5731[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];4024 -> 5731[label="",style="solid", color="burlywood", weight=9]; 5731 -> 4246[label="",style="solid", color="burlywood", weight=3]; 4025[label="primEqNat Zero vyy500",fontsize=16,color="burlywood",shape="box"];5732[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];4025 -> 5732[label="",style="solid", color="burlywood", weight=9]; 5732 -> 4247[label="",style="solid", color="burlywood", weight=3]; 5733[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];4025 -> 5733[label="",style="solid", color="burlywood", weight=9]; 5733 -> 4248[label="",style="solid", color="burlywood", weight=3]; 4026 -> 2711[label="",style="dashed", color="red", weight=0]; 4026[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4026 -> 4249[label="",style="dashed", color="magenta", weight=3]; 4026 -> 4250[label="",style="dashed", color="magenta", weight=3]; 4027 -> 2720[label="",style="dashed", color="red", weight=0]; 4027[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4027 -> 4251[label="",style="dashed", color="magenta", weight=3]; 4027 -> 4252[label="",style="dashed", color="magenta", weight=3]; 4028 -> 2711[label="",style="dashed", color="red", weight=0]; 4028[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4028 -> 4253[label="",style="dashed", color="magenta", weight=3]; 4028 -> 4254[label="",style="dashed", color="magenta", weight=3]; 4029 -> 2720[label="",style="dashed", color="red", weight=0]; 4029[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4029 -> 4255[label="",style="dashed", color="magenta", weight=3]; 4029 -> 4256[label="",style="dashed", color="magenta", weight=3]; 4030 -> 2708[label="",style="dashed", color="red", weight=0]; 4030[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4030 -> 4257[label="",style="dashed", color="magenta", weight=3]; 4030 -> 4258[label="",style="dashed", color="magenta", weight=3]; 4031 -> 2709[label="",style="dashed", color="red", weight=0]; 4031[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4031 -> 4259[label="",style="dashed", color="magenta", weight=3]; 4031 -> 4260[label="",style="dashed", color="magenta", weight=3]; 4032 -> 2710[label="",style="dashed", color="red", weight=0]; 4032[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4032 -> 4261[label="",style="dashed", color="magenta", weight=3]; 4032 -> 4262[label="",style="dashed", color="magenta", weight=3]; 4033 -> 2711[label="",style="dashed", color="red", weight=0]; 4033[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4033 -> 4263[label="",style="dashed", color="magenta", weight=3]; 4033 -> 4264[label="",style="dashed", color="magenta", weight=3]; 4034 -> 2712[label="",style="dashed", color="red", weight=0]; 4034[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4034 -> 4265[label="",style="dashed", color="magenta", weight=3]; 4034 -> 4266[label="",style="dashed", color="magenta", weight=3]; 4035 -> 2713[label="",style="dashed", color="red", weight=0]; 4035[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4035 -> 4267[label="",style="dashed", color="magenta", weight=3]; 4035 -> 4268[label="",style="dashed", color="magenta", weight=3]; 4036 -> 2714[label="",style="dashed", color="red", weight=0]; 4036[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4036 -> 4269[label="",style="dashed", color="magenta", weight=3]; 4036 -> 4270[label="",style="dashed", color="magenta", weight=3]; 4037 -> 2715[label="",style="dashed", color="red", weight=0]; 4037[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4037 -> 4271[label="",style="dashed", color="magenta", weight=3]; 4037 -> 4272[label="",style="dashed", color="magenta", weight=3]; 4038 -> 2716[label="",style="dashed", color="red", weight=0]; 4038[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4038 -> 4273[label="",style="dashed", color="magenta", weight=3]; 4038 -> 4274[label="",style="dashed", color="magenta", weight=3]; 4039 -> 2717[label="",style="dashed", color="red", weight=0]; 4039[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4039 -> 4275[label="",style="dashed", color="magenta", weight=3]; 4039 -> 4276[label="",style="dashed", color="magenta", weight=3]; 4040 -> 2718[label="",style="dashed", color="red", weight=0]; 4040[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4040 -> 4277[label="",style="dashed", color="magenta", weight=3]; 4040 -> 4278[label="",style="dashed", color="magenta", weight=3]; 4041 -> 2719[label="",style="dashed", color="red", weight=0]; 4041[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4041 -> 4279[label="",style="dashed", color="magenta", weight=3]; 4041 -> 4280[label="",style="dashed", color="magenta", weight=3]; 4042 -> 2720[label="",style="dashed", color="red", weight=0]; 4042[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4042 -> 4281[label="",style="dashed", color="magenta", weight=3]; 4042 -> 4282[label="",style="dashed", color="magenta", weight=3]; 4043 -> 2721[label="",style="dashed", color="red", weight=0]; 4043[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4043 -> 4283[label="",style="dashed", color="magenta", weight=3]; 4043 -> 4284[label="",style="dashed", color="magenta", weight=3]; 4044 -> 2708[label="",style="dashed", color="red", weight=0]; 4044[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4044 -> 4285[label="",style="dashed", color="magenta", weight=3]; 4044 -> 4286[label="",style="dashed", color="magenta", weight=3]; 4045 -> 2709[label="",style="dashed", color="red", weight=0]; 4045[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4045 -> 4287[label="",style="dashed", color="magenta", weight=3]; 4045 -> 4288[label="",style="dashed", color="magenta", weight=3]; 4046 -> 2710[label="",style="dashed", color="red", weight=0]; 4046[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4046 -> 4289[label="",style="dashed", color="magenta", weight=3]; 4046 -> 4290[label="",style="dashed", color="magenta", weight=3]; 4047 -> 2711[label="",style="dashed", color="red", weight=0]; 4047[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4047 -> 4291[label="",style="dashed", color="magenta", weight=3]; 4047 -> 4292[label="",style="dashed", color="magenta", weight=3]; 4048 -> 2712[label="",style="dashed", color="red", weight=0]; 4048[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4048 -> 4293[label="",style="dashed", color="magenta", weight=3]; 4048 -> 4294[label="",style="dashed", color="magenta", weight=3]; 4049 -> 2713[label="",style="dashed", color="red", weight=0]; 4049[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4049 -> 4295[label="",style="dashed", color="magenta", weight=3]; 4049 -> 4296[label="",style="dashed", color="magenta", weight=3]; 4050 -> 2714[label="",style="dashed", color="red", weight=0]; 4050[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4050 -> 4297[label="",style="dashed", color="magenta", weight=3]; 4050 -> 4298[label="",style="dashed", color="magenta", weight=3]; 4051 -> 2715[label="",style="dashed", color="red", weight=0]; 4051[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4051 -> 4299[label="",style="dashed", color="magenta", weight=3]; 4051 -> 4300[label="",style="dashed", color="magenta", weight=3]; 4052 -> 2716[label="",style="dashed", color="red", weight=0]; 4052[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4052 -> 4301[label="",style="dashed", color="magenta", weight=3]; 4052 -> 4302[label="",style="dashed", color="magenta", weight=3]; 4053 -> 2717[label="",style="dashed", color="red", weight=0]; 4053[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4053 -> 4303[label="",style="dashed", color="magenta", weight=3]; 4053 -> 4304[label="",style="dashed", color="magenta", weight=3]; 4054 -> 2718[label="",style="dashed", color="red", weight=0]; 4054[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4054 -> 4305[label="",style="dashed", color="magenta", weight=3]; 4054 -> 4306[label="",style="dashed", color="magenta", weight=3]; 4055 -> 2719[label="",style="dashed", color="red", weight=0]; 4055[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4055 -> 4307[label="",style="dashed", color="magenta", weight=3]; 4055 -> 4308[label="",style="dashed", color="magenta", weight=3]; 4056 -> 2720[label="",style="dashed", color="red", weight=0]; 4056[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4056 -> 4309[label="",style="dashed", color="magenta", weight=3]; 4056 -> 4310[label="",style="dashed", color="magenta", weight=3]; 4057 -> 2721[label="",style="dashed", color="red", weight=0]; 4057[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4057 -> 4311[label="",style="dashed", color="magenta", weight=3]; 4057 -> 4312[label="",style="dashed", color="magenta", weight=3]; 4058[label="vyy6002 == vyy502",fontsize=16,color="blue",shape="box"];5734[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5734[label="",style="solid", color="blue", weight=9]; 5734 -> 4313[label="",style="solid", color="blue", weight=3]; 5735[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5735[label="",style="solid", color="blue", weight=9]; 5735 -> 4314[label="",style="solid", color="blue", weight=3]; 5736[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5736[label="",style="solid", color="blue", weight=9]; 5736 -> 4315[label="",style="solid", color="blue", weight=3]; 5737[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5737[label="",style="solid", color="blue", weight=9]; 5737 -> 4316[label="",style="solid", color="blue", weight=3]; 5738[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5738[label="",style="solid", color="blue", weight=9]; 5738 -> 4317[label="",style="solid", color="blue", weight=3]; 5739[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5739[label="",style="solid", color="blue", weight=9]; 5739 -> 4318[label="",style="solid", color="blue", weight=3]; 5740[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5740[label="",style="solid", color="blue", weight=9]; 5740 -> 4319[label="",style="solid", color="blue", weight=3]; 5741[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5741[label="",style="solid", color="blue", weight=9]; 5741 -> 4320[label="",style="solid", color="blue", weight=3]; 5742[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5742[label="",style="solid", color="blue", weight=9]; 5742 -> 4321[label="",style="solid", color="blue", weight=3]; 5743[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5743[label="",style="solid", color="blue", weight=9]; 5743 -> 4322[label="",style="solid", color="blue", weight=3]; 5744[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5744[label="",style="solid", color="blue", weight=9]; 5744 -> 4323[label="",style="solid", color="blue", weight=3]; 5745[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5745[label="",style="solid", color="blue", weight=9]; 5745 -> 4324[label="",style="solid", color="blue", weight=3]; 5746[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5746[label="",style="solid", color="blue", weight=9]; 5746 -> 4325[label="",style="solid", color="blue", weight=3]; 5747[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4058 -> 5747[label="",style="solid", color="blue", weight=9]; 5747 -> 4326[label="",style="solid", color="blue", weight=3]; 4059[label="vyy6001 == vyy501",fontsize=16,color="blue",shape="box"];5748[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5748[label="",style="solid", color="blue", weight=9]; 5748 -> 4327[label="",style="solid", color="blue", weight=3]; 5749[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5749[label="",style="solid", color="blue", weight=9]; 5749 -> 4328[label="",style="solid", color="blue", weight=3]; 5750[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5750[label="",style="solid", color="blue", weight=9]; 5750 -> 4329[label="",style="solid", color="blue", weight=3]; 5751[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5751[label="",style="solid", color="blue", weight=9]; 5751 -> 4330[label="",style="solid", color="blue", weight=3]; 5752[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5752[label="",style="solid", color="blue", weight=9]; 5752 -> 4331[label="",style="solid", color="blue", weight=3]; 5753[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5753[label="",style="solid", color="blue", weight=9]; 5753 -> 4332[label="",style="solid", color="blue", weight=3]; 5754[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5754[label="",style="solid", color="blue", weight=9]; 5754 -> 4333[label="",style="solid", color="blue", weight=3]; 5755[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5755[label="",style="solid", color="blue", weight=9]; 5755 -> 4334[label="",style="solid", color="blue", weight=3]; 5756[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5756[label="",style="solid", color="blue", weight=9]; 5756 -> 4335[label="",style="solid", color="blue", weight=3]; 5757[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5757[label="",style="solid", color="blue", weight=9]; 5757 -> 4336[label="",style="solid", color="blue", weight=3]; 5758[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5758[label="",style="solid", color="blue", weight=9]; 5758 -> 4337[label="",style="solid", color="blue", weight=3]; 5759[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5759[label="",style="solid", color="blue", weight=9]; 5759 -> 4338[label="",style="solid", color="blue", weight=3]; 5760[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5760[label="",style="solid", color="blue", weight=9]; 5760 -> 4339[label="",style="solid", color="blue", weight=3]; 5761[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4059 -> 5761[label="",style="solid", color="blue", weight=9]; 5761 -> 4340[label="",style="solid", color="blue", weight=3]; 4060 -> 2708[label="",style="dashed", color="red", weight=0]; 4060[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4060 -> 4341[label="",style="dashed", color="magenta", weight=3]; 4060 -> 4342[label="",style="dashed", color="magenta", weight=3]; 4061 -> 2709[label="",style="dashed", color="red", weight=0]; 4061[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4061 -> 4343[label="",style="dashed", color="magenta", weight=3]; 4061 -> 4344[label="",style="dashed", color="magenta", weight=3]; 4062 -> 2710[label="",style="dashed", color="red", weight=0]; 4062[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4062 -> 4345[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4346[label="",style="dashed", color="magenta", weight=3]; 4063 -> 2711[label="",style="dashed", color="red", weight=0]; 4063[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4063 -> 4347[label="",style="dashed", color="magenta", weight=3]; 4063 -> 4348[label="",style="dashed", color="magenta", weight=3]; 4064 -> 2712[label="",style="dashed", color="red", weight=0]; 4064[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4064 -> 4349[label="",style="dashed", color="magenta", weight=3]; 4064 -> 4350[label="",style="dashed", color="magenta", weight=3]; 4065 -> 2713[label="",style="dashed", color="red", weight=0]; 4065[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4065 -> 4351[label="",style="dashed", color="magenta", weight=3]; 4065 -> 4352[label="",style="dashed", color="magenta", weight=3]; 4066 -> 2714[label="",style="dashed", color="red", weight=0]; 4066[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4066 -> 4353[label="",style="dashed", color="magenta", weight=3]; 4066 -> 4354[label="",style="dashed", color="magenta", weight=3]; 4067 -> 2715[label="",style="dashed", color="red", weight=0]; 4067[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4067 -> 4355[label="",style="dashed", color="magenta", weight=3]; 4067 -> 4356[label="",style="dashed", color="magenta", weight=3]; 4068 -> 2716[label="",style="dashed", color="red", weight=0]; 4068[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4068 -> 4357[label="",style="dashed", color="magenta", weight=3]; 4068 -> 4358[label="",style="dashed", color="magenta", weight=3]; 4069 -> 2717[label="",style="dashed", color="red", weight=0]; 4069[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4069 -> 4359[label="",style="dashed", color="magenta", weight=3]; 4069 -> 4360[label="",style="dashed", color="magenta", weight=3]; 4070 -> 2718[label="",style="dashed", color="red", weight=0]; 4070[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4070 -> 4361[label="",style="dashed", color="magenta", weight=3]; 4070 -> 4362[label="",style="dashed", color="magenta", weight=3]; 4071 -> 2719[label="",style="dashed", color="red", weight=0]; 4071[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4071 -> 4363[label="",style="dashed", color="magenta", weight=3]; 4071 -> 4364[label="",style="dashed", color="magenta", weight=3]; 4072 -> 2720[label="",style="dashed", color="red", weight=0]; 4072[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4072 -> 4365[label="",style="dashed", color="magenta", weight=3]; 4072 -> 4366[label="",style="dashed", color="magenta", weight=3]; 4073 -> 2721[label="",style="dashed", color="red", weight=0]; 4073[label="vyy6000 == vyy500",fontsize=16,color="magenta"];4073 -> 4367[label="",style="dashed", color="magenta", weight=3]; 4073 -> 4368[label="",style="dashed", color="magenta", weight=3]; 4074 -> 2596[label="",style="dashed", color="red", weight=0]; 4074[label="vyy6001 * vyy500",fontsize=16,color="magenta"];4074 -> 4369[label="",style="dashed", color="magenta", weight=3]; 4074 -> 4370[label="",style="dashed", color="magenta", weight=3]; 4075 -> 2596[label="",style="dashed", color="red", weight=0]; 4075[label="vyy6000 * vyy501",fontsize=16,color="magenta"];4075 -> 4371[label="",style="dashed", color="magenta", weight=3]; 4075 -> 4372[label="",style="dashed", color="magenta", weight=3]; 4076[label="False <= False",fontsize=16,color="black",shape="box"];4076 -> 4373[label="",style="solid", color="black", weight=3]; 4077[label="False <= True",fontsize=16,color="black",shape="box"];4077 -> 4374[label="",style="solid", color="black", weight=3]; 4078[label="True <= False",fontsize=16,color="black",shape="box"];4078 -> 4375[label="",style="solid", color="black", weight=3]; 4079[label="True <= True",fontsize=16,color="black",shape="box"];4079 -> 4376[label="",style="solid", color="black", weight=3]; 4081 -> 2415[label="",style="dashed", color="red", weight=0]; 4081[label="compare vyy189 vyy190",fontsize=16,color="magenta"];4081 -> 4377[label="",style="dashed", color="magenta", weight=3]; 4081 -> 4378[label="",style="dashed", color="magenta", weight=3]; 4080[label="vyy306 /= GT",fontsize=16,color="black",shape="triangle"];4080 -> 4379[label="",style="solid", color="black", weight=3]; 4082 -> 2416[label="",style="dashed", color="red", weight=0]; 4082[label="compare vyy189 vyy190",fontsize=16,color="magenta"];4082 -> 4380[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4381[label="",style="dashed", color="magenta", weight=3]; 4083 -> 2417[label="",style="dashed", color="red", weight=0]; 4083[label="compare vyy189 vyy190",fontsize=16,color="magenta"];4083 -> 4382[label="",style="dashed", color="magenta", weight=3]; 4083 -> 4383[label="",style="dashed", color="magenta", weight=3]; 4089[label="(vyy1890,vyy1891) <= (vyy1900,vyy1901)",fontsize=16,color="black",shape="box"];4089 -> 4384[label="",style="solid", color="black", weight=3]; 4084 -> 2419[label="",style="dashed", color="red", weight=0]; 4084[label="compare vyy189 vyy190",fontsize=16,color="magenta"];4084 -> 4385[label="",style="dashed", color="magenta", weight=3]; 4084 -> 4386[label="",style="dashed", color="magenta", weight=3]; 4090[label="Left vyy1890 <= Left vyy1900",fontsize=16,color="black",shape="box"];4090 -> 4387[label="",style="solid", color="black", weight=3]; 4091[label="Left vyy1890 <= Right vyy1900",fontsize=16,color="black",shape="box"];4091 -> 4388[label="",style="solid", color="black", weight=3]; 4092[label="Right vyy1890 <= Left vyy1900",fontsize=16,color="black",shape="box"];4092 -> 4389[label="",style="solid", color="black", weight=3]; 4093[label="Right vyy1890 <= Right vyy1900",fontsize=16,color="black",shape="box"];4093 -> 4390[label="",style="solid", color="black", weight=3]; 4094[label="(vyy1890,vyy1891,vyy1892) <= (vyy1900,vyy1901,vyy1902)",fontsize=16,color="black",shape="box"];4094 -> 4391[label="",style="solid", color="black", weight=3]; 4085 -> 2422[label="",style="dashed", color="red", weight=0]; 4085[label="compare vyy189 vyy190",fontsize=16,color="magenta"];4085 -> 4392[label="",style="dashed", color="magenta", weight=3]; 4085 -> 4393[label="",style="dashed", color="magenta", weight=3]; 4086 -> 2423[label="",style="dashed", color="red", weight=0]; 4086[label="compare vyy189 vyy190",fontsize=16,color="magenta"];4086 -> 4394[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4395[label="",style="dashed", color="magenta", weight=3]; 4087 -> 2424[label="",style="dashed", color="red", weight=0]; 4087[label="compare vyy189 vyy190",fontsize=16,color="magenta"];4087 -> 4396[label="",style="dashed", color="magenta", weight=3]; 4087 -> 4397[label="",style="dashed", color="magenta", weight=3]; 4095[label="LT <= LT",fontsize=16,color="black",shape="box"];4095 -> 4398[label="",style="solid", color="black", weight=3]; 4096[label="LT <= EQ",fontsize=16,color="black",shape="box"];4096 -> 4399[label="",style="solid", color="black", weight=3]; 4097[label="LT <= GT",fontsize=16,color="black",shape="box"];4097 -> 4400[label="",style="solid", color="black", weight=3]; 4098[label="EQ <= LT",fontsize=16,color="black",shape="box"];4098 -> 4401[label="",style="solid", color="black", weight=3]; 4099[label="EQ <= EQ",fontsize=16,color="black",shape="box"];4099 -> 4402[label="",style="solid", color="black", weight=3]; 4100[label="EQ <= GT",fontsize=16,color="black",shape="box"];4100 -> 4403[label="",style="solid", color="black", weight=3]; 4101[label="GT <= LT",fontsize=16,color="black",shape="box"];4101 -> 4404[label="",style="solid", color="black", weight=3]; 4102[label="GT <= EQ",fontsize=16,color="black",shape="box"];4102 -> 4405[label="",style="solid", color="black", weight=3]; 4103[label="GT <= GT",fontsize=16,color="black",shape="box"];4103 -> 4406[label="",style="solid", color="black", weight=3]; 4104[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];4104 -> 4407[label="",style="solid", color="black", weight=3]; 4105[label="Nothing <= Just vyy1900",fontsize=16,color="black",shape="box"];4105 -> 4408[label="",style="solid", color="black", weight=3]; 4106[label="Just vyy1890 <= Nothing",fontsize=16,color="black",shape="box"];4106 -> 4409[label="",style="solid", color="black", weight=3]; 4107[label="Just vyy1890 <= Just vyy1900",fontsize=16,color="black",shape="box"];4107 -> 4410[label="",style="solid", color="black", weight=3]; 4088 -> 2427[label="",style="dashed", color="red", weight=0]; 4088[label="compare vyy189 vyy190",fontsize=16,color="magenta"];4088 -> 4411[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4412[label="",style="dashed", color="magenta", weight=3]; 4108[label="GT",fontsize=16,color="green",shape="box"];4109[label="GT",fontsize=16,color="green",shape="box"];4117 -> 3442[label="",style="dashed", color="red", weight=0]; 4117[label="vyy208 < vyy211",fontsize=16,color="magenta"];4117 -> 4413[label="",style="dashed", color="magenta", weight=3]; 4117 -> 4414[label="",style="dashed", color="magenta", weight=3]; 4118 -> 3443[label="",style="dashed", color="red", weight=0]; 4118[label="vyy208 < vyy211",fontsize=16,color="magenta"];4118 -> 4415[label="",style="dashed", color="magenta", weight=3]; 4118 -> 4416[label="",style="dashed", color="magenta", weight=3]; 4119 -> 3444[label="",style="dashed", color="red", weight=0]; 4119[label="vyy208 < vyy211",fontsize=16,color="magenta"];4119 -> 4417[label="",style="dashed", color="magenta", weight=3]; 4119 -> 4418[label="",style="dashed", color="magenta", weight=3]; 4120 -> 3445[label="",style="dashed", color="red", weight=0]; 4120[label="vyy208 < vyy211",fontsize=16,color="magenta"];4120 -> 4419[label="",style="dashed", color="magenta", weight=3]; 4120 -> 4420[label="",style="dashed", color="magenta", weight=3]; 4121 -> 3446[label="",style="dashed", color="red", weight=0]; 4121[label="vyy208 < vyy211",fontsize=16,color="magenta"];4121 -> 4421[label="",style="dashed", color="magenta", weight=3]; 4121 -> 4422[label="",style="dashed", color="magenta", weight=3]; 4122 -> 3447[label="",style="dashed", color="red", weight=0]; 4122[label="vyy208 < vyy211",fontsize=16,color="magenta"];4122 -> 4423[label="",style="dashed", color="magenta", weight=3]; 4122 -> 4424[label="",style="dashed", color="magenta", weight=3]; 4123 -> 3448[label="",style="dashed", color="red", weight=0]; 4123[label="vyy208 < vyy211",fontsize=16,color="magenta"];4123 -> 4425[label="",style="dashed", color="magenta", weight=3]; 4123 -> 4426[label="",style="dashed", color="magenta", weight=3]; 4124 -> 3449[label="",style="dashed", color="red", weight=0]; 4124[label="vyy208 < vyy211",fontsize=16,color="magenta"];4124 -> 4427[label="",style="dashed", color="magenta", weight=3]; 4124 -> 4428[label="",style="dashed", color="magenta", weight=3]; 4125 -> 3450[label="",style="dashed", color="red", weight=0]; 4125[label="vyy208 < vyy211",fontsize=16,color="magenta"];4125 -> 4429[label="",style="dashed", color="magenta", weight=3]; 4125 -> 4430[label="",style="dashed", color="magenta", weight=3]; 4126 -> 3451[label="",style="dashed", color="red", weight=0]; 4126[label="vyy208 < vyy211",fontsize=16,color="magenta"];4126 -> 4431[label="",style="dashed", color="magenta", weight=3]; 4126 -> 4432[label="",style="dashed", color="magenta", weight=3]; 4127 -> 3452[label="",style="dashed", color="red", weight=0]; 4127[label="vyy208 < vyy211",fontsize=16,color="magenta"];4127 -> 4433[label="",style="dashed", color="magenta", weight=3]; 4127 -> 4434[label="",style="dashed", color="magenta", weight=3]; 4128 -> 3453[label="",style="dashed", color="red", weight=0]; 4128[label="vyy208 < vyy211",fontsize=16,color="magenta"];4128 -> 4435[label="",style="dashed", color="magenta", weight=3]; 4128 -> 4436[label="",style="dashed", color="magenta", weight=3]; 4129 -> 3454[label="",style="dashed", color="red", weight=0]; 4129[label="vyy208 < vyy211",fontsize=16,color="magenta"];4129 -> 4437[label="",style="dashed", color="magenta", weight=3]; 4129 -> 4438[label="",style="dashed", color="magenta", weight=3]; 4130 -> 3455[label="",style="dashed", color="red", weight=0]; 4130[label="vyy208 < vyy211",fontsize=16,color="magenta"];4130 -> 4439[label="",style="dashed", color="magenta", weight=3]; 4130 -> 4440[label="",style="dashed", color="magenta", weight=3]; 4131[label="vyy209 <= vyy212",fontsize=16,color="blue",shape="box"];5762[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5762[label="",style="solid", color="blue", weight=9]; 5762 -> 4441[label="",style="solid", color="blue", weight=3]; 5763[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5763[label="",style="solid", color="blue", weight=9]; 5763 -> 4442[label="",style="solid", color="blue", weight=3]; 5764[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5764[label="",style="solid", color="blue", weight=9]; 5764 -> 4443[label="",style="solid", color="blue", weight=3]; 5765[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5765[label="",style="solid", color="blue", weight=9]; 5765 -> 4444[label="",style="solid", color="blue", weight=3]; 5766[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5766[label="",style="solid", color="blue", weight=9]; 5766 -> 4445[label="",style="solid", color="blue", weight=3]; 5767[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5767[label="",style="solid", color="blue", weight=9]; 5767 -> 4446[label="",style="solid", color="blue", weight=3]; 5768[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5768[label="",style="solid", color="blue", weight=9]; 5768 -> 4447[label="",style="solid", color="blue", weight=3]; 5769[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5769[label="",style="solid", color="blue", weight=9]; 5769 -> 4448[label="",style="solid", color="blue", weight=3]; 5770[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5770[label="",style="solid", color="blue", weight=9]; 5770 -> 4449[label="",style="solid", color="blue", weight=3]; 5771[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5771[label="",style="solid", color="blue", weight=9]; 5771 -> 4450[label="",style="solid", color="blue", weight=3]; 5772[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5772[label="",style="solid", color="blue", weight=9]; 5772 -> 4451[label="",style="solid", color="blue", weight=3]; 5773[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5773[label="",style="solid", color="blue", weight=9]; 5773 -> 4452[label="",style="solid", color="blue", weight=3]; 5774[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5774[label="",style="solid", color="blue", weight=9]; 5774 -> 4453[label="",style="solid", color="blue", weight=3]; 5775[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4131 -> 5775[label="",style="solid", color="blue", weight=9]; 5775 -> 4454[label="",style="solid", color="blue", weight=3]; 4132[label="vyy208 == vyy211",fontsize=16,color="blue",shape="box"];5776[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5776[label="",style="solid", color="blue", weight=9]; 5776 -> 4455[label="",style="solid", color="blue", weight=3]; 5777[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5777[label="",style="solid", color="blue", weight=9]; 5777 -> 4456[label="",style="solid", color="blue", weight=3]; 5778[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5778[label="",style="solid", color="blue", weight=9]; 5778 -> 4457[label="",style="solid", color="blue", weight=3]; 5779[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5779[label="",style="solid", color="blue", weight=9]; 5779 -> 4458[label="",style="solid", color="blue", weight=3]; 5780[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5780[label="",style="solid", color="blue", weight=9]; 5780 -> 4459[label="",style="solid", color="blue", weight=3]; 5781[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5781[label="",style="solid", color="blue", weight=9]; 5781 -> 4460[label="",style="solid", color="blue", weight=3]; 5782[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5782[label="",style="solid", color="blue", weight=9]; 5782 -> 4461[label="",style="solid", color="blue", weight=3]; 5783[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5783[label="",style="solid", color="blue", weight=9]; 5783 -> 4462[label="",style="solid", color="blue", weight=3]; 5784[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5784[label="",style="solid", color="blue", weight=9]; 5784 -> 4463[label="",style="solid", color="blue", weight=3]; 5785[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5785[label="",style="solid", color="blue", weight=9]; 5785 -> 4464[label="",style="solid", color="blue", weight=3]; 5786[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5786[label="",style="solid", color="blue", weight=9]; 5786 -> 4465[label="",style="solid", color="blue", weight=3]; 5787[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5787[label="",style="solid", color="blue", weight=9]; 5787 -> 4466[label="",style="solid", color="blue", weight=3]; 5788[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5788[label="",style="solid", color="blue", weight=9]; 5788 -> 4467[label="",style="solid", color="blue", weight=3]; 5789[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4132 -> 5789[label="",style="solid", color="blue", weight=9]; 5789 -> 4468[label="",style="solid", color="blue", weight=3]; 4133[label="False || vyy311",fontsize=16,color="black",shape="box"];4133 -> 4469[label="",style="solid", color="black", weight=3]; 4134[label="True || vyy311",fontsize=16,color="black",shape="box"];4134 -> 4470[label="",style="solid", color="black", weight=3]; 4135[label="vyy210",fontsize=16,color="green",shape="box"];4136[label="vyy207",fontsize=16,color="green",shape="box"];4137[label="vyy210",fontsize=16,color="green",shape="box"];4138[label="vyy207",fontsize=16,color="green",shape="box"];4139[label="vyy210",fontsize=16,color="green",shape="box"];4140[label="vyy207",fontsize=16,color="green",shape="box"];4141[label="vyy210",fontsize=16,color="green",shape="box"];4142[label="vyy207",fontsize=16,color="green",shape="box"];4143[label="vyy210",fontsize=16,color="green",shape="box"];4144[label="vyy207",fontsize=16,color="green",shape="box"];4145[label="vyy210",fontsize=16,color="green",shape="box"];4146[label="vyy207",fontsize=16,color="green",shape="box"];4147[label="vyy210",fontsize=16,color="green",shape="box"];4148[label="vyy207",fontsize=16,color="green",shape="box"];4149[label="vyy210",fontsize=16,color="green",shape="box"];4150[label="vyy207",fontsize=16,color="green",shape="box"];4151[label="vyy210",fontsize=16,color="green",shape="box"];4152[label="vyy207",fontsize=16,color="green",shape="box"];4153[label="vyy210",fontsize=16,color="green",shape="box"];4154[label="vyy207",fontsize=16,color="green",shape="box"];4155[label="vyy210",fontsize=16,color="green",shape="box"];4156[label="vyy207",fontsize=16,color="green",shape="box"];4157[label="vyy210",fontsize=16,color="green",shape="box"];4158[label="vyy207",fontsize=16,color="green",shape="box"];4159[label="vyy210",fontsize=16,color="green",shape="box"];4160[label="vyy207",fontsize=16,color="green",shape="box"];4161[label="vyy210",fontsize=16,color="green",shape="box"];4162[label="vyy207",fontsize=16,color="green",shape="box"];4163[label="compare1 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) False",fontsize=16,color="black",shape="box"];4163 -> 4471[label="",style="solid", color="black", weight=3]; 4164[label="compare1 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) True",fontsize=16,color="black",shape="box"];4164 -> 4472[label="",style="solid", color="black", weight=3]; 4165[label="True",fontsize=16,color="green",shape="box"];4166 -> 4473[label="",style="dashed", color="red", weight=0]; 4166[label="primPlusNat (primMulNat vyy5000 (Succ vyy60100)) (Succ vyy60100)",fontsize=16,color="magenta"];4166 -> 4474[label="",style="dashed", color="magenta", weight=3]; 4167[label="Zero",fontsize=16,color="green",shape="box"];4168[label="Zero",fontsize=16,color="green",shape="box"];4169[label="Zero",fontsize=16,color="green",shape="box"];4170[label="GT",fontsize=16,color="green",shape="box"];4171[label="vyy234",fontsize=16,color="green",shape="box"];4172[label="vyy232",fontsize=16,color="green",shape="box"];4173[label="vyy234",fontsize=16,color="green",shape="box"];4174[label="vyy232",fontsize=16,color="green",shape="box"];4175[label="vyy234",fontsize=16,color="green",shape="box"];4176[label="vyy232",fontsize=16,color="green",shape="box"];4177[label="vyy234",fontsize=16,color="green",shape="box"];4178[label="vyy232",fontsize=16,color="green",shape="box"];4179[label="vyy234",fontsize=16,color="green",shape="box"];4180[label="vyy232",fontsize=16,color="green",shape="box"];4181[label="vyy234",fontsize=16,color="green",shape="box"];4182[label="vyy232",fontsize=16,color="green",shape="box"];4183[label="vyy234",fontsize=16,color="green",shape="box"];4184[label="vyy232",fontsize=16,color="green",shape="box"];4185[label="vyy234",fontsize=16,color="green",shape="box"];4186[label="vyy232",fontsize=16,color="green",shape="box"];4187[label="vyy234",fontsize=16,color="green",shape="box"];4188[label="vyy232",fontsize=16,color="green",shape="box"];4189[label="vyy234",fontsize=16,color="green",shape="box"];4190[label="vyy232",fontsize=16,color="green",shape="box"];4191[label="vyy234",fontsize=16,color="green",shape="box"];4192[label="vyy232",fontsize=16,color="green",shape="box"];4193[label="vyy234",fontsize=16,color="green",shape="box"];4194[label="vyy232",fontsize=16,color="green",shape="box"];4195[label="vyy234",fontsize=16,color="green",shape="box"];4196[label="vyy232",fontsize=16,color="green",shape="box"];4197[label="vyy234",fontsize=16,color="green",shape="box"];4198[label="vyy232",fontsize=16,color="green",shape="box"];4199[label="compare0 (vyy282,vyy283) (vyy284,vyy285) otherwise",fontsize=16,color="black",shape="box"];4199 -> 4475[label="",style="solid", color="black", weight=3]; 4200[label="LT",fontsize=16,color="green",shape="box"];4201[label="vyy6001",fontsize=16,color="green",shape="box"];4202[label="vyy500",fontsize=16,color="green",shape="box"];4203[label="vyy6000",fontsize=16,color="green",shape="box"];4204[label="vyy501",fontsize=16,color="green",shape="box"];4205[label="vyy500",fontsize=16,color="green",shape="box"];4206[label="vyy6000",fontsize=16,color="green",shape="box"];4207[label="vyy500",fontsize=16,color="green",shape="box"];4208[label="vyy6000",fontsize=16,color="green",shape="box"];4209[label="vyy500",fontsize=16,color="green",shape="box"];4210[label="vyy6000",fontsize=16,color="green",shape="box"];4211[label="vyy500",fontsize=16,color="green",shape="box"];4212[label="vyy6000",fontsize=16,color="green",shape="box"];4213[label="vyy500",fontsize=16,color="green",shape="box"];4214[label="vyy6000",fontsize=16,color="green",shape="box"];4215[label="vyy500",fontsize=16,color="green",shape="box"];4216[label="vyy6000",fontsize=16,color="green",shape="box"];4217[label="vyy500",fontsize=16,color="green",shape="box"];4218[label="vyy6000",fontsize=16,color="green",shape="box"];4219[label="vyy500",fontsize=16,color="green",shape="box"];4220[label="vyy6000",fontsize=16,color="green",shape="box"];4221[label="vyy500",fontsize=16,color="green",shape="box"];4222[label="vyy6000",fontsize=16,color="green",shape="box"];4223[label="vyy500",fontsize=16,color="green",shape="box"];4224[label="vyy6000",fontsize=16,color="green",shape="box"];4225[label="vyy500",fontsize=16,color="green",shape="box"];4226[label="vyy6000",fontsize=16,color="green",shape="box"];4227[label="vyy500",fontsize=16,color="green",shape="box"];4228[label="vyy6000",fontsize=16,color="green",shape="box"];4229[label="vyy500",fontsize=16,color="green",shape="box"];4230[label="vyy6000",fontsize=16,color="green",shape="box"];4231[label="vyy500",fontsize=16,color="green",shape="box"];4232[label="vyy6000",fontsize=16,color="green",shape="box"];4233 -> 3683[label="",style="dashed", color="red", weight=0]; 4233[label="primEqNat vyy60000 vyy5000",fontsize=16,color="magenta"];4233 -> 4476[label="",style="dashed", color="magenta", weight=3]; 4233 -> 4477[label="",style="dashed", color="magenta", weight=3]; 4234[label="False",fontsize=16,color="green",shape="box"];4235[label="False",fontsize=16,color="green",shape="box"];4236[label="True",fontsize=16,color="green",shape="box"];4237[label="False",fontsize=16,color="green",shape="box"];4238[label="True",fontsize=16,color="green",shape="box"];4239 -> 3683[label="",style="dashed", color="red", weight=0]; 4239[label="primEqNat vyy60000 vyy5000",fontsize=16,color="magenta"];4239 -> 4478[label="",style="dashed", color="magenta", weight=3]; 4239 -> 4479[label="",style="dashed", color="magenta", weight=3]; 4240[label="False",fontsize=16,color="green",shape="box"];4241[label="False",fontsize=16,color="green",shape="box"];4242[label="True",fontsize=16,color="green",shape="box"];4243[label="False",fontsize=16,color="green",shape="box"];4244[label="True",fontsize=16,color="green",shape="box"];4245[label="primEqNat (Succ vyy60000) (Succ vyy5000)",fontsize=16,color="black",shape="box"];4245 -> 4480[label="",style="solid", color="black", weight=3]; 4246[label="primEqNat (Succ vyy60000) Zero",fontsize=16,color="black",shape="box"];4246 -> 4481[label="",style="solid", color="black", weight=3]; 4247[label="primEqNat Zero (Succ vyy5000)",fontsize=16,color="black",shape="box"];4247 -> 4482[label="",style="solid", color="black", weight=3]; 4248[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];4248 -> 4483[label="",style="solid", color="black", weight=3]; 4249[label="vyy501",fontsize=16,color="green",shape="box"];4250[label="vyy6001",fontsize=16,color="green",shape="box"];4251[label="vyy501",fontsize=16,color="green",shape="box"];4252[label="vyy6001",fontsize=16,color="green",shape="box"];4253[label="vyy500",fontsize=16,color="green",shape="box"];4254[label="vyy6000",fontsize=16,color="green",shape="box"];4255[label="vyy500",fontsize=16,color="green",shape="box"];4256[label="vyy6000",fontsize=16,color="green",shape="box"];4257[label="vyy501",fontsize=16,color="green",shape="box"];4258[label="vyy6001",fontsize=16,color="green",shape="box"];4259[label="vyy501",fontsize=16,color="green",shape="box"];4260[label="vyy6001",fontsize=16,color="green",shape="box"];4261[label="vyy501",fontsize=16,color="green",shape="box"];4262[label="vyy6001",fontsize=16,color="green",shape="box"];4263[label="vyy501",fontsize=16,color="green",shape="box"];4264[label="vyy6001",fontsize=16,color="green",shape="box"];4265[label="vyy501",fontsize=16,color="green",shape="box"];4266[label="vyy6001",fontsize=16,color="green",shape="box"];4267[label="vyy501",fontsize=16,color="green",shape="box"];4268[label="vyy6001",fontsize=16,color="green",shape="box"];4269[label="vyy501",fontsize=16,color="green",shape="box"];4270[label="vyy6001",fontsize=16,color="green",shape="box"];4271[label="vyy501",fontsize=16,color="green",shape="box"];4272[label="vyy6001",fontsize=16,color="green",shape="box"];4273[label="vyy501",fontsize=16,color="green",shape="box"];4274[label="vyy6001",fontsize=16,color="green",shape="box"];4275[label="vyy501",fontsize=16,color="green",shape="box"];4276[label="vyy6001",fontsize=16,color="green",shape="box"];4277[label="vyy501",fontsize=16,color="green",shape="box"];4278[label="vyy6001",fontsize=16,color="green",shape="box"];4279[label="vyy501",fontsize=16,color="green",shape="box"];4280[label="vyy6001",fontsize=16,color="green",shape="box"];4281[label="vyy501",fontsize=16,color="green",shape="box"];4282[label="vyy6001",fontsize=16,color="green",shape="box"];4283[label="vyy501",fontsize=16,color="green",shape="box"];4284[label="vyy6001",fontsize=16,color="green",shape="box"];4285[label="vyy500",fontsize=16,color="green",shape="box"];4286[label="vyy6000",fontsize=16,color="green",shape="box"];4287[label="vyy500",fontsize=16,color="green",shape="box"];4288[label="vyy6000",fontsize=16,color="green",shape="box"];4289[label="vyy500",fontsize=16,color="green",shape="box"];4290[label="vyy6000",fontsize=16,color="green",shape="box"];4291[label="vyy500",fontsize=16,color="green",shape="box"];4292[label="vyy6000",fontsize=16,color="green",shape="box"];4293[label="vyy500",fontsize=16,color="green",shape="box"];4294[label="vyy6000",fontsize=16,color="green",shape="box"];4295[label="vyy500",fontsize=16,color="green",shape="box"];4296[label="vyy6000",fontsize=16,color="green",shape="box"];4297[label="vyy500",fontsize=16,color="green",shape="box"];4298[label="vyy6000",fontsize=16,color="green",shape="box"];4299[label="vyy500",fontsize=16,color="green",shape="box"];4300[label="vyy6000",fontsize=16,color="green",shape="box"];4301[label="vyy500",fontsize=16,color="green",shape="box"];4302[label="vyy6000",fontsize=16,color="green",shape="box"];4303[label="vyy500",fontsize=16,color="green",shape="box"];4304[label="vyy6000",fontsize=16,color="green",shape="box"];4305[label="vyy500",fontsize=16,color="green",shape="box"];4306[label="vyy6000",fontsize=16,color="green",shape="box"];4307[label="vyy500",fontsize=16,color="green",shape="box"];4308[label="vyy6000",fontsize=16,color="green",shape="box"];4309[label="vyy500",fontsize=16,color="green",shape="box"];4310[label="vyy6000",fontsize=16,color="green",shape="box"];4311[label="vyy500",fontsize=16,color="green",shape="box"];4312[label="vyy6000",fontsize=16,color="green",shape="box"];4313 -> 2708[label="",style="dashed", color="red", weight=0]; 4313[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4313 -> 4484[label="",style="dashed", color="magenta", weight=3]; 4313 -> 4485[label="",style="dashed", color="magenta", weight=3]; 4314 -> 2709[label="",style="dashed", color="red", weight=0]; 4314[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4314 -> 4486[label="",style="dashed", color="magenta", weight=3]; 4314 -> 4487[label="",style="dashed", color="magenta", weight=3]; 4315 -> 2710[label="",style="dashed", color="red", weight=0]; 4315[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4315 -> 4488[label="",style="dashed", color="magenta", weight=3]; 4315 -> 4489[label="",style="dashed", color="magenta", weight=3]; 4316 -> 2711[label="",style="dashed", color="red", weight=0]; 4316[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4316 -> 4490[label="",style="dashed", color="magenta", weight=3]; 4316 -> 4491[label="",style="dashed", color="magenta", weight=3]; 4317 -> 2712[label="",style="dashed", color="red", weight=0]; 4317[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4317 -> 4492[label="",style="dashed", color="magenta", weight=3]; 4317 -> 4493[label="",style="dashed", color="magenta", weight=3]; 4318 -> 2713[label="",style="dashed", color="red", weight=0]; 4318[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4318 -> 4494[label="",style="dashed", color="magenta", weight=3]; 4318 -> 4495[label="",style="dashed", color="magenta", weight=3]; 4319 -> 2714[label="",style="dashed", color="red", weight=0]; 4319[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4319 -> 4496[label="",style="dashed", color="magenta", weight=3]; 4319 -> 4497[label="",style="dashed", color="magenta", weight=3]; 4320 -> 2715[label="",style="dashed", color="red", weight=0]; 4320[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4320 -> 4498[label="",style="dashed", color="magenta", weight=3]; 4320 -> 4499[label="",style="dashed", color="magenta", weight=3]; 4321 -> 2716[label="",style="dashed", color="red", weight=0]; 4321[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4321 -> 4500[label="",style="dashed", color="magenta", weight=3]; 4321 -> 4501[label="",style="dashed", color="magenta", weight=3]; 4322 -> 2717[label="",style="dashed", color="red", weight=0]; 4322[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4322 -> 4502[label="",style="dashed", color="magenta", weight=3]; 4322 -> 4503[label="",style="dashed", color="magenta", weight=3]; 4323 -> 2718[label="",style="dashed", color="red", weight=0]; 4323[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4323 -> 4504[label="",style="dashed", color="magenta", weight=3]; 4323 -> 4505[label="",style="dashed", color="magenta", weight=3]; 4324 -> 2719[label="",style="dashed", color="red", weight=0]; 4324[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4324 -> 4506[label="",style="dashed", color="magenta", weight=3]; 4324 -> 4507[label="",style="dashed", color="magenta", weight=3]; 4325 -> 2720[label="",style="dashed", color="red", weight=0]; 4325[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4325 -> 4508[label="",style="dashed", color="magenta", weight=3]; 4325 -> 4509[label="",style="dashed", color="magenta", weight=3]; 4326 -> 2721[label="",style="dashed", color="red", weight=0]; 4326[label="vyy6002 == vyy502",fontsize=16,color="magenta"];4326 -> 4510[label="",style="dashed", color="magenta", weight=3]; 4326 -> 4511[label="",style="dashed", color="magenta", weight=3]; 4327 -> 2708[label="",style="dashed", color="red", weight=0]; 4327[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4327 -> 4512[label="",style="dashed", color="magenta", weight=3]; 4327 -> 4513[label="",style="dashed", color="magenta", weight=3]; 4328 -> 2709[label="",style="dashed", color="red", weight=0]; 4328[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4328 -> 4514[label="",style="dashed", color="magenta", weight=3]; 4328 -> 4515[label="",style="dashed", color="magenta", weight=3]; 4329 -> 2710[label="",style="dashed", color="red", weight=0]; 4329[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4329 -> 4516[label="",style="dashed", color="magenta", weight=3]; 4329 -> 4517[label="",style="dashed", color="magenta", weight=3]; 4330 -> 2711[label="",style="dashed", color="red", weight=0]; 4330[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4330 -> 4518[label="",style="dashed", color="magenta", weight=3]; 4330 -> 4519[label="",style="dashed", color="magenta", weight=3]; 4331 -> 2712[label="",style="dashed", color="red", weight=0]; 4331[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4331 -> 4520[label="",style="dashed", color="magenta", weight=3]; 4331 -> 4521[label="",style="dashed", color="magenta", weight=3]; 4332 -> 2713[label="",style="dashed", color="red", weight=0]; 4332[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4332 -> 4522[label="",style="dashed", color="magenta", weight=3]; 4332 -> 4523[label="",style="dashed", color="magenta", weight=3]; 4333 -> 2714[label="",style="dashed", color="red", weight=0]; 4333[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4333 -> 4524[label="",style="dashed", color="magenta", weight=3]; 4333 -> 4525[label="",style="dashed", color="magenta", weight=3]; 4334 -> 2715[label="",style="dashed", color="red", weight=0]; 4334[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4334 -> 4526[label="",style="dashed", color="magenta", weight=3]; 4334 -> 4527[label="",style="dashed", color="magenta", weight=3]; 4335 -> 2716[label="",style="dashed", color="red", weight=0]; 4335[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4335 -> 4528[label="",style="dashed", color="magenta", weight=3]; 4335 -> 4529[label="",style="dashed", color="magenta", weight=3]; 4336 -> 2717[label="",style="dashed", color="red", weight=0]; 4336[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4336 -> 4530[label="",style="dashed", color="magenta", weight=3]; 4336 -> 4531[label="",style="dashed", color="magenta", weight=3]; 4337 -> 2718[label="",style="dashed", color="red", weight=0]; 4337[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4337 -> 4532[label="",style="dashed", color="magenta", weight=3]; 4337 -> 4533[label="",style="dashed", color="magenta", weight=3]; 4338 -> 2719[label="",style="dashed", color="red", weight=0]; 4338[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4338 -> 4534[label="",style="dashed", color="magenta", weight=3]; 4338 -> 4535[label="",style="dashed", color="magenta", weight=3]; 4339 -> 2720[label="",style="dashed", color="red", weight=0]; 4339[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4339 -> 4536[label="",style="dashed", color="magenta", weight=3]; 4339 -> 4537[label="",style="dashed", color="magenta", weight=3]; 4340 -> 2721[label="",style="dashed", color="red", weight=0]; 4340[label="vyy6001 == vyy501",fontsize=16,color="magenta"];4340 -> 4538[label="",style="dashed", color="magenta", weight=3]; 4340 -> 4539[label="",style="dashed", color="magenta", weight=3]; 4341[label="vyy500",fontsize=16,color="green",shape="box"];4342[label="vyy6000",fontsize=16,color="green",shape="box"];4343[label="vyy500",fontsize=16,color="green",shape="box"];4344[label="vyy6000",fontsize=16,color="green",shape="box"];4345[label="vyy500",fontsize=16,color="green",shape="box"];4346[label="vyy6000",fontsize=16,color="green",shape="box"];4347[label="vyy500",fontsize=16,color="green",shape="box"];4348[label="vyy6000",fontsize=16,color="green",shape="box"];4349[label="vyy500",fontsize=16,color="green",shape="box"];4350[label="vyy6000",fontsize=16,color="green",shape="box"];4351[label="vyy500",fontsize=16,color="green",shape="box"];4352[label="vyy6000",fontsize=16,color="green",shape="box"];4353[label="vyy500",fontsize=16,color="green",shape="box"];4354[label="vyy6000",fontsize=16,color="green",shape="box"];4355[label="vyy500",fontsize=16,color="green",shape="box"];4356[label="vyy6000",fontsize=16,color="green",shape="box"];4357[label="vyy500",fontsize=16,color="green",shape="box"];4358[label="vyy6000",fontsize=16,color="green",shape="box"];4359[label="vyy500",fontsize=16,color="green",shape="box"];4360[label="vyy6000",fontsize=16,color="green",shape="box"];4361[label="vyy500",fontsize=16,color="green",shape="box"];4362[label="vyy6000",fontsize=16,color="green",shape="box"];4363[label="vyy500",fontsize=16,color="green",shape="box"];4364[label="vyy6000",fontsize=16,color="green",shape="box"];4365[label="vyy500",fontsize=16,color="green",shape="box"];4366[label="vyy6000",fontsize=16,color="green",shape="box"];4367[label="vyy500",fontsize=16,color="green",shape="box"];4368[label="vyy6000",fontsize=16,color="green",shape="box"];4369[label="vyy6001",fontsize=16,color="green",shape="box"];4370[label="vyy500",fontsize=16,color="green",shape="box"];4371[label="vyy6000",fontsize=16,color="green",shape="box"];4372[label="vyy501",fontsize=16,color="green",shape="box"];4373[label="True",fontsize=16,color="green",shape="box"];4374[label="True",fontsize=16,color="green",shape="box"];4375[label="False",fontsize=16,color="green",shape="box"];4376[label="True",fontsize=16,color="green",shape="box"];4377[label="vyy190",fontsize=16,color="green",shape="box"];4378[label="vyy189",fontsize=16,color="green",shape="box"];4379 -> 2302[label="",style="dashed", color="red", weight=0]; 4379[label="not (vyy306 == GT)",fontsize=16,color="magenta"];4379 -> 4540[label="",style="dashed", color="magenta", weight=3]; 4380[label="vyy190",fontsize=16,color="green",shape="box"];4381[label="vyy189",fontsize=16,color="green",shape="box"];4382[label="vyy190",fontsize=16,color="green",shape="box"];4383[label="vyy189",fontsize=16,color="green",shape="box"];4384 -> 4112[label="",style="dashed", color="red", weight=0]; 4384[label="vyy1890 < vyy1900 || vyy1890 == vyy1900 && vyy1891 <= vyy1901",fontsize=16,color="magenta"];4384 -> 4541[label="",style="dashed", color="magenta", weight=3]; 4384 -> 4542[label="",style="dashed", color="magenta", weight=3]; 4385[label="vyy190",fontsize=16,color="green",shape="box"];4386[label="vyy189",fontsize=16,color="green",shape="box"];4387[label="vyy1890 <= vyy1900",fontsize=16,color="blue",shape="box"];5790[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5790[label="",style="solid", color="blue", weight=9]; 5790 -> 4543[label="",style="solid", color="blue", weight=3]; 5791[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5791[label="",style="solid", color="blue", weight=9]; 5791 -> 4544[label="",style="solid", color="blue", weight=3]; 5792[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5792[label="",style="solid", color="blue", weight=9]; 5792 -> 4545[label="",style="solid", color="blue", weight=3]; 5793[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5793[label="",style="solid", color="blue", weight=9]; 5793 -> 4546[label="",style="solid", color="blue", weight=3]; 5794[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5794[label="",style="solid", color="blue", weight=9]; 5794 -> 4547[label="",style="solid", color="blue", weight=3]; 5795[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5795[label="",style="solid", color="blue", weight=9]; 5795 -> 4548[label="",style="solid", color="blue", weight=3]; 5796[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5796[label="",style="solid", color="blue", weight=9]; 5796 -> 4549[label="",style="solid", color="blue", weight=3]; 5797[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5797[label="",style="solid", color="blue", weight=9]; 5797 -> 4550[label="",style="solid", color="blue", weight=3]; 5798[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5798[label="",style="solid", color="blue", weight=9]; 5798 -> 4551[label="",style="solid", color="blue", weight=3]; 5799[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5799[label="",style="solid", color="blue", weight=9]; 5799 -> 4552[label="",style="solid", color="blue", weight=3]; 5800[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5800[label="",style="solid", color="blue", weight=9]; 5800 -> 4553[label="",style="solid", color="blue", weight=3]; 5801[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5801[label="",style="solid", color="blue", weight=9]; 5801 -> 4554[label="",style="solid", color="blue", weight=3]; 5802[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5802[label="",style="solid", color="blue", weight=9]; 5802 -> 4555[label="",style="solid", color="blue", weight=3]; 5803[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4387 -> 5803[label="",style="solid", color="blue", weight=9]; 5803 -> 4556[label="",style="solid", color="blue", weight=3]; 4388[label="True",fontsize=16,color="green",shape="box"];4389[label="False",fontsize=16,color="green",shape="box"];4390[label="vyy1890 <= vyy1900",fontsize=16,color="blue",shape="box"];5804[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5804[label="",style="solid", color="blue", weight=9]; 5804 -> 4557[label="",style="solid", color="blue", weight=3]; 5805[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5805[label="",style="solid", color="blue", weight=9]; 5805 -> 4558[label="",style="solid", color="blue", weight=3]; 5806[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5806[label="",style="solid", color="blue", weight=9]; 5806 -> 4559[label="",style="solid", color="blue", weight=3]; 5807[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5807[label="",style="solid", color="blue", weight=9]; 5807 -> 4560[label="",style="solid", color="blue", weight=3]; 5808[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5808[label="",style="solid", color="blue", weight=9]; 5808 -> 4561[label="",style="solid", color="blue", weight=3]; 5809[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5809[label="",style="solid", color="blue", weight=9]; 5809 -> 4562[label="",style="solid", color="blue", weight=3]; 5810[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5810[label="",style="solid", color="blue", weight=9]; 5810 -> 4563[label="",style="solid", color="blue", weight=3]; 5811[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5811[label="",style="solid", color="blue", weight=9]; 5811 -> 4564[label="",style="solid", color="blue", weight=3]; 5812[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5812[label="",style="solid", color="blue", weight=9]; 5812 -> 4565[label="",style="solid", color="blue", weight=3]; 5813[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5813[label="",style="solid", color="blue", weight=9]; 5813 -> 4566[label="",style="solid", color="blue", weight=3]; 5814[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5814[label="",style="solid", color="blue", weight=9]; 5814 -> 4567[label="",style="solid", color="blue", weight=3]; 5815[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5815[label="",style="solid", color="blue", weight=9]; 5815 -> 4568[label="",style="solid", color="blue", weight=3]; 5816[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5816[label="",style="solid", color="blue", weight=9]; 5816 -> 4569[label="",style="solid", color="blue", weight=3]; 5817[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4390 -> 5817[label="",style="solid", color="blue", weight=9]; 5817 -> 4570[label="",style="solid", color="blue", weight=3]; 4391 -> 4112[label="",style="dashed", color="red", weight=0]; 4391[label="vyy1890 < vyy1900 || vyy1890 == vyy1900 && (vyy1891 < vyy1901 || vyy1891 == vyy1901 && vyy1892 <= vyy1902)",fontsize=16,color="magenta"];4391 -> 4571[label="",style="dashed", color="magenta", weight=3]; 4391 -> 4572[label="",style="dashed", color="magenta", weight=3]; 4392[label="vyy190",fontsize=16,color="green",shape="box"];4393[label="vyy189",fontsize=16,color="green",shape="box"];4394[label="vyy190",fontsize=16,color="green",shape="box"];4395[label="vyy189",fontsize=16,color="green",shape="box"];4396[label="vyy190",fontsize=16,color="green",shape="box"];4397[label="vyy189",fontsize=16,color="green",shape="box"];4398[label="True",fontsize=16,color="green",shape="box"];4399[label="True",fontsize=16,color="green",shape="box"];4400[label="True",fontsize=16,color="green",shape="box"];4401[label="False",fontsize=16,color="green",shape="box"];4402[label="True",fontsize=16,color="green",shape="box"];4403[label="True",fontsize=16,color="green",shape="box"];4404[label="False",fontsize=16,color="green",shape="box"];4405[label="False",fontsize=16,color="green",shape="box"];4406[label="True",fontsize=16,color="green",shape="box"];4407[label="True",fontsize=16,color="green",shape="box"];4408[label="True",fontsize=16,color="green",shape="box"];4409[label="False",fontsize=16,color="green",shape="box"];4410[label="vyy1890 <= vyy1900",fontsize=16,color="blue",shape="box"];5818[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5818[label="",style="solid", color="blue", weight=9]; 5818 -> 4573[label="",style="solid", color="blue", weight=3]; 5819[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5819[label="",style="solid", color="blue", weight=9]; 5819 -> 4574[label="",style="solid", color="blue", weight=3]; 5820[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5820[label="",style="solid", color="blue", weight=9]; 5820 -> 4575[label="",style="solid", color="blue", weight=3]; 5821[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5821[label="",style="solid", color="blue", weight=9]; 5821 -> 4576[label="",style="solid", color="blue", weight=3]; 5822[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5822[label="",style="solid", color="blue", weight=9]; 5822 -> 4577[label="",style="solid", color="blue", weight=3]; 5823[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5823[label="",style="solid", color="blue", weight=9]; 5823 -> 4578[label="",style="solid", color="blue", weight=3]; 5824[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5824[label="",style="solid", color="blue", weight=9]; 5824 -> 4579[label="",style="solid", color="blue", weight=3]; 5825[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5825[label="",style="solid", color="blue", weight=9]; 5825 -> 4580[label="",style="solid", color="blue", weight=3]; 5826[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5826[label="",style="solid", color="blue", weight=9]; 5826 -> 4581[label="",style="solid", color="blue", weight=3]; 5827[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5827[label="",style="solid", color="blue", weight=9]; 5827 -> 4582[label="",style="solid", color="blue", weight=3]; 5828[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5828[label="",style="solid", color="blue", weight=9]; 5828 -> 4583[label="",style="solid", color="blue", weight=3]; 5829[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5829[label="",style="solid", color="blue", weight=9]; 5829 -> 4584[label="",style="solid", color="blue", weight=3]; 5830[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5830[label="",style="solid", color="blue", weight=9]; 5830 -> 4585[label="",style="solid", color="blue", weight=3]; 5831[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4410 -> 5831[label="",style="solid", color="blue", weight=9]; 5831 -> 4586[label="",style="solid", color="blue", weight=3]; 4411[label="vyy190",fontsize=16,color="green",shape="box"];4412[label="vyy189",fontsize=16,color="green",shape="box"];4413[label="vyy208",fontsize=16,color="green",shape="box"];4414[label="vyy211",fontsize=16,color="green",shape="box"];4415[label="vyy208",fontsize=16,color="green",shape="box"];4416[label="vyy211",fontsize=16,color="green",shape="box"];4417[label="vyy208",fontsize=16,color="green",shape="box"];4418[label="vyy211",fontsize=16,color="green",shape="box"];4419[label="vyy208",fontsize=16,color="green",shape="box"];4420[label="vyy211",fontsize=16,color="green",shape="box"];4421[label="vyy208",fontsize=16,color="green",shape="box"];4422[label="vyy211",fontsize=16,color="green",shape="box"];4423[label="vyy208",fontsize=16,color="green",shape="box"];4424[label="vyy211",fontsize=16,color="green",shape="box"];4425[label="vyy208",fontsize=16,color="green",shape="box"];4426[label="vyy211",fontsize=16,color="green",shape="box"];4427[label="vyy208",fontsize=16,color="green",shape="box"];4428[label="vyy211",fontsize=16,color="green",shape="box"];4429[label="vyy208",fontsize=16,color="green",shape="box"];4430[label="vyy211",fontsize=16,color="green",shape="box"];4431[label="vyy208",fontsize=16,color="green",shape="box"];4432[label="vyy211",fontsize=16,color="green",shape="box"];4433[label="vyy208",fontsize=16,color="green",shape="box"];4434[label="vyy211",fontsize=16,color="green",shape="box"];4435[label="vyy208",fontsize=16,color="green",shape="box"];4436[label="vyy211",fontsize=16,color="green",shape="box"];4437[label="vyy208",fontsize=16,color="green",shape="box"];4438[label="vyy211",fontsize=16,color="green",shape="box"];4439[label="vyy208",fontsize=16,color="green",shape="box"];4440[label="vyy211",fontsize=16,color="green",shape="box"];4441 -> 3495[label="",style="dashed", color="red", weight=0]; 4441[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4441 -> 4587[label="",style="dashed", color="magenta", weight=3]; 4441 -> 4588[label="",style="dashed", color="magenta", weight=3]; 4442 -> 3496[label="",style="dashed", color="red", weight=0]; 4442[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4442 -> 4589[label="",style="dashed", color="magenta", weight=3]; 4442 -> 4590[label="",style="dashed", color="magenta", weight=3]; 4443 -> 3497[label="",style="dashed", color="red", weight=0]; 4443[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4443 -> 4591[label="",style="dashed", color="magenta", weight=3]; 4443 -> 4592[label="",style="dashed", color="magenta", weight=3]; 4444 -> 3498[label="",style="dashed", color="red", weight=0]; 4444[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4444 -> 4593[label="",style="dashed", color="magenta", weight=3]; 4444 -> 4594[label="",style="dashed", color="magenta", weight=3]; 4445 -> 3499[label="",style="dashed", color="red", weight=0]; 4445[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4445 -> 4595[label="",style="dashed", color="magenta", weight=3]; 4445 -> 4596[label="",style="dashed", color="magenta", weight=3]; 4446 -> 3500[label="",style="dashed", color="red", weight=0]; 4446[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4446 -> 4597[label="",style="dashed", color="magenta", weight=3]; 4446 -> 4598[label="",style="dashed", color="magenta", weight=3]; 4447 -> 3501[label="",style="dashed", color="red", weight=0]; 4447[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4447 -> 4599[label="",style="dashed", color="magenta", weight=3]; 4447 -> 4600[label="",style="dashed", color="magenta", weight=3]; 4448 -> 3502[label="",style="dashed", color="red", weight=0]; 4448[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4448 -> 4601[label="",style="dashed", color="magenta", weight=3]; 4448 -> 4602[label="",style="dashed", color="magenta", weight=3]; 4449 -> 3503[label="",style="dashed", color="red", weight=0]; 4449[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4449 -> 4603[label="",style="dashed", color="magenta", weight=3]; 4449 -> 4604[label="",style="dashed", color="magenta", weight=3]; 4450 -> 3504[label="",style="dashed", color="red", weight=0]; 4450[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4450 -> 4605[label="",style="dashed", color="magenta", weight=3]; 4450 -> 4606[label="",style="dashed", color="magenta", weight=3]; 4451 -> 3505[label="",style="dashed", color="red", weight=0]; 4451[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4451 -> 4607[label="",style="dashed", color="magenta", weight=3]; 4451 -> 4608[label="",style="dashed", color="magenta", weight=3]; 4452 -> 3506[label="",style="dashed", color="red", weight=0]; 4452[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4452 -> 4609[label="",style="dashed", color="magenta", weight=3]; 4452 -> 4610[label="",style="dashed", color="magenta", weight=3]; 4453 -> 3507[label="",style="dashed", color="red", weight=0]; 4453[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4453 -> 4611[label="",style="dashed", color="magenta", weight=3]; 4453 -> 4612[label="",style="dashed", color="magenta", weight=3]; 4454 -> 3508[label="",style="dashed", color="red", weight=0]; 4454[label="vyy209 <= vyy212",fontsize=16,color="magenta"];4454 -> 4613[label="",style="dashed", color="magenta", weight=3]; 4454 -> 4614[label="",style="dashed", color="magenta", weight=3]; 4455 -> 2718[label="",style="dashed", color="red", weight=0]; 4455[label="vyy208 == vyy211",fontsize=16,color="magenta"];4455 -> 4615[label="",style="dashed", color="magenta", weight=3]; 4455 -> 4616[label="",style="dashed", color="magenta", weight=3]; 4456 -> 2721[label="",style="dashed", color="red", weight=0]; 4456[label="vyy208 == vyy211",fontsize=16,color="magenta"];4456 -> 4617[label="",style="dashed", color="magenta", weight=3]; 4456 -> 4618[label="",style="dashed", color="magenta", weight=3]; 4457 -> 2713[label="",style="dashed", color="red", weight=0]; 4457[label="vyy208 == vyy211",fontsize=16,color="magenta"];4457 -> 4619[label="",style="dashed", color="magenta", weight=3]; 4457 -> 4620[label="",style="dashed", color="magenta", weight=3]; 4458 -> 2711[label="",style="dashed", color="red", weight=0]; 4458[label="vyy208 == vyy211",fontsize=16,color="magenta"];4458 -> 4621[label="",style="dashed", color="magenta", weight=3]; 4458 -> 4622[label="",style="dashed", color="magenta", weight=3]; 4459 -> 2716[label="",style="dashed", color="red", weight=0]; 4459[label="vyy208 == vyy211",fontsize=16,color="magenta"];4459 -> 4623[label="",style="dashed", color="magenta", weight=3]; 4459 -> 4624[label="",style="dashed", color="magenta", weight=3]; 4460 -> 2719[label="",style="dashed", color="red", weight=0]; 4460[label="vyy208 == vyy211",fontsize=16,color="magenta"];4460 -> 4625[label="",style="dashed", color="magenta", weight=3]; 4460 -> 4626[label="",style="dashed", color="magenta", weight=3]; 4461 -> 2709[label="",style="dashed", color="red", weight=0]; 4461[label="vyy208 == vyy211",fontsize=16,color="magenta"];4461 -> 4627[label="",style="dashed", color="magenta", weight=3]; 4461 -> 4628[label="",style="dashed", color="magenta", weight=3]; 4462 -> 2717[label="",style="dashed", color="red", weight=0]; 4462[label="vyy208 == vyy211",fontsize=16,color="magenta"];4462 -> 4629[label="",style="dashed", color="magenta", weight=3]; 4462 -> 4630[label="",style="dashed", color="magenta", weight=3]; 4463 -> 2708[label="",style="dashed", color="red", weight=0]; 4463[label="vyy208 == vyy211",fontsize=16,color="magenta"];4463 -> 4631[label="",style="dashed", color="magenta", weight=3]; 4463 -> 4632[label="",style="dashed", color="magenta", weight=3]; 4464 -> 2710[label="",style="dashed", color="red", weight=0]; 4464[label="vyy208 == vyy211",fontsize=16,color="magenta"];4464 -> 4633[label="",style="dashed", color="magenta", weight=3]; 4464 -> 4634[label="",style="dashed", color="magenta", weight=3]; 4465 -> 2714[label="",style="dashed", color="red", weight=0]; 4465[label="vyy208 == vyy211",fontsize=16,color="magenta"];4465 -> 4635[label="",style="dashed", color="magenta", weight=3]; 4465 -> 4636[label="",style="dashed", color="magenta", weight=3]; 4466 -> 2715[label="",style="dashed", color="red", weight=0]; 4466[label="vyy208 == vyy211",fontsize=16,color="magenta"];4466 -> 4637[label="",style="dashed", color="magenta", weight=3]; 4466 -> 4638[label="",style="dashed", color="magenta", weight=3]; 4467 -> 2712[label="",style="dashed", color="red", weight=0]; 4467[label="vyy208 == vyy211",fontsize=16,color="magenta"];4467 -> 4639[label="",style="dashed", color="magenta", weight=3]; 4467 -> 4640[label="",style="dashed", color="magenta", weight=3]; 4468 -> 2720[label="",style="dashed", color="red", weight=0]; 4468[label="vyy208 == vyy211",fontsize=16,color="magenta"];4468 -> 4641[label="",style="dashed", color="magenta", weight=3]; 4468 -> 4642[label="",style="dashed", color="magenta", weight=3]; 4469[label="vyy311",fontsize=16,color="green",shape="box"];4470[label="True",fontsize=16,color="green",shape="box"];4471[label="compare0 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) otherwise",fontsize=16,color="black",shape="box"];4471 -> 4643[label="",style="solid", color="black", weight=3]; 4472[label="LT",fontsize=16,color="green",shape="box"];4474 -> 3405[label="",style="dashed", color="red", weight=0]; 4474[label="primMulNat vyy5000 (Succ vyy60100)",fontsize=16,color="magenta"];4474 -> 4644[label="",style="dashed", color="magenta", weight=3]; 4474 -> 4645[label="",style="dashed", color="magenta", weight=3]; 4473[label="primPlusNat vyy312 (Succ vyy60100)",fontsize=16,color="burlywood",shape="triangle"];5832[label="vyy312/Succ vyy3120",fontsize=10,color="white",style="solid",shape="box"];4473 -> 5832[label="",style="solid", color="burlywood", weight=9]; 5832 -> 4646[label="",style="solid", color="burlywood", weight=3]; 5833[label="vyy312/Zero",fontsize=10,color="white",style="solid",shape="box"];4473 -> 5833[label="",style="solid", color="burlywood", weight=9]; 5833 -> 4647[label="",style="solid", color="burlywood", weight=3]; 4475[label="compare0 (vyy282,vyy283) (vyy284,vyy285) True",fontsize=16,color="black",shape="box"];4475 -> 4648[label="",style="solid", color="black", weight=3]; 4476[label="vyy60000",fontsize=16,color="green",shape="box"];4477[label="vyy5000",fontsize=16,color="green",shape="box"];4478[label="vyy60000",fontsize=16,color="green",shape="box"];4479[label="vyy5000",fontsize=16,color="green",shape="box"];4480 -> 3683[label="",style="dashed", color="red", weight=0]; 4480[label="primEqNat vyy60000 vyy5000",fontsize=16,color="magenta"];4480 -> 4649[label="",style="dashed", color="magenta", weight=3]; 4480 -> 4650[label="",style="dashed", color="magenta", weight=3]; 4481[label="False",fontsize=16,color="green",shape="box"];4482[label="False",fontsize=16,color="green",shape="box"];4483[label="True",fontsize=16,color="green",shape="box"];4484[label="vyy502",fontsize=16,color="green",shape="box"];4485[label="vyy6002",fontsize=16,color="green",shape="box"];4486[label="vyy502",fontsize=16,color="green",shape="box"];4487[label="vyy6002",fontsize=16,color="green",shape="box"];4488[label="vyy502",fontsize=16,color="green",shape="box"];4489[label="vyy6002",fontsize=16,color="green",shape="box"];4490[label="vyy502",fontsize=16,color="green",shape="box"];4491[label="vyy6002",fontsize=16,color="green",shape="box"];4492[label="vyy502",fontsize=16,color="green",shape="box"];4493[label="vyy6002",fontsize=16,color="green",shape="box"];4494[label="vyy502",fontsize=16,color="green",shape="box"];4495[label="vyy6002",fontsize=16,color="green",shape="box"];4496[label="vyy502",fontsize=16,color="green",shape="box"];4497[label="vyy6002",fontsize=16,color="green",shape="box"];4498[label="vyy502",fontsize=16,color="green",shape="box"];4499[label="vyy6002",fontsize=16,color="green",shape="box"];4500[label="vyy502",fontsize=16,color="green",shape="box"];4501[label="vyy6002",fontsize=16,color="green",shape="box"];4502[label="vyy502",fontsize=16,color="green",shape="box"];4503[label="vyy6002",fontsize=16,color="green",shape="box"];4504[label="vyy502",fontsize=16,color="green",shape="box"];4505[label="vyy6002",fontsize=16,color="green",shape="box"];4506[label="vyy502",fontsize=16,color="green",shape="box"];4507[label="vyy6002",fontsize=16,color="green",shape="box"];4508[label="vyy502",fontsize=16,color="green",shape="box"];4509[label="vyy6002",fontsize=16,color="green",shape="box"];4510[label="vyy502",fontsize=16,color="green",shape="box"];4511[label="vyy6002",fontsize=16,color="green",shape="box"];4512[label="vyy501",fontsize=16,color="green",shape="box"];4513[label="vyy6001",fontsize=16,color="green",shape="box"];4514[label="vyy501",fontsize=16,color="green",shape="box"];4515[label="vyy6001",fontsize=16,color="green",shape="box"];4516[label="vyy501",fontsize=16,color="green",shape="box"];4517[label="vyy6001",fontsize=16,color="green",shape="box"];4518[label="vyy501",fontsize=16,color="green",shape="box"];4519[label="vyy6001",fontsize=16,color="green",shape="box"];4520[label="vyy501",fontsize=16,color="green",shape="box"];4521[label="vyy6001",fontsize=16,color="green",shape="box"];4522[label="vyy501",fontsize=16,color="green",shape="box"];4523[label="vyy6001",fontsize=16,color="green",shape="box"];4524[label="vyy501",fontsize=16,color="green",shape="box"];4525[label="vyy6001",fontsize=16,color="green",shape="box"];4526[label="vyy501",fontsize=16,color="green",shape="box"];4527[label="vyy6001",fontsize=16,color="green",shape="box"];4528[label="vyy501",fontsize=16,color="green",shape="box"];4529[label="vyy6001",fontsize=16,color="green",shape="box"];4530[label="vyy501",fontsize=16,color="green",shape="box"];4531[label="vyy6001",fontsize=16,color="green",shape="box"];4532[label="vyy501",fontsize=16,color="green",shape="box"];4533[label="vyy6001",fontsize=16,color="green",shape="box"];4534[label="vyy501",fontsize=16,color="green",shape="box"];4535[label="vyy6001",fontsize=16,color="green",shape="box"];4536[label="vyy501",fontsize=16,color="green",shape="box"];4537[label="vyy6001",fontsize=16,color="green",shape="box"];4538[label="vyy501",fontsize=16,color="green",shape="box"];4539[label="vyy6001",fontsize=16,color="green",shape="box"];4540 -> 2715[label="",style="dashed", color="red", weight=0]; 4540[label="vyy306 == GT",fontsize=16,color="magenta"];4540 -> 4651[label="",style="dashed", color="magenta", weight=3]; 4540 -> 4652[label="",style="dashed", color="magenta", weight=3]; 4541[label="vyy1890 < vyy1900",fontsize=16,color="blue",shape="box"];5834[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5834[label="",style="solid", color="blue", weight=9]; 5834 -> 4653[label="",style="solid", color="blue", weight=3]; 5835[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5835[label="",style="solid", color="blue", weight=9]; 5835 -> 4654[label="",style="solid", color="blue", weight=3]; 5836[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5836[label="",style="solid", color="blue", weight=9]; 5836 -> 4655[label="",style="solid", color="blue", weight=3]; 5837[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5837[label="",style="solid", color="blue", weight=9]; 5837 -> 4656[label="",style="solid", color="blue", weight=3]; 5838[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5838[label="",style="solid", color="blue", weight=9]; 5838 -> 4657[label="",style="solid", color="blue", weight=3]; 5839[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5839[label="",style="solid", color="blue", weight=9]; 5839 -> 4658[label="",style="solid", color="blue", weight=3]; 5840[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5840[label="",style="solid", color="blue", weight=9]; 5840 -> 4659[label="",style="solid", color="blue", weight=3]; 5841[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5841[label="",style="solid", color="blue", weight=9]; 5841 -> 4660[label="",style="solid", color="blue", weight=3]; 5842[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5842[label="",style="solid", color="blue", weight=9]; 5842 -> 4661[label="",style="solid", color="blue", weight=3]; 5843[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5843[label="",style="solid", color="blue", weight=9]; 5843 -> 4662[label="",style="solid", color="blue", weight=3]; 5844[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5844[label="",style="solid", color="blue", weight=9]; 5844 -> 4663[label="",style="solid", color="blue", weight=3]; 5845[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5845[label="",style="solid", color="blue", weight=9]; 5845 -> 4664[label="",style="solid", color="blue", weight=3]; 5846[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5846[label="",style="solid", color="blue", weight=9]; 5846 -> 4665[label="",style="solid", color="blue", weight=3]; 5847[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4541 -> 5847[label="",style="solid", color="blue", weight=9]; 5847 -> 4666[label="",style="solid", color="blue", weight=3]; 4542 -> 3166[label="",style="dashed", color="red", weight=0]; 4542[label="vyy1890 == vyy1900 && vyy1891 <= vyy1901",fontsize=16,color="magenta"];4542 -> 4667[label="",style="dashed", color="magenta", weight=3]; 4542 -> 4668[label="",style="dashed", color="magenta", weight=3]; 4543 -> 3495[label="",style="dashed", color="red", weight=0]; 4543[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4543 -> 4669[label="",style="dashed", color="magenta", weight=3]; 4543 -> 4670[label="",style="dashed", color="magenta", weight=3]; 4544 -> 3496[label="",style="dashed", color="red", weight=0]; 4544[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4544 -> 4671[label="",style="dashed", color="magenta", weight=3]; 4544 -> 4672[label="",style="dashed", color="magenta", weight=3]; 4545 -> 3497[label="",style="dashed", color="red", weight=0]; 4545[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4545 -> 4673[label="",style="dashed", color="magenta", weight=3]; 4545 -> 4674[label="",style="dashed", color="magenta", weight=3]; 4546 -> 3498[label="",style="dashed", color="red", weight=0]; 4546[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4546 -> 4675[label="",style="dashed", color="magenta", weight=3]; 4546 -> 4676[label="",style="dashed", color="magenta", weight=3]; 4547 -> 3499[label="",style="dashed", color="red", weight=0]; 4547[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4547 -> 4677[label="",style="dashed", color="magenta", weight=3]; 4547 -> 4678[label="",style="dashed", color="magenta", weight=3]; 4548 -> 3500[label="",style="dashed", color="red", weight=0]; 4548[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4548 -> 4679[label="",style="dashed", color="magenta", weight=3]; 4548 -> 4680[label="",style="dashed", color="magenta", weight=3]; 4549 -> 3501[label="",style="dashed", color="red", weight=0]; 4549[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4549 -> 4681[label="",style="dashed", color="magenta", weight=3]; 4549 -> 4682[label="",style="dashed", color="magenta", weight=3]; 4550 -> 3502[label="",style="dashed", color="red", weight=0]; 4550[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4550 -> 4683[label="",style="dashed", color="magenta", weight=3]; 4550 -> 4684[label="",style="dashed", color="magenta", weight=3]; 4551 -> 3503[label="",style="dashed", color="red", weight=0]; 4551[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4551 -> 4685[label="",style="dashed", color="magenta", weight=3]; 4551 -> 4686[label="",style="dashed", color="magenta", weight=3]; 4552 -> 3504[label="",style="dashed", color="red", weight=0]; 4552[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4552 -> 4687[label="",style="dashed", color="magenta", weight=3]; 4552 -> 4688[label="",style="dashed", color="magenta", weight=3]; 4553 -> 3505[label="",style="dashed", color="red", weight=0]; 4553[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4553 -> 4689[label="",style="dashed", color="magenta", weight=3]; 4553 -> 4690[label="",style="dashed", color="magenta", weight=3]; 4554 -> 3506[label="",style="dashed", color="red", weight=0]; 4554[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4554 -> 4691[label="",style="dashed", color="magenta", weight=3]; 4554 -> 4692[label="",style="dashed", color="magenta", weight=3]; 4555 -> 3507[label="",style="dashed", color="red", weight=0]; 4555[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4555 -> 4693[label="",style="dashed", color="magenta", weight=3]; 4555 -> 4694[label="",style="dashed", color="magenta", weight=3]; 4556 -> 3508[label="",style="dashed", color="red", weight=0]; 4556[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4556 -> 4695[label="",style="dashed", color="magenta", weight=3]; 4556 -> 4696[label="",style="dashed", color="magenta", weight=3]; 4557 -> 3495[label="",style="dashed", color="red", weight=0]; 4557[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4557 -> 4697[label="",style="dashed", color="magenta", weight=3]; 4557 -> 4698[label="",style="dashed", color="magenta", weight=3]; 4558 -> 3496[label="",style="dashed", color="red", weight=0]; 4558[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4558 -> 4699[label="",style="dashed", color="magenta", weight=3]; 4558 -> 4700[label="",style="dashed", color="magenta", weight=3]; 4559 -> 3497[label="",style="dashed", color="red", weight=0]; 4559[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4559 -> 4701[label="",style="dashed", color="magenta", weight=3]; 4559 -> 4702[label="",style="dashed", color="magenta", weight=3]; 4560 -> 3498[label="",style="dashed", color="red", weight=0]; 4560[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4560 -> 4703[label="",style="dashed", color="magenta", weight=3]; 4560 -> 4704[label="",style="dashed", color="magenta", weight=3]; 4561 -> 3499[label="",style="dashed", color="red", weight=0]; 4561[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4561 -> 4705[label="",style="dashed", color="magenta", weight=3]; 4561 -> 4706[label="",style="dashed", color="magenta", weight=3]; 4562 -> 3500[label="",style="dashed", color="red", weight=0]; 4562[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4562 -> 4707[label="",style="dashed", color="magenta", weight=3]; 4562 -> 4708[label="",style="dashed", color="magenta", weight=3]; 4563 -> 3501[label="",style="dashed", color="red", weight=0]; 4563[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4563 -> 4709[label="",style="dashed", color="magenta", weight=3]; 4563 -> 4710[label="",style="dashed", color="magenta", weight=3]; 4564 -> 3502[label="",style="dashed", color="red", weight=0]; 4564[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4564 -> 4711[label="",style="dashed", color="magenta", weight=3]; 4564 -> 4712[label="",style="dashed", color="magenta", weight=3]; 4565 -> 3503[label="",style="dashed", color="red", weight=0]; 4565[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4565 -> 4713[label="",style="dashed", color="magenta", weight=3]; 4565 -> 4714[label="",style="dashed", color="magenta", weight=3]; 4566 -> 3504[label="",style="dashed", color="red", weight=0]; 4566[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4566 -> 4715[label="",style="dashed", color="magenta", weight=3]; 4566 -> 4716[label="",style="dashed", color="magenta", weight=3]; 4567 -> 3505[label="",style="dashed", color="red", weight=0]; 4567[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4567 -> 4717[label="",style="dashed", color="magenta", weight=3]; 4567 -> 4718[label="",style="dashed", color="magenta", weight=3]; 4568 -> 3506[label="",style="dashed", color="red", weight=0]; 4568[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4568 -> 4719[label="",style="dashed", color="magenta", weight=3]; 4568 -> 4720[label="",style="dashed", color="magenta", weight=3]; 4569 -> 3507[label="",style="dashed", color="red", weight=0]; 4569[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4569 -> 4721[label="",style="dashed", color="magenta", weight=3]; 4569 -> 4722[label="",style="dashed", color="magenta", weight=3]; 4570 -> 3508[label="",style="dashed", color="red", weight=0]; 4570[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4570 -> 4723[label="",style="dashed", color="magenta", weight=3]; 4570 -> 4724[label="",style="dashed", color="magenta", weight=3]; 4571[label="vyy1890 < vyy1900",fontsize=16,color="blue",shape="box"];5848[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5848[label="",style="solid", color="blue", weight=9]; 5848 -> 4725[label="",style="solid", color="blue", weight=3]; 5849[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5849[label="",style="solid", color="blue", weight=9]; 5849 -> 4726[label="",style="solid", color="blue", weight=3]; 5850[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5850[label="",style="solid", color="blue", weight=9]; 5850 -> 4727[label="",style="solid", color="blue", weight=3]; 5851[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5851[label="",style="solid", color="blue", weight=9]; 5851 -> 4728[label="",style="solid", color="blue", weight=3]; 5852[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5852[label="",style="solid", color="blue", weight=9]; 5852 -> 4729[label="",style="solid", color="blue", weight=3]; 5853[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5853[label="",style="solid", color="blue", weight=9]; 5853 -> 4730[label="",style="solid", color="blue", weight=3]; 5854[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5854[label="",style="solid", color="blue", weight=9]; 5854 -> 4731[label="",style="solid", color="blue", weight=3]; 5855[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5855[label="",style="solid", color="blue", weight=9]; 5855 -> 4732[label="",style="solid", color="blue", weight=3]; 5856[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5856[label="",style="solid", color="blue", weight=9]; 5856 -> 4733[label="",style="solid", color="blue", weight=3]; 5857[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5857[label="",style="solid", color="blue", weight=9]; 5857 -> 4734[label="",style="solid", color="blue", weight=3]; 5858[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5858[label="",style="solid", color="blue", weight=9]; 5858 -> 4735[label="",style="solid", color="blue", weight=3]; 5859[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5859[label="",style="solid", color="blue", weight=9]; 5859 -> 4736[label="",style="solid", color="blue", weight=3]; 5860[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5860[label="",style="solid", color="blue", weight=9]; 5860 -> 4737[label="",style="solid", color="blue", weight=3]; 5861[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4571 -> 5861[label="",style="solid", color="blue", weight=9]; 5861 -> 4738[label="",style="solid", color="blue", weight=3]; 4572 -> 3166[label="",style="dashed", color="red", weight=0]; 4572[label="vyy1890 == vyy1900 && (vyy1891 < vyy1901 || vyy1891 == vyy1901 && vyy1892 <= vyy1902)",fontsize=16,color="magenta"];4572 -> 4739[label="",style="dashed", color="magenta", weight=3]; 4572 -> 4740[label="",style="dashed", color="magenta", weight=3]; 4573 -> 3495[label="",style="dashed", color="red", weight=0]; 4573[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4573 -> 4741[label="",style="dashed", color="magenta", weight=3]; 4573 -> 4742[label="",style="dashed", color="magenta", weight=3]; 4574 -> 3496[label="",style="dashed", color="red", weight=0]; 4574[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4574 -> 4743[label="",style="dashed", color="magenta", weight=3]; 4574 -> 4744[label="",style="dashed", color="magenta", weight=3]; 4575 -> 3497[label="",style="dashed", color="red", weight=0]; 4575[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4575 -> 4745[label="",style="dashed", color="magenta", weight=3]; 4575 -> 4746[label="",style="dashed", color="magenta", weight=3]; 4576 -> 3498[label="",style="dashed", color="red", weight=0]; 4576[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4576 -> 4747[label="",style="dashed", color="magenta", weight=3]; 4576 -> 4748[label="",style="dashed", color="magenta", weight=3]; 4577 -> 3499[label="",style="dashed", color="red", weight=0]; 4577[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4577 -> 4749[label="",style="dashed", color="magenta", weight=3]; 4577 -> 4750[label="",style="dashed", color="magenta", weight=3]; 4578 -> 3500[label="",style="dashed", color="red", weight=0]; 4578[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4578 -> 4751[label="",style="dashed", color="magenta", weight=3]; 4578 -> 4752[label="",style="dashed", color="magenta", weight=3]; 4579 -> 3501[label="",style="dashed", color="red", weight=0]; 4579[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4579 -> 4753[label="",style="dashed", color="magenta", weight=3]; 4579 -> 4754[label="",style="dashed", color="magenta", weight=3]; 4580 -> 3502[label="",style="dashed", color="red", weight=0]; 4580[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4580 -> 4755[label="",style="dashed", color="magenta", weight=3]; 4580 -> 4756[label="",style="dashed", color="magenta", weight=3]; 4581 -> 3503[label="",style="dashed", color="red", weight=0]; 4581[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4581 -> 4757[label="",style="dashed", color="magenta", weight=3]; 4581 -> 4758[label="",style="dashed", color="magenta", weight=3]; 4582 -> 3504[label="",style="dashed", color="red", weight=0]; 4582[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4582 -> 4759[label="",style="dashed", color="magenta", weight=3]; 4582 -> 4760[label="",style="dashed", color="magenta", weight=3]; 4583 -> 3505[label="",style="dashed", color="red", weight=0]; 4583[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4583 -> 4761[label="",style="dashed", color="magenta", weight=3]; 4583 -> 4762[label="",style="dashed", color="magenta", weight=3]; 4584 -> 3506[label="",style="dashed", color="red", weight=0]; 4584[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4584 -> 4763[label="",style="dashed", color="magenta", weight=3]; 4584 -> 4764[label="",style="dashed", color="magenta", weight=3]; 4585 -> 3507[label="",style="dashed", color="red", weight=0]; 4585[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4585 -> 4765[label="",style="dashed", color="magenta", weight=3]; 4585 -> 4766[label="",style="dashed", color="magenta", weight=3]; 4586 -> 3508[label="",style="dashed", color="red", weight=0]; 4586[label="vyy1890 <= vyy1900",fontsize=16,color="magenta"];4586 -> 4767[label="",style="dashed", color="magenta", weight=3]; 4586 -> 4768[label="",style="dashed", color="magenta", weight=3]; 4587[label="vyy212",fontsize=16,color="green",shape="box"];4588[label="vyy209",fontsize=16,color="green",shape="box"];4589[label="vyy212",fontsize=16,color="green",shape="box"];4590[label="vyy209",fontsize=16,color="green",shape="box"];4591[label="vyy212",fontsize=16,color="green",shape="box"];4592[label="vyy209",fontsize=16,color="green",shape="box"];4593[label="vyy212",fontsize=16,color="green",shape="box"];4594[label="vyy209",fontsize=16,color="green",shape="box"];4595[label="vyy212",fontsize=16,color="green",shape="box"];4596[label="vyy209",fontsize=16,color="green",shape="box"];4597[label="vyy212",fontsize=16,color="green",shape="box"];4598[label="vyy209",fontsize=16,color="green",shape="box"];4599[label="vyy212",fontsize=16,color="green",shape="box"];4600[label="vyy209",fontsize=16,color="green",shape="box"];4601[label="vyy212",fontsize=16,color="green",shape="box"];4602[label="vyy209",fontsize=16,color="green",shape="box"];4603[label="vyy212",fontsize=16,color="green",shape="box"];4604[label="vyy209",fontsize=16,color="green",shape="box"];4605[label="vyy212",fontsize=16,color="green",shape="box"];4606[label="vyy209",fontsize=16,color="green",shape="box"];4607[label="vyy212",fontsize=16,color="green",shape="box"];4608[label="vyy209",fontsize=16,color="green",shape="box"];4609[label="vyy212",fontsize=16,color="green",shape="box"];4610[label="vyy209",fontsize=16,color="green",shape="box"];4611[label="vyy212",fontsize=16,color="green",shape="box"];4612[label="vyy209",fontsize=16,color="green",shape="box"];4613[label="vyy212",fontsize=16,color="green",shape="box"];4614[label="vyy209",fontsize=16,color="green",shape="box"];4615[label="vyy211",fontsize=16,color="green",shape="box"];4616[label="vyy208",fontsize=16,color="green",shape="box"];4617[label="vyy211",fontsize=16,color="green",shape="box"];4618[label="vyy208",fontsize=16,color="green",shape="box"];4619[label="vyy211",fontsize=16,color="green",shape="box"];4620[label="vyy208",fontsize=16,color="green",shape="box"];4621[label="vyy211",fontsize=16,color="green",shape="box"];4622[label="vyy208",fontsize=16,color="green",shape="box"];4623[label="vyy211",fontsize=16,color="green",shape="box"];4624[label="vyy208",fontsize=16,color="green",shape="box"];4625[label="vyy211",fontsize=16,color="green",shape="box"];4626[label="vyy208",fontsize=16,color="green",shape="box"];4627[label="vyy211",fontsize=16,color="green",shape="box"];4628[label="vyy208",fontsize=16,color="green",shape="box"];4629[label="vyy211",fontsize=16,color="green",shape="box"];4630[label="vyy208",fontsize=16,color="green",shape="box"];4631[label="vyy211",fontsize=16,color="green",shape="box"];4632[label="vyy208",fontsize=16,color="green",shape="box"];4633[label="vyy211",fontsize=16,color="green",shape="box"];4634[label="vyy208",fontsize=16,color="green",shape="box"];4635[label="vyy211",fontsize=16,color="green",shape="box"];4636[label="vyy208",fontsize=16,color="green",shape="box"];4637[label="vyy211",fontsize=16,color="green",shape="box"];4638[label="vyy208",fontsize=16,color="green",shape="box"];4639[label="vyy211",fontsize=16,color="green",shape="box"];4640[label="vyy208",fontsize=16,color="green",shape="box"];4641[label="vyy211",fontsize=16,color="green",shape="box"];4642[label="vyy208",fontsize=16,color="green",shape="box"];4643[label="compare0 (vyy297,vyy298,vyy299) (vyy300,vyy301,vyy302) True",fontsize=16,color="black",shape="box"];4643 -> 4769[label="",style="solid", color="black", weight=3]; 4644[label="vyy5000",fontsize=16,color="green",shape="box"];4645[label="Succ vyy60100",fontsize=16,color="green",shape="box"];4646[label="primPlusNat (Succ vyy3120) (Succ vyy60100)",fontsize=16,color="black",shape="box"];4646 -> 4770[label="",style="solid", color="black", weight=3]; 4647[label="primPlusNat Zero (Succ vyy60100)",fontsize=16,color="black",shape="box"];4647 -> 4771[label="",style="solid", color="black", weight=3]; 4648[label="GT",fontsize=16,color="green",shape="box"];4649[label="vyy60000",fontsize=16,color="green",shape="box"];4650[label="vyy5000",fontsize=16,color="green",shape="box"];4651[label="GT",fontsize=16,color="green",shape="box"];4652[label="vyy306",fontsize=16,color="green",shape="box"];4653 -> 3442[label="",style="dashed", color="red", weight=0]; 4653[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4653 -> 4772[label="",style="dashed", color="magenta", weight=3]; 4653 -> 4773[label="",style="dashed", color="magenta", weight=3]; 4654 -> 3443[label="",style="dashed", color="red", weight=0]; 4654[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4654 -> 4774[label="",style="dashed", color="magenta", weight=3]; 4654 -> 4775[label="",style="dashed", color="magenta", weight=3]; 4655 -> 3444[label="",style="dashed", color="red", weight=0]; 4655[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4655 -> 4776[label="",style="dashed", color="magenta", weight=3]; 4655 -> 4777[label="",style="dashed", color="magenta", weight=3]; 4656 -> 3445[label="",style="dashed", color="red", weight=0]; 4656[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4656 -> 4778[label="",style="dashed", color="magenta", weight=3]; 4656 -> 4779[label="",style="dashed", color="magenta", weight=3]; 4657 -> 3446[label="",style="dashed", color="red", weight=0]; 4657[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4657 -> 4780[label="",style="dashed", color="magenta", weight=3]; 4657 -> 4781[label="",style="dashed", color="magenta", weight=3]; 4658 -> 3447[label="",style="dashed", color="red", weight=0]; 4658[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4658 -> 4782[label="",style="dashed", color="magenta", weight=3]; 4658 -> 4783[label="",style="dashed", color="magenta", weight=3]; 4659 -> 3448[label="",style="dashed", color="red", weight=0]; 4659[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4659 -> 4784[label="",style="dashed", color="magenta", weight=3]; 4659 -> 4785[label="",style="dashed", color="magenta", weight=3]; 4660 -> 3449[label="",style="dashed", color="red", weight=0]; 4660[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4660 -> 4786[label="",style="dashed", color="magenta", weight=3]; 4660 -> 4787[label="",style="dashed", color="magenta", weight=3]; 4661 -> 3450[label="",style="dashed", color="red", weight=0]; 4661[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4661 -> 4788[label="",style="dashed", color="magenta", weight=3]; 4661 -> 4789[label="",style="dashed", color="magenta", weight=3]; 4662 -> 3451[label="",style="dashed", color="red", weight=0]; 4662[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4662 -> 4790[label="",style="dashed", color="magenta", weight=3]; 4662 -> 4791[label="",style="dashed", color="magenta", weight=3]; 4663 -> 3452[label="",style="dashed", color="red", weight=0]; 4663[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4663 -> 4792[label="",style="dashed", color="magenta", weight=3]; 4663 -> 4793[label="",style="dashed", color="magenta", weight=3]; 4664 -> 3453[label="",style="dashed", color="red", weight=0]; 4664[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4664 -> 4794[label="",style="dashed", color="magenta", weight=3]; 4664 -> 4795[label="",style="dashed", color="magenta", weight=3]; 4665 -> 3454[label="",style="dashed", color="red", weight=0]; 4665[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4665 -> 4796[label="",style="dashed", color="magenta", weight=3]; 4665 -> 4797[label="",style="dashed", color="magenta", weight=3]; 4666 -> 3455[label="",style="dashed", color="red", weight=0]; 4666[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4666 -> 4798[label="",style="dashed", color="magenta", weight=3]; 4666 -> 4799[label="",style="dashed", color="magenta", weight=3]; 4667[label="vyy1891 <= vyy1901",fontsize=16,color="blue",shape="box"];5862[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5862[label="",style="solid", color="blue", weight=9]; 5862 -> 4800[label="",style="solid", color="blue", weight=3]; 5863[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5863[label="",style="solid", color="blue", weight=9]; 5863 -> 4801[label="",style="solid", color="blue", weight=3]; 5864[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5864[label="",style="solid", color="blue", weight=9]; 5864 -> 4802[label="",style="solid", color="blue", weight=3]; 5865[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5865[label="",style="solid", color="blue", weight=9]; 5865 -> 4803[label="",style="solid", color="blue", weight=3]; 5866[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5866[label="",style="solid", color="blue", weight=9]; 5866 -> 4804[label="",style="solid", color="blue", weight=3]; 5867[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5867[label="",style="solid", color="blue", weight=9]; 5867 -> 4805[label="",style="solid", color="blue", weight=3]; 5868[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5868[label="",style="solid", color="blue", weight=9]; 5868 -> 4806[label="",style="solid", color="blue", weight=3]; 5869[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5869[label="",style="solid", color="blue", weight=9]; 5869 -> 4807[label="",style="solid", color="blue", weight=3]; 5870[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5870[label="",style="solid", color="blue", weight=9]; 5870 -> 4808[label="",style="solid", color="blue", weight=3]; 5871[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5871[label="",style="solid", color="blue", weight=9]; 5871 -> 4809[label="",style="solid", color="blue", weight=3]; 5872[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5872[label="",style="solid", color="blue", weight=9]; 5872 -> 4810[label="",style="solid", color="blue", weight=3]; 5873[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5873[label="",style="solid", color="blue", weight=9]; 5873 -> 4811[label="",style="solid", color="blue", weight=3]; 5874[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5874[label="",style="solid", color="blue", weight=9]; 5874 -> 4812[label="",style="solid", color="blue", weight=3]; 5875[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4667 -> 5875[label="",style="solid", color="blue", weight=9]; 5875 -> 4813[label="",style="solid", color="blue", weight=3]; 4668[label="vyy1890 == vyy1900",fontsize=16,color="blue",shape="box"];5876[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5876[label="",style="solid", color="blue", weight=9]; 5876 -> 4814[label="",style="solid", color="blue", weight=3]; 5877[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5877[label="",style="solid", color="blue", weight=9]; 5877 -> 4815[label="",style="solid", color="blue", weight=3]; 5878[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5878[label="",style="solid", color="blue", weight=9]; 5878 -> 4816[label="",style="solid", color="blue", weight=3]; 5879[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5879[label="",style="solid", color="blue", weight=9]; 5879 -> 4817[label="",style="solid", color="blue", weight=3]; 5880[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5880[label="",style="solid", color="blue", weight=9]; 5880 -> 4818[label="",style="solid", color="blue", weight=3]; 5881[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5881[label="",style="solid", color="blue", weight=9]; 5881 -> 4819[label="",style="solid", color="blue", weight=3]; 5882[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5882[label="",style="solid", color="blue", weight=9]; 5882 -> 4820[label="",style="solid", color="blue", weight=3]; 5883[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5883[label="",style="solid", color="blue", weight=9]; 5883 -> 4821[label="",style="solid", color="blue", weight=3]; 5884[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5884[label="",style="solid", color="blue", weight=9]; 5884 -> 4822[label="",style="solid", color="blue", weight=3]; 5885[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5885[label="",style="solid", color="blue", weight=9]; 5885 -> 4823[label="",style="solid", color="blue", weight=3]; 5886[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5886[label="",style="solid", color="blue", weight=9]; 5886 -> 4824[label="",style="solid", color="blue", weight=3]; 5887[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5887[label="",style="solid", color="blue", weight=9]; 5887 -> 4825[label="",style="solid", color="blue", weight=3]; 5888[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5888[label="",style="solid", color="blue", weight=9]; 5888 -> 4826[label="",style="solid", color="blue", weight=3]; 5889[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4668 -> 5889[label="",style="solid", color="blue", weight=9]; 5889 -> 4827[label="",style="solid", color="blue", weight=3]; 4669[label="vyy1900",fontsize=16,color="green",shape="box"];4670[label="vyy1890",fontsize=16,color="green",shape="box"];4671[label="vyy1900",fontsize=16,color="green",shape="box"];4672[label="vyy1890",fontsize=16,color="green",shape="box"];4673[label="vyy1900",fontsize=16,color="green",shape="box"];4674[label="vyy1890",fontsize=16,color="green",shape="box"];4675[label="vyy1900",fontsize=16,color="green",shape="box"];4676[label="vyy1890",fontsize=16,color="green",shape="box"];4677[label="vyy1900",fontsize=16,color="green",shape="box"];4678[label="vyy1890",fontsize=16,color="green",shape="box"];4679[label="vyy1900",fontsize=16,color="green",shape="box"];4680[label="vyy1890",fontsize=16,color="green",shape="box"];4681[label="vyy1900",fontsize=16,color="green",shape="box"];4682[label="vyy1890",fontsize=16,color="green",shape="box"];4683[label="vyy1900",fontsize=16,color="green",shape="box"];4684[label="vyy1890",fontsize=16,color="green",shape="box"];4685[label="vyy1900",fontsize=16,color="green",shape="box"];4686[label="vyy1890",fontsize=16,color="green",shape="box"];4687[label="vyy1900",fontsize=16,color="green",shape="box"];4688[label="vyy1890",fontsize=16,color="green",shape="box"];4689[label="vyy1900",fontsize=16,color="green",shape="box"];4690[label="vyy1890",fontsize=16,color="green",shape="box"];4691[label="vyy1900",fontsize=16,color="green",shape="box"];4692[label="vyy1890",fontsize=16,color="green",shape="box"];4693[label="vyy1900",fontsize=16,color="green",shape="box"];4694[label="vyy1890",fontsize=16,color="green",shape="box"];4695[label="vyy1900",fontsize=16,color="green",shape="box"];4696[label="vyy1890",fontsize=16,color="green",shape="box"];4697[label="vyy1900",fontsize=16,color="green",shape="box"];4698[label="vyy1890",fontsize=16,color="green",shape="box"];4699[label="vyy1900",fontsize=16,color="green",shape="box"];4700[label="vyy1890",fontsize=16,color="green",shape="box"];4701[label="vyy1900",fontsize=16,color="green",shape="box"];4702[label="vyy1890",fontsize=16,color="green",shape="box"];4703[label="vyy1900",fontsize=16,color="green",shape="box"];4704[label="vyy1890",fontsize=16,color="green",shape="box"];4705[label="vyy1900",fontsize=16,color="green",shape="box"];4706[label="vyy1890",fontsize=16,color="green",shape="box"];4707[label="vyy1900",fontsize=16,color="green",shape="box"];4708[label="vyy1890",fontsize=16,color="green",shape="box"];4709[label="vyy1900",fontsize=16,color="green",shape="box"];4710[label="vyy1890",fontsize=16,color="green",shape="box"];4711[label="vyy1900",fontsize=16,color="green",shape="box"];4712[label="vyy1890",fontsize=16,color="green",shape="box"];4713[label="vyy1900",fontsize=16,color="green",shape="box"];4714[label="vyy1890",fontsize=16,color="green",shape="box"];4715[label="vyy1900",fontsize=16,color="green",shape="box"];4716[label="vyy1890",fontsize=16,color="green",shape="box"];4717[label="vyy1900",fontsize=16,color="green",shape="box"];4718[label="vyy1890",fontsize=16,color="green",shape="box"];4719[label="vyy1900",fontsize=16,color="green",shape="box"];4720[label="vyy1890",fontsize=16,color="green",shape="box"];4721[label="vyy1900",fontsize=16,color="green",shape="box"];4722[label="vyy1890",fontsize=16,color="green",shape="box"];4723[label="vyy1900",fontsize=16,color="green",shape="box"];4724[label="vyy1890",fontsize=16,color="green",shape="box"];4725 -> 3442[label="",style="dashed", color="red", weight=0]; 4725[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4725 -> 4828[label="",style="dashed", color="magenta", weight=3]; 4725 -> 4829[label="",style="dashed", color="magenta", weight=3]; 4726 -> 3443[label="",style="dashed", color="red", weight=0]; 4726[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4726 -> 4830[label="",style="dashed", color="magenta", weight=3]; 4726 -> 4831[label="",style="dashed", color="magenta", weight=3]; 4727 -> 3444[label="",style="dashed", color="red", weight=0]; 4727[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4727 -> 4832[label="",style="dashed", color="magenta", weight=3]; 4727 -> 4833[label="",style="dashed", color="magenta", weight=3]; 4728 -> 3445[label="",style="dashed", color="red", weight=0]; 4728[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4728 -> 4834[label="",style="dashed", color="magenta", weight=3]; 4728 -> 4835[label="",style="dashed", color="magenta", weight=3]; 4729 -> 3446[label="",style="dashed", color="red", weight=0]; 4729[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4729 -> 4836[label="",style="dashed", color="magenta", weight=3]; 4729 -> 4837[label="",style="dashed", color="magenta", weight=3]; 4730 -> 3447[label="",style="dashed", color="red", weight=0]; 4730[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4730 -> 4838[label="",style="dashed", color="magenta", weight=3]; 4730 -> 4839[label="",style="dashed", color="magenta", weight=3]; 4731 -> 3448[label="",style="dashed", color="red", weight=0]; 4731[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4731 -> 4840[label="",style="dashed", color="magenta", weight=3]; 4731 -> 4841[label="",style="dashed", color="magenta", weight=3]; 4732 -> 3449[label="",style="dashed", color="red", weight=0]; 4732[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4732 -> 4842[label="",style="dashed", color="magenta", weight=3]; 4732 -> 4843[label="",style="dashed", color="magenta", weight=3]; 4733 -> 3450[label="",style="dashed", color="red", weight=0]; 4733[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4733 -> 4844[label="",style="dashed", color="magenta", weight=3]; 4733 -> 4845[label="",style="dashed", color="magenta", weight=3]; 4734 -> 3451[label="",style="dashed", color="red", weight=0]; 4734[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4734 -> 4846[label="",style="dashed", color="magenta", weight=3]; 4734 -> 4847[label="",style="dashed", color="magenta", weight=3]; 4735 -> 3452[label="",style="dashed", color="red", weight=0]; 4735[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4735 -> 4848[label="",style="dashed", color="magenta", weight=3]; 4735 -> 4849[label="",style="dashed", color="magenta", weight=3]; 4736 -> 3453[label="",style="dashed", color="red", weight=0]; 4736[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4736 -> 4850[label="",style="dashed", color="magenta", weight=3]; 4736 -> 4851[label="",style="dashed", color="magenta", weight=3]; 4737 -> 3454[label="",style="dashed", color="red", weight=0]; 4737[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4737 -> 4852[label="",style="dashed", color="magenta", weight=3]; 4737 -> 4853[label="",style="dashed", color="magenta", weight=3]; 4738 -> 3455[label="",style="dashed", color="red", weight=0]; 4738[label="vyy1890 < vyy1900",fontsize=16,color="magenta"];4738 -> 4854[label="",style="dashed", color="magenta", weight=3]; 4738 -> 4855[label="",style="dashed", color="magenta", weight=3]; 4739 -> 4112[label="",style="dashed", color="red", weight=0]; 4739[label="vyy1891 < vyy1901 || vyy1891 == vyy1901 && vyy1892 <= vyy1902",fontsize=16,color="magenta"];4739 -> 4856[label="",style="dashed", color="magenta", weight=3]; 4739 -> 4857[label="",style="dashed", color="magenta", weight=3]; 4740[label="vyy1890 == vyy1900",fontsize=16,color="blue",shape="box"];5890[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5890[label="",style="solid", color="blue", weight=9]; 5890 -> 4858[label="",style="solid", color="blue", weight=3]; 5891[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5891[label="",style="solid", color="blue", weight=9]; 5891 -> 4859[label="",style="solid", color="blue", weight=3]; 5892[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5892[label="",style="solid", color="blue", weight=9]; 5892 -> 4860[label="",style="solid", color="blue", weight=3]; 5893[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5893[label="",style="solid", color="blue", weight=9]; 5893 -> 4861[label="",style="solid", color="blue", weight=3]; 5894[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5894[label="",style="solid", color="blue", weight=9]; 5894 -> 4862[label="",style="solid", color="blue", weight=3]; 5895[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5895[label="",style="solid", color="blue", weight=9]; 5895 -> 4863[label="",style="solid", color="blue", weight=3]; 5896[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5896[label="",style="solid", color="blue", weight=9]; 5896 -> 4864[label="",style="solid", color="blue", weight=3]; 5897[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5897[label="",style="solid", color="blue", weight=9]; 5897 -> 4865[label="",style="solid", color="blue", weight=3]; 5898[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5898[label="",style="solid", color="blue", weight=9]; 5898 -> 4866[label="",style="solid", color="blue", weight=3]; 5899[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5899[label="",style="solid", color="blue", weight=9]; 5899 -> 4867[label="",style="solid", color="blue", weight=3]; 5900[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5900[label="",style="solid", color="blue", weight=9]; 5900 -> 4868[label="",style="solid", color="blue", weight=3]; 5901[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5901[label="",style="solid", color="blue", weight=9]; 5901 -> 4869[label="",style="solid", color="blue", weight=3]; 5902[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5902[label="",style="solid", color="blue", weight=9]; 5902 -> 4870[label="",style="solid", color="blue", weight=3]; 5903[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4740 -> 5903[label="",style="solid", color="blue", weight=9]; 5903 -> 4871[label="",style="solid", color="blue", weight=3]; 4741[label="vyy1900",fontsize=16,color="green",shape="box"];4742[label="vyy1890",fontsize=16,color="green",shape="box"];4743[label="vyy1900",fontsize=16,color="green",shape="box"];4744[label="vyy1890",fontsize=16,color="green",shape="box"];4745[label="vyy1900",fontsize=16,color="green",shape="box"];4746[label="vyy1890",fontsize=16,color="green",shape="box"];4747[label="vyy1900",fontsize=16,color="green",shape="box"];4748[label="vyy1890",fontsize=16,color="green",shape="box"];4749[label="vyy1900",fontsize=16,color="green",shape="box"];4750[label="vyy1890",fontsize=16,color="green",shape="box"];4751[label="vyy1900",fontsize=16,color="green",shape="box"];4752[label="vyy1890",fontsize=16,color="green",shape="box"];4753[label="vyy1900",fontsize=16,color="green",shape="box"];4754[label="vyy1890",fontsize=16,color="green",shape="box"];4755[label="vyy1900",fontsize=16,color="green",shape="box"];4756[label="vyy1890",fontsize=16,color="green",shape="box"];4757[label="vyy1900",fontsize=16,color="green",shape="box"];4758[label="vyy1890",fontsize=16,color="green",shape="box"];4759[label="vyy1900",fontsize=16,color="green",shape="box"];4760[label="vyy1890",fontsize=16,color="green",shape="box"];4761[label="vyy1900",fontsize=16,color="green",shape="box"];4762[label="vyy1890",fontsize=16,color="green",shape="box"];4763[label="vyy1900",fontsize=16,color="green",shape="box"];4764[label="vyy1890",fontsize=16,color="green",shape="box"];4765[label="vyy1900",fontsize=16,color="green",shape="box"];4766[label="vyy1890",fontsize=16,color="green",shape="box"];4767[label="vyy1900",fontsize=16,color="green",shape="box"];4768[label="vyy1890",fontsize=16,color="green",shape="box"];4769[label="GT",fontsize=16,color="green",shape="box"];4770[label="Succ (Succ (primPlusNat vyy3120 vyy60100))",fontsize=16,color="green",shape="box"];4770 -> 4872[label="",style="dashed", color="green", weight=3]; 4771[label="Succ vyy60100",fontsize=16,color="green",shape="box"];4772[label="vyy1890",fontsize=16,color="green",shape="box"];4773[label="vyy1900",fontsize=16,color="green",shape="box"];4774[label="vyy1890",fontsize=16,color="green",shape="box"];4775[label="vyy1900",fontsize=16,color="green",shape="box"];4776[label="vyy1890",fontsize=16,color="green",shape="box"];4777[label="vyy1900",fontsize=16,color="green",shape="box"];4778[label="vyy1890",fontsize=16,color="green",shape="box"];4779[label="vyy1900",fontsize=16,color="green",shape="box"];4780[label="vyy1890",fontsize=16,color="green",shape="box"];4781[label="vyy1900",fontsize=16,color="green",shape="box"];4782[label="vyy1890",fontsize=16,color="green",shape="box"];4783[label="vyy1900",fontsize=16,color="green",shape="box"];4784[label="vyy1890",fontsize=16,color="green",shape="box"];4785[label="vyy1900",fontsize=16,color="green",shape="box"];4786[label="vyy1890",fontsize=16,color="green",shape="box"];4787[label="vyy1900",fontsize=16,color="green",shape="box"];4788[label="vyy1890",fontsize=16,color="green",shape="box"];4789[label="vyy1900",fontsize=16,color="green",shape="box"];4790[label="vyy1890",fontsize=16,color="green",shape="box"];4791[label="vyy1900",fontsize=16,color="green",shape="box"];4792[label="vyy1890",fontsize=16,color="green",shape="box"];4793[label="vyy1900",fontsize=16,color="green",shape="box"];4794[label="vyy1890",fontsize=16,color="green",shape="box"];4795[label="vyy1900",fontsize=16,color="green",shape="box"];4796[label="vyy1890",fontsize=16,color="green",shape="box"];4797[label="vyy1900",fontsize=16,color="green",shape="box"];4798[label="vyy1890",fontsize=16,color="green",shape="box"];4799[label="vyy1900",fontsize=16,color="green",shape="box"];4800 -> 3495[label="",style="dashed", color="red", weight=0]; 4800[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4800 -> 4873[label="",style="dashed", color="magenta", weight=3]; 4800 -> 4874[label="",style="dashed", color="magenta", weight=3]; 4801 -> 3496[label="",style="dashed", color="red", weight=0]; 4801[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4801 -> 4875[label="",style="dashed", color="magenta", weight=3]; 4801 -> 4876[label="",style="dashed", color="magenta", weight=3]; 4802 -> 3497[label="",style="dashed", color="red", weight=0]; 4802[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4802 -> 4877[label="",style="dashed", color="magenta", weight=3]; 4802 -> 4878[label="",style="dashed", color="magenta", weight=3]; 4803 -> 3498[label="",style="dashed", color="red", weight=0]; 4803[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4803 -> 4879[label="",style="dashed", color="magenta", weight=3]; 4803 -> 4880[label="",style="dashed", color="magenta", weight=3]; 4804 -> 3499[label="",style="dashed", color="red", weight=0]; 4804[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4804 -> 4881[label="",style="dashed", color="magenta", weight=3]; 4804 -> 4882[label="",style="dashed", color="magenta", weight=3]; 4805 -> 3500[label="",style="dashed", color="red", weight=0]; 4805[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4805 -> 4883[label="",style="dashed", color="magenta", weight=3]; 4805 -> 4884[label="",style="dashed", color="magenta", weight=3]; 4806 -> 3501[label="",style="dashed", color="red", weight=0]; 4806[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4806 -> 4885[label="",style="dashed", color="magenta", weight=3]; 4806 -> 4886[label="",style="dashed", color="magenta", weight=3]; 4807 -> 3502[label="",style="dashed", color="red", weight=0]; 4807[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4807 -> 4887[label="",style="dashed", color="magenta", weight=3]; 4807 -> 4888[label="",style="dashed", color="magenta", weight=3]; 4808 -> 3503[label="",style="dashed", color="red", weight=0]; 4808[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4808 -> 4889[label="",style="dashed", color="magenta", weight=3]; 4808 -> 4890[label="",style="dashed", color="magenta", weight=3]; 4809 -> 3504[label="",style="dashed", color="red", weight=0]; 4809[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4809 -> 4891[label="",style="dashed", color="magenta", weight=3]; 4809 -> 4892[label="",style="dashed", color="magenta", weight=3]; 4810 -> 3505[label="",style="dashed", color="red", weight=0]; 4810[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4810 -> 4893[label="",style="dashed", color="magenta", weight=3]; 4810 -> 4894[label="",style="dashed", color="magenta", weight=3]; 4811 -> 3506[label="",style="dashed", color="red", weight=0]; 4811[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4811 -> 4895[label="",style="dashed", color="magenta", weight=3]; 4811 -> 4896[label="",style="dashed", color="magenta", weight=3]; 4812 -> 3507[label="",style="dashed", color="red", weight=0]; 4812[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4812 -> 4897[label="",style="dashed", color="magenta", weight=3]; 4812 -> 4898[label="",style="dashed", color="magenta", weight=3]; 4813 -> 3508[label="",style="dashed", color="red", weight=0]; 4813[label="vyy1891 <= vyy1901",fontsize=16,color="magenta"];4813 -> 4899[label="",style="dashed", color="magenta", weight=3]; 4813 -> 4900[label="",style="dashed", color="magenta", weight=3]; 4814 -> 2718[label="",style="dashed", color="red", weight=0]; 4814[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4814 -> 4901[label="",style="dashed", color="magenta", weight=3]; 4814 -> 4902[label="",style="dashed", color="magenta", weight=3]; 4815 -> 2721[label="",style="dashed", color="red", weight=0]; 4815[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4815 -> 4903[label="",style="dashed", color="magenta", weight=3]; 4815 -> 4904[label="",style="dashed", color="magenta", weight=3]; 4816 -> 2713[label="",style="dashed", color="red", weight=0]; 4816[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4816 -> 4905[label="",style="dashed", color="magenta", weight=3]; 4816 -> 4906[label="",style="dashed", color="magenta", weight=3]; 4817 -> 2711[label="",style="dashed", color="red", weight=0]; 4817[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4817 -> 4907[label="",style="dashed", color="magenta", weight=3]; 4817 -> 4908[label="",style="dashed", color="magenta", weight=3]; 4818 -> 2716[label="",style="dashed", color="red", weight=0]; 4818[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4818 -> 4909[label="",style="dashed", color="magenta", weight=3]; 4818 -> 4910[label="",style="dashed", color="magenta", weight=3]; 4819 -> 2719[label="",style="dashed", color="red", weight=0]; 4819[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4819 -> 4911[label="",style="dashed", color="magenta", weight=3]; 4819 -> 4912[label="",style="dashed", color="magenta", weight=3]; 4820 -> 2709[label="",style="dashed", color="red", weight=0]; 4820[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4820 -> 4913[label="",style="dashed", color="magenta", weight=3]; 4820 -> 4914[label="",style="dashed", color="magenta", weight=3]; 4821 -> 2717[label="",style="dashed", color="red", weight=0]; 4821[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4821 -> 4915[label="",style="dashed", color="magenta", weight=3]; 4821 -> 4916[label="",style="dashed", color="magenta", weight=3]; 4822 -> 2708[label="",style="dashed", color="red", weight=0]; 4822[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4822 -> 4917[label="",style="dashed", color="magenta", weight=3]; 4822 -> 4918[label="",style="dashed", color="magenta", weight=3]; 4823 -> 2710[label="",style="dashed", color="red", weight=0]; 4823[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4823 -> 4919[label="",style="dashed", color="magenta", weight=3]; 4823 -> 4920[label="",style="dashed", color="magenta", weight=3]; 4824 -> 2714[label="",style="dashed", color="red", weight=0]; 4824[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4824 -> 4921[label="",style="dashed", color="magenta", weight=3]; 4824 -> 4922[label="",style="dashed", color="magenta", weight=3]; 4825 -> 2715[label="",style="dashed", color="red", weight=0]; 4825[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4825 -> 4923[label="",style="dashed", color="magenta", weight=3]; 4825 -> 4924[label="",style="dashed", color="magenta", weight=3]; 4826 -> 2712[label="",style="dashed", color="red", weight=0]; 4826[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4826 -> 4925[label="",style="dashed", color="magenta", weight=3]; 4826 -> 4926[label="",style="dashed", color="magenta", weight=3]; 4827 -> 2720[label="",style="dashed", color="red", weight=0]; 4827[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4827 -> 4927[label="",style="dashed", color="magenta", weight=3]; 4827 -> 4928[label="",style="dashed", color="magenta", weight=3]; 4828[label="vyy1890",fontsize=16,color="green",shape="box"];4829[label="vyy1900",fontsize=16,color="green",shape="box"];4830[label="vyy1890",fontsize=16,color="green",shape="box"];4831[label="vyy1900",fontsize=16,color="green",shape="box"];4832[label="vyy1890",fontsize=16,color="green",shape="box"];4833[label="vyy1900",fontsize=16,color="green",shape="box"];4834[label="vyy1890",fontsize=16,color="green",shape="box"];4835[label="vyy1900",fontsize=16,color="green",shape="box"];4836[label="vyy1890",fontsize=16,color="green",shape="box"];4837[label="vyy1900",fontsize=16,color="green",shape="box"];4838[label="vyy1890",fontsize=16,color="green",shape="box"];4839[label="vyy1900",fontsize=16,color="green",shape="box"];4840[label="vyy1890",fontsize=16,color="green",shape="box"];4841[label="vyy1900",fontsize=16,color="green",shape="box"];4842[label="vyy1890",fontsize=16,color="green",shape="box"];4843[label="vyy1900",fontsize=16,color="green",shape="box"];4844[label="vyy1890",fontsize=16,color="green",shape="box"];4845[label="vyy1900",fontsize=16,color="green",shape="box"];4846[label="vyy1890",fontsize=16,color="green",shape="box"];4847[label="vyy1900",fontsize=16,color="green",shape="box"];4848[label="vyy1890",fontsize=16,color="green",shape="box"];4849[label="vyy1900",fontsize=16,color="green",shape="box"];4850[label="vyy1890",fontsize=16,color="green",shape="box"];4851[label="vyy1900",fontsize=16,color="green",shape="box"];4852[label="vyy1890",fontsize=16,color="green",shape="box"];4853[label="vyy1900",fontsize=16,color="green",shape="box"];4854[label="vyy1890",fontsize=16,color="green",shape="box"];4855[label="vyy1900",fontsize=16,color="green",shape="box"];4856[label="vyy1891 < vyy1901",fontsize=16,color="blue",shape="box"];5904[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5904[label="",style="solid", color="blue", weight=9]; 5904 -> 4929[label="",style="solid", color="blue", weight=3]; 5905[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5905[label="",style="solid", color="blue", weight=9]; 5905 -> 4930[label="",style="solid", color="blue", weight=3]; 5906[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5906[label="",style="solid", color="blue", weight=9]; 5906 -> 4931[label="",style="solid", color="blue", weight=3]; 5907[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5907[label="",style="solid", color="blue", weight=9]; 5907 -> 4932[label="",style="solid", color="blue", weight=3]; 5908[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5908[label="",style="solid", color="blue", weight=9]; 5908 -> 4933[label="",style="solid", color="blue", weight=3]; 5909[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5909[label="",style="solid", color="blue", weight=9]; 5909 -> 4934[label="",style="solid", color="blue", weight=3]; 5910[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5910[label="",style="solid", color="blue", weight=9]; 5910 -> 4935[label="",style="solid", color="blue", weight=3]; 5911[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5911[label="",style="solid", color="blue", weight=9]; 5911 -> 4936[label="",style="solid", color="blue", weight=3]; 5912[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5912[label="",style="solid", color="blue", weight=9]; 5912 -> 4937[label="",style="solid", color="blue", weight=3]; 5913[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5913[label="",style="solid", color="blue", weight=9]; 5913 -> 4938[label="",style="solid", color="blue", weight=3]; 5914[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5914[label="",style="solid", color="blue", weight=9]; 5914 -> 4939[label="",style="solid", color="blue", weight=3]; 5915[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5915[label="",style="solid", color="blue", weight=9]; 5915 -> 4940[label="",style="solid", color="blue", weight=3]; 5916[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5916[label="",style="solid", color="blue", weight=9]; 5916 -> 4941[label="",style="solid", color="blue", weight=3]; 5917[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4856 -> 5917[label="",style="solid", color="blue", weight=9]; 5917 -> 4942[label="",style="solid", color="blue", weight=3]; 4857 -> 3166[label="",style="dashed", color="red", weight=0]; 4857[label="vyy1891 == vyy1901 && vyy1892 <= vyy1902",fontsize=16,color="magenta"];4857 -> 4943[label="",style="dashed", color="magenta", weight=3]; 4857 -> 4944[label="",style="dashed", color="magenta", weight=3]; 4858 -> 2718[label="",style="dashed", color="red", weight=0]; 4858[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4858 -> 4945[label="",style="dashed", color="magenta", weight=3]; 4858 -> 4946[label="",style="dashed", color="magenta", weight=3]; 4859 -> 2721[label="",style="dashed", color="red", weight=0]; 4859[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4859 -> 4947[label="",style="dashed", color="magenta", weight=3]; 4859 -> 4948[label="",style="dashed", color="magenta", weight=3]; 4860 -> 2713[label="",style="dashed", color="red", weight=0]; 4860[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4860 -> 4949[label="",style="dashed", color="magenta", weight=3]; 4860 -> 4950[label="",style="dashed", color="magenta", weight=3]; 4861 -> 2711[label="",style="dashed", color="red", weight=0]; 4861[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4861 -> 4951[label="",style="dashed", color="magenta", weight=3]; 4861 -> 4952[label="",style="dashed", color="magenta", weight=3]; 4862 -> 2716[label="",style="dashed", color="red", weight=0]; 4862[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4862 -> 4953[label="",style="dashed", color="magenta", weight=3]; 4862 -> 4954[label="",style="dashed", color="magenta", weight=3]; 4863 -> 2719[label="",style="dashed", color="red", weight=0]; 4863[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4863 -> 4955[label="",style="dashed", color="magenta", weight=3]; 4863 -> 4956[label="",style="dashed", color="magenta", weight=3]; 4864 -> 2709[label="",style="dashed", color="red", weight=0]; 4864[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4864 -> 4957[label="",style="dashed", color="magenta", weight=3]; 4864 -> 4958[label="",style="dashed", color="magenta", weight=3]; 4865 -> 2717[label="",style="dashed", color="red", weight=0]; 4865[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4865 -> 4959[label="",style="dashed", color="magenta", weight=3]; 4865 -> 4960[label="",style="dashed", color="magenta", weight=3]; 4866 -> 2708[label="",style="dashed", color="red", weight=0]; 4866[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4866 -> 4961[label="",style="dashed", color="magenta", weight=3]; 4866 -> 4962[label="",style="dashed", color="magenta", weight=3]; 4867 -> 2710[label="",style="dashed", color="red", weight=0]; 4867[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4867 -> 4963[label="",style="dashed", color="magenta", weight=3]; 4867 -> 4964[label="",style="dashed", color="magenta", weight=3]; 4868 -> 2714[label="",style="dashed", color="red", weight=0]; 4868[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4868 -> 4965[label="",style="dashed", color="magenta", weight=3]; 4868 -> 4966[label="",style="dashed", color="magenta", weight=3]; 4869 -> 2715[label="",style="dashed", color="red", weight=0]; 4869[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4869 -> 4967[label="",style="dashed", color="magenta", weight=3]; 4869 -> 4968[label="",style="dashed", color="magenta", weight=3]; 4870 -> 2712[label="",style="dashed", color="red", weight=0]; 4870[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4870 -> 4969[label="",style="dashed", color="magenta", weight=3]; 4870 -> 4970[label="",style="dashed", color="magenta", weight=3]; 4871 -> 2720[label="",style="dashed", color="red", weight=0]; 4871[label="vyy1890 == vyy1900",fontsize=16,color="magenta"];4871 -> 4971[label="",style="dashed", color="magenta", weight=3]; 4871 -> 4972[label="",style="dashed", color="magenta", weight=3]; 4872[label="primPlusNat vyy3120 vyy60100",fontsize=16,color="burlywood",shape="triangle"];5918[label="vyy3120/Succ vyy31200",fontsize=10,color="white",style="solid",shape="box"];4872 -> 5918[label="",style="solid", color="burlywood", weight=9]; 5918 -> 4973[label="",style="solid", color="burlywood", weight=3]; 5919[label="vyy3120/Zero",fontsize=10,color="white",style="solid",shape="box"];4872 -> 5919[label="",style="solid", color="burlywood", weight=9]; 5919 -> 4974[label="",style="solid", color="burlywood", weight=3]; 4873[label="vyy1901",fontsize=16,color="green",shape="box"];4874[label="vyy1891",fontsize=16,color="green",shape="box"];4875[label="vyy1901",fontsize=16,color="green",shape="box"];4876[label="vyy1891",fontsize=16,color="green",shape="box"];4877[label="vyy1901",fontsize=16,color="green",shape="box"];4878[label="vyy1891",fontsize=16,color="green",shape="box"];4879[label="vyy1901",fontsize=16,color="green",shape="box"];4880[label="vyy1891",fontsize=16,color="green",shape="box"];4881[label="vyy1901",fontsize=16,color="green",shape="box"];4882[label="vyy1891",fontsize=16,color="green",shape="box"];4883[label="vyy1901",fontsize=16,color="green",shape="box"];4884[label="vyy1891",fontsize=16,color="green",shape="box"];4885[label="vyy1901",fontsize=16,color="green",shape="box"];4886[label="vyy1891",fontsize=16,color="green",shape="box"];4887[label="vyy1901",fontsize=16,color="green",shape="box"];4888[label="vyy1891",fontsize=16,color="green",shape="box"];4889[label="vyy1901",fontsize=16,color="green",shape="box"];4890[label="vyy1891",fontsize=16,color="green",shape="box"];4891[label="vyy1901",fontsize=16,color="green",shape="box"];4892[label="vyy1891",fontsize=16,color="green",shape="box"];4893[label="vyy1901",fontsize=16,color="green",shape="box"];4894[label="vyy1891",fontsize=16,color="green",shape="box"];4895[label="vyy1901",fontsize=16,color="green",shape="box"];4896[label="vyy1891",fontsize=16,color="green",shape="box"];4897[label="vyy1901",fontsize=16,color="green",shape="box"];4898[label="vyy1891",fontsize=16,color="green",shape="box"];4899[label="vyy1901",fontsize=16,color="green",shape="box"];4900[label="vyy1891",fontsize=16,color="green",shape="box"];4901[label="vyy1900",fontsize=16,color="green",shape="box"];4902[label="vyy1890",fontsize=16,color="green",shape="box"];4903[label="vyy1900",fontsize=16,color="green",shape="box"];4904[label="vyy1890",fontsize=16,color="green",shape="box"];4905[label="vyy1900",fontsize=16,color="green",shape="box"];4906[label="vyy1890",fontsize=16,color="green",shape="box"];4907[label="vyy1900",fontsize=16,color="green",shape="box"];4908[label="vyy1890",fontsize=16,color="green",shape="box"];4909[label="vyy1900",fontsize=16,color="green",shape="box"];4910[label="vyy1890",fontsize=16,color="green",shape="box"];4911[label="vyy1900",fontsize=16,color="green",shape="box"];4912[label="vyy1890",fontsize=16,color="green",shape="box"];4913[label="vyy1900",fontsize=16,color="green",shape="box"];4914[label="vyy1890",fontsize=16,color="green",shape="box"];4915[label="vyy1900",fontsize=16,color="green",shape="box"];4916[label="vyy1890",fontsize=16,color="green",shape="box"];4917[label="vyy1900",fontsize=16,color="green",shape="box"];4918[label="vyy1890",fontsize=16,color="green",shape="box"];4919[label="vyy1900",fontsize=16,color="green",shape="box"];4920[label="vyy1890",fontsize=16,color="green",shape="box"];4921[label="vyy1900",fontsize=16,color="green",shape="box"];4922[label="vyy1890",fontsize=16,color="green",shape="box"];4923[label="vyy1900",fontsize=16,color="green",shape="box"];4924[label="vyy1890",fontsize=16,color="green",shape="box"];4925[label="vyy1900",fontsize=16,color="green",shape="box"];4926[label="vyy1890",fontsize=16,color="green",shape="box"];4927[label="vyy1900",fontsize=16,color="green",shape="box"];4928[label="vyy1890",fontsize=16,color="green",shape="box"];4929 -> 3442[label="",style="dashed", color="red", weight=0]; 4929[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4929 -> 4975[label="",style="dashed", color="magenta", weight=3]; 4929 -> 4976[label="",style="dashed", color="magenta", weight=3]; 4930 -> 3443[label="",style="dashed", color="red", weight=0]; 4930[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4930 -> 4977[label="",style="dashed", color="magenta", weight=3]; 4930 -> 4978[label="",style="dashed", color="magenta", weight=3]; 4931 -> 3444[label="",style="dashed", color="red", weight=0]; 4931[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4931 -> 4979[label="",style="dashed", color="magenta", weight=3]; 4931 -> 4980[label="",style="dashed", color="magenta", weight=3]; 4932 -> 3445[label="",style="dashed", color="red", weight=0]; 4932[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4932 -> 4981[label="",style="dashed", color="magenta", weight=3]; 4932 -> 4982[label="",style="dashed", color="magenta", weight=3]; 4933 -> 3446[label="",style="dashed", color="red", weight=0]; 4933[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4933 -> 4983[label="",style="dashed", color="magenta", weight=3]; 4933 -> 4984[label="",style="dashed", color="magenta", weight=3]; 4934 -> 3447[label="",style="dashed", color="red", weight=0]; 4934[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4934 -> 4985[label="",style="dashed", color="magenta", weight=3]; 4934 -> 4986[label="",style="dashed", color="magenta", weight=3]; 4935 -> 3448[label="",style="dashed", color="red", weight=0]; 4935[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4935 -> 4987[label="",style="dashed", color="magenta", weight=3]; 4935 -> 4988[label="",style="dashed", color="magenta", weight=3]; 4936 -> 3449[label="",style="dashed", color="red", weight=0]; 4936[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4936 -> 4989[label="",style="dashed", color="magenta", weight=3]; 4936 -> 4990[label="",style="dashed", color="magenta", weight=3]; 4937 -> 3450[label="",style="dashed", color="red", weight=0]; 4937[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4937 -> 4991[label="",style="dashed", color="magenta", weight=3]; 4937 -> 4992[label="",style="dashed", color="magenta", weight=3]; 4938 -> 3451[label="",style="dashed", color="red", weight=0]; 4938[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4938 -> 4993[label="",style="dashed", color="magenta", weight=3]; 4938 -> 4994[label="",style="dashed", color="magenta", weight=3]; 4939 -> 3452[label="",style="dashed", color="red", weight=0]; 4939[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4939 -> 4995[label="",style="dashed", color="magenta", weight=3]; 4939 -> 4996[label="",style="dashed", color="magenta", weight=3]; 4940 -> 3453[label="",style="dashed", color="red", weight=0]; 4940[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4940 -> 4997[label="",style="dashed", color="magenta", weight=3]; 4940 -> 4998[label="",style="dashed", color="magenta", weight=3]; 4941 -> 3454[label="",style="dashed", color="red", weight=0]; 4941[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4941 -> 4999[label="",style="dashed", color="magenta", weight=3]; 4941 -> 5000[label="",style="dashed", color="magenta", weight=3]; 4942 -> 3455[label="",style="dashed", color="red", weight=0]; 4942[label="vyy1891 < vyy1901",fontsize=16,color="magenta"];4942 -> 5001[label="",style="dashed", color="magenta", weight=3]; 4942 -> 5002[label="",style="dashed", color="magenta", weight=3]; 4943[label="vyy1892 <= vyy1902",fontsize=16,color="blue",shape="box"];5920[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5920[label="",style="solid", color="blue", weight=9]; 5920 -> 5003[label="",style="solid", color="blue", weight=3]; 5921[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5921[label="",style="solid", color="blue", weight=9]; 5921 -> 5004[label="",style="solid", color="blue", weight=3]; 5922[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5922[label="",style="solid", color="blue", weight=9]; 5922 -> 5005[label="",style="solid", color="blue", weight=3]; 5923[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5923[label="",style="solid", color="blue", weight=9]; 5923 -> 5006[label="",style="solid", color="blue", weight=3]; 5924[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5924[label="",style="solid", color="blue", weight=9]; 5924 -> 5007[label="",style="solid", color="blue", weight=3]; 5925[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5925[label="",style="solid", color="blue", weight=9]; 5925 -> 5008[label="",style="solid", color="blue", weight=3]; 5926[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5926[label="",style="solid", color="blue", weight=9]; 5926 -> 5009[label="",style="solid", color="blue", weight=3]; 5927[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5927[label="",style="solid", color="blue", weight=9]; 5927 -> 5010[label="",style="solid", color="blue", weight=3]; 5928[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5928[label="",style="solid", color="blue", weight=9]; 5928 -> 5011[label="",style="solid", color="blue", weight=3]; 5929[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5929[label="",style="solid", color="blue", weight=9]; 5929 -> 5012[label="",style="solid", color="blue", weight=3]; 5930[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5930[label="",style="solid", color="blue", weight=9]; 5930 -> 5013[label="",style="solid", color="blue", weight=3]; 5931[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5931[label="",style="solid", color="blue", weight=9]; 5931 -> 5014[label="",style="solid", color="blue", weight=3]; 5932[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5932[label="",style="solid", color="blue", weight=9]; 5932 -> 5015[label="",style="solid", color="blue", weight=3]; 5933[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4943 -> 5933[label="",style="solid", color="blue", weight=9]; 5933 -> 5016[label="",style="solid", color="blue", weight=3]; 4944[label="vyy1891 == vyy1901",fontsize=16,color="blue",shape="box"];5934[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5934[label="",style="solid", color="blue", weight=9]; 5934 -> 5017[label="",style="solid", color="blue", weight=3]; 5935[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5935[label="",style="solid", color="blue", weight=9]; 5935 -> 5018[label="",style="solid", color="blue", weight=3]; 5936[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5936[label="",style="solid", color="blue", weight=9]; 5936 -> 5019[label="",style="solid", color="blue", weight=3]; 5937[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5937[label="",style="solid", color="blue", weight=9]; 5937 -> 5020[label="",style="solid", color="blue", weight=3]; 5938[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5938[label="",style="solid", color="blue", weight=9]; 5938 -> 5021[label="",style="solid", color="blue", weight=3]; 5939[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5939[label="",style="solid", color="blue", weight=9]; 5939 -> 5022[label="",style="solid", color="blue", weight=3]; 5940[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5940[label="",style="solid", color="blue", weight=9]; 5940 -> 5023[label="",style="solid", color="blue", weight=3]; 5941[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5941[label="",style="solid", color="blue", weight=9]; 5941 -> 5024[label="",style="solid", color="blue", weight=3]; 5942[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5942[label="",style="solid", color="blue", weight=9]; 5942 -> 5025[label="",style="solid", color="blue", weight=3]; 5943[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5943[label="",style="solid", color="blue", weight=9]; 5943 -> 5026[label="",style="solid", color="blue", weight=3]; 5944[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5944[label="",style="solid", color="blue", weight=9]; 5944 -> 5027[label="",style="solid", color="blue", weight=3]; 5945[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5945[label="",style="solid", color="blue", weight=9]; 5945 -> 5028[label="",style="solid", color="blue", weight=3]; 5946[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5946[label="",style="solid", color="blue", weight=9]; 5946 -> 5029[label="",style="solid", color="blue", weight=3]; 5947[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4944 -> 5947[label="",style="solid", color="blue", weight=9]; 5947 -> 5030[label="",style="solid", color="blue", weight=3]; 4945[label="vyy1900",fontsize=16,color="green",shape="box"];4946[label="vyy1890",fontsize=16,color="green",shape="box"];4947[label="vyy1900",fontsize=16,color="green",shape="box"];4948[label="vyy1890",fontsize=16,color="green",shape="box"];4949[label="vyy1900",fontsize=16,color="green",shape="box"];4950[label="vyy1890",fontsize=16,color="green",shape="box"];4951[label="vyy1900",fontsize=16,color="green",shape="box"];4952[label="vyy1890",fontsize=16,color="green",shape="box"];4953[label="vyy1900",fontsize=16,color="green",shape="box"];4954[label="vyy1890",fontsize=16,color="green",shape="box"];4955[label="vyy1900",fontsize=16,color="green",shape="box"];4956[label="vyy1890",fontsize=16,color="green",shape="box"];4957[label="vyy1900",fontsize=16,color="green",shape="box"];4958[label="vyy1890",fontsize=16,color="green",shape="box"];4959[label="vyy1900",fontsize=16,color="green",shape="box"];4960[label="vyy1890",fontsize=16,color="green",shape="box"];4961[label="vyy1900",fontsize=16,color="green",shape="box"];4962[label="vyy1890",fontsize=16,color="green",shape="box"];4963[label="vyy1900",fontsize=16,color="green",shape="box"];4964[label="vyy1890",fontsize=16,color="green",shape="box"];4965[label="vyy1900",fontsize=16,color="green",shape="box"];4966[label="vyy1890",fontsize=16,color="green",shape="box"];4967[label="vyy1900",fontsize=16,color="green",shape="box"];4968[label="vyy1890",fontsize=16,color="green",shape="box"];4969[label="vyy1900",fontsize=16,color="green",shape="box"];4970[label="vyy1890",fontsize=16,color="green",shape="box"];4971[label="vyy1900",fontsize=16,color="green",shape="box"];4972[label="vyy1890",fontsize=16,color="green",shape="box"];4973[label="primPlusNat (Succ vyy31200) vyy60100",fontsize=16,color="burlywood",shape="box"];5948[label="vyy60100/Succ vyy601000",fontsize=10,color="white",style="solid",shape="box"];4973 -> 5948[label="",style="solid", color="burlywood", weight=9]; 5948 -> 5031[label="",style="solid", color="burlywood", weight=3]; 5949[label="vyy60100/Zero",fontsize=10,color="white",style="solid",shape="box"];4973 -> 5949[label="",style="solid", color="burlywood", weight=9]; 5949 -> 5032[label="",style="solid", color="burlywood", weight=3]; 4974[label="primPlusNat Zero vyy60100",fontsize=16,color="burlywood",shape="box"];5950[label="vyy60100/Succ vyy601000",fontsize=10,color="white",style="solid",shape="box"];4974 -> 5950[label="",style="solid", color="burlywood", weight=9]; 5950 -> 5033[label="",style="solid", color="burlywood", weight=3]; 5951[label="vyy60100/Zero",fontsize=10,color="white",style="solid",shape="box"];4974 -> 5951[label="",style="solid", color="burlywood", weight=9]; 5951 -> 5034[label="",style="solid", color="burlywood", weight=3]; 4975[label="vyy1891",fontsize=16,color="green",shape="box"];4976[label="vyy1901",fontsize=16,color="green",shape="box"];4977[label="vyy1891",fontsize=16,color="green",shape="box"];4978[label="vyy1901",fontsize=16,color="green",shape="box"];4979[label="vyy1891",fontsize=16,color="green",shape="box"];4980[label="vyy1901",fontsize=16,color="green",shape="box"];4981[label="vyy1891",fontsize=16,color="green",shape="box"];4982[label="vyy1901",fontsize=16,color="green",shape="box"];4983[label="vyy1891",fontsize=16,color="green",shape="box"];4984[label="vyy1901",fontsize=16,color="green",shape="box"];4985[label="vyy1891",fontsize=16,color="green",shape="box"];4986[label="vyy1901",fontsize=16,color="green",shape="box"];4987[label="vyy1891",fontsize=16,color="green",shape="box"];4988[label="vyy1901",fontsize=16,color="green",shape="box"];4989[label="vyy1891",fontsize=16,color="green",shape="box"];4990[label="vyy1901",fontsize=16,color="green",shape="box"];4991[label="vyy1891",fontsize=16,color="green",shape="box"];4992[label="vyy1901",fontsize=16,color="green",shape="box"];4993[label="vyy1891",fontsize=16,color="green",shape="box"];4994[label="vyy1901",fontsize=16,color="green",shape="box"];4995[label="vyy1891",fontsize=16,color="green",shape="box"];4996[label="vyy1901",fontsize=16,color="green",shape="box"];4997[label="vyy1891",fontsize=16,color="green",shape="box"];4998[label="vyy1901",fontsize=16,color="green",shape="box"];4999[label="vyy1891",fontsize=16,color="green",shape="box"];5000[label="vyy1901",fontsize=16,color="green",shape="box"];5001[label="vyy1891",fontsize=16,color="green",shape="box"];5002[label="vyy1901",fontsize=16,color="green",shape="box"];5003 -> 3495[label="",style="dashed", color="red", weight=0]; 5003[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5003 -> 5035[label="",style="dashed", color="magenta", weight=3]; 5003 -> 5036[label="",style="dashed", color="magenta", weight=3]; 5004 -> 3496[label="",style="dashed", color="red", weight=0]; 5004[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5004 -> 5037[label="",style="dashed", color="magenta", weight=3]; 5004 -> 5038[label="",style="dashed", color="magenta", weight=3]; 5005 -> 3497[label="",style="dashed", color="red", weight=0]; 5005[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5005 -> 5039[label="",style="dashed", color="magenta", weight=3]; 5005 -> 5040[label="",style="dashed", color="magenta", weight=3]; 5006 -> 3498[label="",style="dashed", color="red", weight=0]; 5006[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5006 -> 5041[label="",style="dashed", color="magenta", weight=3]; 5006 -> 5042[label="",style="dashed", color="magenta", weight=3]; 5007 -> 3499[label="",style="dashed", color="red", weight=0]; 5007[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5007 -> 5043[label="",style="dashed", color="magenta", weight=3]; 5007 -> 5044[label="",style="dashed", color="magenta", weight=3]; 5008 -> 3500[label="",style="dashed", color="red", weight=0]; 5008[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5008 -> 5045[label="",style="dashed", color="magenta", weight=3]; 5008 -> 5046[label="",style="dashed", color="magenta", weight=3]; 5009 -> 3501[label="",style="dashed", color="red", weight=0]; 5009[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5009 -> 5047[label="",style="dashed", color="magenta", weight=3]; 5009 -> 5048[label="",style="dashed", color="magenta", weight=3]; 5010 -> 3502[label="",style="dashed", color="red", weight=0]; 5010[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5010 -> 5049[label="",style="dashed", color="magenta", weight=3]; 5010 -> 5050[label="",style="dashed", color="magenta", weight=3]; 5011 -> 3503[label="",style="dashed", color="red", weight=0]; 5011[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5011 -> 5051[label="",style="dashed", color="magenta", weight=3]; 5011 -> 5052[label="",style="dashed", color="magenta", weight=3]; 5012 -> 3504[label="",style="dashed", color="red", weight=0]; 5012[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5012 -> 5053[label="",style="dashed", color="magenta", weight=3]; 5012 -> 5054[label="",style="dashed", color="magenta", weight=3]; 5013 -> 3505[label="",style="dashed", color="red", weight=0]; 5013[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5013 -> 5055[label="",style="dashed", color="magenta", weight=3]; 5013 -> 5056[label="",style="dashed", color="magenta", weight=3]; 5014 -> 3506[label="",style="dashed", color="red", weight=0]; 5014[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5014 -> 5057[label="",style="dashed", color="magenta", weight=3]; 5014 -> 5058[label="",style="dashed", color="magenta", weight=3]; 5015 -> 3507[label="",style="dashed", color="red", weight=0]; 5015[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5015 -> 5059[label="",style="dashed", color="magenta", weight=3]; 5015 -> 5060[label="",style="dashed", color="magenta", weight=3]; 5016 -> 3508[label="",style="dashed", color="red", weight=0]; 5016[label="vyy1892 <= vyy1902",fontsize=16,color="magenta"];5016 -> 5061[label="",style="dashed", color="magenta", weight=3]; 5016 -> 5062[label="",style="dashed", color="magenta", weight=3]; 5017 -> 2718[label="",style="dashed", color="red", weight=0]; 5017[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5017 -> 5063[label="",style="dashed", color="magenta", weight=3]; 5017 -> 5064[label="",style="dashed", color="magenta", weight=3]; 5018 -> 2721[label="",style="dashed", color="red", weight=0]; 5018[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5018 -> 5065[label="",style="dashed", color="magenta", weight=3]; 5018 -> 5066[label="",style="dashed", color="magenta", weight=3]; 5019 -> 2713[label="",style="dashed", color="red", weight=0]; 5019[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5019 -> 5067[label="",style="dashed", color="magenta", weight=3]; 5019 -> 5068[label="",style="dashed", color="magenta", weight=3]; 5020 -> 2711[label="",style="dashed", color="red", weight=0]; 5020[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5020 -> 5069[label="",style="dashed", color="magenta", weight=3]; 5020 -> 5070[label="",style="dashed", color="magenta", weight=3]; 5021 -> 2716[label="",style="dashed", color="red", weight=0]; 5021[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5021 -> 5071[label="",style="dashed", color="magenta", weight=3]; 5021 -> 5072[label="",style="dashed", color="magenta", weight=3]; 5022 -> 2719[label="",style="dashed", color="red", weight=0]; 5022[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5022 -> 5073[label="",style="dashed", color="magenta", weight=3]; 5022 -> 5074[label="",style="dashed", color="magenta", weight=3]; 5023 -> 2709[label="",style="dashed", color="red", weight=0]; 5023[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5023 -> 5075[label="",style="dashed", color="magenta", weight=3]; 5023 -> 5076[label="",style="dashed", color="magenta", weight=3]; 5024 -> 2717[label="",style="dashed", color="red", weight=0]; 5024[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5024 -> 5077[label="",style="dashed", color="magenta", weight=3]; 5024 -> 5078[label="",style="dashed", color="magenta", weight=3]; 5025 -> 2708[label="",style="dashed", color="red", weight=0]; 5025[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5025 -> 5079[label="",style="dashed", color="magenta", weight=3]; 5025 -> 5080[label="",style="dashed", color="magenta", weight=3]; 5026 -> 2710[label="",style="dashed", color="red", weight=0]; 5026[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5026 -> 5081[label="",style="dashed", color="magenta", weight=3]; 5026 -> 5082[label="",style="dashed", color="magenta", weight=3]; 5027 -> 2714[label="",style="dashed", color="red", weight=0]; 5027[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5027 -> 5083[label="",style="dashed", color="magenta", weight=3]; 5027 -> 5084[label="",style="dashed", color="magenta", weight=3]; 5028 -> 2715[label="",style="dashed", color="red", weight=0]; 5028[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5028 -> 5085[label="",style="dashed", color="magenta", weight=3]; 5028 -> 5086[label="",style="dashed", color="magenta", weight=3]; 5029 -> 2712[label="",style="dashed", color="red", weight=0]; 5029[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5029 -> 5087[label="",style="dashed", color="magenta", weight=3]; 5029 -> 5088[label="",style="dashed", color="magenta", weight=3]; 5030 -> 2720[label="",style="dashed", color="red", weight=0]; 5030[label="vyy1891 == vyy1901",fontsize=16,color="magenta"];5030 -> 5089[label="",style="dashed", color="magenta", weight=3]; 5030 -> 5090[label="",style="dashed", color="magenta", weight=3]; 5031[label="primPlusNat (Succ vyy31200) (Succ vyy601000)",fontsize=16,color="black",shape="box"];5031 -> 5091[label="",style="solid", color="black", weight=3]; 5032[label="primPlusNat (Succ vyy31200) Zero",fontsize=16,color="black",shape="box"];5032 -> 5092[label="",style="solid", color="black", weight=3]; 5033[label="primPlusNat Zero (Succ vyy601000)",fontsize=16,color="black",shape="box"];5033 -> 5093[label="",style="solid", color="black", weight=3]; 5034[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];5034 -> 5094[label="",style="solid", color="black", weight=3]; 5035[label="vyy1902",fontsize=16,color="green",shape="box"];5036[label="vyy1892",fontsize=16,color="green",shape="box"];5037[label="vyy1902",fontsize=16,color="green",shape="box"];5038[label="vyy1892",fontsize=16,color="green",shape="box"];5039[label="vyy1902",fontsize=16,color="green",shape="box"];5040[label="vyy1892",fontsize=16,color="green",shape="box"];5041[label="vyy1902",fontsize=16,color="green",shape="box"];5042[label="vyy1892",fontsize=16,color="green",shape="box"];5043[label="vyy1902",fontsize=16,color="green",shape="box"];5044[label="vyy1892",fontsize=16,color="green",shape="box"];5045[label="vyy1902",fontsize=16,color="green",shape="box"];5046[label="vyy1892",fontsize=16,color="green",shape="box"];5047[label="vyy1902",fontsize=16,color="green",shape="box"];5048[label="vyy1892",fontsize=16,color="green",shape="box"];5049[label="vyy1902",fontsize=16,color="green",shape="box"];5050[label="vyy1892",fontsize=16,color="green",shape="box"];5051[label="vyy1902",fontsize=16,color="green",shape="box"];5052[label="vyy1892",fontsize=16,color="green",shape="box"];5053[label="vyy1902",fontsize=16,color="green",shape="box"];5054[label="vyy1892",fontsize=16,color="green",shape="box"];5055[label="vyy1902",fontsize=16,color="green",shape="box"];5056[label="vyy1892",fontsize=16,color="green",shape="box"];5057[label="vyy1902",fontsize=16,color="green",shape="box"];5058[label="vyy1892",fontsize=16,color="green",shape="box"];5059[label="vyy1902",fontsize=16,color="green",shape="box"];5060[label="vyy1892",fontsize=16,color="green",shape="box"];5061[label="vyy1902",fontsize=16,color="green",shape="box"];5062[label="vyy1892",fontsize=16,color="green",shape="box"];5063[label="vyy1901",fontsize=16,color="green",shape="box"];5064[label="vyy1891",fontsize=16,color="green",shape="box"];5065[label="vyy1901",fontsize=16,color="green",shape="box"];5066[label="vyy1891",fontsize=16,color="green",shape="box"];5067[label="vyy1901",fontsize=16,color="green",shape="box"];5068[label="vyy1891",fontsize=16,color="green",shape="box"];5069[label="vyy1901",fontsize=16,color="green",shape="box"];5070[label="vyy1891",fontsize=16,color="green",shape="box"];5071[label="vyy1901",fontsize=16,color="green",shape="box"];5072[label="vyy1891",fontsize=16,color="green",shape="box"];5073[label="vyy1901",fontsize=16,color="green",shape="box"];5074[label="vyy1891",fontsize=16,color="green",shape="box"];5075[label="vyy1901",fontsize=16,color="green",shape="box"];5076[label="vyy1891",fontsize=16,color="green",shape="box"];5077[label="vyy1901",fontsize=16,color="green",shape="box"];5078[label="vyy1891",fontsize=16,color="green",shape="box"];5079[label="vyy1901",fontsize=16,color="green",shape="box"];5080[label="vyy1891",fontsize=16,color="green",shape="box"];5081[label="vyy1901",fontsize=16,color="green",shape="box"];5082[label="vyy1891",fontsize=16,color="green",shape="box"];5083[label="vyy1901",fontsize=16,color="green",shape="box"];5084[label="vyy1891",fontsize=16,color="green",shape="box"];5085[label="vyy1901",fontsize=16,color="green",shape="box"];5086[label="vyy1891",fontsize=16,color="green",shape="box"];5087[label="vyy1901",fontsize=16,color="green",shape="box"];5088[label="vyy1891",fontsize=16,color="green",shape="box"];5089[label="vyy1901",fontsize=16,color="green",shape="box"];5090[label="vyy1891",fontsize=16,color="green",shape="box"];5091[label="Succ (Succ (primPlusNat vyy31200 vyy601000))",fontsize=16,color="green",shape="box"];5091 -> 5095[label="",style="dashed", color="green", weight=3]; 5092[label="Succ vyy31200",fontsize=16,color="green",shape="box"];5093[label="Succ vyy601000",fontsize=16,color="green",shape="box"];5094[label="Zero",fontsize=16,color="green",shape="box"];5095 -> 4872[label="",style="dashed", color="red", weight=0]; 5095[label="primPlusNat vyy31200 vyy601000",fontsize=16,color="magenta"];5095 -> 5096[label="",style="dashed", color="magenta", weight=3]; 5095 -> 5097[label="",style="dashed", color="magenta", weight=3]; 5096[label="vyy31200",fontsize=16,color="green",shape="box"];5097[label="vyy601000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vyy6000), Succ(vyy500)) -> new_primCmpNat(vyy6000, vyy500) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vyy6000), Succ(vyy500)) -> new_primCmpNat(vyy6000, vyy500) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(vyy600, vyy50, vyy173, app(ty_Maybe, bhd)) -> new_compare4(vyy600, vyy50, bhd) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(app(ty_Either, bdg), bdh)) -> new_ltEs0(vyy1892, vyy1902, bdg, bdh) new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(app(ty_Either, ed), ee)) -> new_ltEs0(vyy233, vyy235, ed, ee) new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(app(ty_@2, bfb), bfc)), beh) -> new_ltEs(vyy1890, vyy1900, bfb, bfc) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(ty_Maybe, cbb), cab, cac) -> new_lt3(vyy207, vyy210, cbb) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(ty_[], ccc), cac) -> new_lt2(vyy208, vyy211, ccc) new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(app(app(ty_@3, ha), hb), hc)), gf), beh) -> new_ltEs1(vyy1890, vyy1900, ha, hb, hc) new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs1(vyy1890, vyy1900, bac, bad, bae) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(app(ty_@2, bhh), caa), cab, cac) -> new_lt(vyy207, vyy210, bhh, caa) new_ltEs0(Left(vyy1890), Left(vyy1900), app(app(app(ty_@3, ha), hb), hc), gf) -> new_ltEs1(vyy1890, vyy1900, ha, hb, hc) new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(app(app(ty_@3, bff), bfg), bfh)), beh) -> new_ltEs1(vyy1890, vyy1900, bff, bfg, bfh) new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(app(app(ty_@3, fg), fh), ga), fc) -> new_compare1(vyy232, vyy234, fg, fh, ga) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(app(ty_Either, bc), bd)), bb), beh) -> new_lt0(vyy1890, vyy1900, bc, bd) new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(ty_[], gb), fc) -> new_compare3(vyy232, vyy234, gb) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(app(ty_Either, bbd), bbe), bbb, bbc) -> new_lt0(vyy1890, vyy1900, bbd, bbe) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(app(app(ty_@3, bch), bda), bdb), bbc) -> new_lt1(vyy1891, vyy1901, bch, bda, bdb) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(app(ty_Either, bcf), bcg)), bbc), beh) -> new_lt0(vyy1891, vyy1901, bcf, bcg) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(app(ty_Either, bdg), bdh)), beh) -> new_ltEs0(vyy1892, vyy1902, bdg, bdh) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(ty_[], cdd)) -> new_ltEs2(vyy209, vyy212, cdd) new_ltEs3(Just(vyy1890), Just(vyy1900), app(ty_[], bga)) -> new_ltEs2(vyy1890, vyy1900, bga) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs1(vyy209, vyy212, cda, cdb, cdc) new_ltEs2(vyy189, vyy190, bfa) -> new_compare3(vyy189, vyy190, bfa) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(ty_[], bdc), bbc) -> new_lt2(vyy1891, vyy1901, bdc) new_ltEs0(Left(vyy1890), Left(vyy1900), app(ty_[], hd), gf) -> new_ltEs2(vyy1890, vyy1900, hd) new_compare23(vyy223, vyy224, False, app(app(ty_Either, cea), ceb)) -> new_ltEs0(vyy223, vyy224, cea, ceb) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(app(ty_@2, bah), bba), bbb, bbc) -> new_lt(vyy1890, vyy1900, bah, bba) new_ltEs0(Left(vyy1890), Left(vyy1900), app(app(ty_@2, gd), ge), gf) -> new_ltEs(vyy1890, vyy1900, gd, ge) new_compare(@2(vyy600, vyy601), @2(vyy50, vyy51), dg, dh) -> new_compare2(vyy600, vyy601, vyy50, vyy51, new_asAs(new_esEs5(vyy600, vyy50, dg), new_esEs4(vyy601, vyy51, dh)), dg, dh) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(ty_Maybe, dd)), beh) -> new_ltEs3(vyy1891, vyy1901, dd) new_compare23(vyy223, vyy224, False, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(vyy223, vyy224, cec, ced, cee) new_compare23(vyy223, vyy224, False, app(ty_[], cef)) -> new_ltEs2(vyy223, vyy224, cef) new_compare3(:(vyy600, vyy601), :(vyy50, vyy51), bgc) -> new_compare3(vyy601, vyy51, bgc) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(ty_[], bdc)), bbc), beh) -> new_lt2(vyy1891, vyy1901, bdc) new_compare21(vyy196, vyy197, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(vyy196, vyy197, cfa, cfb) new_compare21(vyy196, vyy197, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyy196, vyy197, cga) new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(app(ty_@2, gd), ge)), gf), beh) -> new_ltEs(vyy1890, vyy1900, gd, ge) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd)), beh) -> new_ltEs(vyy1891, vyy1901, cc, cd) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(ty_[], dc)), beh) -> new_ltEs2(vyy1891, vyy1901, dc) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(ty_[], bed)) -> new_ltEs2(vyy1892, vyy1902, bed) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(vyy1891, vyy1901, cg, da, db) new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs1(vyy233, vyy235, ef, eg, eh) new_lt3(vyy232, vyy234, gc) -> new_compare4(vyy232, vyy234, gc) new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(app(ty_Either, gg), gh)), gf), beh) -> new_ltEs0(vyy1890, vyy1900, gg, gh) new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(app(ty_Either, baa), bab)), beh) -> new_ltEs0(vyy1890, vyy1900, baa, bab) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(ty_Maybe, bcb), bbb, bbc) -> new_lt3(vyy1890, vyy1900, bcb) new_ltEs3(Just(vyy1890), Just(vyy1900), app(app(ty_Either, bfd), bfe)) -> new_ltEs0(vyy1890, vyy1900, bfd, bfe) new_compare21(vyy196, vyy197, False, ceh, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs1(vyy196, vyy197, cfe, cff, cfg) new_ltEs3(Just(vyy1890), Just(vyy1900), app(app(ty_@2, bfb), bfc)) -> new_ltEs(vyy1890, vyy1900, bfb, bfc) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(ty_Maybe, ca), bb) -> new_lt3(vyy1890, vyy1900, ca) new_compare23(vyy223, vyy224, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyy223, vyy224, ceg) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(app(app(ty_@3, cbh), cca), ccb), cac) -> new_lt1(vyy208, vyy211, cbh, cca, ccb) new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(ty_[], baf)) -> new_ltEs2(vyy1890, vyy1900, baf) new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(app(app(ty_@3, bac), bad), bae)), beh) -> new_ltEs1(vyy1890, vyy1900, bac, bad, bae) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb), beh) -> new_lt1(vyy1890, vyy1900, be, bf, bg) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(app(ty_Either, ccg), cch)) -> new_ltEs0(vyy209, vyy212, ccg, cch) new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(app(ty_Either, fd), ff), fc) -> new_compare0(vyy232, vyy234, fd, ff) new_lt2(vyy232, vyy234, gb) -> new_compare3(vyy232, vyy234, gb) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(vyy1891, vyy1901, cc, cd) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(app(app(ty_@3, bbf), bbg), bbh), bbb, bbc) -> new_lt1(vyy1890, vyy1900, bbf, bbg, bbh) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(app(ty_Either, bcf), bcg), bbc) -> new_lt0(vyy1891, vyy1901, bcf, bcg) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(app(ty_@2, bde), bdf)) -> new_ltEs(vyy1892, vyy1902, bde, bdf) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(ty_Maybe, ca)), bb), beh) -> new_lt3(vyy1890, vyy1900, ca) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(ty_[], cba), cab, cac) -> new_lt2(vyy207, vyy210, cba) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(ty_[], bed)), beh) -> new_ltEs2(vyy1892, vyy1902, bed) new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(ty_Maybe, bgb)), beh) -> new_ltEs3(vyy1890, vyy1900, bgb) new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(app(ty_@2, hg), hh)) -> new_ltEs(vyy1890, vyy1900, hg, hh) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(app(ty_@2, bcd), bce), bbc) -> new_lt(vyy1891, vyy1901, bcd, bce) new_compare0(Right(vyy600), Right(vyy50), bef, beg) -> new_compare21(vyy600, vyy50, new_esEs7(vyy600, vyy50, beg), bef, beg) new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(ty_Maybe, gc), fc) -> new_compare4(vyy232, vyy234, gc) new_ltEs0(Left(vyy1890), Left(vyy1900), app(ty_Maybe, he), gf) -> new_ltEs3(vyy1890, vyy1900, he) new_compare23(vyy223, vyy224, False, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vyy223, vyy224, cdg, cdh) new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(ty_Maybe, he)), gf), beh) -> new_ltEs3(vyy1890, vyy1900, he) new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(ty_[], fa)) -> new_ltEs2(vyy233, vyy235, fa) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(ty_Maybe, ccd), cac) -> new_lt3(vyy208, vyy211, ccd) new_lt1(vyy232, vyy234, fg, fh, ga) -> new_compare1(vyy232, vyy234, fg, fh, ga) new_primCompAux(vyy600, vyy50, vyy173, app(ty_[], bhc)) -> new_compare3(vyy600, vyy50, bhc) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(app(app(ty_@3, bea), beb), bec)), beh) -> new_ltEs1(vyy1892, vyy1902, bea, beb, bec) new_ltEs3(Just(vyy1890), Just(vyy1900), app(ty_Maybe, bgb)) -> new_ltEs3(vyy1890, vyy1900, bgb) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(app(ty_@2, h), ba), bb) -> new_lt(vyy1890, vyy1900, h, ba) new_compare1(@3(vyy600, vyy601, vyy602), @3(vyy50, vyy51, vyy52), bhe, bhf, bhg) -> new_compare22(vyy600, vyy601, vyy602, vyy50, vyy51, vyy52, new_asAs(new_esEs10(vyy600, vyy50, bhe), new_asAs(new_esEs9(vyy601, vyy51, bhf), new_esEs8(vyy602, vyy52, bhg))), bhe, bhf, bhg) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(ty_Maybe, dd)) -> new_ltEs3(vyy1891, vyy1901, dd) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(app(app(ty_@3, bbf), bbg), bbh)), bbb), bbc), beh) -> new_lt1(vyy1890, vyy1900, bbf, bbg, bbh) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(ty_Maybe, cde)) -> new_ltEs3(vyy209, vyy212, cde) new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(app(ty_Either, baa), bab)) -> new_ltEs0(vyy1890, vyy1900, baa, bab) new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(ty_Maybe, bag)), beh) -> new_ltEs3(vyy1890, vyy1900, bag) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), bbb), bbc), beh) -> new_lt3(vyy1890, vyy1900, bcb) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(app(ty_@2, bah), bba)), bbb), bbc), beh) -> new_lt(vyy1890, vyy1900, bah, bba) new_primCompAux(vyy600, vyy50, vyy173, app(app(ty_@2, bgd), bge)) -> new_compare(vyy600, vyy50, bgd, bge) new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(ty_[], hd)), gf), beh) -> new_ltEs2(vyy1890, vyy1900, hd) new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(app(ty_@2, eb), ec)) -> new_ltEs(vyy233, vyy235, eb, ec) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(app(ty_@2, bcd), bce)), bbc), beh) -> new_lt(vyy1891, vyy1901, bcd, bce) new_compare21(vyy196, vyy197, False, ceh, app(app(ty_Either, cfc), cfd)) -> new_ltEs0(vyy196, vyy197, cfc, cfd) new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(app(ty_@2, hg), hh)), beh) -> new_ltEs(vyy1890, vyy1900, hg, hh) new_ltEs0(Left(vyy1890), Left(vyy1900), app(app(ty_Either, gg), gh), gf) -> new_ltEs0(vyy1890, vyy1900, gg, gh) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(app(ty_Either, bc), bd), bb) -> new_lt0(vyy1890, vyy1900, bc, bd) new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(app(ty_@2, de), df), fc) -> new_compare(vyy232, vyy234, de, df) new_compare20(vyy189, vyy190, False, app(ty_[], bfa), beh) -> new_compare3(vyy189, vyy190, bfa) new_compare4(Just(vyy600), Just(vyy50), cdf) -> new_compare23(vyy600, vyy50, new_esEs11(vyy600, vyy50, cdf), cdf) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(app(ty_Either, ce), cf)) -> new_ltEs0(vyy1891, vyy1901, ce, cf) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(app(ty_Either, ce), cf)), beh) -> new_ltEs0(vyy1891, vyy1901, ce, cf) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(app(ty_@2, cbd), cbe), cac) -> new_lt(vyy208, vyy211, cbd, cbe) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(app(app(ty_@3, be), bf), bg), bb) -> new_lt1(vyy1890, vyy1900, be, bf, bg) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(ty_[], bca)), bbb), bbc), beh) -> new_lt2(vyy1890, vyy1900, bca) new_ltEs3(Just(vyy1890), Just(vyy1900), app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs1(vyy1890, vyy1900, bff, bfg, bfh) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(ty_Maybe, bdd)), bbc), beh) -> new_lt3(vyy1891, vyy1901, bdd) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(ty_Maybe, bdd), bbc) -> new_lt3(vyy1891, vyy1901, bdd) new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(ty_[], baf)), beh) -> new_ltEs2(vyy1890, vyy1900, baf) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(app(app(ty_@3, caf), cag), cah), cab, cac) -> new_lt1(vyy207, vyy210, caf, cag, cah) new_primCompAux(vyy600, vyy50, vyy173, app(app(ty_Either, bgf), bgg)) -> new_compare0(vyy600, vyy50, bgf, bgg) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db)), beh) -> new_ltEs1(vyy1891, vyy1901, cg, da, db) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(app(ty_Either, bbd), bbe)), bbb), bbc), beh) -> new_lt0(vyy1890, vyy1900, bbd, bbe) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs1(vyy1892, vyy1902, bea, beb, bec) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb), beh) -> new_lt(vyy1890, vyy1900, h, ba) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(app(ty_@2, bde), bdf)), beh) -> new_ltEs(vyy1892, vyy1902, bde, bdf) new_compare3(:(vyy600, vyy601), :(vyy50, vyy51), bgc) -> new_primCompAux(vyy600, vyy50, new_compare5(vyy601, vyy51, bgc), bgc) new_compare21(vyy196, vyy197, False, ceh, app(ty_[], cfh)) -> new_ltEs2(vyy196, vyy197, cfh) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(ty_Maybe, bee)) -> new_ltEs3(vyy1892, vyy1902, bee) new_lt(vyy232, vyy234, de, df) -> new_compare(vyy232, vyy234, de, df) new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(ty_Maybe, fb)) -> new_ltEs3(vyy233, vyy235, fb) new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(ty_Maybe, bag)) -> new_ltEs3(vyy1890, vyy1900, bag) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(app(ty_Either, cad), cae), cab, cac) -> new_lt0(vyy207, vyy210, cad, cae) new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(ty_[], bh)), bb), beh) -> new_lt2(vyy1890, vyy1900, bh) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(app(ty_Either, cbf), cbg), cac) -> new_lt0(vyy208, vyy211, cbf, cbg) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(ty_Maybe, bee)), beh) -> new_ltEs3(vyy1892, vyy1902, bee) new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(app(app(ty_@3, bch), bda), bdb)), bbc), beh) -> new_lt1(vyy1891, vyy1901, bch, bda, bdb) new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(ty_[], bga)), beh) -> new_ltEs2(vyy1890, vyy1900, bga) new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(ty_[], bca), bbb, bbc) -> new_lt2(vyy1890, vyy1900, bca) new_compare0(Left(vyy600), Left(vyy50), bef, beg) -> new_compare20(vyy600, vyy50, new_esEs6(vyy600, vyy50, bef), bef, beg) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(ty_[], bh), bb) -> new_lt2(vyy1890, vyy1900, bh) new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(app(ty_Either, bfd), bfe)), beh) -> new_ltEs0(vyy1890, vyy1900, bfd, bfe) new_lt0(vyy232, vyy234, fd, ff) -> new_compare0(vyy232, vyy234, fd, ff) new_primCompAux(vyy600, vyy50, vyy173, app(app(app(ty_@3, bgh), bha), bhb)) -> new_compare1(vyy600, vyy50, bgh, bha, bhb) new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(app(ty_@2, cce), ccf)) -> new_ltEs(vyy209, vyy212, cce, ccf) new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(ty_[], dc)) -> new_ltEs2(vyy1891, vyy1901, dc) The TRS R consists of the following rules: new_lt8(vyy1891, vyy1901, ty_Float) -> new_lt16(vyy1891, vyy1901) new_esEs27(vyy1890, vyy1900, ty_Double) -> new_esEs15(vyy1890, vyy1900) new_esEs8(vyy602, vyy52, app(app(ty_@2, fcg), fch)) -> new_esEs22(vyy602, vyy52, fcg, fch) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt21(vyy208, vyy211, app(ty_Maybe, ccd)) -> new_lt19(vyy208, vyy211, ccd) new_primCmpInt(Neg(Succ(vyy6000)), Pos(vyy50)) -> LT new_esEs36(vyy1890, vyy1900, ty_Int) -> new_esEs14(vyy1890, vyy1900) new_esEs26(vyy1891, vyy1901, app(ty_Ratio, dab)) -> new_esEs21(vyy1891, vyy1901, dab) new_ltEs4(vyy223, vyy224, ty_Double) -> new_ltEs6(vyy223, vyy224) new_esEs35(vyy6000, vyy500, app(app(ty_@2, fba), fbb)) -> new_esEs22(vyy6000, vyy500, fba, fbb) new_pePe(True, vyy311) -> True new_compare18(Double(vyy600, Pos(vyy6010)), Double(vyy50, Neg(vyy510))) -> new_compare12(new_sr(vyy600, Pos(vyy510)), new_sr(Neg(vyy6010), vyy50)) new_compare18(Double(vyy600, Neg(vyy6010)), Double(vyy50, Pos(vyy510))) -> new_compare12(new_sr(vyy600, Neg(vyy510)), new_sr(Pos(vyy6010), vyy50)) new_esEs19(Just(vyy6000), Just(vyy500), app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs23(vyy6000, vyy500, ffe, fff, ffg) new_lt21(vyy208, vyy211, ty_@0) -> new_lt4(vyy208, vyy211) new_esEs10(vyy600, vyy50, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs23(vyy600, vyy50, ehc, ehd, ehe) new_esEs10(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_esEs19(Just(vyy6000), Just(vyy500), ty_Integer) -> new_esEs12(vyy6000, vyy500) new_esEs9(vyy601, vyy51, ty_Int) -> new_esEs14(vyy601, vyy51) new_esEs19(Just(vyy6000), Just(vyy500), ty_Bool) -> new_esEs24(vyy6000, vyy500) new_lt8(vyy1891, vyy1901, app(app(app(ty_@3, bch), bda), bdb)) -> new_lt15(vyy1891, vyy1901, bch, bda, bdb) new_ltEs24(vyy233, vyy235, ty_@0) -> new_ltEs10(vyy233, vyy235) new_esEs24(True, True) -> True new_esEs17(Right(vyy6000), Right(vyy500), eeg, ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_esEs10(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_ltEs4(vyy223, vyy224, ty_Char) -> new_ltEs7(vyy223, vyy224) new_esEs17(Right(vyy6000), Right(vyy500), eeg, app(ty_[], efb)) -> new_esEs18(vyy6000, vyy500, efb) new_ltEs20(vyy189, vyy190, ty_Integer) -> new_ltEs18(vyy189, vyy190) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_lt23(vyy232, vyy234, app(app(ty_Either, fd), ff)) -> new_lt14(vyy232, vyy234, fd, ff) new_primCmpInt(Pos(Zero), Neg(Succ(vyy500))) -> GT new_esEs6(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_compare111(vyy282, vyy283, vyy284, vyy285, False, vyy287, fgg, fgh) -> new_compare112(vyy282, vyy283, vyy284, vyy285, vyy287, fgg, fgh) new_esEs32(vyy6000, vyy500, app(ty_Ratio, ebd)) -> new_esEs21(vyy6000, vyy500, ebd) new_ltEs20(vyy189, vyy190, ty_Float) -> new_ltEs13(vyy189, vyy190) new_lt23(vyy232, vyy234, app(ty_Ratio, cgd)) -> new_lt5(vyy232, vyy234, cgd) new_esEs11(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_compare13(Nothing, Nothing, cdf) -> EQ new_lt8(vyy1891, vyy1901, ty_Ordering) -> new_lt18(vyy1891, vyy1901) new_esEs29(vyy6001, vyy501, app(app(ty_@2, dfb), dfc)) -> new_esEs22(vyy6001, vyy501, dfb, dfc) new_ltEs7(vyy189, vyy190) -> new_fsEs(new_compare14(vyy189, vyy190)) new_primCmpInt(Neg(Succ(vyy6000)), Neg(vyy50)) -> new_primCmpNat0(vyy50, Succ(vyy6000)) new_esEs7(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_esEs28(vyy6002, vyy502, ty_Char) -> new_esEs20(vyy6002, vyy502) new_esEs5(vyy600, vyy50, app(ty_Ratio, ehh)) -> new_esEs21(vyy600, vyy50, ehh) new_esEs20(Char(vyy6000), Char(vyy500)) -> new_primEqNat0(vyy6000, vyy500) new_esEs17(Left(vyy6000), Left(vyy500), app(ty_[], edg), edd) -> new_esEs18(vyy6000, vyy500, edg) new_ltEs24(vyy233, vyy235, app(ty_Ratio, fgd)) -> new_ltEs15(vyy233, vyy235, fgd) new_compare16(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, False, dha, dhb, dhc) -> GT new_esEs11(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_esEs37(vyy232, vyy234, ty_@0) -> new_esEs25(vyy232, vyy234) new_esEs34(vyy207, vyy210, ty_Char) -> new_esEs20(vyy207, vyy210) new_compare25(vyy189, vyy190, False, egb, beh) -> new_compare17(vyy189, vyy190, new_ltEs20(vyy189, vyy190, egb), egb, beh) new_esEs9(vyy601, vyy51, app(ty_Ratio, chc)) -> new_esEs21(vyy601, vyy51, chc) new_esEs35(vyy6000, vyy500, ty_Bool) -> new_esEs24(vyy6000, vyy500) new_esEs27(vyy1890, vyy1900, ty_Ordering) -> new_esEs13(vyy1890, vyy1900) new_compare211(vyy232, vyy233, vyy234, vyy235, False, ea, fc) -> new_compare111(vyy232, vyy233, vyy234, vyy235, new_lt23(vyy232, vyy234, ea), new_asAs(new_esEs37(vyy232, vyy234, ea), new_ltEs24(vyy233, vyy235, fc)), ea, fc) new_lt23(vyy232, vyy234, ty_Double) -> new_lt10(vyy232, vyy234) new_esEs36(vyy1890, vyy1900, app(ty_Ratio, ffh)) -> new_esEs21(vyy1890, vyy1900, ffh) new_lt7(vyy1890, vyy1900, app(app(ty_@2, bah), bba)) -> new_lt13(vyy1890, vyy1900, bah, bba) new_esEs35(vyy6000, vyy500, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs23(vyy6000, vyy500, fbc, fbd, fbe) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_@0, gf) -> new_ltEs10(vyy1890, vyy1900) new_esEs8(vyy602, vyy52, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs23(vyy602, vyy52, fda, fdb, fdc) new_esEs4(vyy601, vyy51, ty_Integer) -> new_esEs12(vyy601, vyy51) new_lt22(vyy1890, vyy1900, ty_Integer) -> new_lt6(vyy1890, vyy1900) new_ltEs22(vyy196, vyy197, app(ty_[], cfh)) -> new_ltEs14(vyy196, vyy197, cfh) new_esEs37(vyy232, vyy234, ty_Double) -> new_esEs15(vyy232, vyy234) new_lt11(vyy232, vyy234) -> new_esEs13(new_compare14(vyy232, vyy234), LT) new_esEs15(Double(vyy6000, vyy6001), Double(vyy500, vyy501)) -> new_esEs14(new_sr(vyy6000, vyy501), new_sr(vyy6001, vyy500)) new_esEs31(vyy6001, vyy501, ty_Integer) -> new_esEs12(vyy6001, vyy501) new_compare28(Left(vyy600), Left(vyy50), bef, beg) -> new_compare25(vyy600, vyy50, new_esEs6(vyy600, vyy50, bef), bef, beg) new_ltEs24(vyy233, vyy235, ty_Bool) -> new_ltEs5(vyy233, vyy235) new_primEqInt(Pos(Succ(vyy60000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyy5000))) -> False new_ltEs21(vyy209, vyy212, ty_Ordering) -> new_ltEs16(vyy209, vyy212) new_esEs33(vyy208, vyy211, ty_Ordering) -> new_esEs13(vyy208, vyy211) new_compare210(vyy196, vyy197, True, ceh, fbg) -> EQ new_esEs8(vyy602, vyy52, ty_Bool) -> new_esEs24(vyy602, vyy52) new_esEs29(vyy6001, vyy501, ty_Bool) -> new_esEs24(vyy6001, vyy501) new_esEs19(Just(vyy6000), Just(vyy500), app(app(ty_Either, fef), feg)) -> new_esEs17(vyy6000, vyy500, fef, feg) new_esEs10(vyy600, vyy50, app(app(ty_@2, eha), ehb)) -> new_esEs22(vyy600, vyy50, eha, ehb) new_lt20(vyy207, vyy210, app(app(ty_@2, bhh), caa)) -> new_lt13(vyy207, vyy210, bhh, caa) new_esEs7(vyy600, vyy50, app(ty_[], fdf)) -> new_esEs18(vyy600, vyy50, fdf) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, ty_Char) -> new_ltEs7(vyy1890, vyy1900) new_ltEs4(vyy223, vyy224, ty_Int) -> new_ltEs8(vyy223, vyy224) new_esEs34(vyy207, vyy210, app(ty_[], cba)) -> new_esEs18(vyy207, vyy210, cba) new_esEs17(Left(vyy6000), Left(vyy500), app(app(app(ty_@3, eed), eee), eef), edd) -> new_esEs23(vyy6000, vyy500, eed, eee, eef) new_lt18(vyy232, vyy234) -> new_esEs13(new_compare30(vyy232, vyy234), LT) new_primEqNat0(Succ(vyy60000), Succ(vyy5000)) -> new_primEqNat0(vyy60000, vyy5000) new_ltEs21(vyy209, vyy212, ty_Char) -> new_ltEs7(vyy209, vyy212) new_esEs5(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_esEs26(vyy1891, vyy1901, ty_Float) -> new_esEs16(vyy1891, vyy1901) new_ltEs22(vyy196, vyy197, ty_Double) -> new_ltEs6(vyy196, vyy197) new_esEs18([], [], ehf) -> True new_compare13(Just(vyy600), Nothing, cdf) -> GT new_esEs32(vyy6000, vyy500, ty_Float) -> new_esEs16(vyy6000, vyy500) new_esEs28(vyy6002, vyy502, app(ty_[], dde)) -> new_esEs18(vyy6002, vyy502, dde) new_not(True) -> False new_lt20(vyy207, vyy210, ty_Float) -> new_lt16(vyy207, vyy210) new_esEs30(vyy6000, vyy500, app(app(ty_@2, dgd), dge)) -> new_esEs22(vyy6000, vyy500, dgd, dge) new_primCompAux00(vyy217, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_compare17(vyy255, vyy256, False, fge, fgf) -> GT new_esEs10(vyy600, vyy50, app(app(ty_Either, egd), ege)) -> new_esEs17(vyy600, vyy50, egd, ege) new_ltEs24(vyy233, vyy235, ty_Float) -> new_ltEs13(vyy233, vyy235) new_esEs9(vyy601, vyy51, app(ty_Maybe, chb)) -> new_esEs19(vyy601, vyy51, chb) new_esEs6(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_esEs17(Left(vyy6000), Left(vyy500), ty_Float, edd) -> new_esEs16(vyy6000, vyy500) new_esEs32(vyy6000, vyy500, ty_Int) -> new_esEs14(vyy6000, vyy500) new_esEs26(vyy1891, vyy1901, ty_@0) -> new_esEs25(vyy1891, vyy1901) new_esEs32(vyy6000, vyy500, ty_@0) -> new_esEs25(vyy6000, vyy500) new_ltEs16(GT, EQ) -> False new_lt20(vyy207, vyy210, app(app(app(ty_@3, caf), cag), cah)) -> new_lt15(vyy207, vyy210, caf, cag, cah) new_ltEs21(vyy209, vyy212, ty_Double) -> new_ltEs6(vyy209, vyy212) new_ltEs24(vyy233, vyy235, ty_Integer) -> new_ltEs18(vyy233, vyy235) new_compare26(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, cac) -> new_compare15(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, new_lt20(vyy207, vyy210, cbc), new_asAs(new_esEs34(vyy207, vyy210, cbc), new_pePe(new_lt21(vyy208, vyy211, cab), new_asAs(new_esEs33(vyy208, vyy211, cab), new_ltEs21(vyy209, vyy212, cac)))), cbc, cab, cac) new_compare15(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, True, vyy304, dha, dhb, dhc) -> new_compare16(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, True, dha, dhb, dhc) new_lt8(vyy1891, vyy1901, app(ty_Maybe, bdd)) -> new_lt19(vyy1891, vyy1901, bdd) new_compare30(LT, LT) -> EQ new_esEs8(vyy602, vyy52, app(app(ty_Either, fcb), fcc)) -> new_esEs17(vyy602, vyy52, fcb, fcc) new_esEs17(Right(vyy6000), Right(vyy500), eeg, ty_@0) -> new_esEs25(vyy6000, vyy500) new_compare13(Nothing, Just(vyy50), cdf) -> LT new_esEs31(vyy6001, vyy501, ty_Float) -> new_esEs16(vyy6001, vyy501) new_esEs11(vyy600, vyy50, app(app(ty_Either, dbf), dbg)) -> new_esEs17(vyy600, vyy50, dbf, dbg) new_esEs11(vyy600, vyy50, app(ty_Maybe, dca)) -> new_esEs19(vyy600, vyy50, dca) new_primEqNat0(Succ(vyy60000), Zero) -> False new_primEqNat0(Zero, Succ(vyy5000)) -> False new_esEs29(vyy6001, vyy501, ty_Integer) -> new_esEs12(vyy6001, vyy501) new_esEs12(Integer(vyy6000), Integer(vyy500)) -> new_primEqInt(vyy6000, vyy500) new_ltEs21(vyy209, vyy212, app(ty_[], cdd)) -> new_ltEs14(vyy209, vyy212, cdd) new_esEs17(Left(vyy6000), Left(vyy500), ty_Integer, edd) -> new_esEs12(vyy6000, vyy500) new_lt23(vyy232, vyy234, ty_Integer) -> new_lt6(vyy232, vyy234) new_lt7(vyy1890, vyy1900, ty_Char) -> new_lt11(vyy1890, vyy1900) new_esEs30(vyy6000, vyy500, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_esEs24(False, True) -> False new_esEs24(True, False) -> False new_esEs4(vyy601, vyy51, app(app(ty_@2, dba), dbb)) -> new_esEs22(vyy601, vyy51, dba, dbb) new_esEs30(vyy6000, vyy500, ty_Char) -> new_esEs20(vyy6000, vyy500) new_ltEs13(vyy189, vyy190) -> new_fsEs(new_compare11(vyy189, vyy190)) new_ltEs23(vyy1891, vyy1901, app(app(ty_@2, cc), cd)) -> new_ltEs9(vyy1891, vyy1901, cc, cd) new_lt21(vyy208, vyy211, ty_Float) -> new_lt16(vyy208, vyy211) new_esEs31(vyy6001, vyy501, ty_Int) -> new_esEs14(vyy6001, vyy501) new_primCompAux00(vyy217, GT) -> GT new_ltEs19(vyy1892, vyy1902, ty_Float) -> new_ltEs13(vyy1892, vyy1902) new_esEs34(vyy207, vyy210, ty_Ordering) -> new_esEs13(vyy207, vyy210) new_lt5(vyy232, vyy234, cgd) -> new_esEs13(new_compare9(vyy232, vyy234, cgd), LT) new_esEs31(vyy6001, vyy501, app(ty_Ratio, eab)) -> new_esEs21(vyy6001, vyy501, eab) new_esEs13(LT, LT) -> True new_esEs4(vyy601, vyy51, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs23(vyy601, vyy51, dbc, dbd, dbe) new_compare210(vyy196, vyy197, False, ceh, fbg) -> new_compare110(vyy196, vyy197, new_ltEs22(vyy196, vyy197, fbg), ceh, fbg) new_lt20(vyy207, vyy210, ty_Int) -> new_lt12(vyy207, vyy210) new_compare30(GT, GT) -> EQ new_esEs9(vyy601, vyy51, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs23(vyy601, vyy51, chf, chg, chh) new_lt7(vyy1890, vyy1900, app(ty_Ratio, daa)) -> new_lt5(vyy1890, vyy1900, daa) new_esEs19(Just(vyy6000), Just(vyy500), app(app(ty_@2, ffc), ffd)) -> new_esEs22(vyy6000, vyy500, ffc, ffd) new_esEs4(vyy601, vyy51, app(app(ty_Either, dad), dae)) -> new_esEs17(vyy601, vyy51, dad, dae) new_primCmpInt(Pos(Succ(vyy6000)), Neg(vyy50)) -> GT new_esEs6(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_lt22(vyy1890, vyy1900, app(ty_[], bh)) -> new_lt17(vyy1890, vyy1900, bh) new_ltEs20(vyy189, vyy190, ty_@0) -> new_ltEs10(vyy189, vyy190) new_ltEs10(vyy189, vyy190) -> new_fsEs(new_compare7(vyy189, vyy190)) new_esEs33(vyy208, vyy211, app(ty_[], ccc)) -> new_esEs18(vyy208, vyy211, ccc) new_compare112(vyy282, vyy283, vyy284, vyy285, True, fgg, fgh) -> LT new_ltEs11(Left(vyy1890), Right(vyy1900), hf, gf) -> True new_esEs4(vyy601, vyy51, ty_Bool) -> new_esEs24(vyy601, vyy51) new_esEs17(Right(vyy6000), Right(vyy500), eeg, ty_Char) -> new_esEs20(vyy6000, vyy500) new_compare19(vyy600, vyy50, app(app(app(ty_@3, bgh), bha), bhb)) -> new_compare29(vyy600, vyy50, bgh, bha, bhb) new_ltEs16(LT, LT) -> True new_esEs35(vyy6000, vyy500, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_ltEs4(vyy223, vyy224, app(ty_Maybe, ceg)) -> new_ltEs17(vyy223, vyy224, ceg) new_esEs26(vyy1891, vyy1901, ty_Int) -> new_esEs14(vyy1891, vyy1901) new_ltEs5(False, True) -> True new_ltEs20(vyy189, vyy190, app(app(app(ty_@3, bcc), bbb), bbc)) -> new_ltEs12(vyy189, vyy190, bcc, bbb, bbc) new_compare110(vyy262, vyy263, True, fgb, fgc) -> LT new_ltEs19(vyy1892, vyy1902, ty_Integer) -> new_ltEs18(vyy1892, vyy1902) new_esEs37(vyy232, vyy234, app(ty_Ratio, cgd)) -> new_esEs21(vyy232, vyy234, cgd) new_esEs5(vyy600, vyy50, app(ty_Maybe, ehg)) -> new_esEs19(vyy600, vyy50, ehg) new_esEs28(vyy6002, vyy502, ty_Ordering) -> new_esEs13(vyy6002, vyy502) new_esEs33(vyy208, vyy211, ty_Double) -> new_esEs15(vyy208, vyy211) new_esEs37(vyy232, vyy234, ty_Int) -> new_esEs14(vyy232, vyy234) new_primPlusNat1(Succ(vyy31200), Succ(vyy601000)) -> Succ(Succ(new_primPlusNat1(vyy31200, vyy601000))) new_lt7(vyy1890, vyy1900, ty_Ordering) -> new_lt18(vyy1890, vyy1900) new_compare5(:(vyy600, vyy601), [], bgc) -> GT new_primCmpNat0(Zero, Succ(vyy500)) -> LT new_ltEs23(vyy1891, vyy1901, ty_Bool) -> new_ltEs5(vyy1891, vyy1901) new_lt21(vyy208, vyy211, app(app(app(ty_@3, cbh), cca), ccb)) -> new_lt15(vyy208, vyy211, cbh, cca, ccb) new_ltEs19(vyy1892, vyy1902, ty_@0) -> new_ltEs10(vyy1892, vyy1902) new_ltEs22(vyy196, vyy197, ty_Int) -> new_ltEs8(vyy196, vyy197) new_esEs9(vyy601, vyy51, app(app(ty_Either, cgg), cgh)) -> new_esEs17(vyy601, vyy51, cgg, cgh) new_ltEs19(vyy1892, vyy1902, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs12(vyy1892, vyy1902, bea, beb, bec) new_lt8(vyy1891, vyy1901, ty_@0) -> new_lt4(vyy1891, vyy1901) new_esEs17(Right(vyy6000), Right(vyy500), eeg, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs23(vyy6000, vyy500, efg, efh, ega) new_lt23(vyy232, vyy234, ty_Char) -> new_lt11(vyy232, vyy234) new_esEs36(vyy1890, vyy1900, ty_Float) -> new_esEs16(vyy1890, vyy1900) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Bool, gf) -> new_ltEs5(vyy1890, vyy1900) new_esEs9(vyy601, vyy51, ty_Bool) -> new_esEs24(vyy601, vyy51) new_esEs8(vyy602, vyy52, app(ty_[], fcd)) -> new_esEs18(vyy602, vyy52, fcd) new_lt7(vyy1890, vyy1900, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt15(vyy1890, vyy1900, bbf, bbg, bbh) new_ltEs19(vyy1892, vyy1902, ty_Double) -> new_ltEs6(vyy1892, vyy1902) new_primCmpNat0(Succ(vyy6000), Zero) -> GT new_esEs10(vyy600, vyy50, app(ty_Ratio, egh)) -> new_esEs21(vyy600, vyy50, egh) new_esEs11(vyy600, vyy50, app(app(ty_@2, dcc), dcd)) -> new_esEs22(vyy600, vyy50, dcc, dcd) new_esEs8(vyy602, vyy52, ty_Float) -> new_esEs16(vyy602, vyy52) new_ltEs19(vyy1892, vyy1902, ty_Char) -> new_ltEs7(vyy1892, vyy1902) new_ltEs17(Nothing, Nothing, cge) -> True new_pePe(False, vyy311) -> vyy311 new_esEs31(vyy6001, vyy501, app(ty_Maybe, eaa)) -> new_esEs19(vyy6001, vyy501, eaa) new_lt22(vyy1890, vyy1900, app(ty_Ratio, ffh)) -> new_lt5(vyy1890, vyy1900, ffh) new_ltEs23(vyy1891, vyy1901, ty_Int) -> new_ltEs8(vyy1891, vyy1901) new_ltEs17(Nothing, Just(vyy1900), cge) -> True new_esEs26(vyy1891, vyy1901, ty_Integer) -> new_esEs12(vyy1891, vyy1901) new_esEs33(vyy208, vyy211, app(ty_Ratio, fab)) -> new_esEs21(vyy208, vyy211, fab) new_lt20(vyy207, vyy210, ty_Double) -> new_lt10(vyy207, vyy210) new_ltEs17(Just(vyy1890), Nothing, cge) -> False new_esEs27(vyy1890, vyy1900, app(ty_[], bca)) -> new_esEs18(vyy1890, vyy1900, bca) new_ltEs20(vyy189, vyy190, app(ty_Maybe, cge)) -> new_ltEs17(vyy189, vyy190, cge) new_compare25(vyy189, vyy190, True, egb, beh) -> EQ new_ltEs23(vyy1891, vyy1901, app(ty_Ratio, fga)) -> new_ltEs15(vyy1891, vyy1901, fga) new_lt7(vyy1890, vyy1900, app(app(ty_Either, bbd), bbe)) -> new_lt14(vyy1890, vyy1900, bbd, bbe) new_compare19(vyy600, vyy50, ty_Float) -> new_compare11(vyy600, vyy50) new_esEs27(vyy1890, vyy1900, ty_Char) -> new_esEs20(vyy1890, vyy1900) new_lt20(vyy207, vyy210, ty_Char) -> new_lt11(vyy207, vyy210) new_esEs35(vyy6000, vyy500, ty_Float) -> new_esEs16(vyy6000, vyy500) new_compare11(Float(vyy600, Pos(vyy6010)), Float(vyy50, Neg(vyy510))) -> new_compare12(new_sr(vyy600, Pos(vyy510)), new_sr(Neg(vyy6010), vyy50)) new_compare11(Float(vyy600, Neg(vyy6010)), Float(vyy50, Pos(vyy510))) -> new_compare12(new_sr(vyy600, Neg(vyy510)), new_sr(Pos(vyy6010), vyy50)) new_ltEs16(LT, GT) -> True new_esEs36(vyy1890, vyy1900, ty_@0) -> new_esEs25(vyy1890, vyy1900) new_ltEs11(Left(vyy1890), Left(vyy1900), app(ty_Maybe, he), gf) -> new_ltEs17(vyy1890, vyy1900, he) new_esEs10(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_esEs35(vyy6000, vyy500, ty_Int) -> new_esEs14(vyy6000, vyy500) new_lt22(vyy1890, vyy1900, ty_Char) -> new_lt11(vyy1890, vyy1900) new_compare19(vyy600, vyy50, app(app(ty_@2, bgd), bge)) -> new_compare27(vyy600, vyy50, bgd, bge) new_esEs30(vyy6000, vyy500, app(app(ty_Either, dfg), dfh)) -> new_esEs17(vyy6000, vyy500, dfg, dfh) new_esEs26(vyy1891, vyy1901, ty_Ordering) -> new_esEs13(vyy1891, vyy1901) new_esEs29(vyy6001, vyy501, app(ty_[], deg)) -> new_esEs18(vyy6001, vyy501, deg) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_esEs13(GT, GT) -> True new_esEs21(:%(vyy6000, vyy6001), :%(vyy500, vyy501), ehh) -> new_asAs(new_esEs39(vyy6000, vyy500, ehh), new_esEs38(vyy6001, vyy501, ehh)) new_compare10(vyy272, vyy273, False, fca) -> GT new_esEs8(vyy602, vyy52, app(ty_Ratio, fcf)) -> new_esEs21(vyy602, vyy52, fcf) new_esEs7(vyy600, vyy50, app(app(ty_@2, fea), feb)) -> new_esEs22(vyy600, vyy50, fea, feb) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, ty_Float) -> new_ltEs13(vyy1890, vyy1900) new_esEs7(vyy600, vyy50, app(app(app(ty_@3, fec), fed), fee)) -> new_esEs23(vyy600, vyy50, fec, fed, fee) new_esEs34(vyy207, vyy210, app(app(ty_@2, bhh), caa)) -> new_esEs22(vyy207, vyy210, bhh, caa) new_esEs35(vyy6000, vyy500, app(ty_Ratio, fah)) -> new_esEs21(vyy6000, vyy500, fah) new_lt22(vyy1890, vyy1900, ty_Double) -> new_lt10(vyy1890, vyy1900) new_esEs19(Just(vyy6000), Just(vyy500), app(ty_Ratio, ffb)) -> new_esEs21(vyy6000, vyy500, ffb) new_primEqInt(Pos(Zero), Neg(Succ(vyy5000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyy5000))) -> False new_compare24(vyy223, vyy224, True, cgb) -> EQ new_compare211(vyy232, vyy233, vyy234, vyy235, True, ea, fc) -> EQ new_esEs7(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_compare111(vyy282, vyy283, vyy284, vyy285, True, vyy287, fgg, fgh) -> new_compare112(vyy282, vyy283, vyy284, vyy285, True, fgg, fgh) new_ltEs16(GT, LT) -> False new_esEs28(vyy6002, vyy502, ty_Bool) -> new_esEs24(vyy6002, vyy502) new_esEs8(vyy602, vyy52, ty_Int) -> new_esEs14(vyy602, vyy52) new_lt22(vyy1890, vyy1900, app(app(ty_Either, bc), bd)) -> new_lt14(vyy1890, vyy1900, bc, bd) new_esEs29(vyy6001, vyy501, app(app(ty_Either, dee), def)) -> new_esEs17(vyy6001, vyy501, dee, def) new_esEs5(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_esEs33(vyy208, vyy211, app(ty_Maybe, ccd)) -> new_esEs19(vyy208, vyy211, ccd) new_esEs19(Just(vyy6000), Just(vyy500), ty_Float) -> new_esEs16(vyy6000, vyy500) new_compare5([], :(vyy50, vyy51), bgc) -> LT new_lt23(vyy232, vyy234, app(ty_[], gb)) -> new_lt17(vyy232, vyy234, gb) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, ty_Integer) -> new_ltEs18(vyy1890, vyy1900) new_esEs32(vyy6000, vyy500, ty_Double) -> new_esEs15(vyy6000, vyy500) new_esEs10(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_ltEs21(vyy209, vyy212, ty_Float) -> new_ltEs13(vyy209, vyy212) new_primEqInt(Neg(Succ(vyy60000)), Neg(Succ(vyy5000))) -> new_primEqNat0(vyy60000, vyy5000) new_ltEs19(vyy1892, vyy1902, app(ty_Maybe, bee)) -> new_ltEs17(vyy1892, vyy1902, bee) new_esEs28(vyy6002, vyy502, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs23(vyy6002, vyy502, deb, dec, ded) new_ltEs22(vyy196, vyy197, app(ty_Maybe, cga)) -> new_ltEs17(vyy196, vyy197, cga) new_ltEs4(vyy223, vyy224, ty_Ordering) -> new_ltEs16(vyy223, vyy224) new_compare30(LT, GT) -> LT new_lt23(vyy232, vyy234, app(app(ty_@2, de), df)) -> new_lt13(vyy232, vyy234, de, df) new_ltEs19(vyy1892, vyy1902, app(ty_[], bed)) -> new_ltEs14(vyy1892, vyy1902, bed) new_primCmpInt(Neg(Zero), Pos(Succ(vyy500))) -> LT new_esEs29(vyy6001, vyy501, ty_Char) -> new_esEs20(vyy6001, vyy501) new_lt22(vyy1890, vyy1900, app(app(app(ty_@3, be), bf), bg)) -> new_lt15(vyy1890, vyy1900, be, bf, bg) new_esEs10(vyy600, vyy50, app(ty_Maybe, egg)) -> new_esEs19(vyy600, vyy50, egg) new_primMulInt(Pos(vyy500), Pos(vyy6010)) -> Pos(new_primMulNat0(vyy500, vyy6010)) new_ltEs9(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, bb) -> new_pePe(new_lt22(vyy1890, vyy1900, cb), new_asAs(new_esEs36(vyy1890, vyy1900, cb), new_ltEs23(vyy1891, vyy1901, bb))) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Ordering, gf) -> new_ltEs16(vyy1890, vyy1900) new_esEs37(vyy232, vyy234, ty_Char) -> new_esEs20(vyy232, vyy234) new_esEs13(EQ, GT) -> False new_esEs13(GT, EQ) -> False new_compare9(:%(vyy600, vyy601), :%(vyy50, vyy51), ty_Integer) -> new_compare8(new_sr0(vyy600, vyy51), new_sr0(vyy50, vyy601)) new_esEs39(vyy6000, vyy500, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_esEs5(vyy600, vyy50, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs23(vyy600, vyy50, dch, dda, ddb) new_ltEs4(vyy223, vyy224, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs12(vyy223, vyy224, cec, ced, cee) new_compare19(vyy600, vyy50, app(ty_Ratio, fbf)) -> new_compare9(vyy600, vyy50, fbf) new_esEs28(vyy6002, vyy502, ty_Double) -> new_esEs15(vyy6002, vyy502) new_esEs5(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_lt7(vyy1890, vyy1900, ty_Double) -> new_lt10(vyy1890, vyy1900) new_compare10(vyy272, vyy273, True, fca) -> LT new_ltEs23(vyy1891, vyy1901, ty_Float) -> new_ltEs13(vyy1891, vyy1901) new_esEs9(vyy601, vyy51, app(app(ty_@2, chd), che)) -> new_esEs22(vyy601, vyy51, chd, che) new_primMulNat0(Succ(vyy5000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyy60100)) -> Zero new_primPlusNat0(Zero, vyy60100) -> Succ(vyy60100) new_esEs32(vyy6000, vyy500, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs23(vyy6000, vyy500, ebg, ebh, eca) new_ltEs11(Right(vyy1890), Left(vyy1900), hf, gf) -> False new_ltEs4(vyy223, vyy224, app(app(ty_Either, cea), ceb)) -> new_ltEs11(vyy223, vyy224, cea, ceb) new_esEs17(Left(vyy6000), Left(vyy500), ty_@0, edd) -> new_esEs25(vyy6000, vyy500) new_esEs32(vyy6000, vyy500, app(app(ty_Either, eah), eba)) -> new_esEs17(vyy6000, vyy500, eah, eba) new_compare5(:(vyy600, vyy601), :(vyy50, vyy51), bgc) -> new_primCompAux0(vyy600, vyy50, new_compare5(vyy601, vyy51, bgc), bgc) new_esEs5(vyy600, vyy50, app(app(ty_Either, eeg), edd)) -> new_esEs17(vyy600, vyy50, eeg, edd) new_compare19(vyy600, vyy50, ty_Bool) -> new_compare6(vyy600, vyy50) new_esEs6(vyy600, vyy50, app(ty_Maybe, ece)) -> new_esEs19(vyy600, vyy50, ece) new_ltEs21(vyy209, vyy212, ty_Integer) -> new_ltEs18(vyy209, vyy212) new_esEs7(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_ltEs15(vyy189, vyy190, egc) -> new_fsEs(new_compare9(vyy189, vyy190, egc)) new_esEs33(vyy208, vyy211, ty_Int) -> new_esEs14(vyy208, vyy211) new_esEs36(vyy1890, vyy1900, ty_Integer) -> new_esEs12(vyy1890, vyy1900) new_esEs32(vyy6000, vyy500, ty_Bool) -> new_esEs24(vyy6000, vyy500) new_fsEs(vyy306) -> new_not(new_esEs13(vyy306, GT)) new_ltEs5(True, False) -> False new_ltEs22(vyy196, vyy197, app(app(ty_@2, cfa), cfb)) -> new_ltEs9(vyy196, vyy197, cfa, cfb) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, ty_Int) -> new_ltEs8(vyy1890, vyy1900) new_esEs30(vyy6000, vyy500, app(ty_[], dga)) -> new_esEs18(vyy6000, vyy500, dga) new_compare19(vyy600, vyy50, ty_Char) -> new_compare14(vyy600, vyy50) new_esEs7(vyy600, vyy50, app(app(ty_Either, fdd), fde)) -> new_esEs17(vyy600, vyy50, fdd, fde) new_ltEs16(EQ, GT) -> True new_lt8(vyy1891, vyy1901, app(ty_[], bdc)) -> new_lt17(vyy1891, vyy1901, bdc) new_ltEs16(EQ, EQ) -> True new_compare17(vyy255, vyy256, True, fge, fgf) -> LT new_esEs37(vyy232, vyy234, ty_Integer) -> new_esEs12(vyy232, vyy234) new_esEs37(vyy232, vyy234, ty_Ordering) -> new_esEs13(vyy232, vyy234) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Float) -> new_ltEs13(vyy1890, vyy1900) new_esEs6(vyy600, vyy50, app(app(ty_Either, ecb), ecc)) -> new_esEs17(vyy600, vyy50, ecb, ecc) new_esEs31(vyy6001, vyy501, app(ty_[], dhh)) -> new_esEs18(vyy6001, vyy501, dhh) new_esEs10(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_lt6(vyy232, vyy234) -> new_esEs13(new_compare8(vyy232, vyy234), LT) new_compare6(False, False) -> EQ new_lt4(vyy232, vyy234) -> new_esEs13(new_compare7(vyy232, vyy234), LT) new_ltEs17(Just(vyy1890), Just(vyy1900), app(app(ty_@2, bfb), bfc)) -> new_ltEs9(vyy1890, vyy1900, bfb, bfc) new_lt8(vyy1891, vyy1901, app(app(ty_@2, bcd), bce)) -> new_lt13(vyy1891, vyy1901, bcd, bce) new_esEs4(vyy601, vyy51, ty_Char) -> new_esEs20(vyy601, vyy51) new_esEs19(Just(vyy6000), Just(vyy500), ty_Int) -> new_esEs14(vyy6000, vyy500) new_primPlusNat1(Succ(vyy31200), Zero) -> Succ(vyy31200) new_primPlusNat1(Zero, Succ(vyy601000)) -> Succ(vyy601000) new_ltEs17(Just(vyy1890), Just(vyy1900), app(ty_Maybe, bgb)) -> new_ltEs17(vyy1890, vyy1900, bgb) new_esEs31(vyy6001, vyy501, app(app(ty_@2, eac), ead)) -> new_esEs22(vyy6001, vyy501, eac, ead) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Integer) -> new_ltEs18(vyy1890, vyy1900) new_ltEs11(Left(vyy1890), Left(vyy1900), app(app(ty_Either, gg), gh), gf) -> new_ltEs11(vyy1890, vyy1900, gg, gh) new_esEs29(vyy6001, vyy501, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs23(vyy6001, vyy501, dfd, dfe, dff) new_esEs33(vyy208, vyy211, ty_@0) -> new_esEs25(vyy208, vyy211) new_compare28(Left(vyy600), Right(vyy50), bef, beg) -> LT new_ltEs23(vyy1891, vyy1901, ty_Integer) -> new_ltEs18(vyy1891, vyy1901) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, app(ty_[], baf)) -> new_ltEs14(vyy1890, vyy1900, baf) new_esEs8(vyy602, vyy52, app(ty_Maybe, fce)) -> new_esEs19(vyy602, vyy52, fce) new_esEs17(Left(vyy6000), Left(vyy500), ty_Int, edd) -> new_esEs14(vyy6000, vyy500) new_esEs30(vyy6000, vyy500, ty_Bool) -> new_esEs24(vyy6000, vyy500) new_ltEs20(vyy189, vyy190, ty_Ordering) -> new_ltEs16(vyy189, vyy190) new_esEs5(vyy600, vyy50, app(ty_[], ehf)) -> new_esEs18(vyy600, vyy50, ehf) new_esEs38(vyy6001, vyy501, ty_Integer) -> new_esEs12(vyy6001, vyy501) new_esEs36(vyy1890, vyy1900, ty_Ordering) -> new_esEs13(vyy1890, vyy1900) new_compare30(EQ, GT) -> LT new_compare16(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, True, dha, dhb, dhc) -> LT new_esEs34(vyy207, vyy210, ty_Int) -> new_esEs14(vyy207, vyy210) new_esEs29(vyy6001, vyy501, ty_Double) -> new_esEs15(vyy6001, vyy501) new_esEs31(vyy6001, vyy501, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs23(vyy6001, vyy501, eae, eaf, eag) new_esEs32(vyy6000, vyy500, app(app(ty_@2, ebe), ebf)) -> new_esEs22(vyy6000, vyy500, ebe, ebf) new_lt16(vyy232, vyy234) -> new_esEs13(new_compare11(vyy232, vyy234), LT) new_primMulInt(Neg(vyy500), Neg(vyy6010)) -> Pos(new_primMulNat0(vyy500, vyy6010)) new_esEs30(vyy6000, vyy500, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs23(vyy6000, vyy500, dgf, dgg, dgh) new_esEs33(vyy208, vyy211, ty_Float) -> new_esEs16(vyy208, vyy211) new_ltEs22(vyy196, vyy197, ty_Float) -> new_ltEs13(vyy196, vyy197) new_primCmpInt(Pos(Zero), Pos(Succ(vyy500))) -> new_primCmpNat0(Zero, Succ(vyy500)) new_ltEs22(vyy196, vyy197, ty_Integer) -> new_ltEs18(vyy196, vyy197) new_esEs17(Right(vyy6000), Right(vyy500), eeg, ty_Bool) -> new_esEs24(vyy6000, vyy500) new_esEs17(Right(vyy6000), Right(vyy500), eeg, ty_Double) -> new_esEs15(vyy6000, vyy500) new_esEs34(vyy207, vyy210, ty_@0) -> new_esEs25(vyy207, vyy210) new_ltEs12(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, bbc) -> new_pePe(new_lt7(vyy1890, vyy1900, bcc), new_asAs(new_esEs27(vyy1890, vyy1900, bcc), new_pePe(new_lt8(vyy1891, vyy1901, bbb), new_asAs(new_esEs26(vyy1891, vyy1901, bbb), new_ltEs19(vyy1892, vyy1902, bbc))))) new_lt20(vyy207, vyy210, app(ty_Ratio, faa)) -> new_lt5(vyy207, vyy210, faa) new_esEs7(vyy600, vyy50, app(ty_Maybe, fdg)) -> new_esEs19(vyy600, vyy50, fdg) new_esEs6(vyy600, vyy50, app(ty_[], ecd)) -> new_esEs18(vyy600, vyy50, ecd) new_esEs11(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_esEs31(vyy6001, vyy501, app(app(ty_Either, dhf), dhg)) -> new_esEs17(vyy6001, vyy501, dhf, dhg) new_ltEs4(vyy223, vyy224, app(ty_[], cef)) -> new_ltEs14(vyy223, vyy224, cef) new_esEs31(vyy6001, vyy501, ty_Bool) -> new_esEs24(vyy6001, vyy501) new_ltEs19(vyy1892, vyy1902, ty_Ordering) -> new_ltEs16(vyy1892, vyy1902) new_esEs32(vyy6000, vyy500, app(ty_Maybe, ebc)) -> new_esEs19(vyy6000, vyy500, ebc) new_esEs6(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_esEs9(vyy601, vyy51, ty_Float) -> new_esEs16(vyy601, vyy51) new_esEs9(vyy601, vyy51, ty_@0) -> new_esEs25(vyy601, vyy51) new_esEs11(vyy600, vyy50, app(ty_Ratio, dcb)) -> new_esEs21(vyy600, vyy50, dcb) new_compare19(vyy600, vyy50, app(ty_[], bhc)) -> new_compare5(vyy600, vyy50, bhc) new_ltEs21(vyy209, vyy212, app(ty_Maybe, cde)) -> new_ltEs17(vyy209, vyy212, cde) new_esEs34(vyy207, vyy210, app(ty_Ratio, faa)) -> new_esEs21(vyy207, vyy210, faa) new_esEs30(vyy6000, vyy500, ty_Double) -> new_esEs15(vyy6000, vyy500) new_lt8(vyy1891, vyy1901, app(app(ty_Either, bcf), bcg)) -> new_lt14(vyy1891, vyy1901, bcf, bcg) new_ltEs21(vyy209, vyy212, app(app(ty_@2, cce), ccf)) -> new_ltEs9(vyy209, vyy212, cce, ccf) new_compare19(vyy600, vyy50, app(ty_Maybe, bhd)) -> new_compare13(vyy600, vyy50, bhd) new_ltEs24(vyy233, vyy235, app(ty_[], fa)) -> new_ltEs14(vyy233, vyy235, fa) new_esEs6(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_esEs17(Left(vyy6000), Left(vyy500), app(ty_Ratio, eea), edd) -> new_esEs21(vyy6000, vyy500, eea) new_lt20(vyy207, vyy210, ty_Integer) -> new_lt6(vyy207, vyy210) new_esEs11(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_esEs6(vyy600, vyy50, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs23(vyy600, vyy50, eda, edb, edc) new_compare30(GT, LT) -> GT new_esEs33(vyy208, vyy211, ty_Integer) -> new_esEs12(vyy208, vyy211) new_compare28(Right(vyy600), Left(vyy50), bef, beg) -> GT new_esEs11(vyy600, vyy50, app(ty_[], dbh)) -> new_esEs18(vyy600, vyy50, dbh) new_ltEs4(vyy223, vyy224, ty_Bool) -> new_ltEs5(vyy223, vyy224) new_compare8(Integer(vyy600), Integer(vyy50)) -> new_primCmpInt(vyy600, vyy50) new_primMulInt(Pos(vyy500), Neg(vyy6010)) -> Neg(new_primMulNat0(vyy500, vyy6010)) new_primMulInt(Neg(vyy500), Pos(vyy6010)) -> Neg(new_primMulNat0(vyy500, vyy6010)) new_esEs6(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs12(vyy1890, vyy1900, bac, bad, bae) new_esEs33(vyy208, vyy211, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs23(vyy208, vyy211, cbh, cca, ccb) new_compare30(EQ, LT) -> GT new_lt21(vyy208, vyy211, ty_Double) -> new_lt10(vyy208, vyy211) new_esEs17(Right(vyy6000), Right(vyy500), eeg, app(ty_Ratio, efd)) -> new_esEs21(vyy6000, vyy500, efd) new_primCompAux0(vyy600, vyy50, vyy173, bgc) -> new_primCompAux00(vyy173, new_compare19(vyy600, vyy50, bgc)) new_esEs18(:(vyy6000, vyy6001), :(vyy500, vyy501), ehf) -> new_asAs(new_esEs35(vyy6000, vyy500, ehf), new_esEs18(vyy6001, vyy501, ehf)) new_esEs30(vyy6000, vyy500, app(ty_Maybe, dgb)) -> new_esEs19(vyy6000, vyy500, dgb) new_esEs8(vyy602, vyy52, ty_Double) -> new_esEs15(vyy602, vyy52) new_esEs31(vyy6001, vyy501, ty_Ordering) -> new_esEs13(vyy6001, vyy501) new_compare29(@3(vyy600, vyy601, vyy602), @3(vyy50, vyy51, vyy52), bhe, bhf, bhg) -> new_compare26(vyy600, vyy601, vyy602, vyy50, vyy51, vyy52, new_asAs(new_esEs10(vyy600, vyy50, bhe), new_asAs(new_esEs9(vyy601, vyy51, bhf), new_esEs8(vyy602, vyy52, bhg))), bhe, bhf, bhg) new_lt20(vyy207, vyy210, app(ty_[], cba)) -> new_lt17(vyy207, vyy210, cba) new_esEs22(@2(vyy6000, vyy6001), @2(vyy500, vyy501), dhd, dhe) -> new_asAs(new_esEs32(vyy6000, vyy500, dhd), new_esEs31(vyy6001, vyy501, dhe)) new_esEs28(vyy6002, vyy502, ty_Int) -> new_esEs14(vyy6002, vyy502) new_esEs33(vyy208, vyy211, ty_Bool) -> new_esEs24(vyy208, vyy211) new_esEs19(Just(vyy6000), Just(vyy500), ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Double, gf) -> new_ltEs6(vyy1890, vyy1900) new_esEs36(vyy1890, vyy1900, app(ty_[], bh)) -> new_esEs18(vyy1890, vyy1900, bh) new_ltEs23(vyy1891, vyy1901, ty_Ordering) -> new_ltEs16(vyy1891, vyy1901) new_ltEs24(vyy233, vyy235, ty_Int) -> new_ltEs8(vyy233, vyy235) new_esEs9(vyy601, vyy51, app(ty_[], cha)) -> new_esEs18(vyy601, vyy51, cha) new_compare5([], [], bgc) -> EQ new_ltEs20(vyy189, vyy190, app(app(ty_Either, hf), gf)) -> new_ltEs11(vyy189, vyy190, hf, gf) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Ordering) -> new_ltEs16(vyy1890, vyy1900) new_sr0(Integer(vyy500), Integer(vyy6010)) -> Integer(new_primMulInt(vyy500, vyy6010)) new_lt22(vyy1890, vyy1900, app(app(ty_@2, h), ba)) -> new_lt13(vyy1890, vyy1900, h, ba) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, ty_Bool) -> new_ltEs5(vyy1890, vyy1900) new_lt8(vyy1891, vyy1901, ty_Bool) -> new_lt9(vyy1891, vyy1901) new_esEs35(vyy6000, vyy500, ty_Double) -> new_esEs15(vyy6000, vyy500) new_esEs7(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_esEs19(Nothing, Just(vyy500), ehg) -> False new_esEs19(Just(vyy6000), Nothing, ehg) -> False new_ltEs5(False, False) -> True new_esEs19(Nothing, Nothing, ehg) -> True new_esEs26(vyy1891, vyy1901, app(ty_[], bdc)) -> new_esEs18(vyy1891, vyy1901, bdc) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Char, gf) -> new_ltEs7(vyy1890, vyy1900) new_esEs34(vyy207, vyy210, ty_Float) -> new_esEs16(vyy207, vyy210) new_ltEs24(vyy233, vyy235, ty_Double) -> new_ltEs6(vyy233, vyy235) new_esEs28(vyy6002, vyy502, ty_Float) -> new_esEs16(vyy6002, vyy502) new_lt23(vyy232, vyy234, app(app(app(ty_@3, fg), fh), ga)) -> new_lt15(vyy232, vyy234, fg, fh, ga) new_lt21(vyy208, vyy211, ty_Char) -> new_lt11(vyy208, vyy211) new_esEs30(vyy6000, vyy500, ty_@0) -> new_esEs25(vyy6000, vyy500) new_esEs32(vyy6000, vyy500, ty_Char) -> new_esEs20(vyy6000, vyy500) new_esEs16(Float(vyy6000, vyy6001), Float(vyy500, vyy501)) -> new_esEs14(new_sr(vyy6000, vyy501), new_sr(vyy6001, vyy500)) new_ltEs24(vyy233, vyy235, ty_Char) -> new_ltEs7(vyy233, vyy235) new_esEs17(Left(vyy6000), Left(vyy500), ty_Ordering, edd) -> new_esEs13(vyy6000, vyy500) new_lt23(vyy232, vyy234, app(ty_Maybe, gc)) -> new_lt19(vyy232, vyy234, gc) new_esEs8(vyy602, vyy52, ty_@0) -> new_esEs25(vyy602, vyy52) new_esEs5(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_asAs(True, vyy250) -> vyy250 new_ltEs11(Left(vyy1890), Left(vyy1900), app(ty_Ratio, fha), gf) -> new_ltEs15(vyy1890, vyy1900, fha) new_compare6(True, False) -> GT new_esEs17(Right(vyy6000), Right(vyy500), eeg, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_esEs38(vyy6001, vyy501, ty_Int) -> new_esEs14(vyy6001, vyy501) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Int, gf) -> new_ltEs8(vyy1890, vyy1900) new_esEs31(vyy6001, vyy501, ty_Double) -> new_esEs15(vyy6001, vyy501) new_esEs10(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_esEs8(vyy602, vyy52, ty_Ordering) -> new_esEs13(vyy602, vyy52) new_ltEs11(Left(vyy1890), Left(vyy1900), app(app(ty_@2, gd), ge), gf) -> new_ltEs9(vyy1890, vyy1900, gd, ge) new_ltEs20(vyy189, vyy190, app(app(ty_@2, cb), bb)) -> new_ltEs9(vyy189, vyy190, cb, bb) new_esEs4(vyy601, vyy51, ty_Double) -> new_esEs15(vyy601, vyy51) new_compare27(@2(vyy600, vyy601), @2(vyy50, vyy51), dg, dh) -> new_compare211(vyy600, vyy601, vyy50, vyy51, new_asAs(new_esEs5(vyy600, vyy50, dg), new_esEs4(vyy601, vyy51, dh)), dg, dh) new_esEs35(vyy6000, vyy500, ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_esEs27(vyy1890, vyy1900, ty_Integer) -> new_esEs12(vyy1890, vyy1900) new_esEs26(vyy1891, vyy1901, ty_Char) -> new_esEs20(vyy1891, vyy1901) new_esEs30(vyy6000, vyy500, app(ty_Ratio, dgc)) -> new_esEs21(vyy6000, vyy500, dgc) new_esEs29(vyy6001, vyy501, ty_@0) -> new_esEs25(vyy6001, vyy501) new_compare9(:%(vyy600, vyy601), :%(vyy50, vyy51), ty_Int) -> new_compare12(new_sr(vyy600, vyy51), new_sr(vyy50, vyy601)) new_ltEs4(vyy223, vyy224, app(ty_Ratio, cgc)) -> new_ltEs15(vyy223, vyy224, cgc) new_lt7(vyy1890, vyy1900, ty_Integer) -> new_lt6(vyy1890, vyy1900) new_lt21(vyy208, vyy211, ty_Int) -> new_lt12(vyy208, vyy211) new_compare19(vyy600, vyy50, ty_@0) -> new_compare7(vyy600, vyy50) new_esEs33(vyy208, vyy211, app(app(ty_@2, cbd), cbe)) -> new_esEs22(vyy208, vyy211, cbd, cbe) new_ltEs19(vyy1892, vyy1902, app(app(ty_@2, bde), bdf)) -> new_ltEs9(vyy1892, vyy1902, bde, bdf) new_esEs27(vyy1890, vyy1900, app(app(ty_@2, bah), bba)) -> new_esEs22(vyy1890, vyy1900, bah, bba) new_primCmpInt(Pos(Succ(vyy6000)), Pos(vyy50)) -> new_primCmpNat0(Succ(vyy6000), vyy50) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, app(app(ty_Either, baa), bab)) -> new_ltEs11(vyy1890, vyy1900, baa, bab) new_esEs6(vyy600, vyy50, app(app(ty_@2, ecg), ech)) -> new_esEs22(vyy600, vyy50, ecg, ech) new_lt21(vyy208, vyy211, app(ty_Ratio, fab)) -> new_lt5(vyy208, vyy211, fab) new_ltEs4(vyy223, vyy224, ty_@0) -> new_ltEs10(vyy223, vyy224) new_esEs17(Right(vyy6000), Right(vyy500), eeg, ty_Int) -> new_esEs14(vyy6000, vyy500) new_esEs35(vyy6000, vyy500, ty_@0) -> new_esEs25(vyy6000, vyy500) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, ty_@0) -> new_ltEs10(vyy1890, vyy1900) new_primCompAux00(vyy217, EQ) -> vyy217 new_sr(vyy50, vyy601) -> new_primMulInt(vyy50, vyy601) new_esEs30(vyy6000, vyy500, ty_Float) -> new_esEs16(vyy6000, vyy500) new_ltEs16(GT, GT) -> True new_esEs19(Just(vyy6000), Just(vyy500), ty_@0) -> new_esEs25(vyy6000, vyy500) new_lt8(vyy1891, vyy1901, ty_Integer) -> new_lt6(vyy1891, vyy1901) new_lt21(vyy208, vyy211, ty_Bool) -> new_lt9(vyy208, vyy211) new_esEs17(Left(vyy6000), Left(vyy500), ty_Char, edd) -> new_esEs20(vyy6000, vyy500) new_esEs24(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_esEs28(vyy6002, vyy502, app(ty_Maybe, ddf)) -> new_esEs19(vyy6002, vyy502, ddf) new_esEs35(vyy6000, vyy500, app(ty_Maybe, fag)) -> new_esEs19(vyy6000, vyy500, fag) new_ltEs24(vyy233, vyy235, app(ty_Maybe, fb)) -> new_ltEs17(vyy233, vyy235, fb) new_compare19(vyy600, vyy50, ty_Ordering) -> new_compare30(vyy600, vyy50) new_ltEs20(vyy189, vyy190, app(ty_[], bfa)) -> new_ltEs14(vyy189, vyy190, bfa) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, app(app(ty_@2, hg), hh)) -> new_ltEs9(vyy1890, vyy1900, hg, hh) new_lt8(vyy1891, vyy1901, ty_Char) -> new_lt11(vyy1891, vyy1901) new_ltEs22(vyy196, vyy197, ty_Bool) -> new_ltEs5(vyy196, vyy197) new_lt15(vyy232, vyy234, fg, fh, ga) -> new_esEs13(new_compare29(vyy232, vyy234, fg, fh, ga), LT) new_esEs27(vyy1890, vyy1900, app(app(ty_Either, bbd), bbe)) -> new_esEs17(vyy1890, vyy1900, bbd, bbe) new_esEs29(vyy6001, vyy501, ty_Ordering) -> new_esEs13(vyy6001, vyy501) new_compare18(Double(vyy600, Pos(vyy6010)), Double(vyy50, Pos(vyy510))) -> new_compare12(new_sr(vyy600, Pos(vyy510)), new_sr(Pos(vyy6010), vyy50)) new_esEs33(vyy208, vyy211, app(app(ty_Either, cbf), cbg)) -> new_esEs17(vyy208, vyy211, cbf, cbg) new_esEs4(vyy601, vyy51, app(ty_[], daf)) -> new_esEs18(vyy601, vyy51, daf) new_lt22(vyy1890, vyy1900, ty_Ordering) -> new_lt18(vyy1890, vyy1900) new_ltEs20(vyy189, vyy190, ty_Double) -> new_ltEs6(vyy189, vyy190) new_esEs31(vyy6001, vyy501, ty_Char) -> new_esEs20(vyy6001, vyy501) new_esEs34(vyy207, vyy210, app(ty_Maybe, cbb)) -> new_esEs19(vyy207, vyy210, cbb) new_esEs7(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_lt7(vyy1890, vyy1900, app(ty_[], bca)) -> new_lt17(vyy1890, vyy1900, bca) new_esEs23(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), dch, dda, ddb) -> new_asAs(new_esEs30(vyy6000, vyy500, dch), new_asAs(new_esEs29(vyy6001, vyy501, dda), new_esEs28(vyy6002, vyy502, ddb))) new_lt8(vyy1891, vyy1901, app(ty_Ratio, dab)) -> new_lt5(vyy1891, vyy1901, dab) new_ltEs24(vyy233, vyy235, app(app(ty_Either, ed), ee)) -> new_ltEs11(vyy233, vyy235, ed, ee) new_ltEs23(vyy1891, vyy1901, app(ty_Maybe, dd)) -> new_ltEs17(vyy1891, vyy1901, dd) new_compare30(GT, EQ) -> GT new_esEs9(vyy601, vyy51, ty_Ordering) -> new_esEs13(vyy601, vyy51) new_esEs29(vyy6001, vyy501, app(ty_Maybe, deh)) -> new_esEs19(vyy6001, vyy501, deh) new_ltEs18(vyy189, vyy190) -> new_fsEs(new_compare8(vyy189, vyy190)) new_compare14(Char(vyy600), Char(vyy50)) -> new_primCmpNat0(vyy600, vyy50) new_esEs32(vyy6000, vyy500, app(ty_[], ebb)) -> new_esEs18(vyy6000, vyy500, ebb) new_lt8(vyy1891, vyy1901, ty_Double) -> new_lt10(vyy1891, vyy1901) new_esEs28(vyy6002, vyy502, app(app(ty_Either, ddc), ddd)) -> new_esEs17(vyy6002, vyy502, ddc, ddd) new_lt20(vyy207, vyy210, app(app(ty_Either, cad), cae)) -> new_lt14(vyy207, vyy210, cad, cae) new_esEs34(vyy207, vyy210, app(app(ty_Either, cad), cae)) -> new_esEs17(vyy207, vyy210, cad, cae) new_esEs17(Left(vyy6000), Left(vyy500), app(app(ty_@2, eeb), eec), edd) -> new_esEs22(vyy6000, vyy500, eeb, eec) new_lt23(vyy232, vyy234, ty_Ordering) -> new_lt18(vyy232, vyy234) new_esEs28(vyy6002, vyy502, ty_Integer) -> new_esEs12(vyy6002, vyy502) new_esEs6(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_esEs5(vyy600, vyy50, app(app(ty_@2, dhd), dhe)) -> new_esEs22(vyy600, vyy50, dhd, dhe) new_ltEs20(vyy189, vyy190, ty_Char) -> new_ltEs7(vyy189, vyy190) new_primEqInt(Neg(Succ(vyy60000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyy5000))) -> False new_ltEs19(vyy1892, vyy1902, app(app(ty_Either, bdg), bdh)) -> new_ltEs11(vyy1892, vyy1902, bdg, bdh) new_esEs14(vyy600, vyy50) -> new_primEqInt(vyy600, vyy50) new_primEqInt(Pos(Succ(vyy60000)), Pos(Succ(vyy5000))) -> new_primEqNat0(vyy60000, vyy5000) new_esEs17(Left(vyy6000), Left(vyy500), app(ty_Maybe, edh), edd) -> new_esEs19(vyy6000, vyy500, edh) new_esEs17(Left(vyy6000), Right(vyy500), eeg, edd) -> False new_esEs17(Right(vyy6000), Left(vyy500), eeg, edd) -> False new_ltEs24(vyy233, vyy235, app(app(ty_@2, eb), ec)) -> new_ltEs9(vyy233, vyy235, eb, ec) new_esEs27(vyy1890, vyy1900, ty_Bool) -> new_esEs24(vyy1890, vyy1900) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, app(ty_Ratio, fhb)) -> new_ltEs15(vyy1890, vyy1900, fhb) new_lt21(vyy208, vyy211, app(app(ty_Either, cbf), cbg)) -> new_lt14(vyy208, vyy211, cbf, cbg) new_esEs7(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_esEs27(vyy1890, vyy1900, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs23(vyy1890, vyy1900, bbf, bbg, bbh) new_esEs17(Right(vyy6000), Right(vyy500), eeg, ty_Float) -> new_esEs16(vyy6000, vyy500) new_esEs31(vyy6001, vyy501, ty_@0) -> new_esEs25(vyy6001, vyy501) new_compare6(False, True) -> LT new_lt20(vyy207, vyy210, ty_Bool) -> new_lt9(vyy207, vyy210) new_lt23(vyy232, vyy234, ty_@0) -> new_lt4(vyy232, vyy234) new_esEs4(vyy601, vyy51, ty_Ordering) -> new_esEs13(vyy601, vyy51) new_esEs10(vyy600, vyy50, app(ty_[], egf)) -> new_esEs18(vyy600, vyy50, egf) new_primEqInt(Pos(Succ(vyy60000)), Neg(vyy500)) -> False new_primEqInt(Neg(Succ(vyy60000)), Pos(vyy500)) -> False new_esEs5(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_esEs10(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_primCmpInt(Neg(Zero), Neg(Succ(vyy500))) -> new_primCmpNat0(Succ(vyy500), Zero) new_compare19(vyy600, vyy50, app(app(ty_Either, bgf), bgg)) -> new_compare28(vyy600, vyy50, bgf, bgg) new_esEs11(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_esEs7(vyy600, vyy50, app(ty_Ratio, fdh)) -> new_esEs21(vyy600, vyy50, fdh) new_esEs13(LT, GT) -> False new_esEs13(GT, LT) -> False new_compare18(Double(vyy600, Neg(vyy6010)), Double(vyy50, Neg(vyy510))) -> new_compare12(new_sr(vyy600, Neg(vyy510)), new_sr(Neg(vyy6010), vyy50)) new_esEs17(Right(vyy6000), Right(vyy500), eeg, app(ty_Maybe, efc)) -> new_esEs19(vyy6000, vyy500, efc) new_ltEs22(vyy196, vyy197, app(ty_Ratio, fbh)) -> new_ltEs15(vyy196, vyy197, fbh) new_esEs36(vyy1890, vyy1900, ty_Char) -> new_esEs20(vyy1890, vyy1900) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(vyy196, vyy197, ty_Ordering) -> new_ltEs16(vyy196, vyy197) new_ltEs23(vyy1891, vyy1901, ty_@0) -> new_ltEs10(vyy1891, vyy1901) new_esEs29(vyy6001, vyy501, ty_Int) -> new_esEs14(vyy6001, vyy501) new_esEs34(vyy207, vyy210, ty_Double) -> new_esEs15(vyy207, vyy210) new_ltEs19(vyy1892, vyy1902, ty_Bool) -> new_ltEs5(vyy1892, vyy1902) new_esEs4(vyy601, vyy51, app(ty_Maybe, dag)) -> new_esEs19(vyy601, vyy51, dag) new_esEs5(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_esEs28(vyy6002, vyy502, app(app(ty_@2, ddh), dea)) -> new_esEs22(vyy6002, vyy502, ddh, dea) new_esEs26(vyy1891, vyy1901, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs23(vyy1891, vyy1901, bch, bda, bdb) new_esEs35(vyy6000, vyy500, app(ty_[], faf)) -> new_esEs18(vyy6000, vyy500, faf) new_lt22(vyy1890, vyy1900, ty_@0) -> new_lt4(vyy1890, vyy1900) new_lt21(vyy208, vyy211, app(app(ty_@2, cbd), cbe)) -> new_lt13(vyy208, vyy211, cbd, cbe) new_ltEs4(vyy223, vyy224, app(app(ty_@2, cdg), cdh)) -> new_ltEs9(vyy223, vyy224, cdg, cdh) new_esEs27(vyy1890, vyy1900, ty_Float) -> new_esEs16(vyy1890, vyy1900) new_compare13(Just(vyy600), Just(vyy50), cdf) -> new_compare24(vyy600, vyy50, new_esEs11(vyy600, vyy50, cdf), cdf) new_esEs35(vyy6000, vyy500, ty_Char) -> new_esEs20(vyy6000, vyy500) new_esEs11(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_esEs25(@0, @0) -> True new_esEs27(vyy1890, vyy1900, app(ty_Ratio, daa)) -> new_esEs21(vyy1890, vyy1900, daa) new_ltEs17(Just(vyy1890), Just(vyy1900), app(ty_[], bga)) -> new_ltEs14(vyy1890, vyy1900, bga) new_esEs6(vyy600, vyy50, app(ty_Ratio, ecf)) -> new_esEs21(vyy600, vyy50, ecf) new_esEs10(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_esEs17(Right(vyy6000), Right(vyy500), eeg, app(app(ty_@2, efe), eff)) -> new_esEs22(vyy6000, vyy500, efe, eff) new_esEs8(vyy602, vyy52, ty_Char) -> new_esEs20(vyy602, vyy52) new_lt13(vyy232, vyy234, de, df) -> new_esEs13(new_compare27(vyy232, vyy234, de, df), LT) new_ltEs6(vyy189, vyy190) -> new_fsEs(new_compare18(vyy189, vyy190)) new_compare112(vyy282, vyy283, vyy284, vyy285, False, fgg, fgh) -> GT new_esEs34(vyy207, vyy210, ty_Bool) -> new_esEs24(vyy207, vyy210) new_compare6(True, True) -> EQ new_esEs34(vyy207, vyy210, ty_Integer) -> new_esEs12(vyy207, vyy210) new_not(False) -> True new_esEs29(vyy6001, vyy501, ty_Float) -> new_esEs16(vyy6001, vyy501) new_lt22(vyy1890, vyy1900, app(ty_Maybe, ca)) -> new_lt19(vyy1890, vyy1900, ca) new_esEs7(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_ltEs8(vyy189, vyy190) -> new_fsEs(new_compare12(vyy189, vyy190)) new_lt7(vyy1890, vyy1900, ty_Float) -> new_lt16(vyy1890, vyy1900) new_ltEs17(Just(vyy1890), Just(vyy1900), app(ty_Ratio, cgf)) -> new_ltEs15(vyy1890, vyy1900, cgf) new_lt20(vyy207, vyy210, ty_@0) -> new_lt4(vyy207, vyy210) new_esEs34(vyy207, vyy210, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs23(vyy207, vyy210, caf, cag, cah) new_compare15(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, False, vyy304, dha, dhb, dhc) -> new_compare16(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, vyy304, dha, dhb, dhc) new_lt10(vyy232, vyy234) -> new_esEs13(new_compare18(vyy232, vyy234), LT) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Int) -> new_ltEs8(vyy1890, vyy1900) new_lt21(vyy208, vyy211, app(ty_[], ccc)) -> new_lt17(vyy208, vyy211, ccc) new_esEs19(Just(vyy6000), Just(vyy500), app(ty_Maybe, ffa)) -> new_esEs19(vyy6000, vyy500, ffa) new_lt8(vyy1891, vyy1901, ty_Int) -> new_lt12(vyy1891, vyy1901) new_esEs11(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_esEs11(vyy600, vyy50, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs23(vyy600, vyy50, dce, dcf, dcg) new_lt19(vyy232, vyy234, gc) -> new_esEs13(new_compare13(vyy232, vyy234, gc), LT) new_esEs9(vyy601, vyy51, ty_Double) -> new_esEs15(vyy601, vyy51) new_esEs32(vyy6000, vyy500, ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_@0) -> new_ltEs10(vyy1890, vyy1900) new_esEs26(vyy1891, vyy1901, ty_Double) -> new_esEs15(vyy1891, vyy1901) new_ltEs24(vyy233, vyy235, ty_Ordering) -> new_ltEs16(vyy233, vyy235) new_esEs11(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_lt7(vyy1890, vyy1900, ty_@0) -> new_lt4(vyy1890, vyy1900) new_ltEs21(vyy209, vyy212, app(app(ty_Either, ccg), cch)) -> new_ltEs11(vyy209, vyy212, ccg, cch) new_compare30(EQ, EQ) -> EQ new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Float, gf) -> new_ltEs13(vyy1890, vyy1900) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Bool) -> new_ltEs5(vyy1890, vyy1900) new_esEs29(vyy6001, vyy501, app(ty_Ratio, dfa)) -> new_esEs21(vyy6001, vyy501, dfa) new_esEs37(vyy232, vyy234, app(ty_[], gb)) -> new_esEs18(vyy232, vyy234, gb) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Double) -> new_ltEs6(vyy1890, vyy1900) new_compare30(LT, EQ) -> LT new_ltEs14(vyy189, vyy190, bfa) -> new_fsEs(new_compare5(vyy189, vyy190, bfa)) new_lt22(vyy1890, vyy1900, ty_Float) -> new_lt16(vyy1890, vyy1900) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Char) -> new_ltEs7(vyy1890, vyy1900) new_primPlusNat0(Succ(vyy3120), vyy60100) -> Succ(Succ(new_primPlusNat1(vyy3120, vyy60100))) new_ltEs21(vyy209, vyy212, ty_Int) -> new_ltEs8(vyy209, vyy212) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, ty_Ordering) -> new_ltEs16(vyy1890, vyy1900) new_esEs37(vyy232, vyy234, app(app(ty_Either, fd), ff)) -> new_esEs17(vyy232, vyy234, fd, ff) new_ltEs4(vyy223, vyy224, ty_Float) -> new_ltEs13(vyy223, vyy224) new_ltEs21(vyy209, vyy212, app(ty_Ratio, fac)) -> new_ltEs15(vyy209, vyy212, fac) new_esEs35(vyy6000, vyy500, app(app(ty_Either, fad), fae)) -> new_esEs17(vyy6000, vyy500, fad, fae) new_esEs37(vyy232, vyy234, ty_Float) -> new_esEs16(vyy232, vyy234) new_esEs30(vyy6000, vyy500, ty_Int) -> new_esEs14(vyy6000, vyy500) new_esEs19(Just(vyy6000), Just(vyy500), ty_Char) -> new_esEs20(vyy6000, vyy500) new_esEs17(Left(vyy6000), Left(vyy500), app(app(ty_Either, ede), edf), edd) -> new_esEs17(vyy6000, vyy500, ede, edf) new_esEs36(vyy1890, vyy1900, app(app(ty_@2, h), ba)) -> new_esEs22(vyy1890, vyy1900, h, ba) new_esEs27(vyy1890, vyy1900, app(ty_Maybe, bcb)) -> new_esEs19(vyy1890, vyy1900, bcb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(vyy233, vyy235, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs12(vyy233, vyy235, ef, eg, eh) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, app(ty_Maybe, bag)) -> new_ltEs17(vyy1890, vyy1900, bag) new_lt20(vyy207, vyy210, app(ty_Maybe, cbb)) -> new_lt19(vyy207, vyy210, cbb) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs4(vyy223, vyy224, ty_Integer) -> new_ltEs18(vyy223, vyy224) new_ltEs5(True, True) -> True new_esEs26(vyy1891, vyy1901, app(app(ty_Either, bcf), bcg)) -> new_esEs17(vyy1891, vyy1901, bcf, bcg) new_esEs36(vyy1890, vyy1900, app(ty_Maybe, ca)) -> new_esEs19(vyy1890, vyy1900, ca) new_esEs9(vyy601, vyy51, ty_Integer) -> new_esEs12(vyy601, vyy51) new_ltEs21(vyy209, vyy212, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs12(vyy209, vyy212, cda, cdb, cdc) new_esEs30(vyy6000, vyy500, ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_ltEs21(vyy209, vyy212, ty_@0) -> new_ltEs10(vyy209, vyy212) new_compare19(vyy600, vyy50, ty_Integer) -> new_compare8(vyy600, vyy50) new_esEs18(:(vyy6000, vyy6001), [], ehf) -> False new_esEs18([], :(vyy500, vyy501), ehf) -> False new_esEs26(vyy1891, vyy1901, ty_Bool) -> new_esEs24(vyy1891, vyy1901) new_esEs6(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_esEs27(vyy1890, vyy1900, ty_Int) -> new_esEs14(vyy1890, vyy1900) new_ltEs17(Just(vyy1890), Just(vyy1900), app(app(ty_Either, bfd), bfe)) -> new_ltEs11(vyy1890, vyy1900, bfd, bfe) new_lt22(vyy1890, vyy1900, ty_Int) -> new_lt12(vyy1890, vyy1900) new_ltEs23(vyy1891, vyy1901, app(app(app(ty_@3, cg), da), db)) -> new_ltEs12(vyy1891, vyy1901, cg, da, db) new_lt21(vyy208, vyy211, ty_Ordering) -> new_lt18(vyy208, vyy211) new_ltEs22(vyy196, vyy197, ty_Char) -> new_ltEs7(vyy196, vyy197) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs23(vyy1891, vyy1901, app(app(ty_Either, ce), cf)) -> new_ltEs11(vyy1891, vyy1901, ce, cf) new_compare11(Float(vyy600, Neg(vyy6010)), Float(vyy50, Neg(vyy510))) -> new_compare12(new_sr(vyy600, Neg(vyy510)), new_sr(Neg(vyy6010), vyy50)) new_esEs5(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_primMulNat0(Succ(vyy5000), Succ(vyy60100)) -> new_primPlusNat0(new_primMulNat0(vyy5000, Succ(vyy60100)), vyy60100) new_esEs37(vyy232, vyy234, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs23(vyy232, vyy234, fg, fh, ga) new_compare26(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, True, cbc, cab, cac) -> EQ new_esEs37(vyy232, vyy234, ty_Bool) -> new_esEs24(vyy232, vyy234) new_lt20(vyy207, vyy210, ty_Ordering) -> new_lt18(vyy207, vyy210) new_esEs5(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_ltEs11(Left(vyy1890), Left(vyy1900), app(ty_[], hd), gf) -> new_ltEs14(vyy1890, vyy1900, hd) new_ltEs22(vyy196, vyy197, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs12(vyy196, vyy197, cfe, cff, cfg) new_ltEs19(vyy1892, vyy1902, app(ty_Ratio, dac)) -> new_ltEs15(vyy1892, vyy1902, dac) new_primCmpNat0(Succ(vyy6000), Succ(vyy500)) -> new_primCmpNat0(vyy6000, vyy500) new_esEs17(Left(vyy6000), Left(vyy500), ty_Double, edd) -> new_esEs15(vyy6000, vyy500) new_compare28(Right(vyy600), Right(vyy50), bef, beg) -> new_compare210(vyy600, vyy50, new_esEs7(vyy600, vyy50, beg), bef, beg) new_lt22(vyy1890, vyy1900, ty_Bool) -> new_lt9(vyy1890, vyy1900) new_esEs17(Left(vyy6000), Left(vyy500), ty_Bool, edd) -> new_esEs24(vyy6000, vyy500) new_lt23(vyy232, vyy234, ty_Int) -> new_lt12(vyy232, vyy234) new_esEs4(vyy601, vyy51, ty_Float) -> new_esEs16(vyy601, vyy51) new_ltEs23(vyy1891, vyy1901, ty_Char) -> new_ltEs7(vyy1891, vyy1901) new_compare12(vyy60, vyy5) -> new_primCmpInt(vyy60, vyy5) new_compare24(vyy223, vyy224, False, cgb) -> new_compare10(vyy223, vyy224, new_ltEs4(vyy223, vyy224, cgb), cgb) new_ltEs17(Just(vyy1890), Just(vyy1900), app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs12(vyy1890, vyy1900, bff, bfg, bfh) new_lt7(vyy1890, vyy1900, app(ty_Maybe, bcb)) -> new_lt19(vyy1890, vyy1900, bcb) new_esEs27(vyy1890, vyy1900, ty_@0) -> new_esEs25(vyy1890, vyy1900) new_esEs4(vyy601, vyy51, ty_Int) -> new_esEs14(vyy601, vyy51) new_esEs39(vyy6000, vyy500, ty_Int) -> new_esEs14(vyy6000, vyy500) new_ltEs20(vyy189, vyy190, ty_Int) -> new_ltEs8(vyy189, vyy190) new_esEs17(Right(vyy6000), Right(vyy500), eeg, app(app(ty_Either, eeh), efa)) -> new_esEs17(vyy6000, vyy500, eeh, efa) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vyy209, vyy212, ty_Bool) -> new_ltEs5(vyy209, vyy212) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Integer, gf) -> new_ltEs18(vyy1890, vyy1900) new_esEs26(vyy1891, vyy1901, app(ty_Maybe, bdd)) -> new_esEs19(vyy1891, vyy1901, bdd) new_esEs36(vyy1890, vyy1900, app(app(ty_Either, bc), bd)) -> new_esEs17(vyy1890, vyy1900, bc, bd) new_ltEs20(vyy189, vyy190, app(ty_Ratio, egc)) -> new_ltEs15(vyy189, vyy190, egc) new_esEs19(Just(vyy6000), Just(vyy500), app(ty_[], feh)) -> new_esEs18(vyy6000, vyy500, feh) new_compare110(vyy262, vyy263, False, fgb, fgc) -> GT new_esEs37(vyy232, vyy234, app(app(ty_@2, de), df)) -> new_esEs22(vyy232, vyy234, de, df) new_primEqNat0(Zero, Zero) -> True new_esEs7(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_lt23(vyy232, vyy234, ty_Bool) -> new_lt9(vyy232, vyy234) new_esEs36(vyy1890, vyy1900, ty_Double) -> new_esEs15(vyy1890, vyy1900) new_ltEs23(vyy1891, vyy1901, ty_Double) -> new_ltEs6(vyy1891, vyy1901) new_lt17(vyy232, vyy234, gb) -> new_esEs13(new_compare5(vyy232, vyy234, gb), LT) new_lt7(vyy1890, vyy1900, ty_Bool) -> new_lt9(vyy1890, vyy1900) new_lt7(vyy1890, vyy1900, ty_Int) -> new_lt12(vyy1890, vyy1900) new_esEs8(vyy602, vyy52, ty_Integer) -> new_esEs12(vyy602, vyy52) new_esEs19(Just(vyy6000), Just(vyy500), ty_Double) -> new_esEs15(vyy6000, vyy500) new_esEs26(vyy1891, vyy1901, app(app(ty_@2, bcd), bce)) -> new_esEs22(vyy1891, vyy1901, bcd, bce) new_compare19(vyy600, vyy50, ty_Int) -> new_compare12(vyy600, vyy50) new_esEs28(vyy6002, vyy502, ty_@0) -> new_esEs25(vyy6002, vyy502) new_esEs4(vyy601, vyy51, app(ty_Ratio, dah)) -> new_esEs21(vyy601, vyy51, dah) new_esEs13(EQ, EQ) -> True new_asAs(False, vyy250) -> False new_lt12(vyy232, vyy234) -> new_esEs13(new_compare12(vyy232, vyy234), LT) new_ltEs20(vyy189, vyy190, ty_Bool) -> new_ltEs5(vyy189, vyy190) new_esEs13(LT, EQ) -> False new_esEs13(EQ, LT) -> False new_compare7(@0, @0) -> EQ new_esEs33(vyy208, vyy211, ty_Char) -> new_esEs20(vyy208, vyy211) new_lt21(vyy208, vyy211, ty_Integer) -> new_lt6(vyy208, vyy211) new_ltEs22(vyy196, vyy197, app(app(ty_Either, cfc), cfd)) -> new_ltEs11(vyy196, vyy197, cfc, cfd) new_ltEs22(vyy196, vyy197, ty_@0) -> new_ltEs10(vyy196, vyy197) new_ltEs19(vyy1892, vyy1902, ty_Int) -> new_ltEs8(vyy1892, vyy1902) new_lt9(vyy232, vyy234) -> new_esEs13(new_compare6(vyy232, vyy234), LT) new_esEs32(vyy6000, vyy500, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_compare19(vyy600, vyy50, ty_Double) -> new_compare18(vyy600, vyy50) new_compare11(Float(vyy600, Pos(vyy6010)), Float(vyy50, Pos(vyy510))) -> new_compare12(new_sr(vyy600, Pos(vyy510)), new_sr(Pos(vyy6010), vyy50)) new_ltEs11(Right(vyy1890), Right(vyy1900), hf, ty_Double) -> new_ltEs6(vyy1890, vyy1900) new_esEs4(vyy601, vyy51, ty_@0) -> new_esEs25(vyy601, vyy51) new_lt14(vyy232, vyy234, fd, ff) -> new_esEs13(new_compare28(vyy232, vyy234, fd, ff), LT) new_ltEs23(vyy1891, vyy1901, app(ty_[], dc)) -> new_ltEs14(vyy1891, vyy1901, dc) new_esEs37(vyy232, vyy234, app(ty_Maybe, gc)) -> new_esEs19(vyy232, vyy234, gc) new_lt23(vyy232, vyy234, ty_Float) -> new_lt16(vyy232, vyy234) new_esEs28(vyy6002, vyy502, app(ty_Ratio, ddg)) -> new_esEs21(vyy6002, vyy502, ddg) new_esEs36(vyy1890, vyy1900, app(app(app(ty_@3, be), bf), bg)) -> new_esEs23(vyy1890, vyy1900, be, bf, bg) new_esEs36(vyy1890, vyy1900, ty_Bool) -> new_esEs24(vyy1890, vyy1900) new_ltEs11(Left(vyy1890), Left(vyy1900), app(app(app(ty_@3, ha), hb), hc), gf) -> new_ltEs12(vyy1890, vyy1900, ha, hb, hc) new_esEs9(vyy601, vyy51, ty_Char) -> new_esEs20(vyy601, vyy51) The set Q consists of the following terms: new_esEs9(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(False, True) new_esEs24(True, False) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs19(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare28(Left(x0), Right(x1), x2, x3) new_compare28(Right(x0), Left(x1), x2, x3) new_compare13(Just(x0), Just(x1), x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Int) new_lt8(x0, x1, ty_@0) new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare19(x0, x1, ty_Int) new_primCompAux00(x0, EQ) new_esEs10(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs18([], [], x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_esEs34(x0, x1, ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Nothing, Just(x0), x1) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs23(x0, x1, ty_Ordering) new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_lt8(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare211(x0, x1, x2, x3, False, x4, x5) new_esEs33(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Float) new_compare6(True, False) new_compare6(False, True) new_esEs33(x0, x1, ty_Char) new_compare19(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Float) new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Ordering) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(LT, LT) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Float) new_esEs19(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, False, x2) new_esEs8(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_primCmpNat0(Zero, Succ(x0)) new_ltEs24(x0, x1, ty_Char) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_ltEs7(x0, x1) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_asAs(False, x0) new_esEs28(x0, x1, ty_Float) new_esEs22(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Char) new_ltEs16(LT, LT) new_compare5(:(x0, x1), [], x2) new_lt23(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare25(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Int) new_lt23(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_primPlusNat1(Succ(x0), Zero) new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare112(x0, x1, x2, x3, False, x4, x5) new_compare19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Int) new_fsEs(x0) new_esEs31(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs6(x0, x1, ty_Ordering) new_esEs19(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Double) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(False, False) new_esEs34(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(:%(x0, x1), :%(x2, x3), x4) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs19(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Double) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_lt8(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Double) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Ordering) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs21(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Char) new_lt23(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, x2, x3) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(x0, x1, x2) new_esEs24(True, True) new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs14(x0, x1) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1) new_compare30(EQ, EQ) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(False, False) new_esEs27(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt22(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs36(x0, x1, ty_@0) new_compare19(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_@0) new_lt22(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs34(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs19(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_@0) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_sr0(Integer(x0), Integer(x1)) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, ty_@0) new_compare17(x0, x1, True, x2, x3) new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Char) new_compare19(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Float) new_lt8(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_@0) new_ltEs16(GT, GT) new_compare13(Just(x0), Nothing, x1) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_primCompAux00(x0, LT) new_lt21(x0, x1, ty_Bool) new_ltEs14(x0, x1, x2) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(x0, x1, app(ty_[], x2)) new_compare6(True, True) new_esEs27(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_ltEs21(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_compare28(Left(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Double) new_compare110(x0, x1, True, x2, x3) new_primMulInt(Pos(x0), Pos(x1)) new_esEs19(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare5([], [], x0) new_esEs4(x0, x1, ty_@0) new_lt20(x0, x1, ty_Int) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Double) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_compare15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs36(x0, x1, ty_Integer) new_esEs12(Integer(x0), Integer(x1)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Double) new_compare19(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Float) new_asAs(True, x0) new_esEs5(x0, x1, ty_Integer) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs19(Nothing, Just(x0), x1) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Bool) new_esEs17(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Double) new_lt21(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_sr(x0, x1) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs10(x0, x1, ty_Int) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs11(x0, x1, ty_Integer) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_compare10(x0, x1, True, x2) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Integer) new_compare5([], :(x0, x1), x2) new_esEs10(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_lt5(x0, x1, x2) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(True, True) new_ltEs22(x0, x1, ty_@0) new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Ordering) new_ltEs4(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Bool) new_compare28(Right(x0), Right(x1), x2, x3) new_esEs7(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Int) new_compare211(x0, x1, x2, x3, True, x4, x5) new_primMulNat0(Succ(x0), Zero) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Just(x0), Just(x1), ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_@0) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_compare24(x0, x1, False, x2) new_esEs27(x0, x1, ty_Bool) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare19(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_@0) new_lt7(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Double) new_esEs13(GT, GT) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs13(LT, EQ) new_esEs13(EQ, LT) new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs18(:(x0, x1), [], x2) new_ltEs17(Just(x0), Nothing, x1) new_lt22(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt22(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(x0, x1, ty_Float) new_lt18(x0, x1) new_esEs29(x0, x1, ty_Ordering) new_esEs13(EQ, EQ) new_lt22(x0, x1, ty_Bool) new_ltEs8(x0, x1) new_ltEs16(EQ, EQ) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(False, x0) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs17(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, ty_Char) new_compare15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs6(x0, x1) new_esEs19(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, ty_Double) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_compare12(x0, x1) new_esEs36(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, ty_Double) new_lt22(x0, x1, ty_@0) new_compare17(x0, x1, False, x2, x3) new_esEs27(x0, x1, ty_Integer) new_compare7(@0, @0) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare30(LT, LT) new_esEs19(Just(x0), Just(x1), ty_Char) new_esEs28(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_esEs20(Char(x0), Char(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs17(Just(x0), Just(x1), ty_@0) new_esEs4(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1) new_lt23(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Double) new_compare13(Nothing, Nothing, x0) new_esEs31(x0, x1, ty_Integer) new_esEs19(Just(x0), Just(x1), ty_Ordering) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Float) new_lt21(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Char) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_esEs17(Right(x0), Right(x1), x2, ty_Char) new_ltEs23(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_@0) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Ordering) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_ltEs4(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare210(x0, x1, False, x2, x3) new_compare19(x0, x1, ty_Float) new_esEs30(x0, x1, ty_@0) new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Char) new_ltEs17(Just(x0), Just(x1), ty_Integer) new_esEs27(x0, x1, ty_@0) new_ltEs4(x0, x1, ty_Int) new_lt16(x0, x1) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs17(Left(x0), Left(x1), ty_Float, x2) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_not(True) new_ltEs4(x0, x1, ty_Ordering) new_esEs19(Just(x0), Just(x1), ty_@0) new_esEs25(@0, @0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Int) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_ltEs4(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Integer) new_ltEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Int) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs35(x0, x1, app(ty_[], x2)) new_lt10(x0, x1) new_esEs9(x0, x1, ty_Integer) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Char) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, x2, x3, False, x4, x5, x6) new_compare30(EQ, GT) new_compare30(GT, EQ) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs18([], :(x0, x1), x2) new_esEs19(Just(x0), Just(x1), ty_Double) new_esEs5(x0, x1, ty_Char) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_esEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Double) new_lt12(x0, x1) new_lt22(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(x0, x1) new_ltEs22(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_esEs15(Double(x0, x1), Double(x2, x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_esEs19(Just(x0), Just(x1), ty_Bool) new_esEs11(x0, x1, ty_Char) new_esEs19(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs19(Just(x0), Nothing, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt14(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, x2) new_esEs37(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primMulNat0(Zero, Succ(x0)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(Char(x0), Char(x1)) new_lt22(x0, x1, ty_Double) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs17(Nothing, Nothing, x0) new_esEs31(x0, x1, ty_Float) new_compare19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Bool) new_esEs19(Just(x0), Just(x1), ty_Integer) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare30(GT, GT) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs4(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, True, x2, x3) new_lt21(x0, x1, ty_@0) new_ltEs17(Just(x0), Just(x1), ty_Ordering) new_compare13(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs4(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs13(LT, GT) new_esEs13(GT, LT) new_ltEs17(Just(x0), Just(x1), ty_Int) new_ltEs4(x0, x1, ty_Integer) new_pePe(True, x0) new_lt7(x0, x1, app(ty_Ratio, x2)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_lt8(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Bool) new_esEs19(Nothing, Nothing, x0) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Zero) new_lt17(x0, x1, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs30(x0, x1, ty_Ordering) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_ltEs21(x0, x1, ty_Integer) new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_ltEs17(Just(x0), Just(x1), ty_Float) new_lt15(x0, x1, x2, x3, x4) new_compare24(x0, x1, True, x2) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), x1) new_esEs6(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Float) new_compare5(:(x0, x1), :(x2, x3), x4) new_esEs6(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_esEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Left(x0), Right(x1), x2, x3) new_esEs17(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Double) new_lt7(x0, x1, ty_Double) new_compare19(x0, x1, ty_@0) new_primCompAux00(x0, GT) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_not(False) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs13(EQ, GT) new_esEs13(GT, EQ) new_esEs8(x0, x1, ty_@0) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_ltEs4(x0, x1, app(ty_[], x2)) new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt7(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_esEs30(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Int) new_compare19(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Int) new_compare112(x0, x1, x2, x3, True, x4, x5) new_lt8(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_esEs26(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Int) new_ltEs17(Just(x0), Just(x1), ty_Char) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(x0, x1, ty_Char) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Bool) new_compare110(x0, x1, False, x2, x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_@0) new_compare8(Integer(x0), Integer(x1)) new_esEs28(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Float) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Float) new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, ty_Int) new_compare111(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs17(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Int) new_lt11(x0, x1) new_esEs18(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpNat0(Zero, Zero) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Ordering) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_compare4(Just(vyy600), Just(vyy50), cdf) -> new_compare23(vyy600, vyy50, new_esEs11(vyy600, vyy50, cdf), cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare3(:(vyy600, vyy601), :(vyy50, vyy51), bgc) -> new_primCompAux(vyy600, vyy50, new_compare5(vyy601, vyy51, bgc), bgc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(@2(vyy600, vyy601), @2(vyy50, vyy51), dg, dh) -> new_compare2(vyy600, vyy601, vyy50, vyy51, new_asAs(new_esEs5(vyy600, vyy50, dg), new_esEs4(vyy601, vyy51, dh)), dg, dh) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(vyy1891, vyy1901, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare0(Left(vyy600), Left(vyy50), bef, beg) -> new_compare20(vyy600, vyy50, new_esEs6(vyy600, vyy50, bef), bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt3(vyy232, vyy234, gc) -> new_compare4(vyy232, vyy234, gc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare1(@3(vyy600, vyy601, vyy602), @3(vyy50, vyy51, vyy52), bhe, bhf, bhg) -> new_compare22(vyy600, vyy601, vyy602, vyy50, vyy51, vyy52, new_asAs(new_esEs10(vyy600, vyy50, bhe), new_asAs(new_esEs9(vyy601, vyy51, bhf), new_esEs8(vyy602, vyy52, bhg))), bhe, bhf, bhg) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_lt2(vyy232, vyy234, gb) -> new_compare3(vyy232, vyy234, gb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs1(vyy1892, vyy1902, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(app(ty_Either, ce), cf)) -> new_ltEs0(vyy1891, vyy1901, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(app(ty_Either, bdg), bdh)) -> new_ltEs0(vyy1892, vyy1902, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_lt(vyy232, vyy234, de, df) -> new_compare(vyy232, vyy234, de, df) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt0(vyy232, vyy234, fd, ff) -> new_compare0(vyy232, vyy234, fd, ff) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare3(:(vyy600, vyy601), :(vyy50, vyy51), bgc) -> new_compare3(vyy601, vyy51, bgc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt1(vyy232, vyy234, fg, fh, ga) -> new_compare1(vyy232, vyy234, fg, fh, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs2(vyy189, vyy190, bfa) -> new_compare3(vyy189, vyy190, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(ty_Maybe, dd)) -> new_ltEs3(vyy1891, vyy1901, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(ty_Maybe, bee)) -> new_ltEs3(vyy1892, vyy1902, bee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(ty_[], dc)) -> new_ltEs2(vyy1891, vyy1901, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(ty_[], bed)) -> new_ltEs2(vyy1892, vyy1902, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs1(vyy233, vyy235, ef, eg, eh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(app(ty_Either, ed), ee)) -> new_ltEs0(vyy233, vyy235, ed, ee) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(ty_Maybe, fb)) -> new_ltEs3(vyy233, vyy235, fb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(ty_[], fa)) -> new_ltEs2(vyy233, vyy235, fa) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(app(ty_@2, de), df), fc) -> new_compare(vyy232, vyy234, de, df) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(vyy600, vyy50, vyy173, app(app(ty_@2, bgd), bge)) -> new_compare(vyy600, vyy50, bgd, bge) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs3(Just(vyy1890), Just(vyy1900), app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs1(vyy1890, vyy1900, bff, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Just(vyy1890), Just(vyy1900), app(app(ty_Either, bfd), bfe)) -> new_ltEs0(vyy1890, vyy1900, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Just(vyy1890), Just(vyy1900), app(ty_Maybe, bgb)) -> new_ltEs3(vyy1890, vyy1900, bgb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vyy1890), Just(vyy1900), app(ty_[], bga)) -> new_ltEs2(vyy1890, vyy1900, bga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vyy1890), Just(vyy1900), app(app(ty_@2, bfb), bfc)) -> new_ltEs(vyy1890, vyy1900, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(ty_[], gb), fc) -> new_compare3(vyy232, vyy234, gb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare0(Right(vyy600), Right(vyy50), bef, beg) -> new_compare21(vyy600, vyy50, new_esEs7(vyy600, vyy50, beg), bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(vyy1891, vyy1901, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, bbb, app(app(ty_@2, bde), bdf)) -> new_ltEs(vyy1892, vyy1902, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, ea, app(app(ty_@2, eb), ec)) -> new_ltEs(vyy233, vyy235, eb, ec) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(ty_Maybe, ca), bb) -> new_lt3(vyy1890, vyy1900, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(ty_[], bh), bb) -> new_lt2(vyy1890, vyy1900, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(vyy196, vyy197, False, ceh, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs1(vyy196, vyy197, cfe, cff, cfg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(vyy196, vyy197, False, ceh, app(app(ty_Either, cfc), cfd)) -> new_ltEs0(vyy196, vyy197, cfc, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare21(vyy196, vyy197, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyy196, vyy197, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare21(vyy196, vyy197, False, ceh, app(ty_[], cfh)) -> new_ltEs2(vyy196, vyy197, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(app(ty_Either, fd), ff), fc) -> new_compare0(vyy232, vyy234, fd, ff) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(vyy196, vyy197, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(vyy196, vyy197, cfa, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_primCompAux(vyy600, vyy50, vyy173, app(app(ty_Either, bgf), bgg)) -> new_compare0(vyy600, vyy50, bgf, bgg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(app(app(ty_@3, be), bf), bg), bb) -> new_lt1(vyy1890, vyy1900, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs1(vyy209, vyy212, cda, cdb, cdc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(app(ty_Either, ccg), cch)) -> new_ltEs0(vyy209, vyy212, ccg, cch) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(ty_Maybe, cde)) -> new_ltEs3(vyy209, vyy212, cde) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(ty_[], cdd)) -> new_ltEs2(vyy209, vyy212, cdd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(app(app(ty_@3, fg), fh), ga), fc) -> new_compare1(vyy232, vyy234, fg, fh, ga) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare2(vyy232, vyy233, vyy234, vyy235, False, app(ty_Maybe, gc), fc) -> new_compare4(vyy232, vyy234, gc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, cab, app(app(ty_@2, cce), ccf)) -> new_ltEs(vyy209, vyy212, cce, ccf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_primCompAux(vyy600, vyy50, vyy173, app(app(app(ty_@3, bgh), bha), bhb)) -> new_compare1(vyy600, vyy50, bgh, bha, bhb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(vyy223, vyy224, False, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs1(vyy223, vyy224, cec, ced, cee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(vyy223, vyy224, False, app(app(ty_Either, cea), ceb)) -> new_ltEs0(vyy223, vyy224, cea, ceb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(vyy223, vyy224, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyy223, vyy224, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare23(vyy223, vyy224, False, app(ty_[], cef)) -> new_ltEs2(vyy223, vyy224, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare23(vyy223, vyy224, False, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vyy223, vyy224, cdg, cdh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyy600, vyy50, vyy173, app(ty_Maybe, bhd)) -> new_compare4(vyy600, vyy50, bhd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyy600, vyy50, vyy173, app(ty_[], bhc)) -> new_compare3(vyy600, vyy50, bhc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(vyy189, vyy190, False, app(ty_[], bfa), beh) -> new_compare3(vyy189, vyy190, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(app(ty_@2, h), ba), bb) -> new_lt(vyy1890, vyy1900, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), app(app(ty_Either, bc), bd), bb) -> new_lt0(vyy1890, vyy1900, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs1(vyy1890, vyy1900, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(vyy1890), Left(vyy1900), app(app(app(ty_@3, ha), hb), hc), gf) -> new_ltEs1(vyy1890, vyy1900, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(app(ty_Either, baa), bab)) -> new_ltEs0(vyy1890, vyy1900, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vyy1890), Left(vyy1900), app(app(ty_Either, gg), gh), gf) -> new_ltEs0(vyy1890, vyy1900, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Left(vyy1890), Left(vyy1900), app(ty_Maybe, he), gf) -> new_ltEs3(vyy1890, vyy1900, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(ty_Maybe, bag)) -> new_ltEs3(vyy1890, vyy1900, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(vyy1890), Left(vyy1900), app(ty_[], hd), gf) -> new_ltEs2(vyy1890, vyy1900, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(ty_[], baf)) -> new_ltEs2(vyy1890, vyy1900, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(vyy1890), Left(vyy1900), app(app(ty_@2, gd), ge), gf) -> new_ltEs(vyy1890, vyy1900, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vyy1890), Right(vyy1900), hf, app(app(ty_@2, hg), hh)) -> new_ltEs(vyy1890, vyy1900, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(app(app(ty_@3, ha), hb), hc)), gf), beh) -> new_ltEs1(vyy1890, vyy1900, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(app(app(ty_@3, bff), bfg), bfh)), beh) -> new_ltEs1(vyy1890, vyy1900, bff, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(app(app(ty_@3, bac), bad), bae)), beh) -> new_ltEs1(vyy1890, vyy1900, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(app(app(ty_@3, bea), beb), bec)), beh) -> new_ltEs1(vyy1892, vyy1902, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db)), beh) -> new_ltEs1(vyy1891, vyy1901, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(ty_Maybe, bcb), bbb, bbc) -> new_lt3(vyy1890, vyy1900, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(ty_Maybe, bdd), bbc) -> new_lt3(vyy1891, vyy1901, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(ty_[], bdc), bbc) -> new_lt2(vyy1891, vyy1901, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(ty_[], bca), bbb, bbc) -> new_lt2(vyy1890, vyy1900, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(app(app(ty_@3, bch), bda), bdb), bbc) -> new_lt1(vyy1891, vyy1901, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(app(app(ty_@3, bbf), bbg), bbh), bbb, bbc) -> new_lt1(vyy1890, vyy1900, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(app(ty_@2, bah), bba), bbb, bbc) -> new_lt(vyy1890, vyy1900, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(app(ty_@2, bcd), bce), bbc) -> new_lt(vyy1891, vyy1901, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), app(app(ty_Either, bbd), bbe), bbb, bbc) -> new_lt0(vyy1890, vyy1900, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), bcc, app(app(ty_Either, bcf), bcg), bbc) -> new_lt0(vyy1891, vyy1901, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(app(ty_Either, bdg), bdh)), beh) -> new_ltEs0(vyy1892, vyy1902, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(app(ty_Either, gg), gh)), gf), beh) -> new_ltEs0(vyy1890, vyy1900, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(app(ty_Either, baa), bab)), beh) -> new_ltEs0(vyy1890, vyy1900, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(app(ty_Either, ce), cf)), beh) -> new_ltEs0(vyy1891, vyy1901, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(app(ty_Either, bfd), bfe)), beh) -> new_ltEs0(vyy1890, vyy1900, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(ty_Maybe, dd)), beh) -> new_ltEs3(vyy1891, vyy1901, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(ty_Maybe, bgb)), beh) -> new_ltEs3(vyy1890, vyy1900, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(ty_Maybe, he)), gf), beh) -> new_ltEs3(vyy1890, vyy1900, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(ty_Maybe, bag)), beh) -> new_ltEs3(vyy1890, vyy1900, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(ty_Maybe, bee)), beh) -> new_ltEs3(vyy1892, vyy1902, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(ty_[], dc)), beh) -> new_ltEs2(vyy1891, vyy1901, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(ty_[], bed)), beh) -> new_ltEs2(vyy1892, vyy1902, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(ty_[], hd)), gf), beh) -> new_ltEs2(vyy1890, vyy1900, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(ty_[], baf)), beh) -> new_ltEs2(vyy1890, vyy1900, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(ty_[], bga)), beh) -> new_ltEs2(vyy1890, vyy1900, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vyy1890), Just(vyy1900), False, app(ty_Maybe, app(app(ty_@2, bfb), bfc)), beh) -> new_ltEs(vyy1890, vyy1900, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyy1890), Left(vyy1900), False, app(app(ty_Either, app(app(ty_@2, gd), ge)), gf), beh) -> new_ltEs(vyy1890, vyy1900, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd)), beh) -> new_ltEs(vyy1891, vyy1901, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vyy1890), Right(vyy1900), False, app(app(ty_Either, hf), app(app(ty_@2, hg), hh)), beh) -> new_ltEs(vyy1890, vyy1900, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), bbb), app(app(ty_@2, bde), bdf)), beh) -> new_ltEs(vyy1892, vyy1902, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(ty_Maybe, cbb), cab, cac) -> new_lt3(vyy207, vyy210, cbb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(ty_Maybe, ccd), cac) -> new_lt3(vyy208, vyy211, ccd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(ty_Maybe, ca)), bb), beh) -> new_lt3(vyy1890, vyy1900, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), bbb), bbc), beh) -> new_lt3(vyy1890, vyy1900, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(ty_Maybe, bdd)), bbc), beh) -> new_lt3(vyy1891, vyy1901, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(ty_[], ccc), cac) -> new_lt2(vyy208, vyy211, ccc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(ty_[], cba), cab, cac) -> new_lt2(vyy207, vyy210, cba) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(ty_[], bdc)), bbc), beh) -> new_lt2(vyy1891, vyy1901, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(ty_[], bca)), bbb), bbc), beh) -> new_lt2(vyy1890, vyy1900, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(ty_[], bh)), bb), beh) -> new_lt2(vyy1890, vyy1900, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(app(app(ty_@3, cbh), cca), ccb), cac) -> new_lt1(vyy208, vyy211, cbh, cca, ccb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(app(app(ty_@3, caf), cag), cah), cab, cac) -> new_lt1(vyy207, vyy210, caf, cag, cah) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb), beh) -> new_lt1(vyy1890, vyy1900, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(app(app(ty_@3, bbf), bbg), bbh)), bbb), bbc), beh) -> new_lt1(vyy1890, vyy1900, bbf, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(app(app(ty_@3, bch), bda), bdb)), bbc), beh) -> new_lt1(vyy1891, vyy1901, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(app(ty_@2, bhh), caa), cab, cac) -> new_lt(vyy207, vyy210, bhh, caa) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(app(ty_@2, cbd), cbe), cac) -> new_lt(vyy208, vyy211, cbd, cbe) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, app(app(ty_Either, cad), cae), cab, cac) -> new_lt0(vyy207, vyy210, cad, cae) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare22(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cbc, app(app(ty_Either, cbf), cbg), cac) -> new_lt0(vyy208, vyy211, cbf, cbg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(app(ty_@2, bah), bba)), bbb), bbc), beh) -> new_lt(vyy1890, vyy1900, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(app(ty_@2, bcd), bce)), bbc), beh) -> new_lt(vyy1891, vyy1901, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb), beh) -> new_lt(vyy1890, vyy1900, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), False, app(app(ty_@2, app(app(ty_Either, bc), bd)), bb), beh) -> new_lt0(vyy1890, vyy1900, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, bcc), app(app(ty_Either, bcf), bcg)), bbc), beh) -> new_lt0(vyy1891, vyy1901, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), False, app(app(app(ty_@3, app(app(ty_Either, bbd), bbe)), bbb), bbc), beh) -> new_lt0(vyy1890, vyy1900, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(ty_[], gd)) -> new_esEs0(vyy6001, vyy501, gd) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(app(ty_@3, bab), bac), bad), he) -> new_esEs3(vyy6000, vyy500, bab, bac, bad) new_esEs(Left(vyy6000), Left(vyy500), app(ty_[], bc), bb) -> new_esEs0(vyy6000, vyy500, bc) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyy6000, vyy500, bdh, bea, beb) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(app(ty_@2, gf), gg)) -> new_esEs2(vyy6001, vyy501, gf, gg) new_esEs(Right(vyy6000), Right(vyy500), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vyy6000, vyy500, db, dc, dd) new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(ty_@2, eb), ec)) -> new_esEs2(vyy6000, vyy500, eb, ec) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vyy6002, vyy502, bag, bah) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(ty_[], hf), he) -> new_esEs0(vyy6000, vyy500, hf) new_esEs1(Just(vyy6000), Just(vyy500), app(app(ty_Either, eg), eh)) -> new_esEs(vyy6000, vyy500, eg, eh) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(ty_Either, hc), hd), he) -> new_esEs(vyy6000, vyy500, hc, hd) new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(ty_Either, df), dg)) -> new_esEs(vyy6000, vyy500, df, dg) new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(ty_[], dh)) -> new_esEs0(vyy6000, vyy500, dh) new_esEs(Right(vyy6000), Right(vyy500), cb, app(app(ty_@2, cg), da)) -> new_esEs2(vyy6000, vyy500, cg, da) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyy6002, vyy502, bbe, bbf, bbg) new_esEs(Right(vyy6000), Right(vyy500), cb, app(ty_Maybe, cf)) -> new_esEs1(vyy6000, vyy500, cf) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(ty_@2, hh), baa), he) -> new_esEs2(vyy6000, vyy500, hh, baa) new_esEs(Left(vyy6000), Left(vyy500), app(app(ty_@2, be), bf), bb) -> new_esEs2(vyy6000, vyy500, be, bf) new_esEs(Right(vyy6000), Right(vyy500), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyy6000, vyy500, cc, cd) new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), de) -> new_esEs0(vyy6001, vyy501, de) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vyy6001, vyy501, bce, bcf) new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(ty_Maybe, ea)) -> new_esEs1(vyy6000, vyy500, ea) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(ty_[], bdd), baf, bcb) -> new_esEs0(vyy6000, vyy500, bdd) new_esEs1(Just(vyy6000), Just(vyy500), app(ty_[], fa)) -> new_esEs0(vyy6000, vyy500, fa) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vyy6002, vyy502, bbc, bbd) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vyy6001, vyy501, gh, ha, hb) new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vyy6000, vyy500, ed, ee, ef) new_esEs1(Just(vyy6000), Just(vyy500), app(app(ty_@2, fc), fd)) -> new_esEs2(vyy6000, vyy500, fc, fd) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyy6001, vyy501, bcg, bch, bda) new_esEs1(Just(vyy6000), Just(vyy500), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vyy6000, vyy500, ff, fg, fh) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(ty_[], bba)) -> new_esEs0(vyy6002, vyy502, bba) new_esEs(Left(vyy6000), Left(vyy500), app(app(ty_Either, h), ba), bb) -> new_esEs(vyy6000, vyy500, h, ba) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(ty_@2, bdf), bdg), baf, bcb) -> new_esEs2(vyy6000, vyy500, bdf, bdg) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(ty_[], bcc), bcb) -> new_esEs0(vyy6001, vyy501, bcc) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(ty_Maybe, bde), baf, bcb) -> new_esEs1(vyy6000, vyy500, bde) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(ty_Maybe, ge)) -> new_esEs1(vyy6001, vyy501, ge) new_esEs(Left(vyy6000), Left(vyy500), app(ty_Maybe, bd), bb) -> new_esEs1(vyy6000, vyy500, bd) new_esEs(Left(vyy6000), Left(vyy500), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vyy6000, vyy500, bg, bh, ca) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(app(ty_Either, gb), gc)) -> new_esEs(vyy6001, vyy501, gb, gc) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(ty_Maybe, bcd), bcb) -> new_esEs1(vyy6001, vyy501, bcd) new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(ty_Maybe, hg), he) -> new_esEs1(vyy6000, vyy500, hg) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vyy6000, vyy500, bdb, bdc) new_esEs1(Just(vyy6000), Just(vyy500), app(ty_Maybe, fb)) -> new_esEs1(vyy6000, vyy500, fb) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(ty_Maybe, bbb)) -> new_esEs1(vyy6002, vyy502, bbb) new_esEs(Right(vyy6000), Right(vyy500), cb, app(ty_[], ce)) -> new_esEs0(vyy6000, vyy500, ce) new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vyy6001, vyy501, bbh, bca) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(ty_@2, eb), ec)) -> new_esEs2(vyy6000, vyy500, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(ty_Either, df), dg)) -> new_esEs(vyy6000, vyy500, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vyy6000, vyy500, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(ty_Maybe, ea)) -> new_esEs1(vyy6000, vyy500, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vyy6000), Just(vyy500), app(app(ty_@2, fc), fd)) -> new_esEs2(vyy6000, vyy500, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyy6000), Just(vyy500), app(app(ty_Either, eg), eh)) -> new_esEs(vyy6000, vyy500, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyy6000), Just(vyy500), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vyy6000, vyy500, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vyy6000), Just(vyy500), app(ty_[], fa)) -> new_esEs0(vyy6000, vyy500, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vyy6000), Just(vyy500), app(ty_Maybe, fb)) -> new_esEs1(vyy6000, vyy500, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), app(ty_[], dh)) -> new_esEs0(vyy6000, vyy500, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vyy6000, vyy6001), :(vyy500, vyy501), de) -> new_esEs0(vyy6001, vyy501, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vyy6001, vyy501, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vyy6002, vyy502, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(ty_@2, bdf), bdg), baf, bcb) -> new_esEs2(vyy6000, vyy500, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(app(ty_@2, gf), gg)) -> new_esEs2(vyy6001, vyy501, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(ty_@2, hh), baa), he) -> new_esEs2(vyy6000, vyy500, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Right(vyy6000), Right(vyy500), cb, app(app(ty_@2, cg), da)) -> new_esEs2(vyy6000, vyy500, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyy6000), Left(vyy500), app(app(ty_@2, be), bf), bb) -> new_esEs2(vyy6000, vyy500, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vyy6002, vyy502, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vyy6000, vyy500, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vyy6001, vyy501, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyy6000, vyy500, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyy6002, vyy502, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyy6001, vyy501, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(ty_[], bdd), baf, bcb) -> new_esEs0(vyy6000, vyy500, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(ty_[], bba)) -> new_esEs0(vyy6002, vyy502, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(ty_[], bcc), bcb) -> new_esEs0(vyy6001, vyy501, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(ty_Maybe, bde), baf, bcb) -> new_esEs1(vyy6000, vyy500, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, app(ty_Maybe, bcd), bcb) -> new_esEs1(vyy6001, vyy501, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bae, baf, app(ty_Maybe, bbb)) -> new_esEs1(vyy6002, vyy502, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(ty_Either, hc), hd), he) -> new_esEs(vyy6000, vyy500, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(app(ty_Either, gb), gc)) -> new_esEs(vyy6001, vyy501, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vyy6000), Right(vyy500), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyy6000, vyy500, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyy6000), Left(vyy500), app(app(ty_Either, h), ba), bb) -> new_esEs(vyy6000, vyy500, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(app(ty_@3, bab), bac), bad), he) -> new_esEs3(vyy6000, vyy500, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vyy6001, vyy501, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Right(vyy6000), Right(vyy500), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vyy6000, vyy500, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(vyy6000), Left(vyy500), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vyy6000, vyy500, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(ty_[], gd)) -> new_esEs0(vyy6001, vyy501, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(ty_[], hf), he) -> new_esEs0(vyy6000, vyy500, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), ga, app(ty_Maybe, ge)) -> new_esEs1(vyy6001, vyy501, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(ty_Maybe, hg), he) -> new_esEs1(vyy6000, vyy500, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Left(vyy6000), Left(vyy500), app(ty_[], bc), bb) -> new_esEs0(vyy6000, vyy500, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vyy6000), Right(vyy500), cb, app(ty_[], ce)) -> new_esEs0(vyy6000, vyy500, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vyy6000), Right(vyy500), cb, app(ty_Maybe, cf)) -> new_esEs1(vyy6000, vyy500, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyy6000), Left(vyy500), app(ty_Maybe, bd), bb) -> new_esEs1(vyy6000, vyy500, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldFM_GE1(vyy17, vyy19, vyy20, vyy21, vyy22, vyy23, vyy24, False, h, ba, bb) -> new_foldFM_GE(vyy17, vyy19, vyy24, h, ba, bb) new_foldFM_GE(vyy3, vyy5, Branch(vyy60, vyy61, vyy62, vyy63, vyy64), bc, bd, be) -> new_foldFM_GE1(vyy3, vyy5, vyy60, vyy61, vyy62, vyy63, vyy64, new_gtEs(vyy60, vyy5, bd), bc, bd, be) new_foldFM_GE1(vyy17, vyy19, vyy20, vyy21, vyy22, vyy23, vyy24, True, h, ba, bb) -> new_foldFM_GE(vyy17, vyy19, vyy24, h, ba, bb) new_foldFM_GE1(vyy17, vyy19, vyy20, vyy21, vyy22, vyy23, vyy24, True, h, ba, bb) -> new_foldFM_GE(vyy17, vyy19, vyy23, h, ba, bb) The TRS R consists of the following rules: new_lt8(vyy1891, vyy1901, ty_Float) -> new_lt16(vyy1891, vyy1901) new_esEs27(vyy1890, vyy1900, ty_Double) -> new_esEs15(vyy1890, vyy1900) new_esEs8(vyy602, vyy52, app(app(ty_@2, eab), eac)) -> new_esEs22(vyy602, vyy52, eab, eac) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(vyy1890, vyy1900, ty_Int) -> new_esEs14(vyy1890, vyy1900) new_esEs26(vyy1891, vyy1901, app(ty_Ratio, baf)) -> new_esEs21(vyy1891, vyy1901, baf) new_pePe(True, vyy311) -> True new_esEs19(Just(vyy6000), Just(vyy500), app(app(app(ty_@3, eha), ehb), ehc)) -> new_esEs23(vyy6000, vyy500, eha, ehb, ehc) new_esEs10(vyy600, vyy50, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs23(vyy600, vyy50, ech, eda, edb) new_esEs17(Right(vyy6000), Right(vyy500), cdh, ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_ltEs4(vyy223, vyy224, ty_Char) -> new_ltEs7(vyy223, vyy224) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs6(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_ltEs20(vyy189, vyy190, ty_Float) -> new_ltEs13(vyy189, vyy190) new_lt23(vyy232, vyy234, app(ty_Ratio, ed)) -> new_lt5(vyy232, vyy234, ed) new_esEs11(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_lt8(vyy1891, vyy1901, ty_Ordering) -> new_lt18(vyy1891, vyy1901) new_esEs29(vyy6001, vyy501, app(app(ty_@2, beh), bfa)) -> new_esEs22(vyy6001, vyy501, beh, bfa) new_ltEs7(vyy189, vyy190) -> new_fsEs(new_compare14(vyy189, vyy190)) new_esEs7(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_esEs28(vyy6002, vyy502, ty_Char) -> new_esEs20(vyy6002, vyy502) new_esEs20(Char(vyy6000), Char(vyy500)) -> new_primEqNat0(vyy6000, vyy500) new_esEs5(vyy600, vyy50, app(ty_Ratio, ffc)) -> new_esEs21(vyy600, vyy50, ffc) new_esEs17(Left(vyy6000), Left(vyy500), app(ty_[], cch), cce) -> new_esEs18(vyy6000, vyy500, cch) new_compare16(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, False, bcc, bcd, bce) -> GT new_compare25(vyy189, vyy190, False, cbe, cbf) -> new_compare17(vyy189, vyy190, new_ltEs20(vyy189, vyy190, cbe), cbe, cbf) new_esEs27(vyy1890, vyy1900, ty_Ordering) -> new_esEs13(vyy1890, vyy1900) new_compare211(vyy232, vyy233, vyy234, vyy235, False, fcc, fcd) -> new_compare111(vyy232, vyy233, vyy234, vyy235, new_lt23(vyy232, vyy234, fcc), new_asAs(new_esEs37(vyy232, vyy234, fcc), new_ltEs24(vyy233, vyy235, fcd)), fcc, fcd) new_lt23(vyy232, vyy234, ty_Double) -> new_lt10(vyy232, vyy234) new_esEs36(vyy1890, vyy1900, app(ty_Ratio, fad)) -> new_esEs21(vyy1890, vyy1900, fad) new_lt7(vyy1890, vyy1900, app(app(ty_@2, gd), ge)) -> new_lt13(vyy1890, vyy1900, gd, ge) new_esEs35(vyy6000, vyy500, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs23(vyy6000, vyy500, deh, dfa, dfb) new_lt22(vyy1890, vyy1900, ty_Integer) -> new_lt6(vyy1890, vyy1900) new_esEs37(vyy232, vyy234, ty_Double) -> new_esEs15(vyy232, vyy234) new_lt11(vyy232, vyy234) -> new_esEs13(new_compare14(vyy232, vyy234), LT) new_esEs31(vyy6001, vyy501, ty_Integer) -> new_esEs12(vyy6001, vyy501) new_ltEs21(vyy209, vyy212, ty_Ordering) -> new_ltEs16(vyy209, vyy212) new_esEs8(vyy602, vyy52, ty_Bool) -> new_esEs24(vyy602, vyy52) new_esEs29(vyy6001, vyy501, ty_Bool) -> new_esEs24(vyy6001, vyy501) new_lt20(vyy207, vyy210, app(app(ty_@2, cff), cfg)) -> new_lt13(vyy207, vyy210, cff, cfg) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, ty_Char) -> new_ltEs7(vyy1890, vyy1900) new_esEs34(vyy207, vyy210, app(ty_[], cge)) -> new_esEs18(vyy207, vyy210, cge) new_esEs17(Left(vyy6000), Left(vyy500), app(app(app(ty_@3, cde), cdf), cdg), cce) -> new_esEs23(vyy6000, vyy500, cde, cdf, cdg) new_lt18(vyy232, vyy234) -> new_esEs13(new_compare30(vyy232, vyy234), LT) new_primEqNat0(Succ(vyy60000), Succ(vyy5000)) -> new_primEqNat0(vyy60000, vyy5000) new_ltEs21(vyy209, vyy212, ty_Char) -> new_ltEs7(vyy209, vyy212) new_ltEs22(vyy196, vyy197, ty_Double) -> new_ltEs6(vyy196, vyy197) new_esEs32(vyy6000, vyy500, ty_Float) -> new_esEs16(vyy6000, vyy500) new_not(True) -> False new_primCompAux00(vyy217, LT) -> LT new_compare17(vyy255, vyy256, False, fdg, fdh) -> GT new_esEs17(Left(vyy6000), Left(vyy500), ty_Float, cce) -> new_esEs16(vyy6000, vyy500) new_esEs26(vyy1891, vyy1901, ty_@0) -> new_esEs25(vyy1891, vyy1901) new_lt20(vyy207, vyy210, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_lt15(vyy207, vyy210, cgb, cgc, cgd) new_ltEs24(vyy233, vyy235, ty_Integer) -> new_ltEs18(vyy233, vyy235) new_compare26(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, False, cfc, cfd, cfe) -> new_compare15(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, new_lt20(vyy207, vyy210, cfc), new_asAs(new_esEs34(vyy207, vyy210, cfc), new_pePe(new_lt21(vyy208, vyy211, cfd), new_asAs(new_esEs33(vyy208, vyy211, cfd), new_ltEs21(vyy209, vyy212, cfe)))), cfc, cfd, cfe) new_compare30(LT, LT) -> EQ new_esEs8(vyy602, vyy52, app(app(ty_Either, dhe), dhf)) -> new_esEs17(vyy602, vyy52, dhe, dhf) new_compare13(Nothing, Just(vyy50), cg) -> LT new_esEs11(vyy600, vyy50, app(app(ty_Either, dbd), dbe)) -> new_esEs17(vyy600, vyy50, dbd, dbe) new_esEs11(vyy600, vyy50, app(ty_Maybe, dbg)) -> new_esEs19(vyy600, vyy50, dbg) new_primEqNat0(Succ(vyy60000), Zero) -> False new_primEqNat0(Zero, Succ(vyy5000)) -> False new_esEs29(vyy6001, vyy501, ty_Integer) -> new_esEs12(vyy6001, vyy501) new_esEs12(Integer(vyy6000), Integer(vyy500)) -> new_primEqInt(vyy6000, vyy500) new_ltEs21(vyy209, vyy212, app(ty_[], dba)) -> new_ltEs14(vyy209, vyy212, dba) new_esEs24(False, True) -> False new_esEs24(True, False) -> False new_esEs40(GT) -> False new_esEs30(vyy6000, vyy500, ty_Char) -> new_esEs20(vyy6000, vyy500) new_ltEs13(vyy189, vyy190) -> new_fsEs(new_compare11(vyy189, vyy190)) new_lt21(vyy208, vyy211, ty_Float) -> new_lt16(vyy208, vyy211) new_esEs31(vyy6001, vyy501, ty_Int) -> new_esEs14(vyy6001, vyy501) new_esEs34(vyy207, vyy210, ty_Ordering) -> new_esEs13(vyy207, vyy210) new_esEs31(vyy6001, vyy501, app(ty_Ratio, bhe)) -> new_esEs21(vyy6001, vyy501, bhe) new_esEs13(LT, LT) -> True new_esEs4(vyy601, vyy51, app(app(app(ty_@3, feh), ffa), ffb)) -> new_esEs23(vyy601, vyy51, feh, ffa, ffb) new_lt20(vyy207, vyy210, ty_Int) -> new_lt12(vyy207, vyy210) new_compare30(GT, GT) -> EQ new_lt7(vyy1890, vyy1900, app(ty_Ratio, hd)) -> new_lt5(vyy1890, vyy1900, hd) new_esEs9(vyy601, vyy51, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs23(vyy601, vyy51, ebf, ebg, ebh) new_primCmpInt(Pos(Succ(vyy6000)), Neg(vyy50)) -> GT new_lt22(vyy1890, vyy1900, app(ty_[], fac)) -> new_lt17(vyy1890, vyy1900, fac) new_ltEs20(vyy189, vyy190, ty_@0) -> new_ltEs10(vyy189, vyy190) new_ltEs10(vyy189, vyy190) -> new_fsEs(new_compare7(vyy189, vyy190)) new_compare112(vyy282, vyy283, vyy284, vyy285, True, ffd, ffe) -> LT new_compare19(vyy600, vyy50, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare29(vyy600, vyy50, ddb, ddc, ddd) new_esEs26(vyy1891, vyy1901, ty_Int) -> new_esEs14(vyy1891, vyy1901) new_ltEs5(False, True) -> True new_ltEs19(vyy1892, vyy1902, ty_Integer) -> new_ltEs18(vyy1892, vyy1902) new_esEs5(vyy600, vyy50, app(ty_Maybe, ega)) -> new_esEs19(vyy600, vyy50, ega) new_primPlusNat1(Succ(vyy31200), Succ(vyy601000)) -> Succ(Succ(new_primPlusNat1(vyy31200, vyy601000))) new_compare5(:(vyy600, vyy601), [], ce) -> GT new_primCmpNat0(Zero, Succ(vyy500)) -> LT new_ltEs23(vyy1891, vyy1901, ty_Bool) -> new_ltEs5(vyy1891, vyy1901) new_ltEs22(vyy196, vyy197, ty_Int) -> new_ltEs8(vyy196, vyy197) new_ltEs19(vyy1892, vyy1902, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs12(vyy1892, vyy1902, bbd, bbe, bbf) new_esEs8(vyy602, vyy52, app(ty_[], dhg)) -> new_esEs18(vyy602, vyy52, dhg) new_lt7(vyy1890, vyy1900, app(app(app(ty_@3, gh), ha), hb)) -> new_lt15(vyy1890, vyy1900, gh, ha, hb) new_esEs11(vyy600, vyy50, app(app(ty_@2, dca), dcb)) -> new_esEs22(vyy600, vyy50, dca, dcb) new_ltEs19(vyy1892, vyy1902, ty_Char) -> new_ltEs7(vyy1892, vyy1902) new_esEs31(vyy6001, vyy501, app(ty_Maybe, bhd)) -> new_esEs19(vyy6001, vyy501, bhd) new_esEs26(vyy1891, vyy1901, ty_Integer) -> new_esEs12(vyy1891, vyy1901) new_esEs33(vyy208, vyy211, app(ty_Ratio, chh)) -> new_esEs21(vyy208, vyy211, chh) new_lt20(vyy207, vyy210, ty_Double) -> new_lt10(vyy207, vyy210) new_esEs27(vyy1890, vyy1900, app(ty_[], hc)) -> new_esEs18(vyy1890, vyy1900, hc) new_ltEs20(vyy189, vyy190, app(ty_Maybe, ee)) -> new_ltEs17(vyy189, vyy190, ee) new_ltEs23(vyy1891, vyy1901, app(ty_Ratio, fbf)) -> new_ltEs15(vyy1891, vyy1901, fbf) new_compare19(vyy600, vyy50, ty_Float) -> new_compare11(vyy600, vyy50) new_esEs35(vyy6000, vyy500, ty_Float) -> new_esEs16(vyy6000, vyy500) new_esEs36(vyy1890, vyy1900, ty_@0) -> new_esEs25(vyy1890, vyy1900) new_esEs10(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_lt22(vyy1890, vyy1900, ty_Char) -> new_lt11(vyy1890, vyy1900) new_compare19(vyy600, vyy50, app(app(ty_@2, dcf), dcg)) -> new_compare27(vyy600, vyy50, dcf, dcg) new_esEs29(vyy6001, vyy501, app(ty_[], bee)) -> new_esEs18(vyy6001, vyy501, bee) new_esEs13(GT, GT) -> True new_esEs21(:%(vyy6000, vyy6001), :%(vyy500, vyy501), ffc) -> new_asAs(new_esEs39(vyy6000, vyy500, ffc), new_esEs38(vyy6001, vyy501, ffc)) new_esEs8(vyy602, vyy52, app(ty_Ratio, eaa)) -> new_esEs21(vyy602, vyy52, eaa) new_esEs7(vyy600, vyy50, app(app(app(ty_@3, efd), efe), eff)) -> new_esEs23(vyy600, vyy50, efd, efe, eff) new_gtEs(vyy60, vyy5, ty_@0) -> new_not(new_esEs40(new_compare7(vyy60, vyy5))) new_esEs34(vyy207, vyy210, app(app(ty_@2, cff), cfg)) -> new_esEs22(vyy207, vyy210, cff, cfg) new_esEs8(vyy602, vyy52, ty_Int) -> new_esEs14(vyy602, vyy52) new_lt22(vyy1890, vyy1900, app(app(ty_Either, ehf), ehg)) -> new_lt14(vyy1890, vyy1900, ehf, ehg) new_esEs29(vyy6001, vyy501, app(app(ty_Either, bec), bed)) -> new_esEs17(vyy6001, vyy501, bec, bed) new_esEs33(vyy208, vyy211, app(ty_Maybe, daa)) -> new_esEs19(vyy208, vyy211, daa) new_esEs19(Just(vyy6000), Just(vyy500), ty_Float) -> new_esEs16(vyy6000, vyy500) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, ty_Integer) -> new_ltEs18(vyy1890, vyy1900) new_esEs32(vyy6000, vyy500, ty_Double) -> new_esEs15(vyy6000, vyy500) new_primEqInt(Neg(Succ(vyy60000)), Neg(Succ(vyy5000))) -> new_primEqNat0(vyy60000, vyy5000) new_esEs28(vyy6002, vyy502, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs23(vyy6002, vyy502, bdh, bea, beb) new_ltEs22(vyy196, vyy197, app(ty_Maybe, dgf)) -> new_ltEs17(vyy196, vyy197, dgf) new_ltEs4(vyy223, vyy224, ty_Ordering) -> new_ltEs16(vyy223, vyy224) new_lt23(vyy232, vyy234, app(app(ty_@2, efg), efh)) -> new_lt13(vyy232, vyy234, efg, efh) new_ltEs19(vyy1892, vyy1902, app(ty_[], bbg)) -> new_ltEs14(vyy1892, vyy1902, bbg) new_primCmpInt(Neg(Zero), Pos(Succ(vyy500))) -> LT new_lt22(vyy1890, vyy1900, app(app(app(ty_@3, ehh), faa), fab)) -> new_lt15(vyy1890, vyy1900, ehh, faa, fab) new_primMulInt(Pos(vyy500), Pos(vyy6010)) -> Pos(new_primMulNat0(vyy500, vyy6010)) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Ordering, ccb) -> new_ltEs16(vyy1890, vyy1900) new_esEs13(EQ, GT) -> False new_esEs13(GT, EQ) -> False new_compare9(:%(vyy600, vyy601), :%(vyy50, vyy51), ty_Integer) -> new_compare8(new_sr0(vyy600, vyy51), new_sr0(vyy50, vyy601)) new_esEs39(vyy6000, vyy500, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_ltEs4(vyy223, vyy224, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs12(vyy223, vyy224, df, dg, dh) new_compare19(vyy600, vyy50, app(ty_Ratio, ddf)) -> new_compare9(vyy600, vyy50, ddf) new_esEs5(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_lt7(vyy1890, vyy1900, ty_Double) -> new_lt10(vyy1890, vyy1900) new_compare10(vyy272, vyy273, True, dhd) -> LT new_ltEs23(vyy1891, vyy1901, ty_Float) -> new_ltEs13(vyy1891, vyy1901) new_primMulNat0(Succ(vyy5000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyy60100)) -> Zero new_esEs32(vyy6000, vyy500, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs23(vyy6000, vyy500, cbb, cbc, cbd) new_ltEs4(vyy223, vyy224, app(app(ty_Either, dd), de)) -> new_ltEs11(vyy223, vyy224, dd, de) new_esEs5(vyy600, vyy50, app(app(ty_Either, cdh), cce)) -> new_esEs17(vyy600, vyy50, cdh, cce) new_ltEs21(vyy209, vyy212, ty_Integer) -> new_ltEs18(vyy209, vyy212) new_ltEs15(vyy189, vyy190, ccd) -> new_fsEs(new_compare9(vyy189, vyy190, ccd)) new_esEs33(vyy208, vyy211, ty_Int) -> new_esEs14(vyy208, vyy211) new_esEs36(vyy1890, vyy1900, ty_Integer) -> new_esEs12(vyy1890, vyy1900) new_ltEs22(vyy196, vyy197, app(app(ty_@2, dfe), dff)) -> new_ltEs9(vyy196, vyy197, dfe, dff) new_compare19(vyy600, vyy50, ty_Char) -> new_compare14(vyy600, vyy50) new_esEs37(vyy232, vyy234, ty_Ordering) -> new_esEs13(vyy232, vyy234) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Float) -> new_ltEs13(vyy1890, vyy1900) new_esEs31(vyy6001, vyy501, app(ty_[], bhc)) -> new_esEs18(vyy6001, vyy501, bhc) new_lt4(vyy232, vyy234) -> new_esEs13(new_compare7(vyy232, vyy234), LT) new_esEs4(vyy601, vyy51, ty_Char) -> new_esEs20(vyy601, vyy51) new_primPlusNat1(Succ(vyy31200), Zero) -> Succ(vyy31200) new_primPlusNat1(Zero, Succ(vyy601000)) -> Succ(vyy601000) new_esEs31(vyy6001, vyy501, app(app(ty_@2, bhf), bhg)) -> new_esEs22(vyy6001, vyy501, bhf, bhg) new_esEs33(vyy208, vyy211, ty_@0) -> new_esEs25(vyy208, vyy211) new_esEs8(vyy602, vyy52, app(ty_Maybe, dhh)) -> new_esEs19(vyy602, vyy52, dhh) new_gtEs(vyy60, vyy5, app(ty_Ratio, cf)) -> new_not(new_esEs40(new_compare9(vyy60, vyy5, cf))) new_esEs34(vyy207, vyy210, ty_Int) -> new_esEs14(vyy207, vyy210) new_esEs29(vyy6001, vyy501, ty_Double) -> new_esEs15(vyy6001, vyy501) new_esEs30(vyy6000, vyy500, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs23(vyy6000, vyy500, bgd, bge, bgf) new_ltEs22(vyy196, vyy197, ty_Float) -> new_ltEs13(vyy196, vyy197) new_esEs17(Right(vyy6000), Right(vyy500), cdh, ty_Bool) -> new_esEs24(vyy6000, vyy500) new_esEs17(Right(vyy6000), Right(vyy500), cdh, ty_Double) -> new_esEs15(vyy6000, vyy500) new_ltEs12(@3(vyy1890, vyy1891, vyy1892), @3(vyy1900, vyy1901, vyy1902), ga, gb, gc) -> new_pePe(new_lt7(vyy1890, vyy1900, ga), new_asAs(new_esEs27(vyy1890, vyy1900, ga), new_pePe(new_lt8(vyy1891, vyy1901, gb), new_asAs(new_esEs26(vyy1891, vyy1901, gb), new_ltEs19(vyy1892, vyy1902, gc))))) new_lt20(vyy207, vyy210, app(ty_Ratio, cgf)) -> new_lt5(vyy207, vyy210, cgf) new_esEs7(vyy600, vyy50, app(ty_Maybe, eeh)) -> new_esEs19(vyy600, vyy50, eeh) new_esEs6(vyy600, vyy50, app(ty_[], ede)) -> new_esEs18(vyy600, vyy50, ede) new_esEs31(vyy6001, vyy501, app(app(ty_Either, bha), bhb)) -> new_esEs17(vyy6001, vyy501, bha, bhb) new_esEs11(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_ltEs4(vyy223, vyy224, app(ty_[], ea)) -> new_ltEs14(vyy223, vyy224, ea) new_esEs31(vyy6001, vyy501, ty_Bool) -> new_esEs24(vyy6001, vyy501) new_ltEs19(vyy1892, vyy1902, ty_Ordering) -> new_ltEs16(vyy1892, vyy1902) new_esEs6(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_esEs11(vyy600, vyy50, app(ty_Ratio, dbh)) -> new_esEs21(vyy600, vyy50, dbh) new_compare19(vyy600, vyy50, app(ty_[], dde)) -> new_compare5(vyy600, vyy50, dde) new_esEs9(vyy601, vyy51, ty_Float) -> new_esEs16(vyy601, vyy51) new_lt8(vyy1891, vyy1901, app(app(ty_Either, hh), baa)) -> new_lt14(vyy1891, vyy1901, hh, baa) new_compare19(vyy600, vyy50, app(ty_Maybe, ddg)) -> new_compare13(vyy600, vyy50, ddg) new_gtEs(vyy60, vyy5, ty_Float) -> new_not(new_esEs40(new_compare11(vyy60, vyy5))) new_ltEs24(vyy233, vyy235, app(ty_[], fdd)) -> new_ltEs14(vyy233, vyy235, fdd) new_esEs17(Left(vyy6000), Left(vyy500), app(ty_Ratio, cdb), cce) -> new_esEs21(vyy6000, vyy500, cdb) new_lt20(vyy207, vyy210, ty_Integer) -> new_lt6(vyy207, vyy210) new_esEs6(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_esEs11(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_esEs6(vyy600, vyy50, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs23(vyy600, vyy50, eeb, eec, eed) new_esEs33(vyy208, vyy211, ty_Integer) -> new_esEs12(vyy208, vyy211) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, app(app(app(ty_@3, fhd), fhe), fhf)) -> new_ltEs12(vyy1890, vyy1900, fhd, fhe, fhf) new_esEs33(vyy208, vyy211, app(app(app(ty_@3, chd), che), chf)) -> new_esEs23(vyy208, vyy211, chd, che, chf) new_esEs17(Right(vyy6000), Right(vyy500), cdh, app(ty_Ratio, cee)) -> new_esEs21(vyy6000, vyy500, cee) new_primCompAux0(vyy600, vyy50, vyy173, ce) -> new_primCompAux00(vyy173, new_compare19(vyy600, vyy50, ce)) new_esEs8(vyy602, vyy52, ty_Double) -> new_esEs15(vyy602, vyy52) new_esEs31(vyy6001, vyy501, ty_Ordering) -> new_esEs13(vyy6001, vyy501) new_esEs22(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bgg, bgh) -> new_asAs(new_esEs32(vyy6000, vyy500, bgg), new_esEs31(vyy6001, vyy501, bgh)) new_esEs28(vyy6002, vyy502, ty_Int) -> new_esEs14(vyy6002, vyy502) new_esEs33(vyy208, vyy211, ty_Bool) -> new_esEs24(vyy208, vyy211) new_esEs19(Just(vyy6000), Just(vyy500), ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Double, ccb) -> new_ltEs6(vyy1890, vyy1900) new_esEs9(vyy601, vyy51, app(ty_[], eba)) -> new_esEs18(vyy601, vyy51, eba) new_compare5([], [], ce) -> EQ new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Ordering) -> new_ltEs16(vyy1890, vyy1900) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, ty_Bool) -> new_ltEs5(vyy1890, vyy1900) new_lt8(vyy1891, vyy1901, ty_Bool) -> new_lt9(vyy1891, vyy1901) new_esEs7(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_ltEs5(False, False) -> True new_esEs26(vyy1891, vyy1901, app(ty_[], bae)) -> new_esEs18(vyy1891, vyy1901, bae) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Char, ccb) -> new_ltEs7(vyy1890, vyy1900) new_esEs34(vyy207, vyy210, ty_Float) -> new_esEs16(vyy207, vyy210) new_ltEs24(vyy233, vyy235, ty_Double) -> new_ltEs6(vyy233, vyy235) new_lt23(vyy232, vyy234, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt15(vyy232, vyy234, dha, dhb, dhc) new_esEs32(vyy6000, vyy500, ty_Char) -> new_esEs20(vyy6000, vyy500) new_esEs16(Float(vyy6000, vyy6001), Float(vyy500, vyy501)) -> new_esEs14(new_sr(vyy6000, vyy501), new_sr(vyy6001, vyy500)) new_esEs17(Left(vyy6000), Left(vyy500), ty_Ordering, cce) -> new_esEs13(vyy6000, vyy500) new_lt23(vyy232, vyy234, app(ty_Maybe, bcb)) -> new_lt19(vyy232, vyy234, bcb) new_esEs8(vyy602, vyy52, ty_@0) -> new_esEs25(vyy602, vyy52) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Int, ccb) -> new_ltEs8(vyy1890, vyy1900) new_esEs10(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_esEs35(vyy6000, vyy500, ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_esEs27(vyy1890, vyy1900, ty_Integer) -> new_esEs12(vyy1890, vyy1900) new_esEs30(vyy6000, vyy500, app(ty_Ratio, bga)) -> new_esEs21(vyy6000, vyy500, bga) new_compare9(:%(vyy600, vyy601), :%(vyy50, vyy51), ty_Int) -> new_compare12(new_sr(vyy600, vyy51), new_sr(vyy50, vyy601)) new_lt7(vyy1890, vyy1900, ty_Integer) -> new_lt6(vyy1890, vyy1900) new_esEs27(vyy1890, vyy1900, app(app(ty_@2, gd), ge)) -> new_esEs22(vyy1890, vyy1900, gd, ge) new_primCmpInt(Pos(Succ(vyy6000)), Pos(vyy50)) -> new_primCmpNat0(Succ(vyy6000), vyy50) new_esEs35(vyy6000, vyy500, ty_@0) -> new_esEs25(vyy6000, vyy500) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, ty_@0) -> new_ltEs10(vyy1890, vyy1900) new_primCompAux00(vyy217, EQ) -> vyy217 new_esEs19(Just(vyy6000), Just(vyy500), ty_@0) -> new_esEs25(vyy6000, vyy500) new_lt8(vyy1891, vyy1901, ty_Integer) -> new_lt6(vyy1891, vyy1901) new_lt21(vyy208, vyy211, ty_Bool) -> new_lt9(vyy208, vyy211) new_esEs17(Left(vyy6000), Left(vyy500), ty_Char, cce) -> new_esEs20(vyy6000, vyy500) new_esEs35(vyy6000, vyy500, app(ty_Maybe, ded)) -> new_esEs19(vyy6000, vyy500, ded) new_ltEs20(vyy189, vyy190, app(ty_[], ccc)) -> new_ltEs14(vyy189, vyy190, ccc) new_lt15(vyy232, vyy234, dha, dhb, dhc) -> new_esEs13(new_compare29(vyy232, vyy234, dha, dhb, dhc), LT) new_esEs29(vyy6001, vyy501, ty_Ordering) -> new_esEs13(vyy6001, vyy501) new_compare18(Double(vyy600, Pos(vyy6010)), Double(vyy50, Pos(vyy510))) -> new_compare12(new_sr(vyy600, Pos(vyy510)), new_sr(Pos(vyy6010), vyy50)) new_esEs33(vyy208, vyy211, app(app(ty_Either, chb), chc)) -> new_esEs17(vyy208, vyy211, chb, chc) new_lt22(vyy1890, vyy1900, ty_Ordering) -> new_lt18(vyy1890, vyy1900) new_ltEs20(vyy189, vyy190, ty_Double) -> new_ltEs6(vyy189, vyy190) new_esEs31(vyy6001, vyy501, ty_Char) -> new_esEs20(vyy6001, vyy501) new_esEs34(vyy207, vyy210, app(ty_Maybe, cgg)) -> new_esEs19(vyy207, vyy210, cgg) new_esEs7(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_compare30(GT, EQ) -> GT new_ltEs18(vyy189, vyy190) -> new_fsEs(new_compare8(vyy189, vyy190)) new_compare14(Char(vyy600), Char(vyy50)) -> new_primCmpNat0(vyy600, vyy50) new_lt8(vyy1891, vyy1901, ty_Double) -> new_lt10(vyy1891, vyy1901) new_lt20(vyy207, vyy210, app(app(ty_Either, cfh), cga)) -> new_lt14(vyy207, vyy210, cfh, cga) new_esEs34(vyy207, vyy210, app(app(ty_Either, cfh), cga)) -> new_esEs17(vyy207, vyy210, cfh, cga) new_esEs17(Left(vyy6000), Left(vyy500), app(app(ty_@2, cdc), cdd), cce) -> new_esEs22(vyy6000, vyy500, cdc, cdd) new_lt23(vyy232, vyy234, ty_Ordering) -> new_lt18(vyy232, vyy234) new_esEs28(vyy6002, vyy502, ty_Integer) -> new_esEs12(vyy6002, vyy502) new_esEs6(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_esEs14(vyy600, vyy50) -> new_primEqInt(vyy600, vyy50) new_esEs17(Left(vyy6000), Right(vyy500), cdh, cce) -> False new_esEs17(Right(vyy6000), Left(vyy500), cdh, cce) -> False new_ltEs24(vyy233, vyy235, app(app(ty_@2, fce), fcf)) -> new_ltEs9(vyy233, vyy235, fce, fcf) new_lt21(vyy208, vyy211, app(app(ty_Either, chb), chc)) -> new_lt14(vyy208, vyy211, chb, chc) new_esEs17(Right(vyy6000), Right(vyy500), cdh, ty_Float) -> new_esEs16(vyy6000, vyy500) new_compare6(False, True) -> LT new_lt20(vyy207, vyy210, ty_Bool) -> new_lt9(vyy207, vyy210) new_lt23(vyy232, vyy234, ty_@0) -> new_lt4(vyy232, vyy234) new_gtEs(vyy60, vyy5, ty_Double) -> new_not(new_esEs40(new_compare18(vyy60, vyy5))) new_esEs11(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_esEs36(vyy1890, vyy1900, ty_Char) -> new_esEs20(vyy1890, vyy1900) new_esEs29(vyy6001, vyy501, ty_Int) -> new_esEs14(vyy6001, vyy501) new_esEs4(vyy601, vyy51, app(ty_Maybe, fed)) -> new_esEs19(vyy601, vyy51, fed) new_esEs28(vyy6002, vyy502, app(app(ty_@2, bdf), bdg)) -> new_esEs22(vyy6002, vyy502, bdf, bdg) new_lt22(vyy1890, vyy1900, ty_@0) -> new_lt4(vyy1890, vyy1900) new_gtEs(vyy60, vyy5, app(app(ty_Either, bh), ca)) -> new_not(new_esEs40(new_compare28(vyy60, vyy5, bh, ca))) new_esEs35(vyy6000, vyy500, ty_Char) -> new_esEs20(vyy6000, vyy500) new_esEs27(vyy1890, vyy1900, app(ty_Ratio, hd)) -> new_esEs21(vyy1890, vyy1900, hd) new_esEs10(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_esEs17(Right(vyy6000), Right(vyy500), cdh, app(app(ty_@2, cef), ceg)) -> new_esEs22(vyy6000, vyy500, cef, ceg) new_ltEs6(vyy189, vyy190) -> new_fsEs(new_compare18(vyy189, vyy190)) new_compare112(vyy282, vyy283, vyy284, vyy285, False, ffd, ffe) -> GT new_esEs34(vyy207, vyy210, ty_Bool) -> new_esEs24(vyy207, vyy210) new_compare6(True, True) -> EQ new_esEs34(vyy207, vyy210, ty_Integer) -> new_esEs12(vyy207, vyy210) new_lt22(vyy1890, vyy1900, app(ty_Maybe, fae)) -> new_lt19(vyy1890, vyy1900, fae) new_lt7(vyy1890, vyy1900, ty_Float) -> new_lt16(vyy1890, vyy1900) new_ltEs17(Just(vyy1890), Just(vyy1900), app(ty_Ratio, fg)) -> new_ltEs15(vyy1890, vyy1900, fg) new_lt20(vyy207, vyy210, ty_@0) -> new_lt4(vyy207, vyy210) new_esEs34(vyy207, vyy210, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs23(vyy207, vyy210, cgb, cgc, cgd) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Int) -> new_ltEs8(vyy1890, vyy1900) new_esEs19(Just(vyy6000), Just(vyy500), app(ty_Maybe, ege)) -> new_esEs19(vyy6000, vyy500, ege) new_esEs11(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_esEs11(vyy600, vyy50, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs23(vyy600, vyy50, dcc, dcd, dce) new_esEs9(vyy601, vyy51, ty_Double) -> new_esEs15(vyy601, vyy51) new_esEs32(vyy6000, vyy500, ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_@0) -> new_ltEs10(vyy1890, vyy1900) new_esEs26(vyy1891, vyy1901, ty_Double) -> new_esEs15(vyy1891, vyy1901) new_esEs11(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_lt7(vyy1890, vyy1900, ty_@0) -> new_lt4(vyy1890, vyy1900) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Bool) -> new_ltEs5(vyy1890, vyy1900) new_esEs29(vyy6001, vyy501, app(ty_Ratio, beg)) -> new_esEs21(vyy6001, vyy501, beg) new_lt22(vyy1890, vyy1900, ty_Float) -> new_lt16(vyy1890, vyy1900) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Char) -> new_ltEs7(vyy1890, vyy1900) new_primPlusNat0(Succ(vyy3120), vyy60100) -> Succ(Succ(new_primPlusNat1(vyy3120, vyy60100))) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, ty_Ordering) -> new_ltEs16(vyy1890, vyy1900) new_esEs37(vyy232, vyy234, app(app(ty_Either, dgg), dgh)) -> new_esEs17(vyy232, vyy234, dgg, dgh) new_ltEs4(vyy223, vyy224, ty_Float) -> new_ltEs13(vyy223, vyy224) new_esEs35(vyy6000, vyy500, app(app(ty_Either, dea), deb)) -> new_esEs17(vyy6000, vyy500, dea, deb) new_esEs37(vyy232, vyy234, ty_Float) -> new_esEs16(vyy232, vyy234) new_esEs30(vyy6000, vyy500, ty_Int) -> new_esEs14(vyy6000, vyy500) new_esEs19(Just(vyy6000), Just(vyy500), ty_Char) -> new_esEs20(vyy6000, vyy500) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, app(ty_Maybe, gaa)) -> new_ltEs17(vyy1890, vyy1900, gaa) new_lt20(vyy207, vyy210, app(ty_Maybe, cgg)) -> new_lt19(vyy207, vyy210, cgg) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs4(vyy223, vyy224, ty_Integer) -> new_ltEs18(vyy223, vyy224) new_ltEs5(True, True) -> True new_esEs36(vyy1890, vyy1900, app(ty_Maybe, fae)) -> new_esEs19(vyy1890, vyy1900, fae) new_esEs30(vyy6000, vyy500, ty_Ordering) -> new_esEs13(vyy6000, vyy500) new_esEs27(vyy1890, vyy1900, ty_Int) -> new_esEs14(vyy1890, vyy1900) new_ltEs17(Just(vyy1890), Just(vyy1900), app(app(ty_Either, eh), fa)) -> new_ltEs11(vyy1890, vyy1900, eh, fa) new_lt21(vyy208, vyy211, ty_Ordering) -> new_lt18(vyy208, vyy211) new_esEs5(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_esEs37(vyy232, vyy234, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs23(vyy232, vyy234, dha, dhb, dhc) new_compare26(vyy207, vyy208, vyy209, vyy210, vyy211, vyy212, True, cfc, cfd, cfe) -> EQ new_esEs37(vyy232, vyy234, ty_Bool) -> new_esEs24(vyy232, vyy234) new_lt20(vyy207, vyy210, ty_Ordering) -> new_lt18(vyy207, vyy210) new_ltEs11(Left(vyy1890), Left(vyy1900), app(ty_[], fge), ccb) -> new_ltEs14(vyy1890, vyy1900, fge) new_primCmpNat0(Succ(vyy6000), Succ(vyy500)) -> new_primCmpNat0(vyy6000, vyy500) new_compare28(Right(vyy600), Right(vyy50), bh, ca) -> new_compare210(vyy600, vyy50, new_esEs7(vyy600, vyy50, ca), bh, ca) new_lt22(vyy1890, vyy1900, ty_Bool) -> new_lt9(vyy1890, vyy1900) new_esEs17(Left(vyy6000), Left(vyy500), ty_Bool, cce) -> new_esEs24(vyy6000, vyy500) new_esEs40(EQ) -> False new_esEs4(vyy601, vyy51, ty_Float) -> new_esEs16(vyy601, vyy51) new_compare12(vyy60, vyy5) -> new_primCmpInt(vyy60, vyy5) new_ltEs17(Just(vyy1890), Just(vyy1900), app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs12(vyy1890, vyy1900, fb, fc, fd) new_lt7(vyy1890, vyy1900, app(ty_Maybe, he)) -> new_lt19(vyy1890, vyy1900, he) new_esEs36(vyy1890, vyy1900, app(app(ty_Either, ehf), ehg)) -> new_esEs17(vyy1890, vyy1900, ehf, ehg) new_lt23(vyy232, vyy234, ty_Bool) -> new_lt9(vyy232, vyy234) new_ltEs23(vyy1891, vyy1901, ty_Double) -> new_ltEs6(vyy1891, vyy1901) new_lt7(vyy1890, vyy1900, ty_Bool) -> new_lt9(vyy1890, vyy1900) new_esEs26(vyy1891, vyy1901, app(app(ty_@2, hf), hg)) -> new_esEs22(vyy1891, vyy1901, hf, hg) new_compare19(vyy600, vyy50, ty_Int) -> new_compare12(vyy600, vyy50) new_esEs13(EQ, EQ) -> True new_gtEs(vyy60, vyy5, ty_Char) -> new_not(new_esEs40(new_compare14(vyy60, vyy5))) new_lt12(vyy232, vyy234) -> new_esEs13(new_compare12(vyy232, vyy234), LT) new_esEs33(vyy208, vyy211, ty_Char) -> new_esEs20(vyy208, vyy211) new_lt21(vyy208, vyy211, ty_Integer) -> new_lt6(vyy208, vyy211) new_esEs32(vyy6000, vyy500, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_compare19(vyy600, vyy50, ty_Double) -> new_compare18(vyy600, vyy50) new_compare11(Float(vyy600, Pos(vyy6010)), Float(vyy50, Pos(vyy510))) -> new_compare12(new_sr(vyy600, Pos(vyy510)), new_sr(Pos(vyy6010), vyy50)) new_ltEs23(vyy1891, vyy1901, app(ty_[], fbe)) -> new_ltEs14(vyy1891, vyy1901, fbe) new_esEs4(vyy601, vyy51, ty_@0) -> new_esEs25(vyy601, vyy51) new_esEs37(vyy232, vyy234, app(ty_Maybe, bcb)) -> new_esEs19(vyy232, vyy234, bcb) new_lt23(vyy232, vyy234, ty_Float) -> new_lt16(vyy232, vyy234) new_esEs28(vyy6002, vyy502, app(ty_Ratio, bde)) -> new_esEs21(vyy6002, vyy502, bde) new_esEs36(vyy1890, vyy1900, app(app(app(ty_@3, ehh), faa), fab)) -> new_esEs23(vyy1890, vyy1900, ehh, faa, fab) new_esEs36(vyy1890, vyy1900, ty_Bool) -> new_esEs24(vyy1890, vyy1900) new_ltEs11(Left(vyy1890), Left(vyy1900), app(app(app(ty_@3, fgb), fgc), fgd), ccb) -> new_ltEs12(vyy1890, vyy1900, fgb, fgc, fgd) new_lt21(vyy208, vyy211, app(ty_Maybe, daa)) -> new_lt19(vyy208, vyy211, daa) new_primCmpInt(Neg(Succ(vyy6000)), Pos(vyy50)) -> LT new_ltEs4(vyy223, vyy224, ty_Double) -> new_ltEs6(vyy223, vyy224) new_esEs35(vyy6000, vyy500, app(app(ty_@2, def), deg)) -> new_esEs22(vyy6000, vyy500, def, deg) new_compare18(Double(vyy600, Pos(vyy6010)), Double(vyy50, Neg(vyy510))) -> new_compare12(new_sr(vyy600, Pos(vyy510)), new_sr(Neg(vyy6010), vyy50)) new_compare18(Double(vyy600, Neg(vyy6010)), Double(vyy50, Pos(vyy510))) -> new_compare12(new_sr(vyy600, Neg(vyy510)), new_sr(Pos(vyy6010), vyy50)) new_lt21(vyy208, vyy211, ty_@0) -> new_lt4(vyy208, vyy211) new_esEs10(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_esEs19(Just(vyy6000), Just(vyy500), ty_Integer) -> new_esEs12(vyy6000, vyy500) new_esEs9(vyy601, vyy51, ty_Int) -> new_esEs14(vyy601, vyy51) new_esEs19(Just(vyy6000), Just(vyy500), ty_Bool) -> new_esEs24(vyy6000, vyy500) new_lt8(vyy1891, vyy1901, app(app(app(ty_@3, bab), bac), bad)) -> new_lt15(vyy1891, vyy1901, bab, bac, bad) new_ltEs24(vyy233, vyy235, ty_@0) -> new_ltEs10(vyy233, vyy235) new_esEs24(True, True) -> True new_esEs10(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_ltEs20(vyy189, vyy190, ty_Integer) -> new_ltEs18(vyy189, vyy190) new_esEs17(Right(vyy6000), Right(vyy500), cdh, app(ty_[], cec)) -> new_esEs18(vyy6000, vyy500, cec) new_lt23(vyy232, vyy234, app(app(ty_Either, dgg), dgh)) -> new_lt14(vyy232, vyy234, dgg, dgh) new_primCmpInt(Pos(Zero), Neg(Succ(vyy500))) -> GT new_compare111(vyy282, vyy283, vyy284, vyy285, False, vyy287, ffd, ffe) -> new_compare112(vyy282, vyy283, vyy284, vyy285, vyy287, ffd, ffe) new_esEs32(vyy6000, vyy500, app(ty_Ratio, cag)) -> new_esEs21(vyy6000, vyy500, cag) new_compare13(Nothing, Nothing, cg) -> EQ new_gtEs(vyy60, vyy5, app(ty_Maybe, cg)) -> new_not(new_esEs40(new_compare13(vyy60, vyy5, cg))) new_primCmpInt(Neg(Succ(vyy6000)), Neg(vyy50)) -> new_primCmpNat0(vyy50, Succ(vyy6000)) new_gtEs(vyy60, vyy5, app(ty_[], ce)) -> new_not(new_esEs40(new_compare5(vyy60, vyy5, ce))) new_ltEs24(vyy233, vyy235, app(ty_Ratio, fde)) -> new_ltEs15(vyy233, vyy235, fde) new_esEs11(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_esEs37(vyy232, vyy234, ty_@0) -> new_esEs25(vyy232, vyy234) new_esEs34(vyy207, vyy210, ty_Char) -> new_esEs20(vyy207, vyy210) new_esEs9(vyy601, vyy51, app(ty_Ratio, ebc)) -> new_esEs21(vyy601, vyy51, ebc) new_esEs35(vyy6000, vyy500, ty_Bool) -> new_esEs24(vyy6000, vyy500) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_@0, ccb) -> new_ltEs10(vyy1890, vyy1900) new_esEs8(vyy602, vyy52, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs23(vyy602, vyy52, ead, eae, eaf) new_esEs4(vyy601, vyy51, ty_Integer) -> new_esEs12(vyy601, vyy51) new_ltEs22(vyy196, vyy197, app(ty_[], dgd)) -> new_ltEs14(vyy196, vyy197, dgd) new_esEs15(Double(vyy6000, vyy6001), Double(vyy500, vyy501)) -> new_esEs14(new_sr(vyy6000, vyy501), new_sr(vyy6001, vyy500)) new_compare28(Left(vyy600), Left(vyy50), bh, ca) -> new_compare25(vyy600, vyy50, new_esEs6(vyy600, vyy50, bh), bh, ca) new_ltEs24(vyy233, vyy235, ty_Bool) -> new_ltEs5(vyy233, vyy235) new_primEqInt(Pos(Succ(vyy60000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyy5000))) -> False new_esEs33(vyy208, vyy211, ty_Ordering) -> new_esEs13(vyy208, vyy211) new_compare210(vyy196, vyy197, True, dfc, dfd) -> EQ new_esEs19(Just(vyy6000), Just(vyy500), app(app(ty_Either, egb), egc)) -> new_esEs17(vyy6000, vyy500, egb, egc) new_esEs10(vyy600, vyy50, app(app(ty_@2, ecf), ecg)) -> new_esEs22(vyy600, vyy50, ecf, ecg) new_esEs7(vyy600, vyy50, app(ty_[], eeg)) -> new_esEs18(vyy600, vyy50, eeg) new_ltEs4(vyy223, vyy224, ty_Int) -> new_ltEs8(vyy223, vyy224) new_esEs5(vyy600, vyy50, ty_Float) -> new_esEs16(vyy600, vyy50) new_esEs26(vyy1891, vyy1901, ty_Float) -> new_esEs16(vyy1891, vyy1901) new_esEs18([], [], ddh) -> True new_compare13(Just(vyy600), Nothing, cg) -> GT new_esEs28(vyy6002, vyy502, app(ty_[], bdc)) -> new_esEs18(vyy6002, vyy502, bdc) new_lt20(vyy207, vyy210, ty_Float) -> new_lt16(vyy207, vyy210) new_esEs30(vyy6000, vyy500, app(app(ty_@2, bgb), bgc)) -> new_esEs22(vyy6000, vyy500, bgb, bgc) new_primCmpNat0(Zero, Zero) -> EQ new_esEs10(vyy600, vyy50, app(app(ty_Either, eca), ecb)) -> new_esEs17(vyy600, vyy50, eca, ecb) new_ltEs24(vyy233, vyy235, ty_Float) -> new_ltEs13(vyy233, vyy235) new_esEs9(vyy601, vyy51, app(ty_Maybe, ebb)) -> new_esEs19(vyy601, vyy51, ebb) new_esEs6(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_esEs32(vyy6000, vyy500, ty_Int) -> new_esEs14(vyy6000, vyy500) new_esEs32(vyy6000, vyy500, ty_@0) -> new_esEs25(vyy6000, vyy500) new_ltEs16(GT, EQ) -> False new_ltEs21(vyy209, vyy212, ty_Double) -> new_ltEs6(vyy209, vyy212) new_compare15(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, True, vyy304, bcc, bcd, bce) -> new_compare16(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, True, bcc, bcd, bce) new_lt8(vyy1891, vyy1901, app(ty_Maybe, bag)) -> new_lt19(vyy1891, vyy1901, bag) new_esEs17(Right(vyy6000), Right(vyy500), cdh, ty_@0) -> new_esEs25(vyy6000, vyy500) new_esEs31(vyy6001, vyy501, ty_Float) -> new_esEs16(vyy6001, vyy501) new_esEs17(Left(vyy6000), Left(vyy500), ty_Integer, cce) -> new_esEs12(vyy6000, vyy500) new_lt23(vyy232, vyy234, ty_Integer) -> new_lt6(vyy232, vyy234) new_lt7(vyy1890, vyy1900, ty_Char) -> new_lt11(vyy1890, vyy1900) new_esEs30(vyy6000, vyy500, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_esEs4(vyy601, vyy51, app(app(ty_@2, fef), feg)) -> new_esEs22(vyy601, vyy51, fef, feg) new_ltEs23(vyy1891, vyy1901, app(app(ty_@2, faf), fag)) -> new_ltEs9(vyy1891, vyy1901, faf, fag) new_primCompAux00(vyy217, GT) -> GT new_ltEs19(vyy1892, vyy1902, ty_Float) -> new_ltEs13(vyy1892, vyy1902) new_lt5(vyy232, vyy234, ed) -> new_esEs13(new_compare9(vyy232, vyy234, ed), LT) new_compare210(vyy196, vyy197, False, dfc, dfd) -> new_compare110(vyy196, vyy197, new_ltEs22(vyy196, vyy197, dfd), dfc, dfd) new_esEs19(Just(vyy6000), Just(vyy500), app(app(ty_@2, egg), egh)) -> new_esEs22(vyy6000, vyy500, egg, egh) new_esEs4(vyy601, vyy51, app(app(ty_Either, fea), feb)) -> new_esEs17(vyy601, vyy51, fea, feb) new_esEs6(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_gtEs(vyy60, vyy5, ty_Bool) -> new_not(new_esEs40(new_compare6(vyy60, vyy5))) new_esEs33(vyy208, vyy211, app(ty_[], chg)) -> new_esEs18(vyy208, vyy211, chg) new_ltEs11(Left(vyy1890), Right(vyy1900), cca, ccb) -> True new_esEs17(Right(vyy6000), Right(vyy500), cdh, ty_Char) -> new_esEs20(vyy6000, vyy500) new_esEs4(vyy601, vyy51, ty_Bool) -> new_esEs24(vyy601, vyy51) new_ltEs16(LT, LT) -> True new_esEs35(vyy6000, vyy500, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_ltEs4(vyy223, vyy224, app(ty_Maybe, ec)) -> new_ltEs17(vyy223, vyy224, ec) new_ltEs20(vyy189, vyy190, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs12(vyy189, vyy190, ga, gb, gc) new_compare110(vyy262, vyy263, True, fca, fcb) -> LT new_esEs37(vyy232, vyy234, app(ty_Ratio, ed)) -> new_esEs21(vyy232, vyy234, ed) new_esEs28(vyy6002, vyy502, ty_Ordering) -> new_esEs13(vyy6002, vyy502) new_esEs33(vyy208, vyy211, ty_Double) -> new_esEs15(vyy208, vyy211) new_esEs37(vyy232, vyy234, ty_Int) -> new_esEs14(vyy232, vyy234) new_lt7(vyy1890, vyy1900, ty_Ordering) -> new_lt18(vyy1890, vyy1900) new_lt21(vyy208, vyy211, app(app(app(ty_@3, chd), che), chf)) -> new_lt15(vyy208, vyy211, chd, che, chf) new_ltEs19(vyy1892, vyy1902, ty_@0) -> new_ltEs10(vyy1892, vyy1902) new_esEs9(vyy601, vyy51, app(app(ty_Either, eag), eah)) -> new_esEs17(vyy601, vyy51, eag, eah) new_lt8(vyy1891, vyy1901, ty_@0) -> new_lt4(vyy1891, vyy1901) new_esEs17(Right(vyy6000), Right(vyy500), cdh, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs23(vyy6000, vyy500, ceh, cfa, cfb) new_lt23(vyy232, vyy234, ty_Char) -> new_lt11(vyy232, vyy234) new_esEs36(vyy1890, vyy1900, ty_Float) -> new_esEs16(vyy1890, vyy1900) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Bool, ccb) -> new_ltEs5(vyy1890, vyy1900) new_esEs9(vyy601, vyy51, ty_Bool) -> new_esEs24(vyy601, vyy51) new_ltEs19(vyy1892, vyy1902, ty_Double) -> new_ltEs6(vyy1892, vyy1902) new_primCmpNat0(Succ(vyy6000), Zero) -> GT new_esEs10(vyy600, vyy50, app(ty_Ratio, ece)) -> new_esEs21(vyy600, vyy50, ece) new_esEs8(vyy602, vyy52, ty_Float) -> new_esEs16(vyy602, vyy52) new_ltEs17(Nothing, Nothing, ee) -> True new_pePe(False, vyy311) -> vyy311 new_lt22(vyy1890, vyy1900, app(ty_Ratio, fad)) -> new_lt5(vyy1890, vyy1900, fad) new_ltEs23(vyy1891, vyy1901, ty_Int) -> new_ltEs8(vyy1891, vyy1901) new_ltEs17(Nothing, Just(vyy1900), ee) -> True new_ltEs17(Just(vyy1890), Nothing, ee) -> False new_compare25(vyy189, vyy190, True, cbe, cbf) -> EQ new_lt7(vyy1890, vyy1900, app(app(ty_Either, gf), gg)) -> new_lt14(vyy1890, vyy1900, gf, gg) new_esEs27(vyy1890, vyy1900, ty_Char) -> new_esEs20(vyy1890, vyy1900) new_lt20(vyy207, vyy210, ty_Char) -> new_lt11(vyy207, vyy210) new_compare11(Float(vyy600, Pos(vyy6010)), Float(vyy50, Neg(vyy510))) -> new_compare12(new_sr(vyy600, Pos(vyy510)), new_sr(Neg(vyy6010), vyy50)) new_compare11(Float(vyy600, Neg(vyy6010)), Float(vyy50, Pos(vyy510))) -> new_compare12(new_sr(vyy600, Neg(vyy510)), new_sr(Pos(vyy6010), vyy50)) new_ltEs16(LT, GT) -> True new_ltEs11(Left(vyy1890), Left(vyy1900), app(ty_Maybe, fgg), ccb) -> new_ltEs17(vyy1890, vyy1900, fgg) new_esEs35(vyy6000, vyy500, ty_Int) -> new_esEs14(vyy6000, vyy500) new_esEs30(vyy6000, vyy500, app(app(ty_Either, bfe), bff)) -> new_esEs17(vyy6000, vyy500, bfe, bff) new_esEs26(vyy1891, vyy1901, ty_Ordering) -> new_esEs13(vyy1891, vyy1901) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_compare10(vyy272, vyy273, False, dhd) -> GT new_esEs7(vyy600, vyy50, app(app(ty_@2, efb), efc)) -> new_esEs22(vyy600, vyy50, efb, efc) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, ty_Float) -> new_ltEs13(vyy1890, vyy1900) new_esEs35(vyy6000, vyy500, app(ty_Ratio, dee)) -> new_esEs21(vyy6000, vyy500, dee) new_lt22(vyy1890, vyy1900, ty_Double) -> new_lt10(vyy1890, vyy1900) new_esEs19(Just(vyy6000), Just(vyy500), app(ty_Ratio, egf)) -> new_esEs21(vyy6000, vyy500, egf) new_primEqInt(Pos(Zero), Neg(Succ(vyy5000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyy5000))) -> False new_gtEs(vyy60, vyy5, app(app(app(ty_@3, cb), cc), cd)) -> new_not(new_esEs40(new_compare29(vyy60, vyy5, cb, cc, cd))) new_compare24(vyy223, vyy224, True, da) -> EQ new_compare211(vyy232, vyy233, vyy234, vyy235, True, fcc, fcd) -> EQ new_esEs7(vyy600, vyy50, ty_Bool) -> new_esEs24(vyy600, vyy50) new_compare111(vyy282, vyy283, vyy284, vyy285, True, vyy287, ffd, ffe) -> new_compare112(vyy282, vyy283, vyy284, vyy285, True, ffd, ffe) new_ltEs16(GT, LT) -> False new_esEs28(vyy6002, vyy502, ty_Bool) -> new_esEs24(vyy6002, vyy502) new_esEs5(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_compare5([], :(vyy50, vyy51), ce) -> LT new_lt23(vyy232, vyy234, app(ty_[], fbh)) -> new_lt17(vyy232, vyy234, fbh) new_esEs10(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_ltEs21(vyy209, vyy212, ty_Float) -> new_ltEs13(vyy209, vyy212) new_ltEs19(vyy1892, vyy1902, app(ty_Maybe, bca)) -> new_ltEs17(vyy1892, vyy1902, bca) new_compare30(LT, GT) -> LT new_esEs29(vyy6001, vyy501, ty_Char) -> new_esEs20(vyy6001, vyy501) new_esEs10(vyy600, vyy50, app(ty_Maybe, ecd)) -> new_esEs19(vyy600, vyy50, ecd) new_ltEs9(@2(vyy1890, vyy1891), @2(vyy1900, vyy1901), cbg, cbh) -> new_pePe(new_lt22(vyy1890, vyy1900, cbg), new_asAs(new_esEs36(vyy1890, vyy1900, cbg), new_ltEs23(vyy1891, vyy1901, cbh))) new_esEs37(vyy232, vyy234, ty_Char) -> new_esEs20(vyy232, vyy234) new_esEs5(vyy600, vyy50, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs23(vyy600, vyy50, bcf, bcg, bch) new_esEs28(vyy6002, vyy502, ty_Double) -> new_esEs15(vyy6002, vyy502) new_gtEs(vyy60, vyy5, ty_Int) -> new_not(new_esEs40(new_compare12(vyy60, vyy5))) new_esEs9(vyy601, vyy51, app(app(ty_@2, ebd), ebe)) -> new_esEs22(vyy601, vyy51, ebd, ebe) new_primPlusNat0(Zero, vyy60100) -> Succ(vyy60100) new_ltEs11(Right(vyy1890), Left(vyy1900), cca, ccb) -> False new_esEs17(Left(vyy6000), Left(vyy500), ty_@0, cce) -> new_esEs25(vyy6000, vyy500) new_esEs32(vyy6000, vyy500, app(app(ty_Either, cac), cad)) -> new_esEs17(vyy6000, vyy500, cac, cad) new_compare5(:(vyy600, vyy601), :(vyy50, vyy51), ce) -> new_primCompAux0(vyy600, vyy50, new_compare5(vyy601, vyy51, ce), ce) new_compare19(vyy600, vyy50, ty_Bool) -> new_compare6(vyy600, vyy50) new_esEs6(vyy600, vyy50, app(ty_Maybe, edf)) -> new_esEs19(vyy600, vyy50, edf) new_esEs7(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_esEs32(vyy6000, vyy500, ty_Bool) -> new_esEs24(vyy6000, vyy500) new_fsEs(vyy306) -> new_not(new_esEs13(vyy306, GT)) new_ltEs5(True, False) -> False new_ltEs11(Right(vyy1890), Right(vyy1900), cca, ty_Int) -> new_ltEs8(vyy1890, vyy1900) new_esEs30(vyy6000, vyy500, app(ty_[], bfg)) -> new_esEs18(vyy6000, vyy500, bfg) new_esEs7(vyy600, vyy50, app(app(ty_Either, eee), eef)) -> new_esEs17(vyy600, vyy50, eee, eef) new_ltEs16(EQ, GT) -> True new_lt8(vyy1891, vyy1901, app(ty_[], bae)) -> new_lt17(vyy1891, vyy1901, bae) new_ltEs16(EQ, EQ) -> True new_compare17(vyy255, vyy256, True, fdg, fdh) -> LT new_esEs37(vyy232, vyy234, ty_Integer) -> new_esEs12(vyy232, vyy234) new_esEs6(vyy600, vyy50, app(app(ty_Either, edc), edd)) -> new_esEs17(vyy600, vyy50, edc, edd) new_gtEs(vyy60, vyy5, app(app(ty_@2, bf), bg)) -> new_not(new_esEs40(new_compare27(vyy60, vyy5, bf, bg))) new_esEs10(vyy600, vyy50, ty_@0) -> new_esEs25(vyy600, vyy50) new_lt6(vyy232, vyy234) -> new_esEs13(new_compare8(vyy232, vyy234), LT) new_compare6(False, False) -> EQ new_ltEs17(Just(vyy1890), Just(vyy1900), app(app(ty_@2, ef), eg)) -> new_ltEs9(vyy1890, vyy1900, ef, eg) new_lt8(vyy1891, vyy1901, app(app(ty_@2, hf), hg)) -> new_lt13(vyy1891, vyy1901, hf, hg) new_esEs19(Just(vyy6000), Just(vyy500), ty_Int) -> new_esEs14(vyy6000, vyy500) new_ltEs17(Just(vyy1890), Just(vyy1900), app(ty_Maybe, fh)) -> new_ltEs17(vyy1890, vyy1900, fh) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Integer) -> new_ltEs18(vyy1890, vyy1900) new_ltEs11(Left(vyy1890), Left(vyy1900), app(app(ty_Either, ffh), fga), ccb) -> new_ltEs11(vyy1890, vyy1900, ffh, fga) new_esEs29(vyy6001, vyy501, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs23(vyy6001, vyy501, bfb, bfc, bfd) new_compare28(Left(vyy600), Right(vyy50), bh, ca) -> LT new_ltEs23(vyy1891, vyy1901, ty_Integer) -> new_ltEs18(vyy1891, vyy1901) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, app(ty_[], fhg)) -> new_ltEs14(vyy1890, vyy1900, fhg) new_esEs17(Left(vyy6000), Left(vyy500), ty_Int, cce) -> new_esEs14(vyy6000, vyy500) new_esEs30(vyy6000, vyy500, ty_Bool) -> new_esEs24(vyy6000, vyy500) new_ltEs20(vyy189, vyy190, ty_Ordering) -> new_ltEs16(vyy189, vyy190) new_esEs5(vyy600, vyy50, app(ty_[], ddh)) -> new_esEs18(vyy600, vyy50, ddh) new_esEs38(vyy6001, vyy501, ty_Integer) -> new_esEs12(vyy6001, vyy501) new_esEs36(vyy1890, vyy1900, ty_Ordering) -> new_esEs13(vyy1890, vyy1900) new_compare30(EQ, GT) -> LT new_compare16(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, True, bcc, bcd, bce) -> LT new_esEs31(vyy6001, vyy501, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs23(vyy6001, vyy501, bhh, caa, cab) new_esEs32(vyy6000, vyy500, app(app(ty_@2, cah), cba)) -> new_esEs22(vyy6000, vyy500, cah, cba) new_lt16(vyy232, vyy234) -> new_esEs13(new_compare11(vyy232, vyy234), LT) new_primMulInt(Neg(vyy500), Neg(vyy6010)) -> Pos(new_primMulNat0(vyy500, vyy6010)) new_esEs33(vyy208, vyy211, ty_Float) -> new_esEs16(vyy208, vyy211) new_primCmpInt(Pos(Zero), Pos(Succ(vyy500))) -> new_primCmpNat0(Zero, Succ(vyy500)) new_ltEs22(vyy196, vyy197, ty_Integer) -> new_ltEs18(vyy196, vyy197) new_esEs34(vyy207, vyy210, ty_@0) -> new_esEs25(vyy207, vyy210) new_esEs32(vyy6000, vyy500, app(ty_Maybe, caf)) -> new_esEs19(vyy6000, vyy500, caf) new_esEs9(vyy601, vyy51, ty_@0) -> new_esEs25(vyy601, vyy51) new_ltEs21(vyy209, vyy212, app(ty_Maybe, dbc)) -> new_ltEs17(vyy209, vyy212, dbc) new_esEs34(vyy207, vyy210, app(ty_Ratio, cgf)) -> new_esEs21(vyy207, vyy210, cgf) new_esEs30(vyy6000, vyy500, ty_Double) -> new_esEs15(vyy6000, vyy500) new_ltEs21(vyy209, vyy212, app(app(ty_@2, dab), dac)) -> new_ltEs9(vyy209, vyy212, dab, dac) new_compare30(GT, LT) -> GT new_compare28(Right(vyy600), Left(vyy50), bh, ca) -> GT new_esEs11(vyy600, vyy50, app(ty_[], dbf)) -> new_esEs18(vyy600, vyy50, dbf) new_ltEs4(vyy223, vyy224, ty_Bool) -> new_ltEs5(vyy223, vyy224) new_compare8(Integer(vyy600), Integer(vyy50)) -> new_primCmpInt(vyy600, vyy50) new_primMulInt(Pos(vyy500), Neg(vyy6010)) -> Neg(new_primMulNat0(vyy500, vyy6010)) new_primMulInt(Neg(vyy500), Pos(vyy6010)) -> Neg(new_primMulNat0(vyy500, vyy6010)) new_esEs6(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_compare30(EQ, LT) -> GT new_lt21(vyy208, vyy211, ty_Double) -> new_lt10(vyy208, vyy211) new_esEs18(:(vyy6000, vyy6001), :(vyy500, vyy501), ddh) -> new_asAs(new_esEs35(vyy6000, vyy500, ddh), new_esEs18(vyy6001, vyy501, ddh)) new_esEs30(vyy6000, vyy500, app(ty_Maybe, bfh)) -> new_esEs19(vyy6000, vyy500, bfh) new_compare29(@3(vyy600, vyy601, vyy602), @3(vyy50, vyy51, vyy52), cb, cc, cd) -> new_compare26(vyy600, vyy601, vyy602, vyy50, vyy51, vyy52, new_asAs(new_esEs10(vyy600, vyy50, cb), new_asAs(new_esEs9(vyy601, vyy51, cc), new_esEs8(vyy602, vyy52, cd))), cb, cc, cd) new_lt20(vyy207, vyy210, app(ty_[], cge)) -> new_lt17(vyy207, vyy210, cge) new_esEs36(vyy1890, vyy1900, app(ty_[], fac)) -> new_esEs18(vyy1890, vyy1900, fac) new_ltEs23(vyy1891, vyy1901, ty_Ordering) -> new_ltEs16(vyy1891, vyy1901) new_ltEs24(vyy233, vyy235, ty_Int) -> new_ltEs8(vyy233, vyy235) new_esEs40(LT) -> True new_ltEs20(vyy189, vyy190, app(app(ty_Either, cca), ccb)) -> new_ltEs11(vyy189, vyy190, cca, ccb) new_sr0(Integer(vyy500), Integer(vyy6010)) -> Integer(new_primMulInt(vyy500, vyy6010)) new_lt22(vyy1890, vyy1900, app(app(ty_@2, ehd), ehe)) -> new_lt13(vyy1890, vyy1900, ehd, ehe) new_esEs35(vyy6000, vyy500, ty_Double) -> new_esEs15(vyy6000, vyy500) new_esEs19(Nothing, Just(vyy500), ega) -> False new_esEs19(Just(vyy6000), Nothing, ega) -> False new_esEs19(Nothing, Nothing, ega) -> True new_esEs28(vyy6002, vyy502, ty_Float) -> new_esEs16(vyy6002, vyy502) new_lt21(vyy208, vyy211, ty_Char) -> new_lt11(vyy208, vyy211) new_esEs30(vyy6000, vyy500, ty_@0) -> new_esEs25(vyy6000, vyy500) new_ltEs24(vyy233, vyy235, ty_Char) -> new_ltEs7(vyy233, vyy235) new_esEs5(vyy600, vyy50, ty_Char) -> new_esEs20(vyy600, vyy50) new_asAs(True, vyy250) -> vyy250 new_ltEs11(Left(vyy1890), Left(vyy1900), app(ty_Ratio, fgf), ccb) -> new_ltEs15(vyy1890, vyy1900, fgf) new_compare6(True, False) -> GT new_esEs17(Right(vyy6000), Right(vyy500), cdh, ty_Integer) -> new_esEs12(vyy6000, vyy500) new_esEs38(vyy6001, vyy501, ty_Int) -> new_esEs14(vyy6001, vyy501) new_esEs31(vyy6001, vyy501, ty_Double) -> new_esEs15(vyy6001, vyy501) new_esEs8(vyy602, vyy52, ty_Ordering) -> new_esEs13(vyy602, vyy52) new_ltEs11(Left(vyy1890), Left(vyy1900), app(app(ty_@2, fff), ffg), ccb) -> new_ltEs9(vyy1890, vyy1900, fff, ffg) new_ltEs20(vyy189, vyy190, app(app(ty_@2, cbg), cbh)) -> new_ltEs9(vyy189, vyy190, cbg, cbh) new_esEs4(vyy601, vyy51, ty_Double) -> new_esEs15(vyy601, vyy51) new_compare27(@2(vyy600, vyy601), @2(vyy50, vyy51), bf, bg) -> new_compare211(vyy600, vyy601, vyy50, vyy51, new_asAs(new_esEs5(vyy600, vyy50, bf), new_esEs4(vyy601, vyy51, bg)), bf, bg) new_esEs26(vyy1891, vyy1901, ty_Char) -> new_esEs20(vyy1891, vyy1901) new_esEs29(vyy6001, vyy501, ty_@0) -> new_esEs25(vyy6001, vyy501) new_ltEs4(vyy223, vyy224, app(ty_Ratio, eb)) -> new_ltEs15(vyy223, vyy224, eb) new_lt21(vyy208, vyy211, ty_Int) -> new_lt12(vyy208, vyy211) new_compare19(vyy600, vyy50, ty_@0) -> new_compare7(vyy600, vyy50) new_esEs33(vyy208, vyy211, app(app(ty_@2, cgh), cha)) -> new_esEs22(vyy208, vyy211, cgh, cha) new_ltEs19(vyy1892, vyy1902, app(app(ty_@2, bah), bba)) -> new_ltEs9(vyy1892, vyy1902, bah, bba) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, app(app(ty_Either, fhb), fhc)) -> new_ltEs11(vyy1890, vyy1900, fhb, fhc) new_esEs6(vyy600, vyy50, app(app(ty_@2, edh), eea)) -> new_esEs22(vyy600, vyy50, edh, eea) new_lt21(vyy208, vyy211, app(ty_Ratio, chh)) -> new_lt5(vyy208, vyy211, chh) new_ltEs4(vyy223, vyy224, ty_@0) -> new_ltEs10(vyy223, vyy224) new_esEs17(Right(vyy6000), Right(vyy500), cdh, ty_Int) -> new_esEs14(vyy6000, vyy500) new_sr(vyy50, vyy601) -> new_primMulInt(vyy50, vyy601) new_esEs30(vyy6000, vyy500, ty_Float) -> new_esEs16(vyy6000, vyy500) new_ltEs16(GT, GT) -> True new_esEs24(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_esEs28(vyy6002, vyy502, app(ty_Maybe, bdd)) -> new_esEs19(vyy6002, vyy502, bdd) new_ltEs24(vyy233, vyy235, app(ty_Maybe, fdf)) -> new_ltEs17(vyy233, vyy235, fdf) new_compare19(vyy600, vyy50, ty_Ordering) -> new_compare30(vyy600, vyy50) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, app(app(ty_@2, fgh), fha)) -> new_ltEs9(vyy1890, vyy1900, fgh, fha) new_lt8(vyy1891, vyy1901, ty_Char) -> new_lt11(vyy1891, vyy1901) new_ltEs22(vyy196, vyy197, ty_Bool) -> new_ltEs5(vyy196, vyy197) new_esEs27(vyy1890, vyy1900, app(app(ty_Either, gf), gg)) -> new_esEs17(vyy1890, vyy1900, gf, gg) new_esEs4(vyy601, vyy51, app(ty_[], fec)) -> new_esEs18(vyy601, vyy51, fec) new_lt7(vyy1890, vyy1900, app(ty_[], hc)) -> new_lt17(vyy1890, vyy1900, hc) new_esEs23(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bcf, bcg, bch) -> new_asAs(new_esEs30(vyy6000, vyy500, bcf), new_asAs(new_esEs29(vyy6001, vyy501, bcg), new_esEs28(vyy6002, vyy502, bch))) new_lt8(vyy1891, vyy1901, app(ty_Ratio, baf)) -> new_lt5(vyy1891, vyy1901, baf) new_ltEs24(vyy233, vyy235, app(app(ty_Either, fcg), fch)) -> new_ltEs11(vyy233, vyy235, fcg, fch) new_ltEs23(vyy1891, vyy1901, app(ty_Maybe, fbg)) -> new_ltEs17(vyy1891, vyy1901, fbg) new_esEs9(vyy601, vyy51, ty_Ordering) -> new_esEs13(vyy601, vyy51) new_esEs29(vyy6001, vyy501, app(ty_Maybe, bef)) -> new_esEs19(vyy6001, vyy501, bef) new_esEs32(vyy6000, vyy500, app(ty_[], cae)) -> new_esEs18(vyy6000, vyy500, cae) new_esEs28(vyy6002, vyy502, app(app(ty_Either, bda), bdb)) -> new_esEs17(vyy6002, vyy502, bda, bdb) new_esEs5(vyy600, vyy50, app(app(ty_@2, bgg), bgh)) -> new_esEs22(vyy600, vyy50, bgg, bgh) new_ltEs20(vyy189, vyy190, ty_Char) -> new_ltEs7(vyy189, vyy190) new_primEqInt(Neg(Succ(vyy60000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyy5000))) -> False new_ltEs19(vyy1892, vyy1902, app(app(ty_Either, bbb), bbc)) -> new_ltEs11(vyy1892, vyy1902, bbb, bbc) new_primEqInt(Pos(Succ(vyy60000)), Pos(Succ(vyy5000))) -> new_primEqNat0(vyy60000, vyy5000) new_esEs17(Left(vyy6000), Left(vyy500), app(ty_Maybe, cda), cce) -> new_esEs19(vyy6000, vyy500, cda) new_esEs27(vyy1890, vyy1900, ty_Bool) -> new_esEs24(vyy1890, vyy1900) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, app(ty_Ratio, fhh)) -> new_ltEs15(vyy1890, vyy1900, fhh) new_esEs7(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_esEs27(vyy1890, vyy1900, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs23(vyy1890, vyy1900, gh, ha, hb) new_esEs31(vyy6001, vyy501, ty_@0) -> new_esEs25(vyy6001, vyy501) new_esEs4(vyy601, vyy51, ty_Ordering) -> new_esEs13(vyy601, vyy51) new_esEs10(vyy600, vyy50, app(ty_[], ecc)) -> new_esEs18(vyy600, vyy50, ecc) new_primEqInt(Pos(Succ(vyy60000)), Neg(vyy500)) -> False new_primEqInt(Neg(Succ(vyy60000)), Pos(vyy500)) -> False new_esEs5(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_esEs10(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_primCmpInt(Neg(Zero), Neg(Succ(vyy500))) -> new_primCmpNat0(Succ(vyy500), Zero) new_compare19(vyy600, vyy50, app(app(ty_Either, dch), dda)) -> new_compare28(vyy600, vyy50, dch, dda) new_esEs7(vyy600, vyy50, app(ty_Ratio, efa)) -> new_esEs21(vyy600, vyy50, efa) new_esEs13(LT, GT) -> False new_esEs13(GT, LT) -> False new_compare18(Double(vyy600, Neg(vyy6010)), Double(vyy50, Neg(vyy510))) -> new_compare12(new_sr(vyy600, Neg(vyy510)), new_sr(Neg(vyy6010), vyy50)) new_esEs17(Right(vyy6000), Right(vyy500), cdh, app(ty_Maybe, ced)) -> new_esEs19(vyy6000, vyy500, ced) new_ltEs22(vyy196, vyy197, app(ty_Ratio, dge)) -> new_ltEs15(vyy196, vyy197, dge) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(vyy196, vyy197, ty_Ordering) -> new_ltEs16(vyy196, vyy197) new_ltEs23(vyy1891, vyy1901, ty_@0) -> new_ltEs10(vyy1891, vyy1901) new_esEs34(vyy207, vyy210, ty_Double) -> new_esEs15(vyy207, vyy210) new_ltEs19(vyy1892, vyy1902, ty_Bool) -> new_ltEs5(vyy1892, vyy1902) new_esEs5(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_gtEs(vyy60, vyy5, ty_Ordering) -> new_not(new_esEs40(new_compare30(vyy60, vyy5))) new_esEs26(vyy1891, vyy1901, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs23(vyy1891, vyy1901, bab, bac, bad) new_esEs35(vyy6000, vyy500, app(ty_[], dec)) -> new_esEs18(vyy6000, vyy500, dec) new_lt21(vyy208, vyy211, app(app(ty_@2, cgh), cha)) -> new_lt13(vyy208, vyy211, cgh, cha) new_ltEs4(vyy223, vyy224, app(app(ty_@2, db), dc)) -> new_ltEs9(vyy223, vyy224, db, dc) new_esEs27(vyy1890, vyy1900, ty_Float) -> new_esEs16(vyy1890, vyy1900) new_compare13(Just(vyy600), Just(vyy50), cg) -> new_compare24(vyy600, vyy50, new_esEs11(vyy600, vyy50, cg), cg) new_esEs11(vyy600, vyy50, ty_Double) -> new_esEs15(vyy600, vyy50) new_esEs25(@0, @0) -> True new_ltEs17(Just(vyy1890), Just(vyy1900), app(ty_[], ff)) -> new_ltEs14(vyy1890, vyy1900, ff) new_esEs6(vyy600, vyy50, app(ty_Ratio, edg)) -> new_esEs21(vyy600, vyy50, edg) new_esEs8(vyy602, vyy52, ty_Char) -> new_esEs20(vyy602, vyy52) new_lt13(vyy232, vyy234, efg, efh) -> new_esEs13(new_compare27(vyy232, vyy234, efg, efh), LT) new_not(False) -> True new_esEs29(vyy6001, vyy501, ty_Float) -> new_esEs16(vyy6001, vyy501) new_esEs7(vyy600, vyy50, ty_Integer) -> new_esEs12(vyy600, vyy50) new_ltEs8(vyy189, vyy190) -> new_fsEs(new_compare12(vyy189, vyy190)) new_compare15(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, False, vyy304, bcc, bcd, bce) -> new_compare16(vyy297, vyy298, vyy299, vyy300, vyy301, vyy302, vyy304, bcc, bcd, bce) new_lt10(vyy232, vyy234) -> new_esEs13(new_compare18(vyy232, vyy234), LT) new_lt21(vyy208, vyy211, app(ty_[], chg)) -> new_lt17(vyy208, vyy211, chg) new_lt8(vyy1891, vyy1901, ty_Int) -> new_lt12(vyy1891, vyy1901) new_lt19(vyy232, vyy234, bcb) -> new_esEs13(new_compare13(vyy232, vyy234, bcb), LT) new_ltEs24(vyy233, vyy235, ty_Ordering) -> new_ltEs16(vyy233, vyy235) new_ltEs21(vyy209, vyy212, app(app(ty_Either, dad), dae)) -> new_ltEs11(vyy209, vyy212, dad, dae) new_compare30(EQ, EQ) -> EQ new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Float, ccb) -> new_ltEs13(vyy1890, vyy1900) new_esEs37(vyy232, vyy234, app(ty_[], fbh)) -> new_esEs18(vyy232, vyy234, fbh) new_ltEs17(Just(vyy1890), Just(vyy1900), ty_Double) -> new_ltEs6(vyy1890, vyy1900) new_compare30(LT, EQ) -> LT new_ltEs14(vyy189, vyy190, ccc) -> new_fsEs(new_compare5(vyy189, vyy190, ccc)) new_ltEs21(vyy209, vyy212, ty_Int) -> new_ltEs8(vyy209, vyy212) new_ltEs21(vyy209, vyy212, app(ty_Ratio, dbb)) -> new_ltEs15(vyy209, vyy212, dbb) new_esEs17(Left(vyy6000), Left(vyy500), app(app(ty_Either, ccf), ccg), cce) -> new_esEs17(vyy6000, vyy500, ccf, ccg) new_esEs36(vyy1890, vyy1900, app(app(ty_@2, ehd), ehe)) -> new_esEs22(vyy1890, vyy1900, ehd, ehe) new_esEs27(vyy1890, vyy1900, app(ty_Maybe, he)) -> new_esEs19(vyy1890, vyy1900, he) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(vyy233, vyy235, app(app(app(ty_@3, fda), fdb), fdc)) -> new_ltEs12(vyy233, vyy235, fda, fdb, fdc) new_esEs26(vyy1891, vyy1901, app(app(ty_Either, hh), baa)) -> new_esEs17(vyy1891, vyy1901, hh, baa) new_esEs9(vyy601, vyy51, ty_Integer) -> new_esEs12(vyy601, vyy51) new_ltEs21(vyy209, vyy212, app(app(app(ty_@3, daf), dag), dah)) -> new_ltEs12(vyy209, vyy212, daf, dag, dah) new_ltEs21(vyy209, vyy212, ty_@0) -> new_ltEs10(vyy209, vyy212) new_compare19(vyy600, vyy50, ty_Integer) -> new_compare8(vyy600, vyy50) new_esEs18(:(vyy6000, vyy6001), [], ddh) -> False new_esEs18([], :(vyy500, vyy501), ddh) -> False new_esEs26(vyy1891, vyy1901, ty_Bool) -> new_esEs24(vyy1891, vyy1901) new_esEs6(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_gtEs(vyy60, vyy5, ty_Integer) -> new_not(new_esEs40(new_compare8(vyy60, vyy5))) new_lt22(vyy1890, vyy1900, ty_Int) -> new_lt12(vyy1890, vyy1900) new_ltEs23(vyy1891, vyy1901, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_ltEs12(vyy1891, vyy1901, fbb, fbc, fbd) new_ltEs22(vyy196, vyy197, ty_Char) -> new_ltEs7(vyy196, vyy197) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs23(vyy1891, vyy1901, app(app(ty_Either, fah), fba)) -> new_ltEs11(vyy1891, vyy1901, fah, fba) new_compare11(Float(vyy600, Neg(vyy6010)), Float(vyy50, Neg(vyy510))) -> new_compare12(new_sr(vyy600, Neg(vyy510)), new_sr(Neg(vyy6010), vyy50)) new_primMulNat0(Succ(vyy5000), Succ(vyy60100)) -> new_primPlusNat0(new_primMulNat0(vyy5000, Succ(vyy60100)), vyy60100) new_esEs5(vyy600, vyy50, ty_Int) -> new_esEs14(vyy600, vyy50) new_ltEs22(vyy196, vyy197, app(app(app(ty_@3, dga), dgb), dgc)) -> new_ltEs12(vyy196, vyy197, dga, dgb, dgc) new_ltEs19(vyy1892, vyy1902, app(ty_Ratio, bbh)) -> new_ltEs15(vyy1892, vyy1902, bbh) new_esEs17(Left(vyy6000), Left(vyy500), ty_Double, cce) -> new_esEs15(vyy6000, vyy500) new_lt23(vyy232, vyy234, ty_Int) -> new_lt12(vyy232, vyy234) new_ltEs23(vyy1891, vyy1901, ty_Char) -> new_ltEs7(vyy1891, vyy1901) new_compare24(vyy223, vyy224, False, da) -> new_compare10(vyy223, vyy224, new_ltEs4(vyy223, vyy224, da), da) new_esEs27(vyy1890, vyy1900, ty_@0) -> new_esEs25(vyy1890, vyy1900) new_esEs4(vyy601, vyy51, ty_Int) -> new_esEs14(vyy601, vyy51) new_esEs39(vyy6000, vyy500, ty_Int) -> new_esEs14(vyy6000, vyy500) new_ltEs20(vyy189, vyy190, ty_Int) -> new_ltEs8(vyy189, vyy190) new_esEs17(Right(vyy6000), Right(vyy500), cdh, app(app(ty_Either, cea), ceb)) -> new_esEs17(vyy6000, vyy500, cea, ceb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vyy209, vyy212, ty_Bool) -> new_ltEs5(vyy209, vyy212) new_ltEs11(Left(vyy1890), Left(vyy1900), ty_Integer, ccb) -> new_ltEs18(vyy1890, vyy1900) new_esEs26(vyy1891, vyy1901, app(ty_Maybe, bag)) -> new_esEs19(vyy1891, vyy1901, bag) new_ltEs20(vyy189, vyy190, app(ty_Ratio, ccd)) -> new_ltEs15(vyy189, vyy190, ccd) new_esEs19(Just(vyy6000), Just(vyy500), app(ty_[], egd)) -> new_esEs18(vyy6000, vyy500, egd) new_compare110(vyy262, vyy263, False, fca, fcb) -> GT new_esEs37(vyy232, vyy234, app(app(ty_@2, efg), efh)) -> new_esEs22(vyy232, vyy234, efg, efh) new_primEqNat0(Zero, Zero) -> True new_esEs7(vyy600, vyy50, ty_Ordering) -> new_esEs13(vyy600, vyy50) new_esEs36(vyy1890, vyy1900, ty_Double) -> new_esEs15(vyy1890, vyy1900) new_lt17(vyy232, vyy234, fbh) -> new_esEs13(new_compare5(vyy232, vyy234, fbh), LT) new_lt7(vyy1890, vyy1900, ty_Int) -> new_lt12(vyy1890, vyy1900) new_esEs8(vyy602, vyy52, ty_Integer) -> new_esEs12(vyy602, vyy52) new_esEs19(Just(vyy6000), Just(vyy500), ty_Double) -> new_esEs15(vyy6000, vyy500) new_esEs28(vyy6002, vyy502, ty_@0) -> new_esEs25(vyy6002, vyy502) new_esEs4(vyy601, vyy51, app(ty_Ratio, fee)) -> new_esEs21(vyy601, vyy51, fee) new_asAs(False, vyy250) -> False new_ltEs20(vyy189, vyy190, ty_Bool) -> new_ltEs5(vyy189, vyy190) new_esEs13(LT, EQ) -> False new_esEs13(EQ, LT) -> False new_compare7(@0, @0) -> EQ new_ltEs22(vyy196, vyy197, app(app(ty_Either, dfg), dfh)) -> new_ltEs11(vyy196, vyy197, dfg, dfh) new_ltEs22(vyy196, vyy197, ty_@0) -> new_ltEs10(vyy196, vyy197) new_ltEs19(vyy1892, vyy1902, ty_Int) -> new_ltEs8(vyy1892, vyy1902) new_lt9(vyy232, vyy234) -> new_esEs13(new_compare6(vyy232, vyy234), LT) new_ltEs11(Right(vyy1890), Right(vyy1900), cca, ty_Double) -> new_ltEs6(vyy1890, vyy1900) new_lt14(vyy232, vyy234, dgg, dgh) -> new_esEs13(new_compare28(vyy232, vyy234, dgg, dgh), LT) new_esEs9(vyy601, vyy51, ty_Char) -> new_esEs20(vyy601, vyy51) The set Q consists of the following terms: new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(False, True) new_esEs24(True, False) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, ty_Char) new_ltEs13(x0, x1) new_ltEs19(x0, x1, ty_Integer) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_esEs35(x0, x1, ty_Char) new_esEs19(Nothing, Just(x0), x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_@0) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_ltEs21(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Float) new_compare6(False, True) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(True, False) new_esEs33(x0, x1, ty_Char) new_compare19(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs13(LT, LT) new_esEs29(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs16(GT, EQ) new_ltEs16(EQ, GT) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_esEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs28(x0, x1, ty_Float) new_esEs17(Left(x0), Left(x1), ty_Float, x2) new_lt21(x0, x1, ty_Integer) new_ltEs16(LT, LT) new_lt23(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_gtEs(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, x2, x3, True, x4, x5, x6) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Double) new_lt8(x0, x1, ty_Char) new_esEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs35(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_@0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs11(x0, x1, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, ty_@0) new_gtEs(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_@0) new_gtEs(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Integer) new_gtEs(x0, x1, ty_Ordering) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_ltEs21(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Double) new_lt21(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Integer) new_sr(x0, x1) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs10(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt8(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Int) new_ltEs15(x0, x1, x2) new_esEs8(x0, x1, ty_Float) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_ltEs5(True, True) new_ltEs22(x0, x1, ty_@0) new_compare210(x0, x1, False, x2, x3) new_esEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs34(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_compare13(Just(x0), Just(x1), x2) new_esEs30(x0, x1, ty_Double) new_lt21(x0, x1, ty_Float) new_compare19(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_esEs10(x0, x1, ty_Bool) new_esEs17(Left(x0), Left(x1), ty_Integer, x2) new_lt15(x0, x1, x2, x3, x4) new_esEs26(x0, x1, ty_Double) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(LT, EQ) new_esEs13(EQ, LT) new_esEs27(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Float) new_lt18(x0, x1) new_esEs13(EQ, EQ) new_lt22(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Double) new_esEs19(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1) new_esEs36(x0, x1, ty_Double) new_lt7(x0, x1, app(ty_Ratio, x2)) new_compare13(Just(x0), Nothing, x1) new_esEs27(x0, x1, ty_Integer) new_compare7(@0, @0) new_compare30(LT, LT) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs19(Just(x0), Just(x1), ty_Char) new_esEs20(Char(x0), Char(x1)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare13(Nothing, Just(x0), x1) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare112(x0, x1, x2, x3, True, x4, x5) new_esEs29(x0, x1, ty_Int) new_lt21(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Float) new_lt21(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Char) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_@0) new_compare10(x0, x1, True, x2) new_ltEs4(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Ordering) new_compare19(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Char) new_esEs27(x0, x1, ty_@0) new_ltEs4(x0, x1, ty_Int) new_lt16(x0, x1) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_not(True) new_esEs19(Just(x0), Just(x1), ty_@0) new_esEs18(:(x0, x1), [], x2) new_esEs19(Just(x0), Nothing, x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_ltEs4(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_gtEs(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Bool) new_gtEs(x0, x1, ty_Integer) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, ty_Ordering) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_gtEs(x0, x1, ty_Int) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_compare210(x0, x1, True, x2, x3) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Char) new_gtEs(x0, x1, ty_Char) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_lt22(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, ty_Integer) new_gtEs(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gtEs(x0, x1, ty_Bool) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs19(Just(x0), Just(x1), ty_Bool) new_esEs10(x0, x1, app(ty_[], x2)) new_lt6(x0, x1) new_compare19(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Integer) new_compare13(Nothing, Nothing, x0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Double) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Bool) new_esEs19(Just(x0), Just(x1), ty_Integer) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_gtEs(x0, x1, app(ty_Maybe, x2)) new_esEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs4(x0, x1, ty_Integer) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs17(Just(x0), Just(x1), ty_Ordering) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_compare10(x0, x1, False, x2) new_esEs19(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_Integer) new_pePe(True, x0) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs6(x0, x1, ty_Bool) new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_gtEs(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Double) new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs21(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, x2) new_primPlusNat0(Succ(x0), x1) new_esEs6(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_lt4(x0, x1) new_lt20(x0, x1, ty_Double) new_lt7(x0, x1, ty_Double) new_not(False) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs13(EQ, GT) new_esEs13(GT, EQ) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Bool) new_esEs40(EQ) new_ltEs24(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Int) new_compare19(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_compare24(x0, x1, False, x2) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(Right(x0), Right(x1), x2, x3) new_ltEs17(Just(x0), Nothing, x1) new_compare211(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18([], :(x0, x1), x2) new_compare112(x0, x1, x2, x3, False, x4, x5) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Float) new_compare28(Left(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Int) new_lt11(x0, x1) new_esEs16(Float(x0, x1), Float(x2, x3)) new_compare15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs19(x0, x1, ty_Char) new_lt19(x0, x1, x2) new_esEs9(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs8(x0, x1, ty_Char) new_primPlusNat0(Zero, x0) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Int) new_lt8(x0, x1, ty_@0) new_compare19(x0, x1, ty_Int) new_primCompAux00(x0, EQ) new_esEs10(x0, x1, ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs19(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_esEs19(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs8(x0, x1, ty_Ordering) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs19(Just(x0), Just(x1), ty_Float) new_esEs6(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Char) new_ltEs7(x0, x1) new_esEs10(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_lt8(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_primPlusNat1(Succ(x0), Zero) new_compare5(:(x0, x1), :(x2, x3), x4) new_fsEs(x0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_@0) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs6(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_@0) new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Char) new_esEs18(:(x0, x1), :(x2, x3), x4) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs33(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, ty_Bool) new_compare6(False, False) new_esEs19(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Integer) new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(True, True) new_lt9(x0, x1) new_compare30(EQ, EQ) new_esEs24(False, False) new_esEs27(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_esEs18([], [], x0) new_lt22(x0, x1, ty_Float) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_@0) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare19(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_esEs40(GT) new_lt21(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare19(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_Float) new_esEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs16(GT, GT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_primCompAux00(x0, LT) new_compare6(True, True) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare5([], :(x0, x1), x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs37(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_@0) new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt20(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Double) new_compare15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs36(x0, x1, ty_Integer) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(Integer(x0), Integer(x1)) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_asAs(True, x0) new_esEs5(x0, x1, ty_Integer) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2) new_compare211(x0, x1, x2, x3, True, x4, x5) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_esEs17(Right(x0), Right(x1), x2, ty_Char) new_compare5(:(x0, x1), [], x2) new_ltEs20(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Ordering) new_ltEs4(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Double) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs37(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Ordering) new_esEs19(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs17(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, ty_Bool) new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_@0) new_esEs13(GT, GT) new_lt7(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Double) new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_lt22(x0, x1, ty_Integer) new_ltEs4(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Nothing, Nothing, x0) new_ltEs8(x0, x1) new_ltEs16(EQ, EQ) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, ty_Double) new_lt17(x0, x1, x2) new_lt22(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Char) new_ltEs17(Just(x0), Just(x1), ty_@0) new_esEs4(x0, x1, ty_Double) new_ltEs17(Nothing, Nothing, x0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1) new_lt23(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs19(Just(x0), Just(x1), ty_Ordering) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Bool) new_gtEs(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs30(x0, x1, ty_@0) new_ltEs17(Just(x0), Just(x1), ty_Integer) new_compare5([], [], x0) new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs4(x0, x1, ty_Ordering) new_esEs25(@0, @0) new_esEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs5(x0, x1, ty_Int) new_lt13(x0, x1, x2, x3) new_ltEs4(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1) new_esEs31(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_esEs19(Just(x0), Just(x1), ty_Double) new_esEs5(x0, x1, ty_Char) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs33(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs28(x0, x1, ty_Int) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs10(x0, x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, True, x2, x3) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_ltEs23(x0, x1, ty_Bool) new_esEs15(Double(x0, x1), Double(x2, x3)) new_esEs11(x0, x1, ty_Char) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, True, x2, x3) new_esEs37(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs11(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primMulNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(Char(x0), Char(x1)) new_esEs8(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Float) new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare30(GT, GT) new_compare30(EQ, LT) new_compare30(LT, EQ) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(LT, GT) new_esEs13(GT, LT) new_ltEs17(Just(x0), Just(x1), ty_Int) new_esEs22(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs30(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Double) new_compare110(x0, x1, False, x2, x3) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs17(Nothing, Just(x0), x1) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(LT) new_esEs6(x0, x1, app(ty_[], x2)) new_compare29(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqNat0(Succ(x0), Zero) new_gtEs(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Integer) new_ltEs17(Just(x0), Just(x1), ty_Float) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare17(x0, x1, False, x2, x3) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs35(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs35(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs17(Left(x0), Right(x1), x2, x3) new_esEs17(Right(x0), Left(x1), x2, x3) new_ltEs14(x0, x1, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, ty_@0) new_primCompAux00(x0, GT) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Int) new_lt7(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Int) new_lt8(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_compare111(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs17(Just(x0), Just(x1), ty_Char) new_esEs35(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_@0) new_compare8(Integer(x0), Integer(x1)) new_esEs28(x0, x1, ty_Integer) new_lt14(x0, x1, x2, x3) new_ltEs17(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Float) new_esEs21(:%(x0, x1), :%(x2, x3), x4) new_compare28(Left(x0), Right(x1), x2, x3) new_compare28(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldFM_GE(vyy3, vyy5, Branch(vyy60, vyy61, vyy62, vyy63, vyy64), bc, bd, be) -> new_foldFM_GE1(vyy3, vyy5, vyy60, vyy61, vyy62, vyy63, vyy64, new_gtEs(vyy60, vyy5, bd), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 > 3, 3 > 4, 3 > 5, 3 > 6, 3 > 7, 4 >= 9, 5 >= 10, 6 >= 11 *new_foldFM_GE1(vyy17, vyy19, vyy20, vyy21, vyy22, vyy23, vyy24, False, h, ba, bb) -> new_foldFM_GE(vyy17, vyy19, vyy24, h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_foldFM_GE1(vyy17, vyy19, vyy20, vyy21, vyy22, vyy23, vyy24, True, h, ba, bb) -> new_foldFM_GE(vyy17, vyy19, vyy24, h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 *new_foldFM_GE1(vyy17, vyy19, vyy20, vyy21, vyy22, vyy23, vyy24, True, h, ba, bb) -> new_foldFM_GE(vyy17, vyy19, vyy23, h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 6 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyy5000), Succ(vyy60100)) -> new_primMulNat(vyy5000, Succ(vyy60100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vyy5000), Succ(vyy60100)) -> new_primMulNat(vyy5000, Succ(vyy60100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyy60000), Succ(vyy5000)) -> new_primEqNat(vyy60000, vyy5000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vyy60000), Succ(vyy5000)) -> new_primEqNat(vyy60000, vyy5000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyy31200), Succ(vyy601000)) -> new_primPlusNat(vyy31200, vyy601000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vyy31200), Succ(vyy601000)) -> new_primPlusNat(vyy31200, vyy601000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES