/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 8 ms] (6) HASKELL (7) COR [EQUIVALENT, 0 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 8 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 60 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES (33) QDP (34) QDPSizeChangeProof [EQUIVALENT, 6 ms] (35) YES ---------------------------------------- (0) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = case cmp x y of { GT-> y : insertBy cmp x ys'; _-> x : ys; } ; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case cmp x y of { GT -> y : insertBy cmp x ys'; _ -> x : ys} " is transformed to "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; " ---------------------------------------- (2) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) 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; " ---------------------------------------- (4) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. Binding Reductions: The bind variable of the following binding Pattern "ys@(vuu : vuv)" is replaced by the following term "vuu : vuv" ---------------------------------------- (6) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) 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 vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; " "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; " 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 vvw vvx = gcd3 vvw vvx; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; ; gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; } ; " "gcd1 True vvw vvx = error []; gcd1 vvy vvz vwu = gcd0 vvz vwu; " "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; gcd2 vwv vww vwx = gcd0 vww vwx; " "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; gcd3 vwy vwz = gcd0 vwy vwz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; ; gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x vuw = x; gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; " "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vxu vxv x y True = error []; reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; " "reduce2D vxu vxv = gcd vxu vxv; " "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); " ---------------------------------------- (10) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];2137[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 2137[label="",style="solid", color="burlywood", weight=9]; 2137 -> 6[label="",style="solid", color="burlywood", weight=3]; 2138[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 2138[label="",style="solid", color="burlywood", weight=9]; 2138 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare vxw3 vxw40)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="vxw3 : []",fontsize=16,color="green",shape="box"];10[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare3 vxw3 vxw40)",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 11[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare2 vxw3 vxw40 (vxw3 == vxw40))",fontsize=16,color="burlywood",shape="box"];2139[label="vxw3/(vxw30,vxw31)",fontsize=10,color="white",style="solid",shape="box"];11 -> 2139[label="",style="solid", color="burlywood", weight=9]; 2139 -> 12[label="",style="solid", color="burlywood", weight=3]; 12[label="List.insertBy0 vxw40 compare (vxw30,vxw31) vxw41 (vxw40 : vxw41) (compare2 (vxw30,vxw31) vxw40 ((vxw30,vxw31) == vxw40))",fontsize=16,color="burlywood",shape="box"];2140[label="vxw40/(vxw400,vxw401)",fontsize=10,color="white",style="solid",shape="box"];12 -> 2140[label="",style="solid", color="burlywood", weight=9]; 2140 -> 13[label="",style="solid", color="burlywood", weight=3]; 13[label="List.insertBy0 (vxw400,vxw401) compare (vxw30,vxw31) vxw41 ((vxw400,vxw401) : vxw41) (compare2 (vxw30,vxw31) (vxw400,vxw401) ((vxw30,vxw31) == (vxw400,vxw401)))",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 14 -> 96[label="",style="dashed", color="red", weight=0]; 14[label="List.insertBy0 (vxw400,vxw401) compare (vxw30,vxw31) vxw41 ((vxw400,vxw401) : vxw41) (compare2 (vxw30,vxw31) (vxw400,vxw401) (vxw30 == vxw400 && vxw31 == vxw401))",fontsize=16,color="magenta"];14 -> 97[label="",style="dashed", color="magenta", weight=3]; 14 -> 98[label="",style="dashed", color="magenta", weight=3]; 14 -> 99[label="",style="dashed", color="magenta", weight=3]; 14 -> 100[label="",style="dashed", color="magenta", weight=3]; 14 -> 101[label="",style="dashed", color="magenta", weight=3]; 14 -> 102[label="",style="dashed", color="magenta", weight=3]; 97 -> 340[label="",style="dashed", color="red", weight=0]; 97[label="vxw30 == vxw400 && vxw31 == vxw401",fontsize=16,color="magenta"];97 -> 341[label="",style="dashed", color="magenta", weight=3]; 97 -> 342[label="",style="dashed", color="magenta", weight=3]; 98[label="vxw30",fontsize=16,color="green",shape="box"];99[label="vxw401",fontsize=16,color="green",shape="box"];100[label="vxw31",fontsize=16,color="green",shape="box"];101[label="vxw41",fontsize=16,color="green",shape="box"];102[label="vxw400",fontsize=16,color="green",shape="box"];96[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) (compare2 (vxw27,vxw28) (vxw25,vxw26) vxw30)",fontsize=16,color="burlywood",shape="triangle"];2141[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];96 -> 2141[label="",style="solid", color="burlywood", weight=9]; 2141 -> 125[label="",style="solid", color="burlywood", weight=3]; 2142[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];96 -> 2142[label="",style="solid", color="burlywood", weight=9]; 2142 -> 126[label="",style="solid", color="burlywood", weight=3]; 341[label="vxw31 == vxw401",fontsize=16,color="blue",shape="box"];2143[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2143[label="",style="solid", color="blue", weight=9]; 2143 -> 345[label="",style="solid", color="blue", weight=3]; 2144[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2144[label="",style="solid", color="blue", weight=9]; 2144 -> 346[label="",style="solid", color="blue", weight=3]; 2145[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2145[label="",style="solid", color="blue", weight=9]; 2145 -> 347[label="",style="solid", color="blue", weight=3]; 2146[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2146[label="",style="solid", color="blue", weight=9]; 2146 -> 348[label="",style="solid", color="blue", weight=3]; 2147[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2147[label="",style="solid", color="blue", weight=9]; 2147 -> 349[label="",style="solid", color="blue", weight=3]; 2148[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2148[label="",style="solid", color="blue", weight=9]; 2148 -> 350[label="",style="solid", color="blue", weight=3]; 2149[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2149[label="",style="solid", color="blue", weight=9]; 2149 -> 351[label="",style="solid", color="blue", weight=3]; 2150[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2150[label="",style="solid", color="blue", weight=9]; 2150 -> 352[label="",style="solid", color="blue", weight=3]; 2151[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2151[label="",style="solid", color="blue", weight=9]; 2151 -> 353[label="",style="solid", color="blue", weight=3]; 2152[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2152[label="",style="solid", color="blue", weight=9]; 2152 -> 354[label="",style="solid", color="blue", weight=3]; 2153[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2153[label="",style="solid", color="blue", weight=9]; 2153 -> 355[label="",style="solid", color="blue", weight=3]; 2154[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2154[label="",style="solid", color="blue", weight=9]; 2154 -> 356[label="",style="solid", color="blue", weight=3]; 2155[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2155[label="",style="solid", color="blue", weight=9]; 2155 -> 357[label="",style="solid", color="blue", weight=3]; 2156[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];341 -> 2156[label="",style="solid", color="blue", weight=9]; 2156 -> 358[label="",style="solid", color="blue", weight=3]; 342[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2157[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2157[label="",style="solid", color="blue", weight=9]; 2157 -> 359[label="",style="solid", color="blue", weight=3]; 2158[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2158[label="",style="solid", color="blue", weight=9]; 2158 -> 360[label="",style="solid", color="blue", weight=3]; 2159[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2159[label="",style="solid", color="blue", weight=9]; 2159 -> 361[label="",style="solid", color="blue", weight=3]; 2160[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2160[label="",style="solid", color="blue", weight=9]; 2160 -> 362[label="",style="solid", color="blue", weight=3]; 2161[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2161[label="",style="solid", color="blue", weight=9]; 2161 -> 363[label="",style="solid", color="blue", weight=3]; 2162[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2162[label="",style="solid", color="blue", weight=9]; 2162 -> 364[label="",style="solid", color="blue", weight=3]; 2163[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2163[label="",style="solid", color="blue", weight=9]; 2163 -> 365[label="",style="solid", color="blue", weight=3]; 2164[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2164[label="",style="solid", color="blue", weight=9]; 2164 -> 366[label="",style="solid", color="blue", weight=3]; 2165[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2165[label="",style="solid", color="blue", weight=9]; 2165 -> 367[label="",style="solid", color="blue", weight=3]; 2166[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2166[label="",style="solid", color="blue", weight=9]; 2166 -> 368[label="",style="solid", color="blue", weight=3]; 2167[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2167[label="",style="solid", color="blue", weight=9]; 2167 -> 369[label="",style="solid", color="blue", weight=3]; 2168[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2168[label="",style="solid", color="blue", weight=9]; 2168 -> 370[label="",style="solid", color="blue", weight=3]; 2169[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2169[label="",style="solid", color="blue", weight=9]; 2169 -> 371[label="",style="solid", color="blue", weight=3]; 2170[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];342 -> 2170[label="",style="solid", color="blue", weight=9]; 2170 -> 372[label="",style="solid", color="blue", weight=3]; 340[label="vxw55 && vxw56",fontsize=16,color="burlywood",shape="triangle"];2171[label="vxw55/False",fontsize=10,color="white",style="solid",shape="box"];340 -> 2171[label="",style="solid", color="burlywood", weight=9]; 2171 -> 373[label="",style="solid", color="burlywood", weight=3]; 2172[label="vxw55/True",fontsize=10,color="white",style="solid",shape="box"];340 -> 2172[label="",style="solid", color="burlywood", weight=9]; 2172 -> 374[label="",style="solid", color="burlywood", weight=3]; 125[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) (compare2 (vxw27,vxw28) (vxw25,vxw26) False)",fontsize=16,color="black",shape="box"];125 -> 143[label="",style="solid", color="black", weight=3]; 126[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) (compare2 (vxw27,vxw28) (vxw25,vxw26) True)",fontsize=16,color="black",shape="box"];126 -> 144[label="",style="solid", color="black", weight=3]; 345[label="vxw31 == vxw401",fontsize=16,color="black",shape="triangle"];345 -> 391[label="",style="solid", color="black", weight=3]; 346[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2173[label="vxw31/(vxw310,vxw311,vxw312)",fontsize=10,color="white",style="solid",shape="box"];346 -> 2173[label="",style="solid", color="burlywood", weight=9]; 2173 -> 392[label="",style="solid", color="burlywood", weight=3]; 347[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2174[label="vxw31/()",fontsize=10,color="white",style="solid",shape="box"];347 -> 2174[label="",style="solid", color="burlywood", weight=9]; 2174 -> 393[label="",style="solid", color="burlywood", weight=3]; 348[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2175[label="vxw31/(vxw310,vxw311)",fontsize=10,color="white",style="solid",shape="box"];348 -> 2175[label="",style="solid", color="burlywood", weight=9]; 2175 -> 394[label="",style="solid", color="burlywood", weight=3]; 349[label="vxw31 == vxw401",fontsize=16,color="black",shape="triangle"];349 -> 395[label="",style="solid", color="black", weight=3]; 350[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2176[label="vxw31/vxw310 : vxw311",fontsize=10,color="white",style="solid",shape="box"];350 -> 2176[label="",style="solid", color="burlywood", weight=9]; 2176 -> 396[label="",style="solid", color="burlywood", weight=3]; 2177[label="vxw31/[]",fontsize=10,color="white",style="solid",shape="box"];350 -> 2177[label="",style="solid", color="burlywood", weight=9]; 2177 -> 397[label="",style="solid", color="burlywood", weight=3]; 351[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2178[label="vxw31/False",fontsize=10,color="white",style="solid",shape="box"];351 -> 2178[label="",style="solid", color="burlywood", weight=9]; 2178 -> 398[label="",style="solid", color="burlywood", weight=3]; 2179[label="vxw31/True",fontsize=10,color="white",style="solid",shape="box"];351 -> 2179[label="",style="solid", color="burlywood", weight=9]; 2179 -> 399[label="",style="solid", color="burlywood", weight=3]; 352[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2180[label="vxw31/Integer vxw310",fontsize=10,color="white",style="solid",shape="box"];352 -> 2180[label="",style="solid", color="burlywood", weight=9]; 2180 -> 400[label="",style="solid", color="burlywood", weight=3]; 353[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2181[label="vxw31/Left vxw310",fontsize=10,color="white",style="solid",shape="box"];353 -> 2181[label="",style="solid", color="burlywood", weight=9]; 2181 -> 401[label="",style="solid", color="burlywood", weight=3]; 2182[label="vxw31/Right vxw310",fontsize=10,color="white",style="solid",shape="box"];353 -> 2182[label="",style="solid", color="burlywood", weight=9]; 2182 -> 402[label="",style="solid", color="burlywood", weight=3]; 354[label="vxw31 == vxw401",fontsize=16,color="black",shape="triangle"];354 -> 403[label="",style="solid", color="black", weight=3]; 355[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2183[label="vxw31/vxw310 :% vxw311",fontsize=10,color="white",style="solid",shape="box"];355 -> 2183[label="",style="solid", color="burlywood", weight=9]; 2183 -> 404[label="",style="solid", color="burlywood", weight=3]; 356[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2184[label="vxw31/LT",fontsize=10,color="white",style="solid",shape="box"];356 -> 2184[label="",style="solid", color="burlywood", weight=9]; 2184 -> 405[label="",style="solid", color="burlywood", weight=3]; 2185[label="vxw31/EQ",fontsize=10,color="white",style="solid",shape="box"];356 -> 2185[label="",style="solid", color="burlywood", weight=9]; 2185 -> 406[label="",style="solid", color="burlywood", weight=3]; 2186[label="vxw31/GT",fontsize=10,color="white",style="solid",shape="box"];356 -> 2186[label="",style="solid", color="burlywood", weight=9]; 2186 -> 407[label="",style="solid", color="burlywood", weight=3]; 357[label="vxw31 == vxw401",fontsize=16,color="burlywood",shape="triangle"];2187[label="vxw31/Nothing",fontsize=10,color="white",style="solid",shape="box"];357 -> 2187[label="",style="solid", color="burlywood", weight=9]; 2187 -> 408[label="",style="solid", color="burlywood", weight=3]; 2188[label="vxw31/Just vxw310",fontsize=10,color="white",style="solid",shape="box"];357 -> 2188[label="",style="solid", color="burlywood", weight=9]; 2188 -> 409[label="",style="solid", color="burlywood", weight=3]; 358[label="vxw31 == vxw401",fontsize=16,color="black",shape="triangle"];358 -> 410[label="",style="solid", color="black", weight=3]; 359 -> 345[label="",style="dashed", color="red", weight=0]; 359[label="vxw30 == vxw400",fontsize=16,color="magenta"];359 -> 411[label="",style="dashed", color="magenta", weight=3]; 359 -> 412[label="",style="dashed", color="magenta", weight=3]; 360 -> 346[label="",style="dashed", color="red", weight=0]; 360[label="vxw30 == vxw400",fontsize=16,color="magenta"];360 -> 413[label="",style="dashed", color="magenta", weight=3]; 360 -> 414[label="",style="dashed", color="magenta", weight=3]; 361 -> 347[label="",style="dashed", color="red", weight=0]; 361[label="vxw30 == vxw400",fontsize=16,color="magenta"];361 -> 415[label="",style="dashed", color="magenta", weight=3]; 361 -> 416[label="",style="dashed", color="magenta", weight=3]; 362 -> 348[label="",style="dashed", color="red", weight=0]; 362[label="vxw30 == vxw400",fontsize=16,color="magenta"];362 -> 417[label="",style="dashed", color="magenta", weight=3]; 362 -> 418[label="",style="dashed", color="magenta", weight=3]; 363 -> 349[label="",style="dashed", color="red", weight=0]; 363[label="vxw30 == vxw400",fontsize=16,color="magenta"];363 -> 419[label="",style="dashed", color="magenta", weight=3]; 363 -> 420[label="",style="dashed", color="magenta", weight=3]; 364 -> 350[label="",style="dashed", color="red", weight=0]; 364[label="vxw30 == vxw400",fontsize=16,color="magenta"];364 -> 421[label="",style="dashed", color="magenta", weight=3]; 364 -> 422[label="",style="dashed", color="magenta", weight=3]; 365 -> 351[label="",style="dashed", color="red", weight=0]; 365[label="vxw30 == vxw400",fontsize=16,color="magenta"];365 -> 423[label="",style="dashed", color="magenta", weight=3]; 365 -> 424[label="",style="dashed", color="magenta", weight=3]; 366 -> 352[label="",style="dashed", color="red", weight=0]; 366[label="vxw30 == vxw400",fontsize=16,color="magenta"];366 -> 425[label="",style="dashed", color="magenta", weight=3]; 366 -> 426[label="",style="dashed", color="magenta", weight=3]; 367 -> 353[label="",style="dashed", color="red", weight=0]; 367[label="vxw30 == vxw400",fontsize=16,color="magenta"];367 -> 427[label="",style="dashed", color="magenta", weight=3]; 367 -> 428[label="",style="dashed", color="magenta", weight=3]; 368 -> 354[label="",style="dashed", color="red", weight=0]; 368[label="vxw30 == vxw400",fontsize=16,color="magenta"];368 -> 429[label="",style="dashed", color="magenta", weight=3]; 368 -> 430[label="",style="dashed", color="magenta", weight=3]; 369 -> 355[label="",style="dashed", color="red", weight=0]; 369[label="vxw30 == vxw400",fontsize=16,color="magenta"];369 -> 431[label="",style="dashed", color="magenta", weight=3]; 369 -> 432[label="",style="dashed", color="magenta", weight=3]; 370 -> 356[label="",style="dashed", color="red", weight=0]; 370[label="vxw30 == vxw400",fontsize=16,color="magenta"];370 -> 433[label="",style="dashed", color="magenta", weight=3]; 370 -> 434[label="",style="dashed", color="magenta", weight=3]; 371 -> 357[label="",style="dashed", color="red", weight=0]; 371[label="vxw30 == vxw400",fontsize=16,color="magenta"];371 -> 435[label="",style="dashed", color="magenta", weight=3]; 371 -> 436[label="",style="dashed", color="magenta", weight=3]; 372 -> 358[label="",style="dashed", color="red", weight=0]; 372[label="vxw30 == vxw400",fontsize=16,color="magenta"];372 -> 437[label="",style="dashed", color="magenta", weight=3]; 372 -> 438[label="",style="dashed", color="magenta", weight=3]; 373[label="False && vxw56",fontsize=16,color="black",shape="box"];373 -> 439[label="",style="solid", color="black", weight=3]; 374[label="True && vxw56",fontsize=16,color="black",shape="box"];374 -> 440[label="",style="solid", color="black", weight=3]; 143 -> 469[label="",style="dashed", color="red", weight=0]; 143[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) (compare1 (vxw27,vxw28) (vxw25,vxw26) ((vxw27,vxw28) <= (vxw25,vxw26)))",fontsize=16,color="magenta"];143 -> 470[label="",style="dashed", color="magenta", weight=3]; 143 -> 471[label="",style="dashed", color="magenta", weight=3]; 143 -> 472[label="",style="dashed", color="magenta", weight=3]; 143 -> 473[label="",style="dashed", color="magenta", weight=3]; 143 -> 474[label="",style="dashed", color="magenta", weight=3]; 143 -> 475[label="",style="dashed", color="magenta", weight=3]; 144[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) EQ",fontsize=16,color="black",shape="box"];144 -> 168[label="",style="solid", color="black", weight=3]; 391[label="primEqInt vxw31 vxw401",fontsize=16,color="burlywood",shape="triangle"];2189[label="vxw31/Pos vxw310",fontsize=10,color="white",style="solid",shape="box"];391 -> 2189[label="",style="solid", color="burlywood", weight=9]; 2189 -> 485[label="",style="solid", color="burlywood", weight=3]; 2190[label="vxw31/Neg vxw310",fontsize=10,color="white",style="solid",shape="box"];391 -> 2190[label="",style="solid", color="burlywood", weight=9]; 2190 -> 486[label="",style="solid", color="burlywood", weight=3]; 392[label="(vxw310,vxw311,vxw312) == vxw401",fontsize=16,color="burlywood",shape="box"];2191[label="vxw401/(vxw4010,vxw4011,vxw4012)",fontsize=10,color="white",style="solid",shape="box"];392 -> 2191[label="",style="solid", color="burlywood", weight=9]; 2191 -> 487[label="",style="solid", color="burlywood", weight=3]; 393[label="() == vxw401",fontsize=16,color="burlywood",shape="box"];2192[label="vxw401/()",fontsize=10,color="white",style="solid",shape="box"];393 -> 2192[label="",style="solid", color="burlywood", weight=9]; 2192 -> 488[label="",style="solid", color="burlywood", weight=3]; 394[label="(vxw310,vxw311) == vxw401",fontsize=16,color="burlywood",shape="box"];2193[label="vxw401/(vxw4010,vxw4011)",fontsize=10,color="white",style="solid",shape="box"];394 -> 2193[label="",style="solid", color="burlywood", weight=9]; 2193 -> 489[label="",style="solid", color="burlywood", weight=3]; 395[label="primEqFloat vxw31 vxw401",fontsize=16,color="burlywood",shape="box"];2194[label="vxw31/Float vxw310 vxw311",fontsize=10,color="white",style="solid",shape="box"];395 -> 2194[label="",style="solid", color="burlywood", weight=9]; 2194 -> 490[label="",style="solid", color="burlywood", weight=3]; 396[label="vxw310 : vxw311 == vxw401",fontsize=16,color="burlywood",shape="box"];2195[label="vxw401/vxw4010 : vxw4011",fontsize=10,color="white",style="solid",shape="box"];396 -> 2195[label="",style="solid", color="burlywood", weight=9]; 2195 -> 491[label="",style="solid", color="burlywood", weight=3]; 2196[label="vxw401/[]",fontsize=10,color="white",style="solid",shape="box"];396 -> 2196[label="",style="solid", color="burlywood", weight=9]; 2196 -> 492[label="",style="solid", color="burlywood", weight=3]; 397[label="[] == vxw401",fontsize=16,color="burlywood",shape="box"];2197[label="vxw401/vxw4010 : vxw4011",fontsize=10,color="white",style="solid",shape="box"];397 -> 2197[label="",style="solid", color="burlywood", weight=9]; 2197 -> 493[label="",style="solid", color="burlywood", weight=3]; 2198[label="vxw401/[]",fontsize=10,color="white",style="solid",shape="box"];397 -> 2198[label="",style="solid", color="burlywood", weight=9]; 2198 -> 494[label="",style="solid", color="burlywood", weight=3]; 398[label="False == vxw401",fontsize=16,color="burlywood",shape="box"];2199[label="vxw401/False",fontsize=10,color="white",style="solid",shape="box"];398 -> 2199[label="",style="solid", color="burlywood", weight=9]; 2199 -> 495[label="",style="solid", color="burlywood", weight=3]; 2200[label="vxw401/True",fontsize=10,color="white",style="solid",shape="box"];398 -> 2200[label="",style="solid", color="burlywood", weight=9]; 2200 -> 496[label="",style="solid", color="burlywood", weight=3]; 399[label="True == vxw401",fontsize=16,color="burlywood",shape="box"];2201[label="vxw401/False",fontsize=10,color="white",style="solid",shape="box"];399 -> 2201[label="",style="solid", color="burlywood", weight=9]; 2201 -> 497[label="",style="solid", color="burlywood", weight=3]; 2202[label="vxw401/True",fontsize=10,color="white",style="solid",shape="box"];399 -> 2202[label="",style="solid", color="burlywood", weight=9]; 2202 -> 498[label="",style="solid", color="burlywood", weight=3]; 400[label="Integer vxw310 == vxw401",fontsize=16,color="burlywood",shape="box"];2203[label="vxw401/Integer vxw4010",fontsize=10,color="white",style="solid",shape="box"];400 -> 2203[label="",style="solid", color="burlywood", weight=9]; 2203 -> 499[label="",style="solid", color="burlywood", weight=3]; 401[label="Left vxw310 == vxw401",fontsize=16,color="burlywood",shape="box"];2204[label="vxw401/Left vxw4010",fontsize=10,color="white",style="solid",shape="box"];401 -> 2204[label="",style="solid", color="burlywood", weight=9]; 2204 -> 500[label="",style="solid", color="burlywood", weight=3]; 2205[label="vxw401/Right vxw4010",fontsize=10,color="white",style="solid",shape="box"];401 -> 2205[label="",style="solid", color="burlywood", weight=9]; 2205 -> 501[label="",style="solid", color="burlywood", weight=3]; 402[label="Right vxw310 == vxw401",fontsize=16,color="burlywood",shape="box"];2206[label="vxw401/Left vxw4010",fontsize=10,color="white",style="solid",shape="box"];402 -> 2206[label="",style="solid", color="burlywood", weight=9]; 2206 -> 502[label="",style="solid", color="burlywood", weight=3]; 2207[label="vxw401/Right vxw4010",fontsize=10,color="white",style="solid",shape="box"];402 -> 2207[label="",style="solid", color="burlywood", weight=9]; 2207 -> 503[label="",style="solid", color="burlywood", weight=3]; 403[label="primEqChar vxw31 vxw401",fontsize=16,color="burlywood",shape="box"];2208[label="vxw31/Char vxw310",fontsize=10,color="white",style="solid",shape="box"];403 -> 2208[label="",style="solid", color="burlywood", weight=9]; 2208 -> 504[label="",style="solid", color="burlywood", weight=3]; 404[label="vxw310 :% vxw311 == vxw401",fontsize=16,color="burlywood",shape="box"];2209[label="vxw401/vxw4010 :% vxw4011",fontsize=10,color="white",style="solid",shape="box"];404 -> 2209[label="",style="solid", color="burlywood", weight=9]; 2209 -> 505[label="",style="solid", color="burlywood", weight=3]; 405[label="LT == vxw401",fontsize=16,color="burlywood",shape="box"];2210[label="vxw401/LT",fontsize=10,color="white",style="solid",shape="box"];405 -> 2210[label="",style="solid", color="burlywood", weight=9]; 2210 -> 506[label="",style="solid", color="burlywood", weight=3]; 2211[label="vxw401/EQ",fontsize=10,color="white",style="solid",shape="box"];405 -> 2211[label="",style="solid", color="burlywood", weight=9]; 2211 -> 507[label="",style="solid", color="burlywood", weight=3]; 2212[label="vxw401/GT",fontsize=10,color="white",style="solid",shape="box"];405 -> 2212[label="",style="solid", color="burlywood", weight=9]; 2212 -> 508[label="",style="solid", color="burlywood", weight=3]; 406[label="EQ == vxw401",fontsize=16,color="burlywood",shape="box"];2213[label="vxw401/LT",fontsize=10,color="white",style="solid",shape="box"];406 -> 2213[label="",style="solid", color="burlywood", weight=9]; 2213 -> 509[label="",style="solid", color="burlywood", weight=3]; 2214[label="vxw401/EQ",fontsize=10,color="white",style="solid",shape="box"];406 -> 2214[label="",style="solid", color="burlywood", weight=9]; 2214 -> 510[label="",style="solid", color="burlywood", weight=3]; 2215[label="vxw401/GT",fontsize=10,color="white",style="solid",shape="box"];406 -> 2215[label="",style="solid", color="burlywood", weight=9]; 2215 -> 511[label="",style="solid", color="burlywood", weight=3]; 407[label="GT == vxw401",fontsize=16,color="burlywood",shape="box"];2216[label="vxw401/LT",fontsize=10,color="white",style="solid",shape="box"];407 -> 2216[label="",style="solid", color="burlywood", weight=9]; 2216 -> 512[label="",style="solid", color="burlywood", weight=3]; 2217[label="vxw401/EQ",fontsize=10,color="white",style="solid",shape="box"];407 -> 2217[label="",style="solid", color="burlywood", weight=9]; 2217 -> 513[label="",style="solid", color="burlywood", weight=3]; 2218[label="vxw401/GT",fontsize=10,color="white",style="solid",shape="box"];407 -> 2218[label="",style="solid", color="burlywood", weight=9]; 2218 -> 514[label="",style="solid", color="burlywood", weight=3]; 408[label="Nothing == vxw401",fontsize=16,color="burlywood",shape="box"];2219[label="vxw401/Nothing",fontsize=10,color="white",style="solid",shape="box"];408 -> 2219[label="",style="solid", color="burlywood", weight=9]; 2219 -> 515[label="",style="solid", color="burlywood", weight=3]; 2220[label="vxw401/Just vxw4010",fontsize=10,color="white",style="solid",shape="box"];408 -> 2220[label="",style="solid", color="burlywood", weight=9]; 2220 -> 516[label="",style="solid", color="burlywood", weight=3]; 409[label="Just vxw310 == vxw401",fontsize=16,color="burlywood",shape="box"];2221[label="vxw401/Nothing",fontsize=10,color="white",style="solid",shape="box"];409 -> 2221[label="",style="solid", color="burlywood", weight=9]; 2221 -> 517[label="",style="solid", color="burlywood", weight=3]; 2222[label="vxw401/Just vxw4010",fontsize=10,color="white",style="solid",shape="box"];409 -> 2222[label="",style="solid", color="burlywood", weight=9]; 2222 -> 518[label="",style="solid", color="burlywood", weight=3]; 410[label="primEqDouble vxw31 vxw401",fontsize=16,color="burlywood",shape="box"];2223[label="vxw31/Double vxw310 vxw311",fontsize=10,color="white",style="solid",shape="box"];410 -> 2223[label="",style="solid", color="burlywood", weight=9]; 2223 -> 519[label="",style="solid", color="burlywood", weight=3]; 411[label="vxw30",fontsize=16,color="green",shape="box"];412[label="vxw400",fontsize=16,color="green",shape="box"];413[label="vxw30",fontsize=16,color="green",shape="box"];414[label="vxw400",fontsize=16,color="green",shape="box"];415[label="vxw30",fontsize=16,color="green",shape="box"];416[label="vxw400",fontsize=16,color="green",shape="box"];417[label="vxw30",fontsize=16,color="green",shape="box"];418[label="vxw400",fontsize=16,color="green",shape="box"];419[label="vxw30",fontsize=16,color="green",shape="box"];420[label="vxw400",fontsize=16,color="green",shape="box"];421[label="vxw30",fontsize=16,color="green",shape="box"];422[label="vxw400",fontsize=16,color="green",shape="box"];423[label="vxw30",fontsize=16,color="green",shape="box"];424[label="vxw400",fontsize=16,color="green",shape="box"];425[label="vxw30",fontsize=16,color="green",shape="box"];426[label="vxw400",fontsize=16,color="green",shape="box"];427[label="vxw30",fontsize=16,color="green",shape="box"];428[label="vxw400",fontsize=16,color="green",shape="box"];429[label="vxw30",fontsize=16,color="green",shape="box"];430[label="vxw400",fontsize=16,color="green",shape="box"];431[label="vxw30",fontsize=16,color="green",shape="box"];432[label="vxw400",fontsize=16,color="green",shape="box"];433[label="vxw30",fontsize=16,color="green",shape="box"];434[label="vxw400",fontsize=16,color="green",shape="box"];435[label="vxw30",fontsize=16,color="green",shape="box"];436[label="vxw400",fontsize=16,color="green",shape="box"];437[label="vxw30",fontsize=16,color="green",shape="box"];438[label="vxw400",fontsize=16,color="green",shape="box"];439[label="False",fontsize=16,color="green",shape="box"];440[label="vxw56",fontsize=16,color="green",shape="box"];470[label="vxw25",fontsize=16,color="green",shape="box"];471[label="vxw27",fontsize=16,color="green",shape="box"];472[label="vxw29",fontsize=16,color="green",shape="box"];473[label="vxw26",fontsize=16,color="green",shape="box"];474[label="vxw28",fontsize=16,color="green",shape="box"];475[label="(vxw27,vxw28) <= (vxw25,vxw26)",fontsize=16,color="black",shape="box"];475 -> 520[label="",style="solid", color="black", weight=3]; 469[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare1 (vxw47,vxw48) (vxw45,vxw46) vxw57)",fontsize=16,color="burlywood",shape="triangle"];2224[label="vxw57/False",fontsize=10,color="white",style="solid",shape="box"];469 -> 2224[label="",style="solid", color="burlywood", weight=9]; 2224 -> 521[label="",style="solid", color="burlywood", weight=3]; 2225[label="vxw57/True",fontsize=10,color="white",style="solid",shape="box"];469 -> 2225[label="",style="solid", color="burlywood", weight=9]; 2225 -> 522[label="",style="solid", color="burlywood", weight=3]; 168[label="(vxw27,vxw28) : (vxw25,vxw26) : vxw29",fontsize=16,color="green",shape="box"];485[label="primEqInt (Pos vxw310) vxw401",fontsize=16,color="burlywood",shape="box"];2226[label="vxw310/Succ vxw3100",fontsize=10,color="white",style="solid",shape="box"];485 -> 2226[label="",style="solid", color="burlywood", weight=9]; 2226 -> 523[label="",style="solid", color="burlywood", weight=3]; 2227[label="vxw310/Zero",fontsize=10,color="white",style="solid",shape="box"];485 -> 2227[label="",style="solid", color="burlywood", weight=9]; 2227 -> 524[label="",style="solid", color="burlywood", weight=3]; 486[label="primEqInt (Neg vxw310) vxw401",fontsize=16,color="burlywood",shape="box"];2228[label="vxw310/Succ vxw3100",fontsize=10,color="white",style="solid",shape="box"];486 -> 2228[label="",style="solid", color="burlywood", weight=9]; 2228 -> 525[label="",style="solid", color="burlywood", weight=3]; 2229[label="vxw310/Zero",fontsize=10,color="white",style="solid",shape="box"];486 -> 2229[label="",style="solid", color="burlywood", weight=9]; 2229 -> 526[label="",style="solid", color="burlywood", weight=3]; 487[label="(vxw310,vxw311,vxw312) == (vxw4010,vxw4011,vxw4012)",fontsize=16,color="black",shape="box"];487 -> 527[label="",style="solid", color="black", weight=3]; 488[label="() == ()",fontsize=16,color="black",shape="box"];488 -> 528[label="",style="solid", color="black", weight=3]; 489[label="(vxw310,vxw311) == (vxw4010,vxw4011)",fontsize=16,color="black",shape="box"];489 -> 529[label="",style="solid", color="black", weight=3]; 490[label="primEqFloat (Float vxw310 vxw311) vxw401",fontsize=16,color="burlywood",shape="box"];2230[label="vxw401/Float vxw4010 vxw4011",fontsize=10,color="white",style="solid",shape="box"];490 -> 2230[label="",style="solid", color="burlywood", weight=9]; 2230 -> 530[label="",style="solid", color="burlywood", weight=3]; 491[label="vxw310 : vxw311 == vxw4010 : vxw4011",fontsize=16,color="black",shape="box"];491 -> 531[label="",style="solid", color="black", weight=3]; 492[label="vxw310 : vxw311 == []",fontsize=16,color="black",shape="box"];492 -> 532[label="",style="solid", color="black", weight=3]; 493[label="[] == vxw4010 : vxw4011",fontsize=16,color="black",shape="box"];493 -> 533[label="",style="solid", color="black", weight=3]; 494[label="[] == []",fontsize=16,color="black",shape="box"];494 -> 534[label="",style="solid", color="black", weight=3]; 495[label="False == False",fontsize=16,color="black",shape="box"];495 -> 535[label="",style="solid", color="black", weight=3]; 496[label="False == True",fontsize=16,color="black",shape="box"];496 -> 536[label="",style="solid", color="black", weight=3]; 497[label="True == False",fontsize=16,color="black",shape="box"];497 -> 537[label="",style="solid", color="black", weight=3]; 498[label="True == True",fontsize=16,color="black",shape="box"];498 -> 538[label="",style="solid", color="black", weight=3]; 499[label="Integer vxw310 == Integer vxw4010",fontsize=16,color="black",shape="box"];499 -> 539[label="",style="solid", color="black", weight=3]; 500[label="Left vxw310 == Left vxw4010",fontsize=16,color="black",shape="box"];500 -> 540[label="",style="solid", color="black", weight=3]; 501[label="Left vxw310 == Right vxw4010",fontsize=16,color="black",shape="box"];501 -> 541[label="",style="solid", color="black", weight=3]; 502[label="Right vxw310 == Left vxw4010",fontsize=16,color="black",shape="box"];502 -> 542[label="",style="solid", color="black", weight=3]; 503[label="Right vxw310 == Right vxw4010",fontsize=16,color="black",shape="box"];503 -> 543[label="",style="solid", color="black", weight=3]; 504[label="primEqChar (Char vxw310) vxw401",fontsize=16,color="burlywood",shape="box"];2231[label="vxw401/Char vxw4010",fontsize=10,color="white",style="solid",shape="box"];504 -> 2231[label="",style="solid", color="burlywood", weight=9]; 2231 -> 544[label="",style="solid", color="burlywood", weight=3]; 505[label="vxw310 :% vxw311 == vxw4010 :% vxw4011",fontsize=16,color="black",shape="box"];505 -> 545[label="",style="solid", color="black", weight=3]; 506[label="LT == LT",fontsize=16,color="black",shape="box"];506 -> 546[label="",style="solid", color="black", weight=3]; 507[label="LT == EQ",fontsize=16,color="black",shape="box"];507 -> 547[label="",style="solid", color="black", weight=3]; 508[label="LT == GT",fontsize=16,color="black",shape="box"];508 -> 548[label="",style="solid", color="black", weight=3]; 509[label="EQ == LT",fontsize=16,color="black",shape="box"];509 -> 549[label="",style="solid", color="black", weight=3]; 510[label="EQ == EQ",fontsize=16,color="black",shape="box"];510 -> 550[label="",style="solid", color="black", weight=3]; 511[label="EQ == GT",fontsize=16,color="black",shape="box"];511 -> 551[label="",style="solid", color="black", weight=3]; 512[label="GT == LT",fontsize=16,color="black",shape="box"];512 -> 552[label="",style="solid", color="black", weight=3]; 513[label="GT == EQ",fontsize=16,color="black",shape="box"];513 -> 553[label="",style="solid", color="black", weight=3]; 514[label="GT == GT",fontsize=16,color="black",shape="box"];514 -> 554[label="",style="solid", color="black", weight=3]; 515[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];515 -> 555[label="",style="solid", color="black", weight=3]; 516[label="Nothing == Just vxw4010",fontsize=16,color="black",shape="box"];516 -> 556[label="",style="solid", color="black", weight=3]; 517[label="Just vxw310 == Nothing",fontsize=16,color="black",shape="box"];517 -> 557[label="",style="solid", color="black", weight=3]; 518[label="Just vxw310 == Just vxw4010",fontsize=16,color="black",shape="box"];518 -> 558[label="",style="solid", color="black", weight=3]; 519[label="primEqDouble (Double vxw310 vxw311) vxw401",fontsize=16,color="burlywood",shape="box"];2232[label="vxw401/Double vxw4010 vxw4011",fontsize=10,color="white",style="solid",shape="box"];519 -> 2232[label="",style="solid", color="burlywood", weight=9]; 2232 -> 559[label="",style="solid", color="burlywood", weight=3]; 520 -> 629[label="",style="dashed", color="red", weight=0]; 520[label="vxw27 < vxw25 || vxw27 == vxw25 && vxw28 <= vxw26",fontsize=16,color="magenta"];520 -> 630[label="",style="dashed", color="magenta", weight=3]; 520 -> 631[label="",style="dashed", color="magenta", weight=3]; 521[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare1 (vxw47,vxw48) (vxw45,vxw46) False)",fontsize=16,color="black",shape="box"];521 -> 562[label="",style="solid", color="black", weight=3]; 522[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare1 (vxw47,vxw48) (vxw45,vxw46) True)",fontsize=16,color="black",shape="box"];522 -> 563[label="",style="solid", color="black", weight=3]; 523[label="primEqInt (Pos (Succ vxw3100)) vxw401",fontsize=16,color="burlywood",shape="box"];2233[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];523 -> 2233[label="",style="solid", color="burlywood", weight=9]; 2233 -> 564[label="",style="solid", color="burlywood", weight=3]; 2234[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];523 -> 2234[label="",style="solid", color="burlywood", weight=9]; 2234 -> 565[label="",style="solid", color="burlywood", weight=3]; 524[label="primEqInt (Pos Zero) vxw401",fontsize=16,color="burlywood",shape="box"];2235[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];524 -> 2235[label="",style="solid", color="burlywood", weight=9]; 2235 -> 566[label="",style="solid", color="burlywood", weight=3]; 2236[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];524 -> 2236[label="",style="solid", color="burlywood", weight=9]; 2236 -> 567[label="",style="solid", color="burlywood", weight=3]; 525[label="primEqInt (Neg (Succ vxw3100)) vxw401",fontsize=16,color="burlywood",shape="box"];2237[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];525 -> 2237[label="",style="solid", color="burlywood", weight=9]; 2237 -> 568[label="",style="solid", color="burlywood", weight=3]; 2238[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];525 -> 2238[label="",style="solid", color="burlywood", weight=9]; 2238 -> 569[label="",style="solid", color="burlywood", weight=3]; 526[label="primEqInt (Neg Zero) vxw401",fontsize=16,color="burlywood",shape="box"];2239[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];526 -> 2239[label="",style="solid", color="burlywood", weight=9]; 2239 -> 570[label="",style="solid", color="burlywood", weight=3]; 2240[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];526 -> 2240[label="",style="solid", color="burlywood", weight=9]; 2240 -> 571[label="",style="solid", color="burlywood", weight=3]; 527 -> 340[label="",style="dashed", color="red", weight=0]; 527[label="vxw310 == vxw4010 && vxw311 == vxw4011 && vxw312 == vxw4012",fontsize=16,color="magenta"];527 -> 572[label="",style="dashed", color="magenta", weight=3]; 527 -> 573[label="",style="dashed", color="magenta", weight=3]; 528[label="True",fontsize=16,color="green",shape="box"];529 -> 340[label="",style="dashed", color="red", weight=0]; 529[label="vxw310 == vxw4010 && vxw311 == vxw4011",fontsize=16,color="magenta"];529 -> 574[label="",style="dashed", color="magenta", weight=3]; 529 -> 575[label="",style="dashed", color="magenta", weight=3]; 530[label="primEqFloat (Float vxw310 vxw311) (Float vxw4010 vxw4011)",fontsize=16,color="black",shape="box"];530 -> 576[label="",style="solid", color="black", weight=3]; 531 -> 340[label="",style="dashed", color="red", weight=0]; 531[label="vxw310 == vxw4010 && vxw311 == vxw4011",fontsize=16,color="magenta"];531 -> 577[label="",style="dashed", color="magenta", weight=3]; 531 -> 578[label="",style="dashed", color="magenta", weight=3]; 532[label="False",fontsize=16,color="green",shape="box"];533[label="False",fontsize=16,color="green",shape="box"];534[label="True",fontsize=16,color="green",shape="box"];535[label="True",fontsize=16,color="green",shape="box"];536[label="False",fontsize=16,color="green",shape="box"];537[label="False",fontsize=16,color="green",shape="box"];538[label="True",fontsize=16,color="green",shape="box"];539 -> 391[label="",style="dashed", color="red", weight=0]; 539[label="primEqInt vxw310 vxw4010",fontsize=16,color="magenta"];539 -> 579[label="",style="dashed", color="magenta", weight=3]; 539 -> 580[label="",style="dashed", color="magenta", weight=3]; 540[label="vxw310 == vxw4010",fontsize=16,color="blue",shape="box"];2241[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2241[label="",style="solid", color="blue", weight=9]; 2241 -> 581[label="",style="solid", color="blue", weight=3]; 2242[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2242[label="",style="solid", color="blue", weight=9]; 2242 -> 582[label="",style="solid", color="blue", weight=3]; 2243[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2243[label="",style="solid", color="blue", weight=9]; 2243 -> 583[label="",style="solid", color="blue", weight=3]; 2244[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2244[label="",style="solid", color="blue", weight=9]; 2244 -> 584[label="",style="solid", color="blue", weight=3]; 2245[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2245[label="",style="solid", color="blue", weight=9]; 2245 -> 585[label="",style="solid", color="blue", weight=3]; 2246[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2246[label="",style="solid", color="blue", weight=9]; 2246 -> 586[label="",style="solid", color="blue", weight=3]; 2247[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2247[label="",style="solid", color="blue", weight=9]; 2247 -> 587[label="",style="solid", color="blue", weight=3]; 2248[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2248[label="",style="solid", color="blue", weight=9]; 2248 -> 588[label="",style="solid", color="blue", weight=3]; 2249[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2249[label="",style="solid", color="blue", weight=9]; 2249 -> 589[label="",style="solid", color="blue", weight=3]; 2250[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2250[label="",style="solid", color="blue", weight=9]; 2250 -> 590[label="",style="solid", color="blue", weight=3]; 2251[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2251[label="",style="solid", color="blue", weight=9]; 2251 -> 591[label="",style="solid", color="blue", weight=3]; 2252[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2252[label="",style="solid", color="blue", weight=9]; 2252 -> 592[label="",style="solid", color="blue", weight=3]; 2253[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2253[label="",style="solid", color="blue", weight=9]; 2253 -> 593[label="",style="solid", color="blue", weight=3]; 2254[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];540 -> 2254[label="",style="solid", color="blue", weight=9]; 2254 -> 594[label="",style="solid", color="blue", weight=3]; 541[label="False",fontsize=16,color="green",shape="box"];542[label="False",fontsize=16,color="green",shape="box"];543[label="vxw310 == vxw4010",fontsize=16,color="blue",shape="box"];2255[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2255[label="",style="solid", color="blue", weight=9]; 2255 -> 595[label="",style="solid", color="blue", weight=3]; 2256[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2256[label="",style="solid", color="blue", weight=9]; 2256 -> 596[label="",style="solid", color="blue", weight=3]; 2257[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2257[label="",style="solid", color="blue", weight=9]; 2257 -> 597[label="",style="solid", color="blue", weight=3]; 2258[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2258[label="",style="solid", color="blue", weight=9]; 2258 -> 598[label="",style="solid", color="blue", weight=3]; 2259[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2259[label="",style="solid", color="blue", weight=9]; 2259 -> 599[label="",style="solid", color="blue", weight=3]; 2260[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2260[label="",style="solid", color="blue", weight=9]; 2260 -> 600[label="",style="solid", color="blue", weight=3]; 2261[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2261[label="",style="solid", color="blue", weight=9]; 2261 -> 601[label="",style="solid", color="blue", weight=3]; 2262[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2262[label="",style="solid", color="blue", weight=9]; 2262 -> 602[label="",style="solid", color="blue", weight=3]; 2263[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2263[label="",style="solid", color="blue", weight=9]; 2263 -> 603[label="",style="solid", color="blue", weight=3]; 2264[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2264[label="",style="solid", color="blue", weight=9]; 2264 -> 604[label="",style="solid", color="blue", weight=3]; 2265[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2265[label="",style="solid", color="blue", weight=9]; 2265 -> 605[label="",style="solid", color="blue", weight=3]; 2266[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2266[label="",style="solid", color="blue", weight=9]; 2266 -> 606[label="",style="solid", color="blue", weight=3]; 2267[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2267[label="",style="solid", color="blue", weight=9]; 2267 -> 607[label="",style="solid", color="blue", weight=3]; 2268[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];543 -> 2268[label="",style="solid", color="blue", weight=9]; 2268 -> 608[label="",style="solid", color="blue", weight=3]; 544[label="primEqChar (Char vxw310) (Char vxw4010)",fontsize=16,color="black",shape="box"];544 -> 609[label="",style="solid", color="black", weight=3]; 545 -> 340[label="",style="dashed", color="red", weight=0]; 545[label="vxw310 == vxw4010 && vxw311 == vxw4011",fontsize=16,color="magenta"];545 -> 610[label="",style="dashed", color="magenta", weight=3]; 545 -> 611[label="",style="dashed", color="magenta", weight=3]; 546[label="True",fontsize=16,color="green",shape="box"];547[label="False",fontsize=16,color="green",shape="box"];548[label="False",fontsize=16,color="green",shape="box"];549[label="False",fontsize=16,color="green",shape="box"];550[label="True",fontsize=16,color="green",shape="box"];551[label="False",fontsize=16,color="green",shape="box"];552[label="False",fontsize=16,color="green",shape="box"];553[label="False",fontsize=16,color="green",shape="box"];554[label="True",fontsize=16,color="green",shape="box"];555[label="True",fontsize=16,color="green",shape="box"];556[label="False",fontsize=16,color="green",shape="box"];557[label="False",fontsize=16,color="green",shape="box"];558[label="vxw310 == vxw4010",fontsize=16,color="blue",shape="box"];2269[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2269[label="",style="solid", color="blue", weight=9]; 2269 -> 612[label="",style="solid", color="blue", weight=3]; 2270[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2270[label="",style="solid", color="blue", weight=9]; 2270 -> 613[label="",style="solid", color="blue", weight=3]; 2271[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2271[label="",style="solid", color="blue", weight=9]; 2271 -> 614[label="",style="solid", color="blue", weight=3]; 2272[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2272[label="",style="solid", color="blue", weight=9]; 2272 -> 615[label="",style="solid", color="blue", weight=3]; 2273[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2273[label="",style="solid", color="blue", weight=9]; 2273 -> 616[label="",style="solid", color="blue", weight=3]; 2274[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2274[label="",style="solid", color="blue", weight=9]; 2274 -> 617[label="",style="solid", color="blue", weight=3]; 2275[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2275[label="",style="solid", color="blue", weight=9]; 2275 -> 618[label="",style="solid", color="blue", weight=3]; 2276[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2276[label="",style="solid", color="blue", weight=9]; 2276 -> 619[label="",style="solid", color="blue", weight=3]; 2277[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2277[label="",style="solid", color="blue", weight=9]; 2277 -> 620[label="",style="solid", color="blue", weight=3]; 2278[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2278[label="",style="solid", color="blue", weight=9]; 2278 -> 621[label="",style="solid", color="blue", weight=3]; 2279[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2279[label="",style="solid", color="blue", weight=9]; 2279 -> 622[label="",style="solid", color="blue", weight=3]; 2280[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2280[label="",style="solid", color="blue", weight=9]; 2280 -> 623[label="",style="solid", color="blue", weight=3]; 2281[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2281[label="",style="solid", color="blue", weight=9]; 2281 -> 624[label="",style="solid", color="blue", weight=3]; 2282[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];558 -> 2282[label="",style="solid", color="blue", weight=9]; 2282 -> 625[label="",style="solid", color="blue", weight=3]; 559[label="primEqDouble (Double vxw310 vxw311) (Double vxw4010 vxw4011)",fontsize=16,color="black",shape="box"];559 -> 626[label="",style="solid", color="black", weight=3]; 630[label="vxw27 < vxw25",fontsize=16,color="blue",shape="box"];2283[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2283[label="",style="solid", color="blue", weight=9]; 2283 -> 634[label="",style="solid", color="blue", weight=3]; 2284[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2284[label="",style="solid", color="blue", weight=9]; 2284 -> 635[label="",style="solid", color="blue", weight=3]; 2285[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2285[label="",style="solid", color="blue", weight=9]; 2285 -> 636[label="",style="solid", color="blue", weight=3]; 2286[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2286[label="",style="solid", color="blue", weight=9]; 2286 -> 637[label="",style="solid", color="blue", weight=3]; 2287[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2287[label="",style="solid", color="blue", weight=9]; 2287 -> 638[label="",style="solid", color="blue", weight=3]; 2288[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2288[label="",style="solid", color="blue", weight=9]; 2288 -> 639[label="",style="solid", color="blue", weight=3]; 2289[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2289[label="",style="solid", color="blue", weight=9]; 2289 -> 640[label="",style="solid", color="blue", weight=3]; 2290[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2290[label="",style="solid", color="blue", weight=9]; 2290 -> 641[label="",style="solid", color="blue", weight=3]; 2291[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2291[label="",style="solid", color="blue", weight=9]; 2291 -> 642[label="",style="solid", color="blue", weight=3]; 2292[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2292[label="",style="solid", color="blue", weight=9]; 2292 -> 643[label="",style="solid", color="blue", weight=3]; 2293[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2293[label="",style="solid", color="blue", weight=9]; 2293 -> 644[label="",style="solid", color="blue", weight=3]; 2294[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2294[label="",style="solid", color="blue", weight=9]; 2294 -> 645[label="",style="solid", color="blue", weight=3]; 2295[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2295[label="",style="solid", color="blue", weight=9]; 2295 -> 646[label="",style="solid", color="blue", weight=3]; 2296[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2296[label="",style="solid", color="blue", weight=9]; 2296 -> 647[label="",style="solid", color="blue", weight=3]; 631 -> 340[label="",style="dashed", color="red", weight=0]; 631[label="vxw27 == vxw25 && vxw28 <= vxw26",fontsize=16,color="magenta"];631 -> 648[label="",style="dashed", color="magenta", weight=3]; 631 -> 649[label="",style="dashed", color="magenta", weight=3]; 629[label="vxw62 || vxw63",fontsize=16,color="burlywood",shape="triangle"];2297[label="vxw62/False",fontsize=10,color="white",style="solid",shape="box"];629 -> 2297[label="",style="solid", color="burlywood", weight=9]; 2297 -> 650[label="",style="solid", color="burlywood", weight=3]; 2298[label="vxw62/True",fontsize=10,color="white",style="solid",shape="box"];629 -> 2298[label="",style="solid", color="burlywood", weight=9]; 2298 -> 651[label="",style="solid", color="burlywood", weight=3]; 562[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare0 (vxw47,vxw48) (vxw45,vxw46) otherwise)",fontsize=16,color="black",shape="box"];562 -> 652[label="",style="solid", color="black", weight=3]; 563[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) LT",fontsize=16,color="black",shape="box"];563 -> 653[label="",style="solid", color="black", weight=3]; 564[label="primEqInt (Pos (Succ vxw3100)) (Pos vxw4010)",fontsize=16,color="burlywood",shape="box"];2299[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];564 -> 2299[label="",style="solid", color="burlywood", weight=9]; 2299 -> 654[label="",style="solid", color="burlywood", weight=3]; 2300[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];564 -> 2300[label="",style="solid", color="burlywood", weight=9]; 2300 -> 655[label="",style="solid", color="burlywood", weight=3]; 565[label="primEqInt (Pos (Succ vxw3100)) (Neg vxw4010)",fontsize=16,color="black",shape="box"];565 -> 656[label="",style="solid", color="black", weight=3]; 566[label="primEqInt (Pos Zero) (Pos vxw4010)",fontsize=16,color="burlywood",shape="box"];2301[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];566 -> 2301[label="",style="solid", color="burlywood", weight=9]; 2301 -> 657[label="",style="solid", color="burlywood", weight=3]; 2302[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];566 -> 2302[label="",style="solid", color="burlywood", weight=9]; 2302 -> 658[label="",style="solid", color="burlywood", weight=3]; 567[label="primEqInt (Pos Zero) (Neg vxw4010)",fontsize=16,color="burlywood",shape="box"];2303[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];567 -> 2303[label="",style="solid", color="burlywood", weight=9]; 2303 -> 659[label="",style="solid", color="burlywood", weight=3]; 2304[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];567 -> 2304[label="",style="solid", color="burlywood", weight=9]; 2304 -> 660[label="",style="solid", color="burlywood", weight=3]; 568[label="primEqInt (Neg (Succ vxw3100)) (Pos vxw4010)",fontsize=16,color="black",shape="box"];568 -> 661[label="",style="solid", color="black", weight=3]; 569[label="primEqInt (Neg (Succ vxw3100)) (Neg vxw4010)",fontsize=16,color="burlywood",shape="box"];2305[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];569 -> 2305[label="",style="solid", color="burlywood", weight=9]; 2305 -> 662[label="",style="solid", color="burlywood", weight=3]; 2306[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];569 -> 2306[label="",style="solid", color="burlywood", weight=9]; 2306 -> 663[label="",style="solid", color="burlywood", weight=3]; 570[label="primEqInt (Neg Zero) (Pos vxw4010)",fontsize=16,color="burlywood",shape="box"];2307[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];570 -> 2307[label="",style="solid", color="burlywood", weight=9]; 2307 -> 664[label="",style="solid", color="burlywood", weight=3]; 2308[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];570 -> 2308[label="",style="solid", color="burlywood", weight=9]; 2308 -> 665[label="",style="solid", color="burlywood", weight=3]; 571[label="primEqInt (Neg Zero) (Neg vxw4010)",fontsize=16,color="burlywood",shape="box"];2309[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];571 -> 2309[label="",style="solid", color="burlywood", weight=9]; 2309 -> 666[label="",style="solid", color="burlywood", weight=3]; 2310[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];571 -> 2310[label="",style="solid", color="burlywood", weight=9]; 2310 -> 667[label="",style="solid", color="burlywood", weight=3]; 572 -> 340[label="",style="dashed", color="red", weight=0]; 572[label="vxw311 == vxw4011 && vxw312 == vxw4012",fontsize=16,color="magenta"];572 -> 668[label="",style="dashed", color="magenta", weight=3]; 572 -> 669[label="",style="dashed", color="magenta", weight=3]; 573[label="vxw310 == vxw4010",fontsize=16,color="blue",shape="box"];2311[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2311[label="",style="solid", color="blue", weight=9]; 2311 -> 670[label="",style="solid", color="blue", weight=3]; 2312[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2312[label="",style="solid", color="blue", weight=9]; 2312 -> 671[label="",style="solid", color="blue", weight=3]; 2313[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2313[label="",style="solid", color="blue", weight=9]; 2313 -> 672[label="",style="solid", color="blue", weight=3]; 2314[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2314[label="",style="solid", color="blue", weight=9]; 2314 -> 673[label="",style="solid", color="blue", weight=3]; 2315[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2315[label="",style="solid", color="blue", weight=9]; 2315 -> 674[label="",style="solid", color="blue", weight=3]; 2316[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2316[label="",style="solid", color="blue", weight=9]; 2316 -> 675[label="",style="solid", color="blue", weight=3]; 2317[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2317[label="",style="solid", color="blue", weight=9]; 2317 -> 676[label="",style="solid", color="blue", weight=3]; 2318[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2318[label="",style="solid", color="blue", weight=9]; 2318 -> 677[label="",style="solid", color="blue", weight=3]; 2319[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2319[label="",style="solid", color="blue", weight=9]; 2319 -> 678[label="",style="solid", color="blue", weight=3]; 2320[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2320[label="",style="solid", color="blue", weight=9]; 2320 -> 679[label="",style="solid", color="blue", weight=3]; 2321[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2321[label="",style="solid", color="blue", weight=9]; 2321 -> 680[label="",style="solid", color="blue", weight=3]; 2322[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2322[label="",style="solid", color="blue", weight=9]; 2322 -> 681[label="",style="solid", color="blue", weight=3]; 2323[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2323[label="",style="solid", color="blue", weight=9]; 2323 -> 682[label="",style="solid", color="blue", weight=3]; 2324[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];573 -> 2324[label="",style="solid", color="blue", weight=9]; 2324 -> 683[label="",style="solid", color="blue", weight=3]; 574[label="vxw311 == vxw4011",fontsize=16,color="blue",shape="box"];2325[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2325[label="",style="solid", color="blue", weight=9]; 2325 -> 684[label="",style="solid", color="blue", weight=3]; 2326[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2326[label="",style="solid", color="blue", weight=9]; 2326 -> 685[label="",style="solid", color="blue", weight=3]; 2327[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2327[label="",style="solid", color="blue", weight=9]; 2327 -> 686[label="",style="solid", color="blue", weight=3]; 2328[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2328[label="",style="solid", color="blue", weight=9]; 2328 -> 687[label="",style="solid", color="blue", weight=3]; 2329[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2329[label="",style="solid", color="blue", weight=9]; 2329 -> 688[label="",style="solid", color="blue", weight=3]; 2330[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2330[label="",style="solid", color="blue", weight=9]; 2330 -> 689[label="",style="solid", color="blue", weight=3]; 2331[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2331[label="",style="solid", color="blue", weight=9]; 2331 -> 690[label="",style="solid", color="blue", weight=3]; 2332[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2332[label="",style="solid", color="blue", weight=9]; 2332 -> 691[label="",style="solid", color="blue", weight=3]; 2333[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2333[label="",style="solid", color="blue", weight=9]; 2333 -> 692[label="",style="solid", color="blue", weight=3]; 2334[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2334[label="",style="solid", color="blue", weight=9]; 2334 -> 693[label="",style="solid", color="blue", weight=3]; 2335[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2335[label="",style="solid", color="blue", weight=9]; 2335 -> 694[label="",style="solid", color="blue", weight=3]; 2336[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2336[label="",style="solid", color="blue", weight=9]; 2336 -> 695[label="",style="solid", color="blue", weight=3]; 2337[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2337[label="",style="solid", color="blue", weight=9]; 2337 -> 696[label="",style="solid", color="blue", weight=3]; 2338[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];574 -> 2338[label="",style="solid", color="blue", weight=9]; 2338 -> 697[label="",style="solid", color="blue", weight=3]; 575[label="vxw310 == vxw4010",fontsize=16,color="blue",shape="box"];2339[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2339[label="",style="solid", color="blue", weight=9]; 2339 -> 698[label="",style="solid", color="blue", weight=3]; 2340[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2340[label="",style="solid", color="blue", weight=9]; 2340 -> 699[label="",style="solid", color="blue", weight=3]; 2341[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2341[label="",style="solid", color="blue", weight=9]; 2341 -> 700[label="",style="solid", color="blue", weight=3]; 2342[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2342[label="",style="solid", color="blue", weight=9]; 2342 -> 701[label="",style="solid", color="blue", weight=3]; 2343[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2343[label="",style="solid", color="blue", weight=9]; 2343 -> 702[label="",style="solid", color="blue", weight=3]; 2344[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2344[label="",style="solid", color="blue", weight=9]; 2344 -> 703[label="",style="solid", color="blue", weight=3]; 2345[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2345[label="",style="solid", color="blue", weight=9]; 2345 -> 704[label="",style="solid", color="blue", weight=3]; 2346[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2346[label="",style="solid", color="blue", weight=9]; 2346 -> 705[label="",style="solid", color="blue", weight=3]; 2347[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2347[label="",style="solid", color="blue", weight=9]; 2347 -> 706[label="",style="solid", color="blue", weight=3]; 2348[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2348[label="",style="solid", color="blue", weight=9]; 2348 -> 707[label="",style="solid", color="blue", weight=3]; 2349[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2349[label="",style="solid", color="blue", weight=9]; 2349 -> 708[label="",style="solid", color="blue", weight=3]; 2350[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2350[label="",style="solid", color="blue", weight=9]; 2350 -> 709[label="",style="solid", color="blue", weight=3]; 2351[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2351[label="",style="solid", color="blue", weight=9]; 2351 -> 710[label="",style="solid", color="blue", weight=3]; 2352[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];575 -> 2352[label="",style="solid", color="blue", weight=9]; 2352 -> 711[label="",style="solid", color="blue", weight=3]; 576 -> 345[label="",style="dashed", color="red", weight=0]; 576[label="vxw310 * vxw4011 == vxw311 * vxw4010",fontsize=16,color="magenta"];576 -> 712[label="",style="dashed", color="magenta", weight=3]; 576 -> 713[label="",style="dashed", color="magenta", weight=3]; 577 -> 350[label="",style="dashed", color="red", weight=0]; 577[label="vxw311 == vxw4011",fontsize=16,color="magenta"];577 -> 714[label="",style="dashed", color="magenta", weight=3]; 577 -> 715[label="",style="dashed", color="magenta", weight=3]; 578[label="vxw310 == vxw4010",fontsize=16,color="blue",shape="box"];2353[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2353[label="",style="solid", color="blue", weight=9]; 2353 -> 716[label="",style="solid", color="blue", weight=3]; 2354[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2354[label="",style="solid", color="blue", weight=9]; 2354 -> 717[label="",style="solid", color="blue", weight=3]; 2355[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2355[label="",style="solid", color="blue", weight=9]; 2355 -> 718[label="",style="solid", color="blue", weight=3]; 2356[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2356[label="",style="solid", color="blue", weight=9]; 2356 -> 719[label="",style="solid", color="blue", weight=3]; 2357[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2357[label="",style="solid", color="blue", weight=9]; 2357 -> 720[label="",style="solid", color="blue", weight=3]; 2358[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2358[label="",style="solid", color="blue", weight=9]; 2358 -> 721[label="",style="solid", color="blue", weight=3]; 2359[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2359[label="",style="solid", color="blue", weight=9]; 2359 -> 722[label="",style="solid", color="blue", weight=3]; 2360[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2360[label="",style="solid", color="blue", weight=9]; 2360 -> 723[label="",style="solid", color="blue", weight=3]; 2361[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2361[label="",style="solid", color="blue", weight=9]; 2361 -> 724[label="",style="solid", color="blue", weight=3]; 2362[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2362[label="",style="solid", color="blue", weight=9]; 2362 -> 725[label="",style="solid", color="blue", weight=3]; 2363[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2363[label="",style="solid", color="blue", weight=9]; 2363 -> 726[label="",style="solid", color="blue", weight=3]; 2364[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2364[label="",style="solid", color="blue", weight=9]; 2364 -> 727[label="",style="solid", color="blue", weight=3]; 2365[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2365[label="",style="solid", color="blue", weight=9]; 2365 -> 728[label="",style="solid", color="blue", weight=3]; 2366[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2366[label="",style="solid", color="blue", weight=9]; 2366 -> 729[label="",style="solid", color="blue", weight=3]; 579[label="vxw310",fontsize=16,color="green",shape="box"];580[label="vxw4010",fontsize=16,color="green",shape="box"];581 -> 345[label="",style="dashed", color="red", weight=0]; 581[label="vxw310 == vxw4010",fontsize=16,color="magenta"];581 -> 730[label="",style="dashed", color="magenta", weight=3]; 581 -> 731[label="",style="dashed", color="magenta", weight=3]; 582 -> 346[label="",style="dashed", color="red", weight=0]; 582[label="vxw310 == vxw4010",fontsize=16,color="magenta"];582 -> 732[label="",style="dashed", color="magenta", weight=3]; 582 -> 733[label="",style="dashed", color="magenta", weight=3]; 583 -> 347[label="",style="dashed", color="red", weight=0]; 583[label="vxw310 == vxw4010",fontsize=16,color="magenta"];583 -> 734[label="",style="dashed", color="magenta", weight=3]; 583 -> 735[label="",style="dashed", color="magenta", weight=3]; 584 -> 348[label="",style="dashed", color="red", weight=0]; 584[label="vxw310 == vxw4010",fontsize=16,color="magenta"];584 -> 736[label="",style="dashed", color="magenta", weight=3]; 584 -> 737[label="",style="dashed", color="magenta", weight=3]; 585 -> 349[label="",style="dashed", color="red", weight=0]; 585[label="vxw310 == vxw4010",fontsize=16,color="magenta"];585 -> 738[label="",style="dashed", color="magenta", weight=3]; 585 -> 739[label="",style="dashed", color="magenta", weight=3]; 586 -> 350[label="",style="dashed", color="red", weight=0]; 586[label="vxw310 == vxw4010",fontsize=16,color="magenta"];586 -> 740[label="",style="dashed", color="magenta", weight=3]; 586 -> 741[label="",style="dashed", color="magenta", weight=3]; 587 -> 351[label="",style="dashed", color="red", weight=0]; 587[label="vxw310 == vxw4010",fontsize=16,color="magenta"];587 -> 742[label="",style="dashed", color="magenta", weight=3]; 587 -> 743[label="",style="dashed", color="magenta", weight=3]; 588 -> 352[label="",style="dashed", color="red", weight=0]; 588[label="vxw310 == vxw4010",fontsize=16,color="magenta"];588 -> 744[label="",style="dashed", color="magenta", weight=3]; 588 -> 745[label="",style="dashed", color="magenta", weight=3]; 589 -> 353[label="",style="dashed", color="red", weight=0]; 589[label="vxw310 == vxw4010",fontsize=16,color="magenta"];589 -> 746[label="",style="dashed", color="magenta", weight=3]; 589 -> 747[label="",style="dashed", color="magenta", weight=3]; 590 -> 354[label="",style="dashed", color="red", weight=0]; 590[label="vxw310 == vxw4010",fontsize=16,color="magenta"];590 -> 748[label="",style="dashed", color="magenta", weight=3]; 590 -> 749[label="",style="dashed", color="magenta", weight=3]; 591 -> 355[label="",style="dashed", color="red", weight=0]; 591[label="vxw310 == vxw4010",fontsize=16,color="magenta"];591 -> 750[label="",style="dashed", color="magenta", weight=3]; 591 -> 751[label="",style="dashed", color="magenta", weight=3]; 592 -> 356[label="",style="dashed", color="red", weight=0]; 592[label="vxw310 == vxw4010",fontsize=16,color="magenta"];592 -> 752[label="",style="dashed", color="magenta", weight=3]; 592 -> 753[label="",style="dashed", color="magenta", weight=3]; 593 -> 357[label="",style="dashed", color="red", weight=0]; 593[label="vxw310 == vxw4010",fontsize=16,color="magenta"];593 -> 754[label="",style="dashed", color="magenta", weight=3]; 593 -> 755[label="",style="dashed", color="magenta", weight=3]; 594 -> 358[label="",style="dashed", color="red", weight=0]; 594[label="vxw310 == vxw4010",fontsize=16,color="magenta"];594 -> 756[label="",style="dashed", color="magenta", weight=3]; 594 -> 757[label="",style="dashed", color="magenta", weight=3]; 595 -> 345[label="",style="dashed", color="red", weight=0]; 595[label="vxw310 == vxw4010",fontsize=16,color="magenta"];595 -> 758[label="",style="dashed", color="magenta", weight=3]; 595 -> 759[label="",style="dashed", color="magenta", weight=3]; 596 -> 346[label="",style="dashed", color="red", weight=0]; 596[label="vxw310 == vxw4010",fontsize=16,color="magenta"];596 -> 760[label="",style="dashed", color="magenta", weight=3]; 596 -> 761[label="",style="dashed", color="magenta", weight=3]; 597 -> 347[label="",style="dashed", color="red", weight=0]; 597[label="vxw310 == vxw4010",fontsize=16,color="magenta"];597 -> 762[label="",style="dashed", color="magenta", weight=3]; 597 -> 763[label="",style="dashed", color="magenta", weight=3]; 598 -> 348[label="",style="dashed", color="red", weight=0]; 598[label="vxw310 == vxw4010",fontsize=16,color="magenta"];598 -> 764[label="",style="dashed", color="magenta", weight=3]; 598 -> 765[label="",style="dashed", color="magenta", weight=3]; 599 -> 349[label="",style="dashed", color="red", weight=0]; 599[label="vxw310 == vxw4010",fontsize=16,color="magenta"];599 -> 766[label="",style="dashed", color="magenta", weight=3]; 599 -> 767[label="",style="dashed", color="magenta", weight=3]; 600 -> 350[label="",style="dashed", color="red", weight=0]; 600[label="vxw310 == vxw4010",fontsize=16,color="magenta"];600 -> 768[label="",style="dashed", color="magenta", weight=3]; 600 -> 769[label="",style="dashed", color="magenta", weight=3]; 601 -> 351[label="",style="dashed", color="red", weight=0]; 601[label="vxw310 == vxw4010",fontsize=16,color="magenta"];601 -> 770[label="",style="dashed", color="magenta", weight=3]; 601 -> 771[label="",style="dashed", color="magenta", weight=3]; 602 -> 352[label="",style="dashed", color="red", weight=0]; 602[label="vxw310 == vxw4010",fontsize=16,color="magenta"];602 -> 772[label="",style="dashed", color="magenta", weight=3]; 602 -> 773[label="",style="dashed", color="magenta", weight=3]; 603 -> 353[label="",style="dashed", color="red", weight=0]; 603[label="vxw310 == vxw4010",fontsize=16,color="magenta"];603 -> 774[label="",style="dashed", color="magenta", weight=3]; 603 -> 775[label="",style="dashed", color="magenta", weight=3]; 604 -> 354[label="",style="dashed", color="red", weight=0]; 604[label="vxw310 == vxw4010",fontsize=16,color="magenta"];604 -> 776[label="",style="dashed", color="magenta", weight=3]; 604 -> 777[label="",style="dashed", color="magenta", weight=3]; 605 -> 355[label="",style="dashed", color="red", weight=0]; 605[label="vxw310 == vxw4010",fontsize=16,color="magenta"];605 -> 778[label="",style="dashed", color="magenta", weight=3]; 605 -> 779[label="",style="dashed", color="magenta", weight=3]; 606 -> 356[label="",style="dashed", color="red", weight=0]; 606[label="vxw310 == vxw4010",fontsize=16,color="magenta"];606 -> 780[label="",style="dashed", color="magenta", weight=3]; 606 -> 781[label="",style="dashed", color="magenta", weight=3]; 607 -> 357[label="",style="dashed", color="red", weight=0]; 607[label="vxw310 == vxw4010",fontsize=16,color="magenta"];607 -> 782[label="",style="dashed", color="magenta", weight=3]; 607 -> 783[label="",style="dashed", color="magenta", weight=3]; 608 -> 358[label="",style="dashed", color="red", weight=0]; 608[label="vxw310 == vxw4010",fontsize=16,color="magenta"];608 -> 784[label="",style="dashed", color="magenta", weight=3]; 608 -> 785[label="",style="dashed", color="magenta", weight=3]; 609[label="primEqNat vxw310 vxw4010",fontsize=16,color="burlywood",shape="triangle"];2367[label="vxw310/Succ vxw3100",fontsize=10,color="white",style="solid",shape="box"];609 -> 2367[label="",style="solid", color="burlywood", weight=9]; 2367 -> 786[label="",style="solid", color="burlywood", weight=3]; 2368[label="vxw310/Zero",fontsize=10,color="white",style="solid",shape="box"];609 -> 2368[label="",style="solid", color="burlywood", weight=9]; 2368 -> 787[label="",style="solid", color="burlywood", weight=3]; 610[label="vxw311 == vxw4011",fontsize=16,color="blue",shape="box"];2369[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];610 -> 2369[label="",style="solid", color="blue", weight=9]; 2369 -> 788[label="",style="solid", color="blue", weight=3]; 2370[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];610 -> 2370[label="",style="solid", color="blue", weight=9]; 2370 -> 789[label="",style="solid", color="blue", weight=3]; 611[label="vxw310 == vxw4010",fontsize=16,color="blue",shape="box"];2371[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];611 -> 2371[label="",style="solid", color="blue", weight=9]; 2371 -> 790[label="",style="solid", color="blue", weight=3]; 2372[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];611 -> 2372[label="",style="solid", color="blue", weight=9]; 2372 -> 791[label="",style="solid", color="blue", weight=3]; 612 -> 345[label="",style="dashed", color="red", weight=0]; 612[label="vxw310 == vxw4010",fontsize=16,color="magenta"];612 -> 792[label="",style="dashed", color="magenta", weight=3]; 612 -> 793[label="",style="dashed", color="magenta", weight=3]; 613 -> 346[label="",style="dashed", color="red", weight=0]; 613[label="vxw310 == vxw4010",fontsize=16,color="magenta"];613 -> 794[label="",style="dashed", color="magenta", weight=3]; 613 -> 795[label="",style="dashed", color="magenta", weight=3]; 614 -> 347[label="",style="dashed", color="red", weight=0]; 614[label="vxw310 == vxw4010",fontsize=16,color="magenta"];614 -> 796[label="",style="dashed", color="magenta", weight=3]; 614 -> 797[label="",style="dashed", color="magenta", weight=3]; 615 -> 348[label="",style="dashed", color="red", weight=0]; 615[label="vxw310 == vxw4010",fontsize=16,color="magenta"];615 -> 798[label="",style="dashed", color="magenta", weight=3]; 615 -> 799[label="",style="dashed", color="magenta", weight=3]; 616 -> 349[label="",style="dashed", color="red", weight=0]; 616[label="vxw310 == vxw4010",fontsize=16,color="magenta"];616 -> 800[label="",style="dashed", color="magenta", weight=3]; 616 -> 801[label="",style="dashed", color="magenta", weight=3]; 617 -> 350[label="",style="dashed", color="red", weight=0]; 617[label="vxw310 == vxw4010",fontsize=16,color="magenta"];617 -> 802[label="",style="dashed", color="magenta", weight=3]; 617 -> 803[label="",style="dashed", color="magenta", weight=3]; 618 -> 351[label="",style="dashed", color="red", weight=0]; 618[label="vxw310 == vxw4010",fontsize=16,color="magenta"];618 -> 804[label="",style="dashed", color="magenta", weight=3]; 618 -> 805[label="",style="dashed", color="magenta", weight=3]; 619 -> 352[label="",style="dashed", color="red", weight=0]; 619[label="vxw310 == vxw4010",fontsize=16,color="magenta"];619 -> 806[label="",style="dashed", color="magenta", weight=3]; 619 -> 807[label="",style="dashed", color="magenta", weight=3]; 620 -> 353[label="",style="dashed", color="red", weight=0]; 620[label="vxw310 == vxw4010",fontsize=16,color="magenta"];620 -> 808[label="",style="dashed", color="magenta", weight=3]; 620 -> 809[label="",style="dashed", color="magenta", weight=3]; 621 -> 354[label="",style="dashed", color="red", weight=0]; 621[label="vxw310 == vxw4010",fontsize=16,color="magenta"];621 -> 810[label="",style="dashed", color="magenta", weight=3]; 621 -> 811[label="",style="dashed", color="magenta", weight=3]; 622 -> 355[label="",style="dashed", color="red", weight=0]; 622[label="vxw310 == vxw4010",fontsize=16,color="magenta"];622 -> 812[label="",style="dashed", color="magenta", weight=3]; 622 -> 813[label="",style="dashed", color="magenta", weight=3]; 623 -> 356[label="",style="dashed", color="red", weight=0]; 623[label="vxw310 == vxw4010",fontsize=16,color="magenta"];623 -> 814[label="",style="dashed", color="magenta", weight=3]; 623 -> 815[label="",style="dashed", color="magenta", weight=3]; 624 -> 357[label="",style="dashed", color="red", weight=0]; 624[label="vxw310 == vxw4010",fontsize=16,color="magenta"];624 -> 816[label="",style="dashed", color="magenta", weight=3]; 624 -> 817[label="",style="dashed", color="magenta", weight=3]; 625 -> 358[label="",style="dashed", color="red", weight=0]; 625[label="vxw310 == vxw4010",fontsize=16,color="magenta"];625 -> 818[label="",style="dashed", color="magenta", weight=3]; 625 -> 819[label="",style="dashed", color="magenta", weight=3]; 626 -> 345[label="",style="dashed", color="red", weight=0]; 626[label="vxw310 * vxw4011 == vxw311 * vxw4010",fontsize=16,color="magenta"];626 -> 820[label="",style="dashed", color="magenta", weight=3]; 626 -> 821[label="",style="dashed", color="magenta", weight=3]; 634[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];634 -> 822[label="",style="solid", color="black", weight=3]; 635[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];635 -> 823[label="",style="solid", color="black", weight=3]; 636[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];636 -> 824[label="",style="solid", color="black", weight=3]; 637[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];637 -> 825[label="",style="solid", color="black", weight=3]; 638[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];638 -> 826[label="",style="solid", color="black", weight=3]; 639[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];639 -> 827[label="",style="solid", color="black", weight=3]; 640[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];640 -> 828[label="",style="solid", color="black", weight=3]; 641[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];641 -> 829[label="",style="solid", color="black", weight=3]; 642[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];642 -> 830[label="",style="solid", color="black", weight=3]; 643[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];643 -> 831[label="",style="solid", color="black", weight=3]; 644[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];644 -> 832[label="",style="solid", color="black", weight=3]; 645[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];645 -> 833[label="",style="solid", color="black", weight=3]; 646[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];646 -> 834[label="",style="solid", color="black", weight=3]; 647[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];647 -> 835[label="",style="solid", color="black", weight=3]; 648[label="vxw28 <= vxw26",fontsize=16,color="blue",shape="box"];2373[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2373[label="",style="solid", color="blue", weight=9]; 2373 -> 836[label="",style="solid", color="blue", weight=3]; 2374[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2374[label="",style="solid", color="blue", weight=9]; 2374 -> 837[label="",style="solid", color="blue", weight=3]; 2375[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2375[label="",style="solid", color="blue", weight=9]; 2375 -> 838[label="",style="solid", color="blue", weight=3]; 2376[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2376[label="",style="solid", color="blue", weight=9]; 2376 -> 839[label="",style="solid", color="blue", weight=3]; 2377[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2377[label="",style="solid", color="blue", weight=9]; 2377 -> 840[label="",style="solid", color="blue", weight=3]; 2378[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2378[label="",style="solid", color="blue", weight=9]; 2378 -> 841[label="",style="solid", color="blue", weight=3]; 2379[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2379[label="",style="solid", color="blue", weight=9]; 2379 -> 842[label="",style="solid", color="blue", weight=3]; 2380[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2380[label="",style="solid", color="blue", weight=9]; 2380 -> 843[label="",style="solid", color="blue", weight=3]; 2381[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2381[label="",style="solid", color="blue", weight=9]; 2381 -> 844[label="",style="solid", color="blue", weight=3]; 2382[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2382[label="",style="solid", color="blue", weight=9]; 2382 -> 845[label="",style="solid", color="blue", weight=3]; 2383[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2383[label="",style="solid", color="blue", weight=9]; 2383 -> 846[label="",style="solid", color="blue", weight=3]; 2384[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2384[label="",style="solid", color="blue", weight=9]; 2384 -> 847[label="",style="solid", color="blue", weight=3]; 2385[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2385[label="",style="solid", color="blue", weight=9]; 2385 -> 848[label="",style="solid", color="blue", weight=3]; 2386[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 2386[label="",style="solid", color="blue", weight=9]; 2386 -> 849[label="",style="solid", color="blue", weight=3]; 649[label="vxw27 == vxw25",fontsize=16,color="blue",shape="box"];2387[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2387[label="",style="solid", color="blue", weight=9]; 2387 -> 850[label="",style="solid", color="blue", weight=3]; 2388[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2388[label="",style="solid", color="blue", weight=9]; 2388 -> 851[label="",style="solid", color="blue", weight=3]; 2389[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2389[label="",style="solid", color="blue", weight=9]; 2389 -> 852[label="",style="solid", color="blue", weight=3]; 2390[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2390[label="",style="solid", color="blue", weight=9]; 2390 -> 853[label="",style="solid", color="blue", weight=3]; 2391[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2391[label="",style="solid", color="blue", weight=9]; 2391 -> 854[label="",style="solid", color="blue", weight=3]; 2392[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2392[label="",style="solid", color="blue", weight=9]; 2392 -> 855[label="",style="solid", color="blue", weight=3]; 2393[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2393[label="",style="solid", color="blue", weight=9]; 2393 -> 856[label="",style="solid", color="blue", weight=3]; 2394[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2394[label="",style="solid", color="blue", weight=9]; 2394 -> 857[label="",style="solid", color="blue", weight=3]; 2395[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2395[label="",style="solid", color="blue", weight=9]; 2395 -> 858[label="",style="solid", color="blue", weight=3]; 2396[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2396[label="",style="solid", color="blue", weight=9]; 2396 -> 859[label="",style="solid", color="blue", weight=3]; 2397[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2397[label="",style="solid", color="blue", weight=9]; 2397 -> 860[label="",style="solid", color="blue", weight=3]; 2398[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2398[label="",style="solid", color="blue", weight=9]; 2398 -> 861[label="",style="solid", color="blue", weight=3]; 2399[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2399[label="",style="solid", color="blue", weight=9]; 2399 -> 862[label="",style="solid", color="blue", weight=3]; 2400[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 2400[label="",style="solid", color="blue", weight=9]; 2400 -> 863[label="",style="solid", color="blue", weight=3]; 650[label="False || vxw63",fontsize=16,color="black",shape="box"];650 -> 864[label="",style="solid", color="black", weight=3]; 651[label="True || vxw63",fontsize=16,color="black",shape="box"];651 -> 865[label="",style="solid", color="black", weight=3]; 652[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare0 (vxw47,vxw48) (vxw45,vxw46) True)",fontsize=16,color="black",shape="box"];652 -> 866[label="",style="solid", color="black", weight=3]; 653[label="(vxw47,vxw48) : (vxw45,vxw46) : vxw49",fontsize=16,color="green",shape="box"];654[label="primEqInt (Pos (Succ vxw3100)) (Pos (Succ vxw40100))",fontsize=16,color="black",shape="box"];654 -> 867[label="",style="solid", color="black", weight=3]; 655[label="primEqInt (Pos (Succ vxw3100)) (Pos Zero)",fontsize=16,color="black",shape="box"];655 -> 868[label="",style="solid", color="black", weight=3]; 656[label="False",fontsize=16,color="green",shape="box"];657[label="primEqInt (Pos Zero) (Pos (Succ vxw40100))",fontsize=16,color="black",shape="box"];657 -> 869[label="",style="solid", color="black", weight=3]; 658[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];658 -> 870[label="",style="solid", color="black", weight=3]; 659[label="primEqInt (Pos Zero) (Neg (Succ vxw40100))",fontsize=16,color="black",shape="box"];659 -> 871[label="",style="solid", color="black", weight=3]; 660[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];660 -> 872[label="",style="solid", color="black", weight=3]; 661[label="False",fontsize=16,color="green",shape="box"];662[label="primEqInt (Neg (Succ vxw3100)) (Neg (Succ vxw40100))",fontsize=16,color="black",shape="box"];662 -> 873[label="",style="solid", color="black", weight=3]; 663[label="primEqInt (Neg (Succ vxw3100)) (Neg Zero)",fontsize=16,color="black",shape="box"];663 -> 874[label="",style="solid", color="black", weight=3]; 664[label="primEqInt (Neg Zero) (Pos (Succ vxw40100))",fontsize=16,color="black",shape="box"];664 -> 875[label="",style="solid", color="black", weight=3]; 665[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];665 -> 876[label="",style="solid", color="black", weight=3]; 666[label="primEqInt (Neg Zero) (Neg (Succ vxw40100))",fontsize=16,color="black",shape="box"];666 -> 877[label="",style="solid", color="black", weight=3]; 667[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];667 -> 878[label="",style="solid", color="black", weight=3]; 668[label="vxw312 == vxw4012",fontsize=16,color="blue",shape="box"];2401[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2401[label="",style="solid", color="blue", weight=9]; 2401 -> 879[label="",style="solid", color="blue", weight=3]; 2402[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2402[label="",style="solid", color="blue", weight=9]; 2402 -> 880[label="",style="solid", color="blue", weight=3]; 2403[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2403[label="",style="solid", color="blue", weight=9]; 2403 -> 881[label="",style="solid", color="blue", weight=3]; 2404[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2404[label="",style="solid", color="blue", weight=9]; 2404 -> 882[label="",style="solid", color="blue", weight=3]; 2405[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2405[label="",style="solid", color="blue", weight=9]; 2405 -> 883[label="",style="solid", color="blue", weight=3]; 2406[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2406[label="",style="solid", color="blue", weight=9]; 2406 -> 884[label="",style="solid", color="blue", weight=3]; 2407[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2407[label="",style="solid", color="blue", weight=9]; 2407 -> 885[label="",style="solid", color="blue", weight=3]; 2408[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2408[label="",style="solid", color="blue", weight=9]; 2408 -> 886[label="",style="solid", color="blue", weight=3]; 2409[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2409[label="",style="solid", color="blue", weight=9]; 2409 -> 887[label="",style="solid", color="blue", weight=3]; 2410[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2410[label="",style="solid", color="blue", weight=9]; 2410 -> 888[label="",style="solid", color="blue", weight=3]; 2411[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2411[label="",style="solid", color="blue", weight=9]; 2411 -> 889[label="",style="solid", color="blue", weight=3]; 2412[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2412[label="",style="solid", color="blue", weight=9]; 2412 -> 890[label="",style="solid", color="blue", weight=3]; 2413[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2413[label="",style="solid", color="blue", weight=9]; 2413 -> 891[label="",style="solid", color="blue", weight=3]; 2414[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];668 -> 2414[label="",style="solid", color="blue", weight=9]; 2414 -> 892[label="",style="solid", color="blue", weight=3]; 669[label="vxw311 == vxw4011",fontsize=16,color="blue",shape="box"];2415[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2415[label="",style="solid", color="blue", weight=9]; 2415 -> 893[label="",style="solid", color="blue", weight=3]; 2416[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2416[label="",style="solid", color="blue", weight=9]; 2416 -> 894[label="",style="solid", color="blue", weight=3]; 2417[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2417[label="",style="solid", color="blue", weight=9]; 2417 -> 895[label="",style="solid", color="blue", weight=3]; 2418[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2418[label="",style="solid", color="blue", weight=9]; 2418 -> 896[label="",style="solid", color="blue", weight=3]; 2419[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2419[label="",style="solid", color="blue", weight=9]; 2419 -> 897[label="",style="solid", color="blue", weight=3]; 2420[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2420[label="",style="solid", color="blue", weight=9]; 2420 -> 898[label="",style="solid", color="blue", weight=3]; 2421[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2421[label="",style="solid", color="blue", weight=9]; 2421 -> 899[label="",style="solid", color="blue", weight=3]; 2422[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2422[label="",style="solid", color="blue", weight=9]; 2422 -> 900[label="",style="solid", color="blue", weight=3]; 2423[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2423[label="",style="solid", color="blue", weight=9]; 2423 -> 901[label="",style="solid", color="blue", weight=3]; 2424[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2424[label="",style="solid", color="blue", weight=9]; 2424 -> 902[label="",style="solid", color="blue", weight=3]; 2425[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2425[label="",style="solid", color="blue", weight=9]; 2425 -> 903[label="",style="solid", color="blue", weight=3]; 2426[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2426[label="",style="solid", color="blue", weight=9]; 2426 -> 904[label="",style="solid", color="blue", weight=3]; 2427[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2427[label="",style="solid", color="blue", weight=9]; 2427 -> 905[label="",style="solid", color="blue", weight=3]; 2428[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];669 -> 2428[label="",style="solid", color="blue", weight=9]; 2428 -> 906[label="",style="solid", color="blue", weight=3]; 670 -> 345[label="",style="dashed", color="red", weight=0]; 670[label="vxw310 == vxw4010",fontsize=16,color="magenta"];670 -> 907[label="",style="dashed", color="magenta", weight=3]; 670 -> 908[label="",style="dashed", color="magenta", weight=3]; 671 -> 346[label="",style="dashed", color="red", weight=0]; 671[label="vxw310 == vxw4010",fontsize=16,color="magenta"];671 -> 909[label="",style="dashed", color="magenta", weight=3]; 671 -> 910[label="",style="dashed", color="magenta", weight=3]; 672 -> 347[label="",style="dashed", color="red", weight=0]; 672[label="vxw310 == vxw4010",fontsize=16,color="magenta"];672 -> 911[label="",style="dashed", color="magenta", weight=3]; 672 -> 912[label="",style="dashed", color="magenta", weight=3]; 673 -> 348[label="",style="dashed", color="red", weight=0]; 673[label="vxw310 == vxw4010",fontsize=16,color="magenta"];673 -> 913[label="",style="dashed", color="magenta", weight=3]; 673 -> 914[label="",style="dashed", color="magenta", weight=3]; 674 -> 349[label="",style="dashed", color="red", weight=0]; 674[label="vxw310 == vxw4010",fontsize=16,color="magenta"];674 -> 915[label="",style="dashed", color="magenta", weight=3]; 674 -> 916[label="",style="dashed", color="magenta", weight=3]; 675 -> 350[label="",style="dashed", color="red", weight=0]; 675[label="vxw310 == vxw4010",fontsize=16,color="magenta"];675 -> 917[label="",style="dashed", color="magenta", weight=3]; 675 -> 918[label="",style="dashed", color="magenta", weight=3]; 676 -> 351[label="",style="dashed", color="red", weight=0]; 676[label="vxw310 == vxw4010",fontsize=16,color="magenta"];676 -> 919[label="",style="dashed", color="magenta", weight=3]; 676 -> 920[label="",style="dashed", color="magenta", weight=3]; 677 -> 352[label="",style="dashed", color="red", weight=0]; 677[label="vxw310 == vxw4010",fontsize=16,color="magenta"];677 -> 921[label="",style="dashed", color="magenta", weight=3]; 677 -> 922[label="",style="dashed", color="magenta", weight=3]; 678 -> 353[label="",style="dashed", color="red", weight=0]; 678[label="vxw310 == vxw4010",fontsize=16,color="magenta"];678 -> 923[label="",style="dashed", color="magenta", weight=3]; 678 -> 924[label="",style="dashed", color="magenta", weight=3]; 679 -> 354[label="",style="dashed", color="red", weight=0]; 679[label="vxw310 == vxw4010",fontsize=16,color="magenta"];679 -> 925[label="",style="dashed", color="magenta", weight=3]; 679 -> 926[label="",style="dashed", color="magenta", weight=3]; 680 -> 355[label="",style="dashed", color="red", weight=0]; 680[label="vxw310 == vxw4010",fontsize=16,color="magenta"];680 -> 927[label="",style="dashed", color="magenta", weight=3]; 680 -> 928[label="",style="dashed", color="magenta", weight=3]; 681 -> 356[label="",style="dashed", color="red", weight=0]; 681[label="vxw310 == vxw4010",fontsize=16,color="magenta"];681 -> 929[label="",style="dashed", color="magenta", weight=3]; 681 -> 930[label="",style="dashed", color="magenta", weight=3]; 682 -> 357[label="",style="dashed", color="red", weight=0]; 682[label="vxw310 == vxw4010",fontsize=16,color="magenta"];682 -> 931[label="",style="dashed", color="magenta", weight=3]; 682 -> 932[label="",style="dashed", color="magenta", weight=3]; 683 -> 358[label="",style="dashed", color="red", weight=0]; 683[label="vxw310 == vxw4010",fontsize=16,color="magenta"];683 -> 933[label="",style="dashed", color="magenta", weight=3]; 683 -> 934[label="",style="dashed", color="magenta", weight=3]; 684 -> 345[label="",style="dashed", color="red", weight=0]; 684[label="vxw311 == vxw4011",fontsize=16,color="magenta"];684 -> 935[label="",style="dashed", color="magenta", weight=3]; 684 -> 936[label="",style="dashed", color="magenta", weight=3]; 685 -> 346[label="",style="dashed", color="red", weight=0]; 685[label="vxw311 == vxw4011",fontsize=16,color="magenta"];685 -> 937[label="",style="dashed", color="magenta", weight=3]; 685 -> 938[label="",style="dashed", color="magenta", weight=3]; 686 -> 347[label="",style="dashed", color="red", weight=0]; 686[label="vxw311 == vxw4011",fontsize=16,color="magenta"];686 -> 939[label="",style="dashed", color="magenta", weight=3]; 686 -> 940[label="",style="dashed", color="magenta", weight=3]; 687 -> 348[label="",style="dashed", color="red", weight=0]; 687[label="vxw311 == vxw4011",fontsize=16,color="magenta"];687 -> 941[label="",style="dashed", color="magenta", weight=3]; 687 -> 942[label="",style="dashed", color="magenta", weight=3]; 688 -> 349[label="",style="dashed", color="red", weight=0]; 688[label="vxw311 == vxw4011",fontsize=16,color="magenta"];688 -> 943[label="",style="dashed", color="magenta", weight=3]; 688 -> 944[label="",style="dashed", color="magenta", weight=3]; 689 -> 350[label="",style="dashed", color="red", weight=0]; 689[label="vxw311 == vxw4011",fontsize=16,color="magenta"];689 -> 945[label="",style="dashed", color="magenta", weight=3]; 689 -> 946[label="",style="dashed", color="magenta", weight=3]; 690 -> 351[label="",style="dashed", color="red", weight=0]; 690[label="vxw311 == vxw4011",fontsize=16,color="magenta"];690 -> 947[label="",style="dashed", color="magenta", weight=3]; 690 -> 948[label="",style="dashed", color="magenta", weight=3]; 691 -> 352[label="",style="dashed", color="red", weight=0]; 691[label="vxw311 == vxw4011",fontsize=16,color="magenta"];691 -> 949[label="",style="dashed", color="magenta", weight=3]; 691 -> 950[label="",style="dashed", color="magenta", weight=3]; 692 -> 353[label="",style="dashed", color="red", weight=0]; 692[label="vxw311 == vxw4011",fontsize=16,color="magenta"];692 -> 951[label="",style="dashed", color="magenta", weight=3]; 692 -> 952[label="",style="dashed", color="magenta", weight=3]; 693 -> 354[label="",style="dashed", color="red", weight=0]; 693[label="vxw311 == vxw4011",fontsize=16,color="magenta"];693 -> 953[label="",style="dashed", color="magenta", weight=3]; 693 -> 954[label="",style="dashed", color="magenta", weight=3]; 694 -> 355[label="",style="dashed", color="red", weight=0]; 694[label="vxw311 == vxw4011",fontsize=16,color="magenta"];694 -> 955[label="",style="dashed", color="magenta", weight=3]; 694 -> 956[label="",style="dashed", color="magenta", weight=3]; 695 -> 356[label="",style="dashed", color="red", weight=0]; 695[label="vxw311 == vxw4011",fontsize=16,color="magenta"];695 -> 957[label="",style="dashed", color="magenta", weight=3]; 695 -> 958[label="",style="dashed", color="magenta", weight=3]; 696 -> 357[label="",style="dashed", color="red", weight=0]; 696[label="vxw311 == vxw4011",fontsize=16,color="magenta"];696 -> 959[label="",style="dashed", color="magenta", weight=3]; 696 -> 960[label="",style="dashed", color="magenta", weight=3]; 697 -> 358[label="",style="dashed", color="red", weight=0]; 697[label="vxw311 == vxw4011",fontsize=16,color="magenta"];697 -> 961[label="",style="dashed", color="magenta", weight=3]; 697 -> 962[label="",style="dashed", color="magenta", weight=3]; 698 -> 345[label="",style="dashed", color="red", weight=0]; 698[label="vxw310 == vxw4010",fontsize=16,color="magenta"];698 -> 963[label="",style="dashed", color="magenta", weight=3]; 698 -> 964[label="",style="dashed", color="magenta", weight=3]; 699 -> 346[label="",style="dashed", color="red", weight=0]; 699[label="vxw310 == vxw4010",fontsize=16,color="magenta"];699 -> 965[label="",style="dashed", color="magenta", weight=3]; 699 -> 966[label="",style="dashed", color="magenta", weight=3]; 700 -> 347[label="",style="dashed", color="red", weight=0]; 700[label="vxw310 == vxw4010",fontsize=16,color="magenta"];700 -> 967[label="",style="dashed", color="magenta", weight=3]; 700 -> 968[label="",style="dashed", color="magenta", weight=3]; 701 -> 348[label="",style="dashed", color="red", weight=0]; 701[label="vxw310 == vxw4010",fontsize=16,color="magenta"];701 -> 969[label="",style="dashed", color="magenta", weight=3]; 701 -> 970[label="",style="dashed", color="magenta", weight=3]; 702 -> 349[label="",style="dashed", color="red", weight=0]; 702[label="vxw310 == vxw4010",fontsize=16,color="magenta"];702 -> 971[label="",style="dashed", color="magenta", weight=3]; 702 -> 972[label="",style="dashed", color="magenta", weight=3]; 703 -> 350[label="",style="dashed", color="red", weight=0]; 703[label="vxw310 == vxw4010",fontsize=16,color="magenta"];703 -> 973[label="",style="dashed", color="magenta", weight=3]; 703 -> 974[label="",style="dashed", color="magenta", weight=3]; 704 -> 351[label="",style="dashed", color="red", weight=0]; 704[label="vxw310 == vxw4010",fontsize=16,color="magenta"];704 -> 975[label="",style="dashed", color="magenta", weight=3]; 704 -> 976[label="",style="dashed", color="magenta", weight=3]; 705 -> 352[label="",style="dashed", color="red", weight=0]; 705[label="vxw310 == vxw4010",fontsize=16,color="magenta"];705 -> 977[label="",style="dashed", color="magenta", weight=3]; 705 -> 978[label="",style="dashed", color="magenta", weight=3]; 706 -> 353[label="",style="dashed", color="red", weight=0]; 706[label="vxw310 == vxw4010",fontsize=16,color="magenta"];706 -> 979[label="",style="dashed", color="magenta", weight=3]; 706 -> 980[label="",style="dashed", color="magenta", weight=3]; 707 -> 354[label="",style="dashed", color="red", weight=0]; 707[label="vxw310 == vxw4010",fontsize=16,color="magenta"];707 -> 981[label="",style="dashed", color="magenta", weight=3]; 707 -> 982[label="",style="dashed", color="magenta", weight=3]; 708 -> 355[label="",style="dashed", color="red", weight=0]; 708[label="vxw310 == vxw4010",fontsize=16,color="magenta"];708 -> 983[label="",style="dashed", color="magenta", weight=3]; 708 -> 984[label="",style="dashed", color="magenta", weight=3]; 709 -> 356[label="",style="dashed", color="red", weight=0]; 709[label="vxw310 == vxw4010",fontsize=16,color="magenta"];709 -> 985[label="",style="dashed", color="magenta", weight=3]; 709 -> 986[label="",style="dashed", color="magenta", weight=3]; 710 -> 357[label="",style="dashed", color="red", weight=0]; 710[label="vxw310 == vxw4010",fontsize=16,color="magenta"];710 -> 987[label="",style="dashed", color="magenta", weight=3]; 710 -> 988[label="",style="dashed", color="magenta", weight=3]; 711 -> 358[label="",style="dashed", color="red", weight=0]; 711[label="vxw310 == vxw4010",fontsize=16,color="magenta"];711 -> 989[label="",style="dashed", color="magenta", weight=3]; 711 -> 990[label="",style="dashed", color="magenta", weight=3]; 712[label="vxw310 * vxw4011",fontsize=16,color="black",shape="triangle"];712 -> 991[label="",style="solid", color="black", weight=3]; 713 -> 712[label="",style="dashed", color="red", weight=0]; 713[label="vxw311 * vxw4010",fontsize=16,color="magenta"];713 -> 992[label="",style="dashed", color="magenta", weight=3]; 713 -> 993[label="",style="dashed", color="magenta", weight=3]; 714[label="vxw311",fontsize=16,color="green",shape="box"];715[label="vxw4011",fontsize=16,color="green",shape="box"];716 -> 345[label="",style="dashed", color="red", weight=0]; 716[label="vxw310 == vxw4010",fontsize=16,color="magenta"];716 -> 994[label="",style="dashed", color="magenta", weight=3]; 716 -> 995[label="",style="dashed", color="magenta", weight=3]; 717 -> 346[label="",style="dashed", color="red", weight=0]; 717[label="vxw310 == vxw4010",fontsize=16,color="magenta"];717 -> 996[label="",style="dashed", color="magenta", weight=3]; 717 -> 997[label="",style="dashed", color="magenta", weight=3]; 718 -> 347[label="",style="dashed", color="red", weight=0]; 718[label="vxw310 == vxw4010",fontsize=16,color="magenta"];718 -> 998[label="",style="dashed", color="magenta", weight=3]; 718 -> 999[label="",style="dashed", color="magenta", weight=3]; 719 -> 348[label="",style="dashed", color="red", weight=0]; 719[label="vxw310 == vxw4010",fontsize=16,color="magenta"];719 -> 1000[label="",style="dashed", color="magenta", weight=3]; 719 -> 1001[label="",style="dashed", color="magenta", weight=3]; 720 -> 349[label="",style="dashed", color="red", weight=0]; 720[label="vxw310 == vxw4010",fontsize=16,color="magenta"];720 -> 1002[label="",style="dashed", color="magenta", weight=3]; 720 -> 1003[label="",style="dashed", color="magenta", weight=3]; 721 -> 350[label="",style="dashed", color="red", weight=0]; 721[label="vxw310 == vxw4010",fontsize=16,color="magenta"];721 -> 1004[label="",style="dashed", color="magenta", weight=3]; 721 -> 1005[label="",style="dashed", color="magenta", weight=3]; 722 -> 351[label="",style="dashed", color="red", weight=0]; 722[label="vxw310 == vxw4010",fontsize=16,color="magenta"];722 -> 1006[label="",style="dashed", color="magenta", weight=3]; 722 -> 1007[label="",style="dashed", color="magenta", weight=3]; 723 -> 352[label="",style="dashed", color="red", weight=0]; 723[label="vxw310 == vxw4010",fontsize=16,color="magenta"];723 -> 1008[label="",style="dashed", color="magenta", weight=3]; 723 -> 1009[label="",style="dashed", color="magenta", weight=3]; 724 -> 353[label="",style="dashed", color="red", weight=0]; 724[label="vxw310 == vxw4010",fontsize=16,color="magenta"];724 -> 1010[label="",style="dashed", color="magenta", weight=3]; 724 -> 1011[label="",style="dashed", color="magenta", weight=3]; 725 -> 354[label="",style="dashed", color="red", weight=0]; 725[label="vxw310 == vxw4010",fontsize=16,color="magenta"];725 -> 1012[label="",style="dashed", color="magenta", weight=3]; 725 -> 1013[label="",style="dashed", color="magenta", weight=3]; 726 -> 355[label="",style="dashed", color="red", weight=0]; 726[label="vxw310 == vxw4010",fontsize=16,color="magenta"];726 -> 1014[label="",style="dashed", color="magenta", weight=3]; 726 -> 1015[label="",style="dashed", color="magenta", weight=3]; 727 -> 356[label="",style="dashed", color="red", weight=0]; 727[label="vxw310 == vxw4010",fontsize=16,color="magenta"];727 -> 1016[label="",style="dashed", color="magenta", weight=3]; 727 -> 1017[label="",style="dashed", color="magenta", weight=3]; 728 -> 357[label="",style="dashed", color="red", weight=0]; 728[label="vxw310 == vxw4010",fontsize=16,color="magenta"];728 -> 1018[label="",style="dashed", color="magenta", weight=3]; 728 -> 1019[label="",style="dashed", color="magenta", weight=3]; 729 -> 358[label="",style="dashed", color="red", weight=0]; 729[label="vxw310 == vxw4010",fontsize=16,color="magenta"];729 -> 1020[label="",style="dashed", color="magenta", weight=3]; 729 -> 1021[label="",style="dashed", color="magenta", weight=3]; 730[label="vxw310",fontsize=16,color="green",shape="box"];731[label="vxw4010",fontsize=16,color="green",shape="box"];732[label="vxw310",fontsize=16,color="green",shape="box"];733[label="vxw4010",fontsize=16,color="green",shape="box"];734[label="vxw310",fontsize=16,color="green",shape="box"];735[label="vxw4010",fontsize=16,color="green",shape="box"];736[label="vxw310",fontsize=16,color="green",shape="box"];737[label="vxw4010",fontsize=16,color="green",shape="box"];738[label="vxw310",fontsize=16,color="green",shape="box"];739[label="vxw4010",fontsize=16,color="green",shape="box"];740[label="vxw310",fontsize=16,color="green",shape="box"];741[label="vxw4010",fontsize=16,color="green",shape="box"];742[label="vxw310",fontsize=16,color="green",shape="box"];743[label="vxw4010",fontsize=16,color="green",shape="box"];744[label="vxw310",fontsize=16,color="green",shape="box"];745[label="vxw4010",fontsize=16,color="green",shape="box"];746[label="vxw310",fontsize=16,color="green",shape="box"];747[label="vxw4010",fontsize=16,color="green",shape="box"];748[label="vxw310",fontsize=16,color="green",shape="box"];749[label="vxw4010",fontsize=16,color="green",shape="box"];750[label="vxw310",fontsize=16,color="green",shape="box"];751[label="vxw4010",fontsize=16,color="green",shape="box"];752[label="vxw310",fontsize=16,color="green",shape="box"];753[label="vxw4010",fontsize=16,color="green",shape="box"];754[label="vxw310",fontsize=16,color="green",shape="box"];755[label="vxw4010",fontsize=16,color="green",shape="box"];756[label="vxw310",fontsize=16,color="green",shape="box"];757[label="vxw4010",fontsize=16,color="green",shape="box"];758[label="vxw310",fontsize=16,color="green",shape="box"];759[label="vxw4010",fontsize=16,color="green",shape="box"];760[label="vxw310",fontsize=16,color="green",shape="box"];761[label="vxw4010",fontsize=16,color="green",shape="box"];762[label="vxw310",fontsize=16,color="green",shape="box"];763[label="vxw4010",fontsize=16,color="green",shape="box"];764[label="vxw310",fontsize=16,color="green",shape="box"];765[label="vxw4010",fontsize=16,color="green",shape="box"];766[label="vxw310",fontsize=16,color="green",shape="box"];767[label="vxw4010",fontsize=16,color="green",shape="box"];768[label="vxw310",fontsize=16,color="green",shape="box"];769[label="vxw4010",fontsize=16,color="green",shape="box"];770[label="vxw310",fontsize=16,color="green",shape="box"];771[label="vxw4010",fontsize=16,color="green",shape="box"];772[label="vxw310",fontsize=16,color="green",shape="box"];773[label="vxw4010",fontsize=16,color="green",shape="box"];774[label="vxw310",fontsize=16,color="green",shape="box"];775[label="vxw4010",fontsize=16,color="green",shape="box"];776[label="vxw310",fontsize=16,color="green",shape="box"];777[label="vxw4010",fontsize=16,color="green",shape="box"];778[label="vxw310",fontsize=16,color="green",shape="box"];779[label="vxw4010",fontsize=16,color="green",shape="box"];780[label="vxw310",fontsize=16,color="green",shape="box"];781[label="vxw4010",fontsize=16,color="green",shape="box"];782[label="vxw310",fontsize=16,color="green",shape="box"];783[label="vxw4010",fontsize=16,color="green",shape="box"];784[label="vxw310",fontsize=16,color="green",shape="box"];785[label="vxw4010",fontsize=16,color="green",shape="box"];786[label="primEqNat (Succ vxw3100) vxw4010",fontsize=16,color="burlywood",shape="box"];2429[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];786 -> 2429[label="",style="solid", color="burlywood", weight=9]; 2429 -> 1022[label="",style="solid", color="burlywood", weight=3]; 2430[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];786 -> 2430[label="",style="solid", color="burlywood", weight=9]; 2430 -> 1023[label="",style="solid", color="burlywood", weight=3]; 787[label="primEqNat Zero vxw4010",fontsize=16,color="burlywood",shape="box"];2431[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];787 -> 2431[label="",style="solid", color="burlywood", weight=9]; 2431 -> 1024[label="",style="solid", color="burlywood", weight=3]; 2432[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];787 -> 2432[label="",style="solid", color="burlywood", weight=9]; 2432 -> 1025[label="",style="solid", color="burlywood", weight=3]; 788 -> 345[label="",style="dashed", color="red", weight=0]; 788[label="vxw311 == vxw4011",fontsize=16,color="magenta"];788 -> 1026[label="",style="dashed", color="magenta", weight=3]; 788 -> 1027[label="",style="dashed", color="magenta", weight=3]; 789 -> 352[label="",style="dashed", color="red", weight=0]; 789[label="vxw311 == vxw4011",fontsize=16,color="magenta"];789 -> 1028[label="",style="dashed", color="magenta", weight=3]; 789 -> 1029[label="",style="dashed", color="magenta", weight=3]; 790 -> 345[label="",style="dashed", color="red", weight=0]; 790[label="vxw310 == vxw4010",fontsize=16,color="magenta"];790 -> 1030[label="",style="dashed", color="magenta", weight=3]; 790 -> 1031[label="",style="dashed", color="magenta", weight=3]; 791 -> 352[label="",style="dashed", color="red", weight=0]; 791[label="vxw310 == vxw4010",fontsize=16,color="magenta"];791 -> 1032[label="",style="dashed", color="magenta", weight=3]; 791 -> 1033[label="",style="dashed", color="magenta", weight=3]; 792[label="vxw310",fontsize=16,color="green",shape="box"];793[label="vxw4010",fontsize=16,color="green",shape="box"];794[label="vxw310",fontsize=16,color="green",shape="box"];795[label="vxw4010",fontsize=16,color="green",shape="box"];796[label="vxw310",fontsize=16,color="green",shape="box"];797[label="vxw4010",fontsize=16,color="green",shape="box"];798[label="vxw310",fontsize=16,color="green",shape="box"];799[label="vxw4010",fontsize=16,color="green",shape="box"];800[label="vxw310",fontsize=16,color="green",shape="box"];801[label="vxw4010",fontsize=16,color="green",shape="box"];802[label="vxw310",fontsize=16,color="green",shape="box"];803[label="vxw4010",fontsize=16,color="green",shape="box"];804[label="vxw310",fontsize=16,color="green",shape="box"];805[label="vxw4010",fontsize=16,color="green",shape="box"];806[label="vxw310",fontsize=16,color="green",shape="box"];807[label="vxw4010",fontsize=16,color="green",shape="box"];808[label="vxw310",fontsize=16,color="green",shape="box"];809[label="vxw4010",fontsize=16,color="green",shape="box"];810[label="vxw310",fontsize=16,color="green",shape="box"];811[label="vxw4010",fontsize=16,color="green",shape="box"];812[label="vxw310",fontsize=16,color="green",shape="box"];813[label="vxw4010",fontsize=16,color="green",shape="box"];814[label="vxw310",fontsize=16,color="green",shape="box"];815[label="vxw4010",fontsize=16,color="green",shape="box"];816[label="vxw310",fontsize=16,color="green",shape="box"];817[label="vxw4010",fontsize=16,color="green",shape="box"];818[label="vxw310",fontsize=16,color="green",shape="box"];819[label="vxw4010",fontsize=16,color="green",shape="box"];820 -> 712[label="",style="dashed", color="red", weight=0]; 820[label="vxw310 * vxw4011",fontsize=16,color="magenta"];820 -> 1034[label="",style="dashed", color="magenta", weight=3]; 820 -> 1035[label="",style="dashed", color="magenta", weight=3]; 821 -> 712[label="",style="dashed", color="red", weight=0]; 821[label="vxw311 * vxw4010",fontsize=16,color="magenta"];821 -> 1036[label="",style="dashed", color="magenta", weight=3]; 821 -> 1037[label="",style="dashed", color="magenta", weight=3]; 822 -> 356[label="",style="dashed", color="red", weight=0]; 822[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];822 -> 1038[label="",style="dashed", color="magenta", weight=3]; 822 -> 1039[label="",style="dashed", color="magenta", weight=3]; 823 -> 356[label="",style="dashed", color="red", weight=0]; 823[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];823 -> 1040[label="",style="dashed", color="magenta", weight=3]; 823 -> 1041[label="",style="dashed", color="magenta", weight=3]; 824 -> 356[label="",style="dashed", color="red", weight=0]; 824[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];824 -> 1042[label="",style="dashed", color="magenta", weight=3]; 824 -> 1043[label="",style="dashed", color="magenta", weight=3]; 825 -> 356[label="",style="dashed", color="red", weight=0]; 825[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];825 -> 1044[label="",style="dashed", color="magenta", weight=3]; 825 -> 1045[label="",style="dashed", color="magenta", weight=3]; 826 -> 356[label="",style="dashed", color="red", weight=0]; 826[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];826 -> 1046[label="",style="dashed", color="magenta", weight=3]; 826 -> 1047[label="",style="dashed", color="magenta", weight=3]; 827 -> 356[label="",style="dashed", color="red", weight=0]; 827[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];827 -> 1048[label="",style="dashed", color="magenta", weight=3]; 827 -> 1049[label="",style="dashed", color="magenta", weight=3]; 828 -> 356[label="",style="dashed", color="red", weight=0]; 828[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];828 -> 1050[label="",style="dashed", color="magenta", weight=3]; 828 -> 1051[label="",style="dashed", color="magenta", weight=3]; 829 -> 356[label="",style="dashed", color="red", weight=0]; 829[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];829 -> 1052[label="",style="dashed", color="magenta", weight=3]; 829 -> 1053[label="",style="dashed", color="magenta", weight=3]; 830 -> 356[label="",style="dashed", color="red", weight=0]; 830[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];830 -> 1054[label="",style="dashed", color="magenta", weight=3]; 830 -> 1055[label="",style="dashed", color="magenta", weight=3]; 831 -> 356[label="",style="dashed", color="red", weight=0]; 831[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];831 -> 1056[label="",style="dashed", color="magenta", weight=3]; 831 -> 1057[label="",style="dashed", color="magenta", weight=3]; 832 -> 356[label="",style="dashed", color="red", weight=0]; 832[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];832 -> 1058[label="",style="dashed", color="magenta", weight=3]; 832 -> 1059[label="",style="dashed", color="magenta", weight=3]; 833 -> 356[label="",style="dashed", color="red", weight=0]; 833[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];833 -> 1060[label="",style="dashed", color="magenta", weight=3]; 833 -> 1061[label="",style="dashed", color="magenta", weight=3]; 834 -> 356[label="",style="dashed", color="red", weight=0]; 834[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];834 -> 1062[label="",style="dashed", color="magenta", weight=3]; 834 -> 1063[label="",style="dashed", color="magenta", weight=3]; 835 -> 356[label="",style="dashed", color="red", weight=0]; 835[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];835 -> 1064[label="",style="dashed", color="magenta", weight=3]; 835 -> 1065[label="",style="dashed", color="magenta", weight=3]; 836[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];836 -> 1066[label="",style="solid", color="black", weight=3]; 837[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2433[label="vxw28/LT",fontsize=10,color="white",style="solid",shape="box"];837 -> 2433[label="",style="solid", color="burlywood", weight=9]; 2433 -> 1067[label="",style="solid", color="burlywood", weight=3]; 2434[label="vxw28/EQ",fontsize=10,color="white",style="solid",shape="box"];837 -> 2434[label="",style="solid", color="burlywood", weight=9]; 2434 -> 1068[label="",style="solid", color="burlywood", weight=3]; 2435[label="vxw28/GT",fontsize=10,color="white",style="solid",shape="box"];837 -> 2435[label="",style="solid", color="burlywood", weight=9]; 2435 -> 1069[label="",style="solid", color="burlywood", weight=3]; 838[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2436[label="vxw28/(vxw280,vxw281,vxw282)",fontsize=10,color="white",style="solid",shape="box"];838 -> 2436[label="",style="solid", color="burlywood", weight=9]; 2436 -> 1070[label="",style="solid", color="burlywood", weight=3]; 839[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2437[label="vxw28/(vxw280,vxw281)",fontsize=10,color="white",style="solid",shape="box"];839 -> 2437[label="",style="solid", color="burlywood", weight=9]; 2437 -> 1071[label="",style="solid", color="burlywood", weight=3]; 840[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];840 -> 1072[label="",style="solid", color="black", weight=3]; 841[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];841 -> 1073[label="",style="solid", color="black", weight=3]; 842[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];842 -> 1074[label="",style="solid", color="black", weight=3]; 843[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2438[label="vxw28/False",fontsize=10,color="white",style="solid",shape="box"];843 -> 2438[label="",style="solid", color="burlywood", weight=9]; 2438 -> 1075[label="",style="solid", color="burlywood", weight=3]; 2439[label="vxw28/True",fontsize=10,color="white",style="solid",shape="box"];843 -> 2439[label="",style="solid", color="burlywood", weight=9]; 2439 -> 1076[label="",style="solid", color="burlywood", weight=3]; 844[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];844 -> 1077[label="",style="solid", color="black", weight=3]; 845[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];845 -> 1078[label="",style="solid", color="black", weight=3]; 846[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2440[label="vxw28/Left vxw280",fontsize=10,color="white",style="solid",shape="box"];846 -> 2440[label="",style="solid", color="burlywood", weight=9]; 2440 -> 1079[label="",style="solid", color="burlywood", weight=3]; 2441[label="vxw28/Right vxw280",fontsize=10,color="white",style="solid",shape="box"];846 -> 2441[label="",style="solid", color="burlywood", weight=9]; 2441 -> 1080[label="",style="solid", color="burlywood", weight=3]; 847[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];847 -> 1081[label="",style="solid", color="black", weight=3]; 848[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2442[label="vxw28/Nothing",fontsize=10,color="white",style="solid",shape="box"];848 -> 2442[label="",style="solid", color="burlywood", weight=9]; 2442 -> 1082[label="",style="solid", color="burlywood", weight=3]; 2443[label="vxw28/Just vxw280",fontsize=10,color="white",style="solid",shape="box"];848 -> 2443[label="",style="solid", color="burlywood", weight=9]; 2443 -> 1083[label="",style="solid", color="burlywood", weight=3]; 849[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];849 -> 1084[label="",style="solid", color="black", weight=3]; 850 -> 354[label="",style="dashed", color="red", weight=0]; 850[label="vxw27 == vxw25",fontsize=16,color="magenta"];850 -> 1085[label="",style="dashed", color="magenta", weight=3]; 850 -> 1086[label="",style="dashed", color="magenta", weight=3]; 851 -> 356[label="",style="dashed", color="red", weight=0]; 851[label="vxw27 == vxw25",fontsize=16,color="magenta"];851 -> 1087[label="",style="dashed", color="magenta", weight=3]; 851 -> 1088[label="",style="dashed", color="magenta", weight=3]; 852 -> 346[label="",style="dashed", color="red", weight=0]; 852[label="vxw27 == vxw25",fontsize=16,color="magenta"];852 -> 1089[label="",style="dashed", color="magenta", weight=3]; 852 -> 1090[label="",style="dashed", color="magenta", weight=3]; 853 -> 348[label="",style="dashed", color="red", weight=0]; 853[label="vxw27 == vxw25",fontsize=16,color="magenta"];853 -> 1091[label="",style="dashed", color="magenta", weight=3]; 853 -> 1092[label="",style="dashed", color="magenta", weight=3]; 854 -> 345[label="",style="dashed", color="red", weight=0]; 854[label="vxw27 == vxw25",fontsize=16,color="magenta"];854 -> 1093[label="",style="dashed", color="magenta", weight=3]; 854 -> 1094[label="",style="dashed", color="magenta", weight=3]; 855 -> 355[label="",style="dashed", color="red", weight=0]; 855[label="vxw27 == vxw25",fontsize=16,color="magenta"];855 -> 1095[label="",style="dashed", color="magenta", weight=3]; 855 -> 1096[label="",style="dashed", color="magenta", weight=3]; 856 -> 352[label="",style="dashed", color="red", weight=0]; 856[label="vxw27 == vxw25",fontsize=16,color="magenta"];856 -> 1097[label="",style="dashed", color="magenta", weight=3]; 856 -> 1098[label="",style="dashed", color="magenta", weight=3]; 857 -> 351[label="",style="dashed", color="red", weight=0]; 857[label="vxw27 == vxw25",fontsize=16,color="magenta"];857 -> 1099[label="",style="dashed", color="magenta", weight=3]; 857 -> 1100[label="",style="dashed", color="magenta", weight=3]; 858 -> 347[label="",style="dashed", color="red", weight=0]; 858[label="vxw27 == vxw25",fontsize=16,color="magenta"];858 -> 1101[label="",style="dashed", color="magenta", weight=3]; 858 -> 1102[label="",style="dashed", color="magenta", weight=3]; 859 -> 358[label="",style="dashed", color="red", weight=0]; 859[label="vxw27 == vxw25",fontsize=16,color="magenta"];859 -> 1103[label="",style="dashed", color="magenta", weight=3]; 859 -> 1104[label="",style="dashed", color="magenta", weight=3]; 860 -> 353[label="",style="dashed", color="red", weight=0]; 860[label="vxw27 == vxw25",fontsize=16,color="magenta"];860 -> 1105[label="",style="dashed", color="magenta", weight=3]; 860 -> 1106[label="",style="dashed", color="magenta", weight=3]; 861 -> 349[label="",style="dashed", color="red", weight=0]; 861[label="vxw27 == vxw25",fontsize=16,color="magenta"];861 -> 1107[label="",style="dashed", color="magenta", weight=3]; 861 -> 1108[label="",style="dashed", color="magenta", weight=3]; 862 -> 357[label="",style="dashed", color="red", weight=0]; 862[label="vxw27 == vxw25",fontsize=16,color="magenta"];862 -> 1109[label="",style="dashed", color="magenta", weight=3]; 862 -> 1110[label="",style="dashed", color="magenta", weight=3]; 863 -> 350[label="",style="dashed", color="red", weight=0]; 863[label="vxw27 == vxw25",fontsize=16,color="magenta"];863 -> 1111[label="",style="dashed", color="magenta", weight=3]; 863 -> 1112[label="",style="dashed", color="magenta", weight=3]; 864[label="vxw63",fontsize=16,color="green",shape="box"];865[label="True",fontsize=16,color="green",shape="box"];866[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) GT",fontsize=16,color="black",shape="box"];866 -> 1113[label="",style="solid", color="black", weight=3]; 867 -> 609[label="",style="dashed", color="red", weight=0]; 867[label="primEqNat vxw3100 vxw40100",fontsize=16,color="magenta"];867 -> 1114[label="",style="dashed", color="magenta", weight=3]; 867 -> 1115[label="",style="dashed", color="magenta", weight=3]; 868[label="False",fontsize=16,color="green",shape="box"];869[label="False",fontsize=16,color="green",shape="box"];870[label="True",fontsize=16,color="green",shape="box"];871[label="False",fontsize=16,color="green",shape="box"];872[label="True",fontsize=16,color="green",shape="box"];873 -> 609[label="",style="dashed", color="red", weight=0]; 873[label="primEqNat vxw3100 vxw40100",fontsize=16,color="magenta"];873 -> 1116[label="",style="dashed", color="magenta", weight=3]; 873 -> 1117[label="",style="dashed", color="magenta", weight=3]; 874[label="False",fontsize=16,color="green",shape="box"];875[label="False",fontsize=16,color="green",shape="box"];876[label="True",fontsize=16,color="green",shape="box"];877[label="False",fontsize=16,color="green",shape="box"];878[label="True",fontsize=16,color="green",shape="box"];879 -> 345[label="",style="dashed", color="red", weight=0]; 879[label="vxw312 == vxw4012",fontsize=16,color="magenta"];879 -> 1118[label="",style="dashed", color="magenta", weight=3]; 879 -> 1119[label="",style="dashed", color="magenta", weight=3]; 880 -> 346[label="",style="dashed", color="red", weight=0]; 880[label="vxw312 == vxw4012",fontsize=16,color="magenta"];880 -> 1120[label="",style="dashed", color="magenta", weight=3]; 880 -> 1121[label="",style="dashed", color="magenta", weight=3]; 881 -> 347[label="",style="dashed", color="red", weight=0]; 881[label="vxw312 == vxw4012",fontsize=16,color="magenta"];881 -> 1122[label="",style="dashed", color="magenta", weight=3]; 881 -> 1123[label="",style="dashed", color="magenta", weight=3]; 882 -> 348[label="",style="dashed", color="red", weight=0]; 882[label="vxw312 == vxw4012",fontsize=16,color="magenta"];882 -> 1124[label="",style="dashed", color="magenta", weight=3]; 882 -> 1125[label="",style="dashed", color="magenta", weight=3]; 883 -> 349[label="",style="dashed", color="red", weight=0]; 883[label="vxw312 == vxw4012",fontsize=16,color="magenta"];883 -> 1126[label="",style="dashed", color="magenta", weight=3]; 883 -> 1127[label="",style="dashed", color="magenta", weight=3]; 884 -> 350[label="",style="dashed", color="red", weight=0]; 884[label="vxw312 == vxw4012",fontsize=16,color="magenta"];884 -> 1128[label="",style="dashed", color="magenta", weight=3]; 884 -> 1129[label="",style="dashed", color="magenta", weight=3]; 885 -> 351[label="",style="dashed", color="red", weight=0]; 885[label="vxw312 == vxw4012",fontsize=16,color="magenta"];885 -> 1130[label="",style="dashed", color="magenta", weight=3]; 885 -> 1131[label="",style="dashed", color="magenta", weight=3]; 886 -> 352[label="",style="dashed", color="red", weight=0]; 886[label="vxw312 == vxw4012",fontsize=16,color="magenta"];886 -> 1132[label="",style="dashed", color="magenta", weight=3]; 886 -> 1133[label="",style="dashed", color="magenta", weight=3]; 887 -> 353[label="",style="dashed", color="red", weight=0]; 887[label="vxw312 == vxw4012",fontsize=16,color="magenta"];887 -> 1134[label="",style="dashed", color="magenta", weight=3]; 887 -> 1135[label="",style="dashed", color="magenta", weight=3]; 888 -> 354[label="",style="dashed", color="red", weight=0]; 888[label="vxw312 == vxw4012",fontsize=16,color="magenta"];888 -> 1136[label="",style="dashed", color="magenta", weight=3]; 888 -> 1137[label="",style="dashed", color="magenta", weight=3]; 889 -> 355[label="",style="dashed", color="red", weight=0]; 889[label="vxw312 == vxw4012",fontsize=16,color="magenta"];889 -> 1138[label="",style="dashed", color="magenta", weight=3]; 889 -> 1139[label="",style="dashed", color="magenta", weight=3]; 890 -> 356[label="",style="dashed", color="red", weight=0]; 890[label="vxw312 == vxw4012",fontsize=16,color="magenta"];890 -> 1140[label="",style="dashed", color="magenta", weight=3]; 890 -> 1141[label="",style="dashed", color="magenta", weight=3]; 891 -> 357[label="",style="dashed", color="red", weight=0]; 891[label="vxw312 == vxw4012",fontsize=16,color="magenta"];891 -> 1142[label="",style="dashed", color="magenta", weight=3]; 891 -> 1143[label="",style="dashed", color="magenta", weight=3]; 892 -> 358[label="",style="dashed", color="red", weight=0]; 892[label="vxw312 == vxw4012",fontsize=16,color="magenta"];892 -> 1144[label="",style="dashed", color="magenta", weight=3]; 892 -> 1145[label="",style="dashed", color="magenta", weight=3]; 893 -> 345[label="",style="dashed", color="red", weight=0]; 893[label="vxw311 == vxw4011",fontsize=16,color="magenta"];893 -> 1146[label="",style="dashed", color="magenta", weight=3]; 893 -> 1147[label="",style="dashed", color="magenta", weight=3]; 894 -> 346[label="",style="dashed", color="red", weight=0]; 894[label="vxw311 == vxw4011",fontsize=16,color="magenta"];894 -> 1148[label="",style="dashed", color="magenta", weight=3]; 894 -> 1149[label="",style="dashed", color="magenta", weight=3]; 895 -> 347[label="",style="dashed", color="red", weight=0]; 895[label="vxw311 == vxw4011",fontsize=16,color="magenta"];895 -> 1150[label="",style="dashed", color="magenta", weight=3]; 895 -> 1151[label="",style="dashed", color="magenta", weight=3]; 896 -> 348[label="",style="dashed", color="red", weight=0]; 896[label="vxw311 == vxw4011",fontsize=16,color="magenta"];896 -> 1152[label="",style="dashed", color="magenta", weight=3]; 896 -> 1153[label="",style="dashed", color="magenta", weight=3]; 897 -> 349[label="",style="dashed", color="red", weight=0]; 897[label="vxw311 == vxw4011",fontsize=16,color="magenta"];897 -> 1154[label="",style="dashed", color="magenta", weight=3]; 897 -> 1155[label="",style="dashed", color="magenta", weight=3]; 898 -> 350[label="",style="dashed", color="red", weight=0]; 898[label="vxw311 == vxw4011",fontsize=16,color="magenta"];898 -> 1156[label="",style="dashed", color="magenta", weight=3]; 898 -> 1157[label="",style="dashed", color="magenta", weight=3]; 899 -> 351[label="",style="dashed", color="red", weight=0]; 899[label="vxw311 == vxw4011",fontsize=16,color="magenta"];899 -> 1158[label="",style="dashed", color="magenta", weight=3]; 899 -> 1159[label="",style="dashed", color="magenta", weight=3]; 900 -> 352[label="",style="dashed", color="red", weight=0]; 900[label="vxw311 == vxw4011",fontsize=16,color="magenta"];900 -> 1160[label="",style="dashed", color="magenta", weight=3]; 900 -> 1161[label="",style="dashed", color="magenta", weight=3]; 901 -> 353[label="",style="dashed", color="red", weight=0]; 901[label="vxw311 == vxw4011",fontsize=16,color="magenta"];901 -> 1162[label="",style="dashed", color="magenta", weight=3]; 901 -> 1163[label="",style="dashed", color="magenta", weight=3]; 902 -> 354[label="",style="dashed", color="red", weight=0]; 902[label="vxw311 == vxw4011",fontsize=16,color="magenta"];902 -> 1164[label="",style="dashed", color="magenta", weight=3]; 902 -> 1165[label="",style="dashed", color="magenta", weight=3]; 903 -> 355[label="",style="dashed", color="red", weight=0]; 903[label="vxw311 == vxw4011",fontsize=16,color="magenta"];903 -> 1166[label="",style="dashed", color="magenta", weight=3]; 903 -> 1167[label="",style="dashed", color="magenta", weight=3]; 904 -> 356[label="",style="dashed", color="red", weight=0]; 904[label="vxw311 == vxw4011",fontsize=16,color="magenta"];904 -> 1168[label="",style="dashed", color="magenta", weight=3]; 904 -> 1169[label="",style="dashed", color="magenta", weight=3]; 905 -> 357[label="",style="dashed", color="red", weight=0]; 905[label="vxw311 == vxw4011",fontsize=16,color="magenta"];905 -> 1170[label="",style="dashed", color="magenta", weight=3]; 905 -> 1171[label="",style="dashed", color="magenta", weight=3]; 906 -> 358[label="",style="dashed", color="red", weight=0]; 906[label="vxw311 == vxw4011",fontsize=16,color="magenta"];906 -> 1172[label="",style="dashed", color="magenta", weight=3]; 906 -> 1173[label="",style="dashed", color="magenta", weight=3]; 907[label="vxw310",fontsize=16,color="green",shape="box"];908[label="vxw4010",fontsize=16,color="green",shape="box"];909[label="vxw310",fontsize=16,color="green",shape="box"];910[label="vxw4010",fontsize=16,color="green",shape="box"];911[label="vxw310",fontsize=16,color="green",shape="box"];912[label="vxw4010",fontsize=16,color="green",shape="box"];913[label="vxw310",fontsize=16,color="green",shape="box"];914[label="vxw4010",fontsize=16,color="green",shape="box"];915[label="vxw310",fontsize=16,color="green",shape="box"];916[label="vxw4010",fontsize=16,color="green",shape="box"];917[label="vxw310",fontsize=16,color="green",shape="box"];918[label="vxw4010",fontsize=16,color="green",shape="box"];919[label="vxw310",fontsize=16,color="green",shape="box"];920[label="vxw4010",fontsize=16,color="green",shape="box"];921[label="vxw310",fontsize=16,color="green",shape="box"];922[label="vxw4010",fontsize=16,color="green",shape="box"];923[label="vxw310",fontsize=16,color="green",shape="box"];924[label="vxw4010",fontsize=16,color="green",shape="box"];925[label="vxw310",fontsize=16,color="green",shape="box"];926[label="vxw4010",fontsize=16,color="green",shape="box"];927[label="vxw310",fontsize=16,color="green",shape="box"];928[label="vxw4010",fontsize=16,color="green",shape="box"];929[label="vxw310",fontsize=16,color="green",shape="box"];930[label="vxw4010",fontsize=16,color="green",shape="box"];931[label="vxw310",fontsize=16,color="green",shape="box"];932[label="vxw4010",fontsize=16,color="green",shape="box"];933[label="vxw310",fontsize=16,color="green",shape="box"];934[label="vxw4010",fontsize=16,color="green",shape="box"];935[label="vxw311",fontsize=16,color="green",shape="box"];936[label="vxw4011",fontsize=16,color="green",shape="box"];937[label="vxw311",fontsize=16,color="green",shape="box"];938[label="vxw4011",fontsize=16,color="green",shape="box"];939[label="vxw311",fontsize=16,color="green",shape="box"];940[label="vxw4011",fontsize=16,color="green",shape="box"];941[label="vxw311",fontsize=16,color="green",shape="box"];942[label="vxw4011",fontsize=16,color="green",shape="box"];943[label="vxw311",fontsize=16,color="green",shape="box"];944[label="vxw4011",fontsize=16,color="green",shape="box"];945[label="vxw311",fontsize=16,color="green",shape="box"];946[label="vxw4011",fontsize=16,color="green",shape="box"];947[label="vxw311",fontsize=16,color="green",shape="box"];948[label="vxw4011",fontsize=16,color="green",shape="box"];949[label="vxw311",fontsize=16,color="green",shape="box"];950[label="vxw4011",fontsize=16,color="green",shape="box"];951[label="vxw311",fontsize=16,color="green",shape="box"];952[label="vxw4011",fontsize=16,color="green",shape="box"];953[label="vxw311",fontsize=16,color="green",shape="box"];954[label="vxw4011",fontsize=16,color="green",shape="box"];955[label="vxw311",fontsize=16,color="green",shape="box"];956[label="vxw4011",fontsize=16,color="green",shape="box"];957[label="vxw311",fontsize=16,color="green",shape="box"];958[label="vxw4011",fontsize=16,color="green",shape="box"];959[label="vxw311",fontsize=16,color="green",shape="box"];960[label="vxw4011",fontsize=16,color="green",shape="box"];961[label="vxw311",fontsize=16,color="green",shape="box"];962[label="vxw4011",fontsize=16,color="green",shape="box"];963[label="vxw310",fontsize=16,color="green",shape="box"];964[label="vxw4010",fontsize=16,color="green",shape="box"];965[label="vxw310",fontsize=16,color="green",shape="box"];966[label="vxw4010",fontsize=16,color="green",shape="box"];967[label="vxw310",fontsize=16,color="green",shape="box"];968[label="vxw4010",fontsize=16,color="green",shape="box"];969[label="vxw310",fontsize=16,color="green",shape="box"];970[label="vxw4010",fontsize=16,color="green",shape="box"];971[label="vxw310",fontsize=16,color="green",shape="box"];972[label="vxw4010",fontsize=16,color="green",shape="box"];973[label="vxw310",fontsize=16,color="green",shape="box"];974[label="vxw4010",fontsize=16,color="green",shape="box"];975[label="vxw310",fontsize=16,color="green",shape="box"];976[label="vxw4010",fontsize=16,color="green",shape="box"];977[label="vxw310",fontsize=16,color="green",shape="box"];978[label="vxw4010",fontsize=16,color="green",shape="box"];979[label="vxw310",fontsize=16,color="green",shape="box"];980[label="vxw4010",fontsize=16,color="green",shape="box"];981[label="vxw310",fontsize=16,color="green",shape="box"];982[label="vxw4010",fontsize=16,color="green",shape="box"];983[label="vxw310",fontsize=16,color="green",shape="box"];984[label="vxw4010",fontsize=16,color="green",shape="box"];985[label="vxw310",fontsize=16,color="green",shape="box"];986[label="vxw4010",fontsize=16,color="green",shape="box"];987[label="vxw310",fontsize=16,color="green",shape="box"];988[label="vxw4010",fontsize=16,color="green",shape="box"];989[label="vxw310",fontsize=16,color="green",shape="box"];990[label="vxw4010",fontsize=16,color="green",shape="box"];991[label="primMulInt vxw310 vxw4011",fontsize=16,color="burlywood",shape="triangle"];2444[label="vxw310/Pos vxw3100",fontsize=10,color="white",style="solid",shape="box"];991 -> 2444[label="",style="solid", color="burlywood", weight=9]; 2444 -> 1174[label="",style="solid", color="burlywood", weight=3]; 2445[label="vxw310/Neg vxw3100",fontsize=10,color="white",style="solid",shape="box"];991 -> 2445[label="",style="solid", color="burlywood", weight=9]; 2445 -> 1175[label="",style="solid", color="burlywood", weight=3]; 992[label="vxw311",fontsize=16,color="green",shape="box"];993[label="vxw4010",fontsize=16,color="green",shape="box"];994[label="vxw310",fontsize=16,color="green",shape="box"];995[label="vxw4010",fontsize=16,color="green",shape="box"];996[label="vxw310",fontsize=16,color="green",shape="box"];997[label="vxw4010",fontsize=16,color="green",shape="box"];998[label="vxw310",fontsize=16,color="green",shape="box"];999[label="vxw4010",fontsize=16,color="green",shape="box"];1000[label="vxw310",fontsize=16,color="green",shape="box"];1001[label="vxw4010",fontsize=16,color="green",shape="box"];1002[label="vxw310",fontsize=16,color="green",shape="box"];1003[label="vxw4010",fontsize=16,color="green",shape="box"];1004[label="vxw310",fontsize=16,color="green",shape="box"];1005[label="vxw4010",fontsize=16,color="green",shape="box"];1006[label="vxw310",fontsize=16,color="green",shape="box"];1007[label="vxw4010",fontsize=16,color="green",shape="box"];1008[label="vxw310",fontsize=16,color="green",shape="box"];1009[label="vxw4010",fontsize=16,color="green",shape="box"];1010[label="vxw310",fontsize=16,color="green",shape="box"];1011[label="vxw4010",fontsize=16,color="green",shape="box"];1012[label="vxw310",fontsize=16,color="green",shape="box"];1013[label="vxw4010",fontsize=16,color="green",shape="box"];1014[label="vxw310",fontsize=16,color="green",shape="box"];1015[label="vxw4010",fontsize=16,color="green",shape="box"];1016[label="vxw310",fontsize=16,color="green",shape="box"];1017[label="vxw4010",fontsize=16,color="green",shape="box"];1018[label="vxw310",fontsize=16,color="green",shape="box"];1019[label="vxw4010",fontsize=16,color="green",shape="box"];1020[label="vxw310",fontsize=16,color="green",shape="box"];1021[label="vxw4010",fontsize=16,color="green",shape="box"];1022[label="primEqNat (Succ vxw3100) (Succ vxw40100)",fontsize=16,color="black",shape="box"];1022 -> 1176[label="",style="solid", color="black", weight=3]; 1023[label="primEqNat (Succ vxw3100) Zero",fontsize=16,color="black",shape="box"];1023 -> 1177[label="",style="solid", color="black", weight=3]; 1024[label="primEqNat Zero (Succ vxw40100)",fontsize=16,color="black",shape="box"];1024 -> 1178[label="",style="solid", color="black", weight=3]; 1025[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1025 -> 1179[label="",style="solid", color="black", weight=3]; 1026[label="vxw311",fontsize=16,color="green",shape="box"];1027[label="vxw4011",fontsize=16,color="green",shape="box"];1028[label="vxw311",fontsize=16,color="green",shape="box"];1029[label="vxw4011",fontsize=16,color="green",shape="box"];1030[label="vxw310",fontsize=16,color="green",shape="box"];1031[label="vxw4010",fontsize=16,color="green",shape="box"];1032[label="vxw310",fontsize=16,color="green",shape="box"];1033[label="vxw4010",fontsize=16,color="green",shape="box"];1034[label="vxw310",fontsize=16,color="green",shape="box"];1035[label="vxw4011",fontsize=16,color="green",shape="box"];1036[label="vxw311",fontsize=16,color="green",shape="box"];1037[label="vxw4010",fontsize=16,color="green",shape="box"];1038[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1038 -> 1180[label="",style="solid", color="black", weight=3]; 1039[label="LT",fontsize=16,color="green",shape="box"];1040[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1040 -> 1181[label="",style="solid", color="black", weight=3]; 1041[label="LT",fontsize=16,color="green",shape="box"];1042[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1042 -> 1182[label="",style="solid", color="black", weight=3]; 1043[label="LT",fontsize=16,color="green",shape="box"];1044[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1044 -> 1183[label="",style="solid", color="black", weight=3]; 1045[label="LT",fontsize=16,color="green",shape="box"];1046[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1046 -> 1184[label="",style="solid", color="black", weight=3]; 1047[label="LT",fontsize=16,color="green",shape="box"];1048[label="compare vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2446[label="vxw27/vxw270 :% vxw271",fontsize=10,color="white",style="solid",shape="box"];1048 -> 2446[label="",style="solid", color="burlywood", weight=9]; 2446 -> 1185[label="",style="solid", color="burlywood", weight=3]; 1049[label="LT",fontsize=16,color="green",shape="box"];1050[label="compare vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2447[label="vxw27/Integer vxw270",fontsize=10,color="white",style="solid",shape="box"];1050 -> 2447[label="",style="solid", color="burlywood", weight=9]; 2447 -> 1186[label="",style="solid", color="burlywood", weight=3]; 1051[label="LT",fontsize=16,color="green",shape="box"];1052[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1052 -> 1187[label="",style="solid", color="black", weight=3]; 1053[label="LT",fontsize=16,color="green",shape="box"];1054[label="compare vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2448[label="vxw27/()",fontsize=10,color="white",style="solid",shape="box"];1054 -> 2448[label="",style="solid", color="burlywood", weight=9]; 2448 -> 1188[label="",style="solid", color="burlywood", weight=3]; 1055[label="LT",fontsize=16,color="green",shape="box"];1056[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1056 -> 1189[label="",style="solid", color="black", weight=3]; 1057[label="LT",fontsize=16,color="green",shape="box"];1058[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1058 -> 1190[label="",style="solid", color="black", weight=3]; 1059[label="LT",fontsize=16,color="green",shape="box"];1060[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1060 -> 1191[label="",style="solid", color="black", weight=3]; 1061[label="LT",fontsize=16,color="green",shape="box"];1062[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1062 -> 1192[label="",style="solid", color="black", weight=3]; 1063[label="LT",fontsize=16,color="green",shape="box"];1064[label="compare vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2449[label="vxw27/vxw270 : vxw271",fontsize=10,color="white",style="solid",shape="box"];1064 -> 2449[label="",style="solid", color="burlywood", weight=9]; 2449 -> 1193[label="",style="solid", color="burlywood", weight=3]; 2450[label="vxw27/[]",fontsize=10,color="white",style="solid",shape="box"];1064 -> 2450[label="",style="solid", color="burlywood", weight=9]; 2450 -> 1194[label="",style="solid", color="burlywood", weight=3]; 1065[label="LT",fontsize=16,color="green",shape="box"];1066 -> 1195[label="",style="dashed", color="red", weight=0]; 1066[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1066 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1067[label="LT <= vxw26",fontsize=16,color="burlywood",shape="box"];2451[label="vxw26/LT",fontsize=10,color="white",style="solid",shape="box"];1067 -> 2451[label="",style="solid", color="burlywood", weight=9]; 2451 -> 1204[label="",style="solid", color="burlywood", weight=3]; 2452[label="vxw26/EQ",fontsize=10,color="white",style="solid",shape="box"];1067 -> 2452[label="",style="solid", color="burlywood", weight=9]; 2452 -> 1205[label="",style="solid", color="burlywood", weight=3]; 2453[label="vxw26/GT",fontsize=10,color="white",style="solid",shape="box"];1067 -> 2453[label="",style="solid", color="burlywood", weight=9]; 2453 -> 1206[label="",style="solid", color="burlywood", weight=3]; 1068[label="EQ <= vxw26",fontsize=16,color="burlywood",shape="box"];2454[label="vxw26/LT",fontsize=10,color="white",style="solid",shape="box"];1068 -> 2454[label="",style="solid", color="burlywood", weight=9]; 2454 -> 1207[label="",style="solid", color="burlywood", weight=3]; 2455[label="vxw26/EQ",fontsize=10,color="white",style="solid",shape="box"];1068 -> 2455[label="",style="solid", color="burlywood", weight=9]; 2455 -> 1208[label="",style="solid", color="burlywood", weight=3]; 2456[label="vxw26/GT",fontsize=10,color="white",style="solid",shape="box"];1068 -> 2456[label="",style="solid", color="burlywood", weight=9]; 2456 -> 1209[label="",style="solid", color="burlywood", weight=3]; 1069[label="GT <= vxw26",fontsize=16,color="burlywood",shape="box"];2457[label="vxw26/LT",fontsize=10,color="white",style="solid",shape="box"];1069 -> 2457[label="",style="solid", color="burlywood", weight=9]; 2457 -> 1210[label="",style="solid", color="burlywood", weight=3]; 2458[label="vxw26/EQ",fontsize=10,color="white",style="solid",shape="box"];1069 -> 2458[label="",style="solid", color="burlywood", weight=9]; 2458 -> 1211[label="",style="solid", color="burlywood", weight=3]; 2459[label="vxw26/GT",fontsize=10,color="white",style="solid",shape="box"];1069 -> 2459[label="",style="solid", color="burlywood", weight=9]; 2459 -> 1212[label="",style="solid", color="burlywood", weight=3]; 1070[label="(vxw280,vxw281,vxw282) <= vxw26",fontsize=16,color="burlywood",shape="box"];2460[label="vxw26/(vxw260,vxw261,vxw262)",fontsize=10,color="white",style="solid",shape="box"];1070 -> 2460[label="",style="solid", color="burlywood", weight=9]; 2460 -> 1213[label="",style="solid", color="burlywood", weight=3]; 1071[label="(vxw280,vxw281) <= vxw26",fontsize=16,color="burlywood",shape="box"];2461[label="vxw26/(vxw260,vxw261)",fontsize=10,color="white",style="solid",shape="box"];1071 -> 2461[label="",style="solid", color="burlywood", weight=9]; 2461 -> 1214[label="",style="solid", color="burlywood", weight=3]; 1072 -> 1195[label="",style="dashed", color="red", weight=0]; 1072[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1072 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1073 -> 1195[label="",style="dashed", color="red", weight=0]; 1073[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1073 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1074 -> 1195[label="",style="dashed", color="red", weight=0]; 1074[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1074 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1075[label="False <= vxw26",fontsize=16,color="burlywood",shape="box"];2462[label="vxw26/False",fontsize=10,color="white",style="solid",shape="box"];1075 -> 2462[label="",style="solid", color="burlywood", weight=9]; 2462 -> 1215[label="",style="solid", color="burlywood", weight=3]; 2463[label="vxw26/True",fontsize=10,color="white",style="solid",shape="box"];1075 -> 2463[label="",style="solid", color="burlywood", weight=9]; 2463 -> 1216[label="",style="solid", color="burlywood", weight=3]; 1076[label="True <= vxw26",fontsize=16,color="burlywood",shape="box"];2464[label="vxw26/False",fontsize=10,color="white",style="solid",shape="box"];1076 -> 2464[label="",style="solid", color="burlywood", weight=9]; 2464 -> 1217[label="",style="solid", color="burlywood", weight=3]; 2465[label="vxw26/True",fontsize=10,color="white",style="solid",shape="box"];1076 -> 2465[label="",style="solid", color="burlywood", weight=9]; 2465 -> 1218[label="",style="solid", color="burlywood", weight=3]; 1077 -> 1195[label="",style="dashed", color="red", weight=0]; 1077[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1077 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1078 -> 1195[label="",style="dashed", color="red", weight=0]; 1078[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1078 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1079[label="Left vxw280 <= vxw26",fontsize=16,color="burlywood",shape="box"];2466[label="vxw26/Left vxw260",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2466[label="",style="solid", color="burlywood", weight=9]; 2466 -> 1219[label="",style="solid", color="burlywood", weight=3]; 2467[label="vxw26/Right vxw260",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2467[label="",style="solid", color="burlywood", weight=9]; 2467 -> 1220[label="",style="solid", color="burlywood", weight=3]; 1080[label="Right vxw280 <= vxw26",fontsize=16,color="burlywood",shape="box"];2468[label="vxw26/Left vxw260",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2468[label="",style="solid", color="burlywood", weight=9]; 2468 -> 1221[label="",style="solid", color="burlywood", weight=3]; 2469[label="vxw26/Right vxw260",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2469[label="",style="solid", color="burlywood", weight=9]; 2469 -> 1222[label="",style="solid", color="burlywood", weight=3]; 1081 -> 1195[label="",style="dashed", color="red", weight=0]; 1081[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1081 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1082[label="Nothing <= vxw26",fontsize=16,color="burlywood",shape="box"];2470[label="vxw26/Nothing",fontsize=10,color="white",style="solid",shape="box"];1082 -> 2470[label="",style="solid", color="burlywood", weight=9]; 2470 -> 1223[label="",style="solid", color="burlywood", weight=3]; 2471[label="vxw26/Just vxw260",fontsize=10,color="white",style="solid",shape="box"];1082 -> 2471[label="",style="solid", color="burlywood", weight=9]; 2471 -> 1224[label="",style="solid", color="burlywood", weight=3]; 1083[label="Just vxw280 <= vxw26",fontsize=16,color="burlywood",shape="box"];2472[label="vxw26/Nothing",fontsize=10,color="white",style="solid",shape="box"];1083 -> 2472[label="",style="solid", color="burlywood", weight=9]; 2472 -> 1225[label="",style="solid", color="burlywood", weight=3]; 2473[label="vxw26/Just vxw260",fontsize=10,color="white",style="solid",shape="box"];1083 -> 2473[label="",style="solid", color="burlywood", weight=9]; 2473 -> 1226[label="",style="solid", color="burlywood", weight=3]; 1084 -> 1195[label="",style="dashed", color="red", weight=0]; 1084[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1084 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1085[label="vxw27",fontsize=16,color="green",shape="box"];1086[label="vxw25",fontsize=16,color="green",shape="box"];1087[label="vxw27",fontsize=16,color="green",shape="box"];1088[label="vxw25",fontsize=16,color="green",shape="box"];1089[label="vxw27",fontsize=16,color="green",shape="box"];1090[label="vxw25",fontsize=16,color="green",shape="box"];1091[label="vxw27",fontsize=16,color="green",shape="box"];1092[label="vxw25",fontsize=16,color="green",shape="box"];1093[label="vxw27",fontsize=16,color="green",shape="box"];1094[label="vxw25",fontsize=16,color="green",shape="box"];1095[label="vxw27",fontsize=16,color="green",shape="box"];1096[label="vxw25",fontsize=16,color="green",shape="box"];1097[label="vxw27",fontsize=16,color="green",shape="box"];1098[label="vxw25",fontsize=16,color="green",shape="box"];1099[label="vxw27",fontsize=16,color="green",shape="box"];1100[label="vxw25",fontsize=16,color="green",shape="box"];1101[label="vxw27",fontsize=16,color="green",shape="box"];1102[label="vxw25",fontsize=16,color="green",shape="box"];1103[label="vxw27",fontsize=16,color="green",shape="box"];1104[label="vxw25",fontsize=16,color="green",shape="box"];1105[label="vxw27",fontsize=16,color="green",shape="box"];1106[label="vxw25",fontsize=16,color="green",shape="box"];1107[label="vxw27",fontsize=16,color="green",shape="box"];1108[label="vxw25",fontsize=16,color="green",shape="box"];1109[label="vxw27",fontsize=16,color="green",shape="box"];1110[label="vxw25",fontsize=16,color="green",shape="box"];1111[label="vxw27",fontsize=16,color="green",shape="box"];1112[label="vxw25",fontsize=16,color="green",shape="box"];1113[label="(vxw45,vxw46) : List.insertBy compare (vxw47,vxw48) vxw49",fontsize=16,color="green",shape="box"];1113 -> 1227[label="",style="dashed", color="green", weight=3]; 1114[label="vxw3100",fontsize=16,color="green",shape="box"];1115[label="vxw40100",fontsize=16,color="green",shape="box"];1116[label="vxw3100",fontsize=16,color="green",shape="box"];1117[label="vxw40100",fontsize=16,color="green",shape="box"];1118[label="vxw312",fontsize=16,color="green",shape="box"];1119[label="vxw4012",fontsize=16,color="green",shape="box"];1120[label="vxw312",fontsize=16,color="green",shape="box"];1121[label="vxw4012",fontsize=16,color="green",shape="box"];1122[label="vxw312",fontsize=16,color="green",shape="box"];1123[label="vxw4012",fontsize=16,color="green",shape="box"];1124[label="vxw312",fontsize=16,color="green",shape="box"];1125[label="vxw4012",fontsize=16,color="green",shape="box"];1126[label="vxw312",fontsize=16,color="green",shape="box"];1127[label="vxw4012",fontsize=16,color="green",shape="box"];1128[label="vxw312",fontsize=16,color="green",shape="box"];1129[label="vxw4012",fontsize=16,color="green",shape="box"];1130[label="vxw312",fontsize=16,color="green",shape="box"];1131[label="vxw4012",fontsize=16,color="green",shape="box"];1132[label="vxw312",fontsize=16,color="green",shape="box"];1133[label="vxw4012",fontsize=16,color="green",shape="box"];1134[label="vxw312",fontsize=16,color="green",shape="box"];1135[label="vxw4012",fontsize=16,color="green",shape="box"];1136[label="vxw312",fontsize=16,color="green",shape="box"];1137[label="vxw4012",fontsize=16,color="green",shape="box"];1138[label="vxw312",fontsize=16,color="green",shape="box"];1139[label="vxw4012",fontsize=16,color="green",shape="box"];1140[label="vxw312",fontsize=16,color="green",shape="box"];1141[label="vxw4012",fontsize=16,color="green",shape="box"];1142[label="vxw312",fontsize=16,color="green",shape="box"];1143[label="vxw4012",fontsize=16,color="green",shape="box"];1144[label="vxw312",fontsize=16,color="green",shape="box"];1145[label="vxw4012",fontsize=16,color="green",shape="box"];1146[label="vxw311",fontsize=16,color="green",shape="box"];1147[label="vxw4011",fontsize=16,color="green",shape="box"];1148[label="vxw311",fontsize=16,color="green",shape="box"];1149[label="vxw4011",fontsize=16,color="green",shape="box"];1150[label="vxw311",fontsize=16,color="green",shape="box"];1151[label="vxw4011",fontsize=16,color="green",shape="box"];1152[label="vxw311",fontsize=16,color="green",shape="box"];1153[label="vxw4011",fontsize=16,color="green",shape="box"];1154[label="vxw311",fontsize=16,color="green",shape="box"];1155[label="vxw4011",fontsize=16,color="green",shape="box"];1156[label="vxw311",fontsize=16,color="green",shape="box"];1157[label="vxw4011",fontsize=16,color="green",shape="box"];1158[label="vxw311",fontsize=16,color="green",shape="box"];1159[label="vxw4011",fontsize=16,color="green",shape="box"];1160[label="vxw311",fontsize=16,color="green",shape="box"];1161[label="vxw4011",fontsize=16,color="green",shape="box"];1162[label="vxw311",fontsize=16,color="green",shape="box"];1163[label="vxw4011",fontsize=16,color="green",shape="box"];1164[label="vxw311",fontsize=16,color="green",shape="box"];1165[label="vxw4011",fontsize=16,color="green",shape="box"];1166[label="vxw311",fontsize=16,color="green",shape="box"];1167[label="vxw4011",fontsize=16,color="green",shape="box"];1168[label="vxw311",fontsize=16,color="green",shape="box"];1169[label="vxw4011",fontsize=16,color="green",shape="box"];1170[label="vxw311",fontsize=16,color="green",shape="box"];1171[label="vxw4011",fontsize=16,color="green",shape="box"];1172[label="vxw311",fontsize=16,color="green",shape="box"];1173[label="vxw4011",fontsize=16,color="green",shape="box"];1174[label="primMulInt (Pos vxw3100) vxw4011",fontsize=16,color="burlywood",shape="box"];2474[label="vxw4011/Pos vxw40110",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2474[label="",style="solid", color="burlywood", weight=9]; 2474 -> 1228[label="",style="solid", color="burlywood", weight=3]; 2475[label="vxw4011/Neg vxw40110",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2475[label="",style="solid", color="burlywood", weight=9]; 2475 -> 1229[label="",style="solid", color="burlywood", weight=3]; 1175[label="primMulInt (Neg vxw3100) vxw4011",fontsize=16,color="burlywood",shape="box"];2476[label="vxw4011/Pos vxw40110",fontsize=10,color="white",style="solid",shape="box"];1175 -> 2476[label="",style="solid", color="burlywood", weight=9]; 2476 -> 1230[label="",style="solid", color="burlywood", weight=3]; 2477[label="vxw4011/Neg vxw40110",fontsize=10,color="white",style="solid",shape="box"];1175 -> 2477[label="",style="solid", color="burlywood", weight=9]; 2477 -> 1231[label="",style="solid", color="burlywood", weight=3]; 1176 -> 609[label="",style="dashed", color="red", weight=0]; 1176[label="primEqNat vxw3100 vxw40100",fontsize=16,color="magenta"];1176 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1177[label="False",fontsize=16,color="green",shape="box"];1178[label="False",fontsize=16,color="green",shape="box"];1179[label="True",fontsize=16,color="green",shape="box"];1180[label="primCmpChar vxw27 vxw25",fontsize=16,color="burlywood",shape="box"];2478[label="vxw27/Char vxw270",fontsize=10,color="white",style="solid",shape="box"];1180 -> 2478[label="",style="solid", color="burlywood", weight=9]; 2478 -> 1234[label="",style="solid", color="burlywood", weight=3]; 1181[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1181 -> 1235[label="",style="solid", color="black", weight=3]; 1182[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1182 -> 1236[label="",style="solid", color="black", weight=3]; 1183[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1183 -> 1237[label="",style="solid", color="black", weight=3]; 1184[label="primCmpInt vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2479[label="vxw27/Pos vxw270",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2479[label="",style="solid", color="burlywood", weight=9]; 2479 -> 1238[label="",style="solid", color="burlywood", weight=3]; 2480[label="vxw27/Neg vxw270",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2480[label="",style="solid", color="burlywood", weight=9]; 2480 -> 1239[label="",style="solid", color="burlywood", weight=3]; 1185[label="compare (vxw270 :% vxw271) vxw25",fontsize=16,color="burlywood",shape="box"];2481[label="vxw25/vxw250 :% vxw251",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2481[label="",style="solid", color="burlywood", weight=9]; 2481 -> 1240[label="",style="solid", color="burlywood", weight=3]; 1186[label="compare (Integer vxw270) vxw25",fontsize=16,color="burlywood",shape="box"];2482[label="vxw25/Integer vxw250",fontsize=10,color="white",style="solid",shape="box"];1186 -> 2482[label="",style="solid", color="burlywood", weight=9]; 2482 -> 1241[label="",style="solid", color="burlywood", weight=3]; 1187[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1187 -> 1242[label="",style="solid", color="black", weight=3]; 1188[label="compare () vxw25",fontsize=16,color="burlywood",shape="box"];2483[label="vxw25/()",fontsize=10,color="white",style="solid",shape="box"];1188 -> 2483[label="",style="solid", color="burlywood", weight=9]; 2483 -> 1243[label="",style="solid", color="burlywood", weight=3]; 1189[label="primCmpDouble vxw27 vxw25",fontsize=16,color="burlywood",shape="box"];2484[label="vxw27/Double vxw270 vxw271",fontsize=10,color="white",style="solid",shape="box"];1189 -> 2484[label="",style="solid", color="burlywood", weight=9]; 2484 -> 1244[label="",style="solid", color="burlywood", weight=3]; 1190[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1190 -> 1245[label="",style="solid", color="black", weight=3]; 1191[label="primCmpFloat vxw27 vxw25",fontsize=16,color="burlywood",shape="box"];2485[label="vxw27/Float vxw270 vxw271",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2485[label="",style="solid", color="burlywood", weight=9]; 2485 -> 1246[label="",style="solid", color="burlywood", weight=3]; 1192[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1192 -> 1247[label="",style="solid", color="black", weight=3]; 1193[label="compare (vxw270 : vxw271) vxw25",fontsize=16,color="burlywood",shape="box"];2486[label="vxw25/vxw250 : vxw251",fontsize=10,color="white",style="solid",shape="box"];1193 -> 2486[label="",style="solid", color="burlywood", weight=9]; 2486 -> 1248[label="",style="solid", color="burlywood", weight=3]; 2487[label="vxw25/[]",fontsize=10,color="white",style="solid",shape="box"];1193 -> 2487[label="",style="solid", color="burlywood", weight=9]; 2487 -> 1249[label="",style="solid", color="burlywood", weight=3]; 1194[label="compare [] vxw25",fontsize=16,color="burlywood",shape="box"];2488[label="vxw25/vxw250 : vxw251",fontsize=10,color="white",style="solid",shape="box"];1194 -> 2488[label="",style="solid", color="burlywood", weight=9]; 2488 -> 1250[label="",style="solid", color="burlywood", weight=3]; 2489[label="vxw25/[]",fontsize=10,color="white",style="solid",shape="box"];1194 -> 2489[label="",style="solid", color="burlywood", weight=9]; 2489 -> 1251[label="",style="solid", color="burlywood", weight=3]; 1196 -> 1038[label="",style="dashed", color="red", weight=0]; 1196[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1196 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1195[label="vxw64 /= GT",fontsize=16,color="black",shape="triangle"];1195 -> 1254[label="",style="solid", color="black", weight=3]; 1204[label="LT <= LT",fontsize=16,color="black",shape="box"];1204 -> 1269[label="",style="solid", color="black", weight=3]; 1205[label="LT <= EQ",fontsize=16,color="black",shape="box"];1205 -> 1270[label="",style="solid", color="black", weight=3]; 1206[label="LT <= GT",fontsize=16,color="black",shape="box"];1206 -> 1271[label="",style="solid", color="black", weight=3]; 1207[label="EQ <= LT",fontsize=16,color="black",shape="box"];1207 -> 1272[label="",style="solid", color="black", weight=3]; 1208[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1208 -> 1273[label="",style="solid", color="black", weight=3]; 1209[label="EQ <= GT",fontsize=16,color="black",shape="box"];1209 -> 1274[label="",style="solid", color="black", weight=3]; 1210[label="GT <= LT",fontsize=16,color="black",shape="box"];1210 -> 1275[label="",style="solid", color="black", weight=3]; 1211[label="GT <= EQ",fontsize=16,color="black",shape="box"];1211 -> 1276[label="",style="solid", color="black", weight=3]; 1212[label="GT <= GT",fontsize=16,color="black",shape="box"];1212 -> 1277[label="",style="solid", color="black", weight=3]; 1213[label="(vxw280,vxw281,vxw282) <= (vxw260,vxw261,vxw262)",fontsize=16,color="black",shape="box"];1213 -> 1278[label="",style="solid", color="black", weight=3]; 1214[label="(vxw280,vxw281) <= (vxw260,vxw261)",fontsize=16,color="black",shape="box"];1214 -> 1279[label="",style="solid", color="black", weight=3]; 1197 -> 1046[label="",style="dashed", color="red", weight=0]; 1197[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1197 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1048[label="",style="dashed", color="red", weight=0]; 1198[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1198 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1050[label="",style="dashed", color="red", weight=0]; 1199[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1199 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1215[label="False <= False",fontsize=16,color="black",shape="box"];1215 -> 1280[label="",style="solid", color="black", weight=3]; 1216[label="False <= True",fontsize=16,color="black",shape="box"];1216 -> 1281[label="",style="solid", color="black", weight=3]; 1217[label="True <= False",fontsize=16,color="black",shape="box"];1217 -> 1282[label="",style="solid", color="black", weight=3]; 1218[label="True <= True",fontsize=16,color="black",shape="box"];1218 -> 1283[label="",style="solid", color="black", weight=3]; 1200 -> 1054[label="",style="dashed", color="red", weight=0]; 1200[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1200 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1056[label="",style="dashed", color="red", weight=0]; 1201[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1201 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1219[label="Left vxw280 <= Left vxw260",fontsize=16,color="black",shape="box"];1219 -> 1284[label="",style="solid", color="black", weight=3]; 1220[label="Left vxw280 <= Right vxw260",fontsize=16,color="black",shape="box"];1220 -> 1285[label="",style="solid", color="black", weight=3]; 1221[label="Right vxw280 <= Left vxw260",fontsize=16,color="black",shape="box"];1221 -> 1286[label="",style="solid", color="black", weight=3]; 1222[label="Right vxw280 <= Right vxw260",fontsize=16,color="black",shape="box"];1222 -> 1287[label="",style="solid", color="black", weight=3]; 1202 -> 1060[label="",style="dashed", color="red", weight=0]; 1202[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1202 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1223[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1223 -> 1288[label="",style="solid", color="black", weight=3]; 1224[label="Nothing <= Just vxw260",fontsize=16,color="black",shape="box"];1224 -> 1289[label="",style="solid", color="black", weight=3]; 1225[label="Just vxw280 <= Nothing",fontsize=16,color="black",shape="box"];1225 -> 1290[label="",style="solid", color="black", weight=3]; 1226[label="Just vxw280 <= Just vxw260",fontsize=16,color="black",shape="box"];1226 -> 1291[label="",style="solid", color="black", weight=3]; 1203 -> 1064[label="",style="dashed", color="red", weight=0]; 1203[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1203 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1227 -> 5[label="",style="dashed", color="red", weight=0]; 1227[label="List.insertBy compare (vxw47,vxw48) vxw49",fontsize=16,color="magenta"];1227 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1228[label="primMulInt (Pos vxw3100) (Pos vxw40110)",fontsize=16,color="black",shape="box"];1228 -> 1294[label="",style="solid", color="black", weight=3]; 1229[label="primMulInt (Pos vxw3100) (Neg vxw40110)",fontsize=16,color="black",shape="box"];1229 -> 1295[label="",style="solid", color="black", weight=3]; 1230[label="primMulInt (Neg vxw3100) (Pos vxw40110)",fontsize=16,color="black",shape="box"];1230 -> 1296[label="",style="solid", color="black", weight=3]; 1231[label="primMulInt (Neg vxw3100) (Neg vxw40110)",fontsize=16,color="black",shape="box"];1231 -> 1297[label="",style="solid", color="black", weight=3]; 1232[label="vxw3100",fontsize=16,color="green",shape="box"];1233[label="vxw40100",fontsize=16,color="green",shape="box"];1234[label="primCmpChar (Char vxw270) vxw25",fontsize=16,color="burlywood",shape="box"];2490[label="vxw25/Char vxw250",fontsize=10,color="white",style="solid",shape="box"];1234 -> 2490[label="",style="solid", color="burlywood", weight=9]; 2490 -> 1298[label="",style="solid", color="burlywood", weight=3]; 1235 -> 1299[label="",style="dashed", color="red", weight=0]; 1235[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1235 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1301[label="",style="dashed", color="red", weight=0]; 1236[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1236 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1303[label="",style="dashed", color="red", weight=0]; 1237[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1237 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1238[label="primCmpInt (Pos vxw270) vxw25",fontsize=16,color="burlywood",shape="box"];2491[label="vxw270/Succ vxw2700",fontsize=10,color="white",style="solid",shape="box"];1238 -> 2491[label="",style="solid", color="burlywood", weight=9]; 2491 -> 1305[label="",style="solid", color="burlywood", weight=3]; 2492[label="vxw270/Zero",fontsize=10,color="white",style="solid",shape="box"];1238 -> 2492[label="",style="solid", color="burlywood", weight=9]; 2492 -> 1306[label="",style="solid", color="burlywood", weight=3]; 1239[label="primCmpInt (Neg vxw270) vxw25",fontsize=16,color="burlywood",shape="box"];2493[label="vxw270/Succ vxw2700",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2493[label="",style="solid", color="burlywood", weight=9]; 2493 -> 1307[label="",style="solid", color="burlywood", weight=3]; 2494[label="vxw270/Zero",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2494[label="",style="solid", color="burlywood", weight=9]; 2494 -> 1308[label="",style="solid", color="burlywood", weight=3]; 1240[label="compare (vxw270 :% vxw271) (vxw250 :% vxw251)",fontsize=16,color="black",shape="box"];1240 -> 1309[label="",style="solid", color="black", weight=3]; 1241[label="compare (Integer vxw270) (Integer vxw250)",fontsize=16,color="black",shape="box"];1241 -> 1310[label="",style="solid", color="black", weight=3]; 1242 -> 1311[label="",style="dashed", color="red", weight=0]; 1242[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1242 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1243[label="compare () ()",fontsize=16,color="black",shape="box"];1243 -> 1313[label="",style="solid", color="black", weight=3]; 1244[label="primCmpDouble (Double vxw270 vxw271) vxw25",fontsize=16,color="burlywood",shape="box"];2495[label="vxw271/Pos vxw2710",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2495[label="",style="solid", color="burlywood", weight=9]; 2495 -> 1314[label="",style="solid", color="burlywood", weight=3]; 2496[label="vxw271/Neg vxw2710",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2496[label="",style="solid", color="burlywood", weight=9]; 2496 -> 1315[label="",style="solid", color="burlywood", weight=3]; 1245 -> 1316[label="",style="dashed", color="red", weight=0]; 1245[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1245 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1246[label="primCmpFloat (Float vxw270 vxw271) vxw25",fontsize=16,color="burlywood",shape="box"];2497[label="vxw271/Pos vxw2710",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2497[label="",style="solid", color="burlywood", weight=9]; 2497 -> 1318[label="",style="solid", color="burlywood", weight=3]; 2498[label="vxw271/Neg vxw2710",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2498[label="",style="solid", color="burlywood", weight=9]; 2498 -> 1319[label="",style="solid", color="burlywood", weight=3]; 1247 -> 1320[label="",style="dashed", color="red", weight=0]; 1247[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1247 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1248[label="compare (vxw270 : vxw271) (vxw250 : vxw251)",fontsize=16,color="black",shape="box"];1248 -> 1322[label="",style="solid", color="black", weight=3]; 1249[label="compare (vxw270 : vxw271) []",fontsize=16,color="black",shape="box"];1249 -> 1323[label="",style="solid", color="black", weight=3]; 1250[label="compare [] (vxw250 : vxw251)",fontsize=16,color="black",shape="box"];1250 -> 1324[label="",style="solid", color="black", weight=3]; 1251[label="compare [] []",fontsize=16,color="black",shape="box"];1251 -> 1325[label="",style="solid", color="black", weight=3]; 1252[label="vxw28",fontsize=16,color="green",shape="box"];1253[label="vxw26",fontsize=16,color="green",shape="box"];1254 -> 1326[label="",style="dashed", color="red", weight=0]; 1254[label="not (vxw64 == GT)",fontsize=16,color="magenta"];1254 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1269[label="True",fontsize=16,color="green",shape="box"];1270[label="True",fontsize=16,color="green",shape="box"];1271[label="True",fontsize=16,color="green",shape="box"];1272[label="False",fontsize=16,color="green",shape="box"];1273[label="True",fontsize=16,color="green",shape="box"];1274[label="True",fontsize=16,color="green",shape="box"];1275[label="False",fontsize=16,color="green",shape="box"];1276[label="False",fontsize=16,color="green",shape="box"];1277[label="True",fontsize=16,color="green",shape="box"];1278 -> 629[label="",style="dashed", color="red", weight=0]; 1278[label="vxw280 < vxw260 || vxw280 == vxw260 && (vxw281 < vxw261 || vxw281 == vxw261 && vxw282 <= vxw262)",fontsize=16,color="magenta"];1278 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1279 -> 629[label="",style="dashed", color="red", weight=0]; 1279[label="vxw280 < vxw260 || vxw280 == vxw260 && vxw281 <= vxw261",fontsize=16,color="magenta"];1279 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1279 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1255[label="vxw28",fontsize=16,color="green",shape="box"];1256[label="vxw26",fontsize=16,color="green",shape="box"];1257[label="vxw28",fontsize=16,color="green",shape="box"];1258[label="vxw26",fontsize=16,color="green",shape="box"];1259[label="vxw28",fontsize=16,color="green",shape="box"];1260[label="vxw26",fontsize=16,color="green",shape="box"];1280[label="True",fontsize=16,color="green",shape="box"];1281[label="True",fontsize=16,color="green",shape="box"];1282[label="False",fontsize=16,color="green",shape="box"];1283[label="True",fontsize=16,color="green",shape="box"];1261[label="vxw28",fontsize=16,color="green",shape="box"];1262[label="vxw26",fontsize=16,color="green",shape="box"];1263[label="vxw28",fontsize=16,color="green",shape="box"];1264[label="vxw26",fontsize=16,color="green",shape="box"];1284[label="vxw280 <= vxw260",fontsize=16,color="blue",shape="box"];2499[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2499[label="",style="solid", color="blue", weight=9]; 2499 -> 1332[label="",style="solid", color="blue", weight=3]; 2500[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2500[label="",style="solid", color="blue", weight=9]; 2500 -> 1333[label="",style="solid", color="blue", weight=3]; 2501[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2501[label="",style="solid", color="blue", weight=9]; 2501 -> 1334[label="",style="solid", color="blue", weight=3]; 2502[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2502[label="",style="solid", color="blue", weight=9]; 2502 -> 1335[label="",style="solid", color="blue", weight=3]; 2503[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2503[label="",style="solid", color="blue", weight=9]; 2503 -> 1336[label="",style="solid", color="blue", weight=3]; 2504[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2504[label="",style="solid", color="blue", weight=9]; 2504 -> 1337[label="",style="solid", color="blue", weight=3]; 2505[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2505[label="",style="solid", color="blue", weight=9]; 2505 -> 1338[label="",style="solid", color="blue", weight=3]; 2506[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2506[label="",style="solid", color="blue", weight=9]; 2506 -> 1339[label="",style="solid", color="blue", weight=3]; 2507[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2507[label="",style="solid", color="blue", weight=9]; 2507 -> 1340[label="",style="solid", color="blue", weight=3]; 2508[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2508[label="",style="solid", color="blue", weight=9]; 2508 -> 1341[label="",style="solid", color="blue", weight=3]; 2509[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2509[label="",style="solid", color="blue", weight=9]; 2509 -> 1342[label="",style="solid", color="blue", weight=3]; 2510[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2510[label="",style="solid", color="blue", weight=9]; 2510 -> 1343[label="",style="solid", color="blue", weight=3]; 2511[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2511[label="",style="solid", color="blue", weight=9]; 2511 -> 1344[label="",style="solid", color="blue", weight=3]; 2512[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1284 -> 2512[label="",style="solid", color="blue", weight=9]; 2512 -> 1345[label="",style="solid", color="blue", weight=3]; 1285[label="True",fontsize=16,color="green",shape="box"];1286[label="False",fontsize=16,color="green",shape="box"];1287[label="vxw280 <= vxw260",fontsize=16,color="blue",shape="box"];2513[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2513[label="",style="solid", color="blue", weight=9]; 2513 -> 1346[label="",style="solid", color="blue", weight=3]; 2514[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2514[label="",style="solid", color="blue", weight=9]; 2514 -> 1347[label="",style="solid", color="blue", weight=3]; 2515[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2515[label="",style="solid", color="blue", weight=9]; 2515 -> 1348[label="",style="solid", color="blue", weight=3]; 2516[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2516[label="",style="solid", color="blue", weight=9]; 2516 -> 1349[label="",style="solid", color="blue", weight=3]; 2517[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2517[label="",style="solid", color="blue", weight=9]; 2517 -> 1350[label="",style="solid", color="blue", weight=3]; 2518[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2518[label="",style="solid", color="blue", weight=9]; 2518 -> 1351[label="",style="solid", color="blue", weight=3]; 2519[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2519[label="",style="solid", color="blue", weight=9]; 2519 -> 1352[label="",style="solid", color="blue", weight=3]; 2520[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2520[label="",style="solid", color="blue", weight=9]; 2520 -> 1353[label="",style="solid", color="blue", weight=3]; 2521[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2521[label="",style="solid", color="blue", weight=9]; 2521 -> 1354[label="",style="solid", color="blue", weight=3]; 2522[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2522[label="",style="solid", color="blue", weight=9]; 2522 -> 1355[label="",style="solid", color="blue", weight=3]; 2523[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2523[label="",style="solid", color="blue", weight=9]; 2523 -> 1356[label="",style="solid", color="blue", weight=3]; 2524[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2524[label="",style="solid", color="blue", weight=9]; 2524 -> 1357[label="",style="solid", color="blue", weight=3]; 2525[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2525[label="",style="solid", color="blue", weight=9]; 2525 -> 1358[label="",style="solid", color="blue", weight=3]; 2526[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 2526[label="",style="solid", color="blue", weight=9]; 2526 -> 1359[label="",style="solid", color="blue", weight=3]; 1265[label="vxw28",fontsize=16,color="green",shape="box"];1266[label="vxw26",fontsize=16,color="green",shape="box"];1288[label="True",fontsize=16,color="green",shape="box"];1289[label="True",fontsize=16,color="green",shape="box"];1290[label="False",fontsize=16,color="green",shape="box"];1291[label="vxw280 <= vxw260",fontsize=16,color="blue",shape="box"];2527[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2527[label="",style="solid", color="blue", weight=9]; 2527 -> 1360[label="",style="solid", color="blue", weight=3]; 2528[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2528[label="",style="solid", color="blue", weight=9]; 2528 -> 1361[label="",style="solid", color="blue", weight=3]; 2529[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2529[label="",style="solid", color="blue", weight=9]; 2529 -> 1362[label="",style="solid", color="blue", weight=3]; 2530[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2530[label="",style="solid", color="blue", weight=9]; 2530 -> 1363[label="",style="solid", color="blue", weight=3]; 2531[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2531[label="",style="solid", color="blue", weight=9]; 2531 -> 1364[label="",style="solid", color="blue", weight=3]; 2532[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2532[label="",style="solid", color="blue", weight=9]; 2532 -> 1365[label="",style="solid", color="blue", weight=3]; 2533[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2533[label="",style="solid", color="blue", weight=9]; 2533 -> 1366[label="",style="solid", color="blue", weight=3]; 2534[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2534[label="",style="solid", color="blue", weight=9]; 2534 -> 1367[label="",style="solid", color="blue", weight=3]; 2535[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2535[label="",style="solid", color="blue", weight=9]; 2535 -> 1368[label="",style="solid", color="blue", weight=3]; 2536[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2536[label="",style="solid", color="blue", weight=9]; 2536 -> 1369[label="",style="solid", color="blue", weight=3]; 2537[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2537[label="",style="solid", color="blue", weight=9]; 2537 -> 1370[label="",style="solid", color="blue", weight=3]; 2538[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2538[label="",style="solid", color="blue", weight=9]; 2538 -> 1371[label="",style="solid", color="blue", weight=3]; 2539[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2539[label="",style="solid", color="blue", weight=9]; 2539 -> 1372[label="",style="solid", color="blue", weight=3]; 2540[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2540[label="",style="solid", color="blue", weight=9]; 2540 -> 1373[label="",style="solid", color="blue", weight=3]; 1267[label="vxw28",fontsize=16,color="green",shape="box"];1268[label="vxw26",fontsize=16,color="green",shape="box"];1292[label="(vxw47,vxw48)",fontsize=16,color="green",shape="box"];1293[label="vxw49",fontsize=16,color="green",shape="box"];1294[label="Pos (primMulNat vxw3100 vxw40110)",fontsize=16,color="green",shape="box"];1294 -> 1374[label="",style="dashed", color="green", weight=3]; 1295[label="Neg (primMulNat vxw3100 vxw40110)",fontsize=16,color="green",shape="box"];1295 -> 1375[label="",style="dashed", color="green", weight=3]; 1296[label="Neg (primMulNat vxw3100 vxw40110)",fontsize=16,color="green",shape="box"];1296 -> 1376[label="",style="dashed", color="green", weight=3]; 1297[label="Pos (primMulNat vxw3100 vxw40110)",fontsize=16,color="green",shape="box"];1297 -> 1377[label="",style="dashed", color="green", weight=3]; 1298[label="primCmpChar (Char vxw270) (Char vxw250)",fontsize=16,color="black",shape="box"];1298 -> 1378[label="",style="solid", color="black", weight=3]; 1300 -> 356[label="",style="dashed", color="red", weight=0]; 1300[label="vxw27 == vxw25",fontsize=16,color="magenta"];1300 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1299[label="compare2 vxw27 vxw25 vxw65",fontsize=16,color="burlywood",shape="triangle"];2541[label="vxw65/False",fontsize=10,color="white",style="solid",shape="box"];1299 -> 2541[label="",style="solid", color="burlywood", weight=9]; 2541 -> 1381[label="",style="solid", color="burlywood", weight=3]; 2542[label="vxw65/True",fontsize=10,color="white",style="solid",shape="box"];1299 -> 2542[label="",style="solid", color="burlywood", weight=9]; 2542 -> 1382[label="",style="solid", color="burlywood", weight=3]; 1302 -> 346[label="",style="dashed", color="red", weight=0]; 1302[label="vxw27 == vxw25",fontsize=16,color="magenta"];1302 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1301[label="compare2 vxw27 vxw25 vxw66",fontsize=16,color="burlywood",shape="triangle"];2543[label="vxw66/False",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2543[label="",style="solid", color="burlywood", weight=9]; 2543 -> 1385[label="",style="solid", color="burlywood", weight=3]; 2544[label="vxw66/True",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2544[label="",style="solid", color="burlywood", weight=9]; 2544 -> 1386[label="",style="solid", color="burlywood", weight=3]; 1304 -> 348[label="",style="dashed", color="red", weight=0]; 1304[label="vxw27 == vxw25",fontsize=16,color="magenta"];1304 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1303[label="compare2 vxw27 vxw25 vxw67",fontsize=16,color="burlywood",shape="triangle"];2545[label="vxw67/False",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2545[label="",style="solid", color="burlywood", weight=9]; 2545 -> 1389[label="",style="solid", color="burlywood", weight=3]; 2546[label="vxw67/True",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2546[label="",style="solid", color="burlywood", weight=9]; 2546 -> 1390[label="",style="solid", color="burlywood", weight=3]; 1305[label="primCmpInt (Pos (Succ vxw2700)) vxw25",fontsize=16,color="burlywood",shape="box"];2547[label="vxw25/Pos vxw250",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2547[label="",style="solid", color="burlywood", weight=9]; 2547 -> 1391[label="",style="solid", color="burlywood", weight=3]; 2548[label="vxw25/Neg vxw250",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2548[label="",style="solid", color="burlywood", weight=9]; 2548 -> 1392[label="",style="solid", color="burlywood", weight=3]; 1306[label="primCmpInt (Pos Zero) vxw25",fontsize=16,color="burlywood",shape="box"];2549[label="vxw25/Pos vxw250",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2549[label="",style="solid", color="burlywood", weight=9]; 2549 -> 1393[label="",style="solid", color="burlywood", weight=3]; 2550[label="vxw25/Neg vxw250",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2550[label="",style="solid", color="burlywood", weight=9]; 2550 -> 1394[label="",style="solid", color="burlywood", weight=3]; 1307[label="primCmpInt (Neg (Succ vxw2700)) vxw25",fontsize=16,color="burlywood",shape="box"];2551[label="vxw25/Pos vxw250",fontsize=10,color="white",style="solid",shape="box"];1307 -> 2551[label="",style="solid", color="burlywood", weight=9]; 2551 -> 1395[label="",style="solid", color="burlywood", weight=3]; 2552[label="vxw25/Neg vxw250",fontsize=10,color="white",style="solid",shape="box"];1307 -> 2552[label="",style="solid", color="burlywood", weight=9]; 2552 -> 1396[label="",style="solid", color="burlywood", weight=3]; 1308[label="primCmpInt (Neg Zero) vxw25",fontsize=16,color="burlywood",shape="box"];2553[label="vxw25/Pos vxw250",fontsize=10,color="white",style="solid",shape="box"];1308 -> 2553[label="",style="solid", color="burlywood", weight=9]; 2553 -> 1397[label="",style="solid", color="burlywood", weight=3]; 2554[label="vxw25/Neg vxw250",fontsize=10,color="white",style="solid",shape="box"];1308 -> 2554[label="",style="solid", color="burlywood", weight=9]; 2554 -> 1398[label="",style="solid", color="burlywood", weight=3]; 1309[label="compare (vxw270 * vxw251) (vxw250 * vxw271)",fontsize=16,color="blue",shape="box"];2555[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1309 -> 2555[label="",style="solid", color="blue", weight=9]; 2555 -> 1399[label="",style="solid", color="blue", weight=3]; 2556[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1309 -> 2556[label="",style="solid", color="blue", weight=9]; 2556 -> 1400[label="",style="solid", color="blue", weight=3]; 1310 -> 1184[label="",style="dashed", color="red", weight=0]; 1310[label="primCmpInt vxw270 vxw250",fontsize=16,color="magenta"];1310 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1310 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1312 -> 351[label="",style="dashed", color="red", weight=0]; 1312[label="vxw27 == vxw25",fontsize=16,color="magenta"];1312 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1311[label="compare2 vxw27 vxw25 vxw68",fontsize=16,color="burlywood",shape="triangle"];2557[label="vxw68/False",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2557[label="",style="solid", color="burlywood", weight=9]; 2557 -> 1405[label="",style="solid", color="burlywood", weight=3]; 2558[label="vxw68/True",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2558[label="",style="solid", color="burlywood", weight=9]; 2558 -> 1406[label="",style="solid", color="burlywood", weight=3]; 1313[label="EQ",fontsize=16,color="green",shape="box"];1314[label="primCmpDouble (Double vxw270 (Pos vxw2710)) vxw25",fontsize=16,color="burlywood",shape="box"];2559[label="vxw25/Double vxw250 vxw251",fontsize=10,color="white",style="solid",shape="box"];1314 -> 2559[label="",style="solid", color="burlywood", weight=9]; 2559 -> 1407[label="",style="solid", color="burlywood", weight=3]; 1315[label="primCmpDouble (Double vxw270 (Neg vxw2710)) vxw25",fontsize=16,color="burlywood",shape="box"];2560[label="vxw25/Double vxw250 vxw251",fontsize=10,color="white",style="solid",shape="box"];1315 -> 2560[label="",style="solid", color="burlywood", weight=9]; 2560 -> 1408[label="",style="solid", color="burlywood", weight=3]; 1317 -> 353[label="",style="dashed", color="red", weight=0]; 1317[label="vxw27 == vxw25",fontsize=16,color="magenta"];1317 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1316[label="compare2 vxw27 vxw25 vxw69",fontsize=16,color="burlywood",shape="triangle"];2561[label="vxw69/False",fontsize=10,color="white",style="solid",shape="box"];1316 -> 2561[label="",style="solid", color="burlywood", weight=9]; 2561 -> 1411[label="",style="solid", color="burlywood", weight=3]; 2562[label="vxw69/True",fontsize=10,color="white",style="solid",shape="box"];1316 -> 2562[label="",style="solid", color="burlywood", weight=9]; 2562 -> 1412[label="",style="solid", color="burlywood", weight=3]; 1318[label="primCmpFloat (Float vxw270 (Pos vxw2710)) vxw25",fontsize=16,color="burlywood",shape="box"];2563[label="vxw25/Float vxw250 vxw251",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2563[label="",style="solid", color="burlywood", weight=9]; 2563 -> 1413[label="",style="solid", color="burlywood", weight=3]; 1319[label="primCmpFloat (Float vxw270 (Neg vxw2710)) vxw25",fontsize=16,color="burlywood",shape="box"];2564[label="vxw25/Float vxw250 vxw251",fontsize=10,color="white",style="solid",shape="box"];1319 -> 2564[label="",style="solid", color="burlywood", weight=9]; 2564 -> 1414[label="",style="solid", color="burlywood", weight=3]; 1321 -> 357[label="",style="dashed", color="red", weight=0]; 1321[label="vxw27 == vxw25",fontsize=16,color="magenta"];1321 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1320[label="compare2 vxw27 vxw25 vxw70",fontsize=16,color="burlywood",shape="triangle"];2565[label="vxw70/False",fontsize=10,color="white",style="solid",shape="box"];1320 -> 2565[label="",style="solid", color="burlywood", weight=9]; 2565 -> 1417[label="",style="solid", color="burlywood", weight=3]; 2566[label="vxw70/True",fontsize=10,color="white",style="solid",shape="box"];1320 -> 2566[label="",style="solid", color="burlywood", weight=9]; 2566 -> 1418[label="",style="solid", color="burlywood", weight=3]; 1322 -> 1419[label="",style="dashed", color="red", weight=0]; 1322[label="primCompAux vxw270 vxw250 (compare vxw271 vxw251)",fontsize=16,color="magenta"];1322 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1323[label="GT",fontsize=16,color="green",shape="box"];1324[label="LT",fontsize=16,color="green",shape="box"];1325[label="EQ",fontsize=16,color="green",shape="box"];1327 -> 356[label="",style="dashed", color="red", weight=0]; 1327[label="vxw64 == GT",fontsize=16,color="magenta"];1327 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1326[label="not vxw71",fontsize=16,color="burlywood",shape="triangle"];2567[label="vxw71/False",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2567[label="",style="solid", color="burlywood", weight=9]; 2567 -> 1423[label="",style="solid", color="burlywood", weight=3]; 2568[label="vxw71/True",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2568[label="",style="solid", color="burlywood", weight=9]; 2568 -> 1424[label="",style="solid", color="burlywood", weight=3]; 1328[label="vxw280 < vxw260",fontsize=16,color="blue",shape="box"];2569[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2569[label="",style="solid", color="blue", weight=9]; 2569 -> 1425[label="",style="solid", color="blue", weight=3]; 2570[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2570[label="",style="solid", color="blue", weight=9]; 2570 -> 1426[label="",style="solid", color="blue", weight=3]; 2571[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2571[label="",style="solid", color="blue", weight=9]; 2571 -> 1427[label="",style="solid", color="blue", weight=3]; 2572[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2572[label="",style="solid", color="blue", weight=9]; 2572 -> 1428[label="",style="solid", color="blue", weight=3]; 2573[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2573[label="",style="solid", color="blue", weight=9]; 2573 -> 1429[label="",style="solid", color="blue", weight=3]; 2574[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2574[label="",style="solid", color="blue", weight=9]; 2574 -> 1430[label="",style="solid", color="blue", weight=3]; 2575[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2575[label="",style="solid", color="blue", weight=9]; 2575 -> 1431[label="",style="solid", color="blue", weight=3]; 2576[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2576[label="",style="solid", color="blue", weight=9]; 2576 -> 1432[label="",style="solid", color="blue", weight=3]; 2577[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2577[label="",style="solid", color="blue", weight=9]; 2577 -> 1433[label="",style="solid", color="blue", weight=3]; 2578[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2578[label="",style="solid", color="blue", weight=9]; 2578 -> 1434[label="",style="solid", color="blue", weight=3]; 2579[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2579[label="",style="solid", color="blue", weight=9]; 2579 -> 1435[label="",style="solid", color="blue", weight=3]; 2580[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2580[label="",style="solid", color="blue", weight=9]; 2580 -> 1436[label="",style="solid", color="blue", weight=3]; 2581[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2581[label="",style="solid", color="blue", weight=9]; 2581 -> 1437[label="",style="solid", color="blue", weight=3]; 2582[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2582[label="",style="solid", color="blue", weight=9]; 2582 -> 1438[label="",style="solid", color="blue", weight=3]; 1329 -> 340[label="",style="dashed", color="red", weight=0]; 1329[label="vxw280 == vxw260 && (vxw281 < vxw261 || vxw281 == vxw261 && vxw282 <= vxw262)",fontsize=16,color="magenta"];1329 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1330[label="vxw280 < vxw260",fontsize=16,color="blue",shape="box"];2583[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2583[label="",style="solid", color="blue", weight=9]; 2583 -> 1441[label="",style="solid", color="blue", weight=3]; 2584[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2584[label="",style="solid", color="blue", weight=9]; 2584 -> 1442[label="",style="solid", color="blue", weight=3]; 2585[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2585[label="",style="solid", color="blue", weight=9]; 2585 -> 1443[label="",style="solid", color="blue", weight=3]; 2586[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2586[label="",style="solid", color="blue", weight=9]; 2586 -> 1444[label="",style="solid", color="blue", weight=3]; 2587[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2587[label="",style="solid", color="blue", weight=9]; 2587 -> 1445[label="",style="solid", color="blue", weight=3]; 2588[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2588[label="",style="solid", color="blue", weight=9]; 2588 -> 1446[label="",style="solid", color="blue", weight=3]; 2589[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2589[label="",style="solid", color="blue", weight=9]; 2589 -> 1447[label="",style="solid", color="blue", weight=3]; 2590[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2590[label="",style="solid", color="blue", weight=9]; 2590 -> 1448[label="",style="solid", color="blue", weight=3]; 2591[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2591[label="",style="solid", color="blue", weight=9]; 2591 -> 1449[label="",style="solid", color="blue", weight=3]; 2592[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2592[label="",style="solid", color="blue", weight=9]; 2592 -> 1450[label="",style="solid", color="blue", weight=3]; 2593[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2593[label="",style="solid", color="blue", weight=9]; 2593 -> 1451[label="",style="solid", color="blue", weight=3]; 2594[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2594[label="",style="solid", color="blue", weight=9]; 2594 -> 1452[label="",style="solid", color="blue", weight=3]; 2595[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2595[label="",style="solid", color="blue", weight=9]; 2595 -> 1453[label="",style="solid", color="blue", weight=3]; 2596[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2596[label="",style="solid", color="blue", weight=9]; 2596 -> 1454[label="",style="solid", color="blue", weight=3]; 1331 -> 340[label="",style="dashed", color="red", weight=0]; 1331[label="vxw280 == vxw260 && vxw281 <= vxw261",fontsize=16,color="magenta"];1331 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1332 -> 836[label="",style="dashed", color="red", weight=0]; 1332[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1332 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1333 -> 837[label="",style="dashed", color="red", weight=0]; 1333[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1333 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1334 -> 838[label="",style="dashed", color="red", weight=0]; 1334[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1334 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1335 -> 839[label="",style="dashed", color="red", weight=0]; 1335[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1335 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1336 -> 840[label="",style="dashed", color="red", weight=0]; 1336[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1336 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1337 -> 841[label="",style="dashed", color="red", weight=0]; 1337[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1337 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1338 -> 842[label="",style="dashed", color="red", weight=0]; 1338[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1338 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1339 -> 843[label="",style="dashed", color="red", weight=0]; 1339[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1339 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1340 -> 844[label="",style="dashed", color="red", weight=0]; 1340[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1340 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1341 -> 845[label="",style="dashed", color="red", weight=0]; 1341[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1341 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1342 -> 846[label="",style="dashed", color="red", weight=0]; 1342[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1342 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1343 -> 847[label="",style="dashed", color="red", weight=0]; 1343[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1343 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1344 -> 848[label="",style="dashed", color="red", weight=0]; 1344[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1344 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1345 -> 849[label="",style="dashed", color="red", weight=0]; 1345[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1345 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1346 -> 836[label="",style="dashed", color="red", weight=0]; 1346[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1346 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1347 -> 837[label="",style="dashed", color="red", weight=0]; 1347[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1347 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1348 -> 838[label="",style="dashed", color="red", weight=0]; 1348[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1348 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1349 -> 839[label="",style="dashed", color="red", weight=0]; 1349[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1349 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1350 -> 840[label="",style="dashed", color="red", weight=0]; 1350[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1350 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1351 -> 841[label="",style="dashed", color="red", weight=0]; 1351[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1351 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1352 -> 842[label="",style="dashed", color="red", weight=0]; 1352[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1352 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1353 -> 843[label="",style="dashed", color="red", weight=0]; 1353[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1353 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1354 -> 844[label="",style="dashed", color="red", weight=0]; 1354[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1354 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1355 -> 845[label="",style="dashed", color="red", weight=0]; 1355[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1355 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1356 -> 846[label="",style="dashed", color="red", weight=0]; 1356[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1356 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1357 -> 847[label="",style="dashed", color="red", weight=0]; 1357[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1357 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1358 -> 848[label="",style="dashed", color="red", weight=0]; 1358[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1358 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1359 -> 849[label="",style="dashed", color="red", weight=0]; 1359[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1359 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1359 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1360 -> 836[label="",style="dashed", color="red", weight=0]; 1360[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1360 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1360 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1361 -> 837[label="",style="dashed", color="red", weight=0]; 1361[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1361 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1361 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1362 -> 838[label="",style="dashed", color="red", weight=0]; 1362[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1362 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1362 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1363 -> 839[label="",style="dashed", color="red", weight=0]; 1363[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1363 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1363 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1364 -> 840[label="",style="dashed", color="red", weight=0]; 1364[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1364 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1365 -> 841[label="",style="dashed", color="red", weight=0]; 1365[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1365 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1366 -> 842[label="",style="dashed", color="red", weight=0]; 1366[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1366 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1367 -> 843[label="",style="dashed", color="red", weight=0]; 1367[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1367 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1368 -> 844[label="",style="dashed", color="red", weight=0]; 1368[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1368 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1369 -> 845[label="",style="dashed", color="red", weight=0]; 1369[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1369 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1370 -> 846[label="",style="dashed", color="red", weight=0]; 1370[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1370 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1371 -> 847[label="",style="dashed", color="red", weight=0]; 1371[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1371 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1372 -> 848[label="",style="dashed", color="red", weight=0]; 1372[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1372 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1373 -> 849[label="",style="dashed", color="red", weight=0]; 1373[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1373 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1374[label="primMulNat vxw3100 vxw40110",fontsize=16,color="burlywood",shape="triangle"];2597[label="vxw3100/Succ vxw31000",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2597[label="",style="solid", color="burlywood", weight=9]; 2597 -> 1541[label="",style="solid", color="burlywood", weight=3]; 2598[label="vxw3100/Zero",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2598[label="",style="solid", color="burlywood", weight=9]; 2598 -> 1542[label="",style="solid", color="burlywood", weight=3]; 1375 -> 1374[label="",style="dashed", color="red", weight=0]; 1375[label="primMulNat vxw3100 vxw40110",fontsize=16,color="magenta"];1375 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1374[label="",style="dashed", color="red", weight=0]; 1376[label="primMulNat vxw3100 vxw40110",fontsize=16,color="magenta"];1376 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1374[label="",style="dashed", color="red", weight=0]; 1377[label="primMulNat vxw3100 vxw40110",fontsize=16,color="magenta"];1377 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1378[label="primCmpNat vxw270 vxw250",fontsize=16,color="burlywood",shape="triangle"];2599[label="vxw270/Succ vxw2700",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2599[label="",style="solid", color="burlywood", weight=9]; 2599 -> 1547[label="",style="solid", color="burlywood", weight=3]; 2600[label="vxw270/Zero",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2600[label="",style="solid", color="burlywood", weight=9]; 2600 -> 1548[label="",style="solid", color="burlywood", weight=3]; 1379[label="vxw27",fontsize=16,color="green",shape="box"];1380[label="vxw25",fontsize=16,color="green",shape="box"];1381[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1381 -> 1549[label="",style="solid", color="black", weight=3]; 1382[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1382 -> 1550[label="",style="solid", color="black", weight=3]; 1383[label="vxw27",fontsize=16,color="green",shape="box"];1384[label="vxw25",fontsize=16,color="green",shape="box"];1385[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1385 -> 1551[label="",style="solid", color="black", weight=3]; 1386[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1386 -> 1552[label="",style="solid", color="black", weight=3]; 1387[label="vxw27",fontsize=16,color="green",shape="box"];1388[label="vxw25",fontsize=16,color="green",shape="box"];1389[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1389 -> 1553[label="",style="solid", color="black", weight=3]; 1390[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1390 -> 1554[label="",style="solid", color="black", weight=3]; 1391[label="primCmpInt (Pos (Succ vxw2700)) (Pos vxw250)",fontsize=16,color="black",shape="box"];1391 -> 1555[label="",style="solid", color="black", weight=3]; 1392[label="primCmpInt (Pos (Succ vxw2700)) (Neg vxw250)",fontsize=16,color="black",shape="box"];1392 -> 1556[label="",style="solid", color="black", weight=3]; 1393[label="primCmpInt (Pos Zero) (Pos vxw250)",fontsize=16,color="burlywood",shape="box"];2601[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1393 -> 2601[label="",style="solid", color="burlywood", weight=9]; 2601 -> 1557[label="",style="solid", color="burlywood", weight=3]; 2602[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1393 -> 2602[label="",style="solid", color="burlywood", weight=9]; 2602 -> 1558[label="",style="solid", color="burlywood", weight=3]; 1394[label="primCmpInt (Pos Zero) (Neg vxw250)",fontsize=16,color="burlywood",shape="box"];2603[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1394 -> 2603[label="",style="solid", color="burlywood", weight=9]; 2603 -> 1559[label="",style="solid", color="burlywood", weight=3]; 2604[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1394 -> 2604[label="",style="solid", color="burlywood", weight=9]; 2604 -> 1560[label="",style="solid", color="burlywood", weight=3]; 1395[label="primCmpInt (Neg (Succ vxw2700)) (Pos vxw250)",fontsize=16,color="black",shape="box"];1395 -> 1561[label="",style="solid", color="black", weight=3]; 1396[label="primCmpInt (Neg (Succ vxw2700)) (Neg vxw250)",fontsize=16,color="black",shape="box"];1396 -> 1562[label="",style="solid", color="black", weight=3]; 1397[label="primCmpInt (Neg Zero) (Pos vxw250)",fontsize=16,color="burlywood",shape="box"];2605[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1397 -> 2605[label="",style="solid", color="burlywood", weight=9]; 2605 -> 1563[label="",style="solid", color="burlywood", weight=3]; 2606[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1397 -> 2606[label="",style="solid", color="burlywood", weight=9]; 2606 -> 1564[label="",style="solid", color="burlywood", weight=3]; 1398[label="primCmpInt (Neg Zero) (Neg vxw250)",fontsize=16,color="burlywood",shape="box"];2607[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1398 -> 2607[label="",style="solid", color="burlywood", weight=9]; 2607 -> 1565[label="",style="solid", color="burlywood", weight=3]; 2608[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1398 -> 2608[label="",style="solid", color="burlywood", weight=9]; 2608 -> 1566[label="",style="solid", color="burlywood", weight=3]; 1399 -> 1046[label="",style="dashed", color="red", weight=0]; 1399[label="compare (vxw270 * vxw251) (vxw250 * vxw271)",fontsize=16,color="magenta"];1399 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1050[label="",style="dashed", color="red", weight=0]; 1400[label="compare (vxw270 * vxw251) (vxw250 * vxw271)",fontsize=16,color="magenta"];1400 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1401[label="vxw270",fontsize=16,color="green",shape="box"];1402[label="vxw250",fontsize=16,color="green",shape="box"];1403[label="vxw27",fontsize=16,color="green",shape="box"];1404[label="vxw25",fontsize=16,color="green",shape="box"];1405[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1405 -> 1571[label="",style="solid", color="black", weight=3]; 1406[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1406 -> 1572[label="",style="solid", color="black", weight=3]; 1407[label="primCmpDouble (Double vxw270 (Pos vxw2710)) (Double vxw250 vxw251)",fontsize=16,color="burlywood",shape="box"];2609[label="vxw251/Pos vxw2510",fontsize=10,color="white",style="solid",shape="box"];1407 -> 2609[label="",style="solid", color="burlywood", weight=9]; 2609 -> 1573[label="",style="solid", color="burlywood", weight=3]; 2610[label="vxw251/Neg vxw2510",fontsize=10,color="white",style="solid",shape="box"];1407 -> 2610[label="",style="solid", color="burlywood", weight=9]; 2610 -> 1574[label="",style="solid", color="burlywood", weight=3]; 1408[label="primCmpDouble (Double vxw270 (Neg vxw2710)) (Double vxw250 vxw251)",fontsize=16,color="burlywood",shape="box"];2611[label="vxw251/Pos vxw2510",fontsize=10,color="white",style="solid",shape="box"];1408 -> 2611[label="",style="solid", color="burlywood", weight=9]; 2611 -> 1575[label="",style="solid", color="burlywood", weight=3]; 2612[label="vxw251/Neg vxw2510",fontsize=10,color="white",style="solid",shape="box"];1408 -> 2612[label="",style="solid", color="burlywood", weight=9]; 2612 -> 1576[label="",style="solid", color="burlywood", weight=3]; 1409[label="vxw27",fontsize=16,color="green",shape="box"];1410[label="vxw25",fontsize=16,color="green",shape="box"];1411[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1411 -> 1577[label="",style="solid", color="black", weight=3]; 1412[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1412 -> 1578[label="",style="solid", color="black", weight=3]; 1413[label="primCmpFloat (Float vxw270 (Pos vxw2710)) (Float vxw250 vxw251)",fontsize=16,color="burlywood",shape="box"];2613[label="vxw251/Pos vxw2510",fontsize=10,color="white",style="solid",shape="box"];1413 -> 2613[label="",style="solid", color="burlywood", weight=9]; 2613 -> 1579[label="",style="solid", color="burlywood", weight=3]; 2614[label="vxw251/Neg vxw2510",fontsize=10,color="white",style="solid",shape="box"];1413 -> 2614[label="",style="solid", color="burlywood", weight=9]; 2614 -> 1580[label="",style="solid", color="burlywood", weight=3]; 1414[label="primCmpFloat (Float vxw270 (Neg vxw2710)) (Float vxw250 vxw251)",fontsize=16,color="burlywood",shape="box"];2615[label="vxw251/Pos vxw2510",fontsize=10,color="white",style="solid",shape="box"];1414 -> 2615[label="",style="solid", color="burlywood", weight=9]; 2615 -> 1581[label="",style="solid", color="burlywood", weight=3]; 2616[label="vxw251/Neg vxw2510",fontsize=10,color="white",style="solid",shape="box"];1414 -> 2616[label="",style="solid", color="burlywood", weight=9]; 2616 -> 1582[label="",style="solid", color="burlywood", weight=3]; 1415[label="vxw27",fontsize=16,color="green",shape="box"];1416[label="vxw25",fontsize=16,color="green",shape="box"];1417[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1417 -> 1583[label="",style="solid", color="black", weight=3]; 1418[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1418 -> 1584[label="",style="solid", color="black", weight=3]; 1420 -> 1064[label="",style="dashed", color="red", weight=0]; 1420[label="compare vxw271 vxw251",fontsize=16,color="magenta"];1420 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1419[label="primCompAux vxw270 vxw250 vxw72",fontsize=16,color="black",shape="triangle"];1419 -> 1587[label="",style="solid", color="black", weight=3]; 1421[label="vxw64",fontsize=16,color="green",shape="box"];1422[label="GT",fontsize=16,color="green",shape="box"];1423[label="not False",fontsize=16,color="black",shape="box"];1423 -> 1588[label="",style="solid", color="black", weight=3]; 1424[label="not True",fontsize=16,color="black",shape="box"];1424 -> 1589[label="",style="solid", color="black", weight=3]; 1425 -> 634[label="",style="dashed", color="red", weight=0]; 1425[label="vxw280 < vxw260",fontsize=16,color="magenta"];1425 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1426 -> 635[label="",style="dashed", color="red", weight=0]; 1426[label="vxw280 < vxw260",fontsize=16,color="magenta"];1426 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1427 -> 636[label="",style="dashed", color="red", weight=0]; 1427[label="vxw280 < vxw260",fontsize=16,color="magenta"];1427 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1428 -> 637[label="",style="dashed", color="red", weight=0]; 1428[label="vxw280 < vxw260",fontsize=16,color="magenta"];1428 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1429 -> 638[label="",style="dashed", color="red", weight=0]; 1429[label="vxw280 < vxw260",fontsize=16,color="magenta"];1429 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1430 -> 639[label="",style="dashed", color="red", weight=0]; 1430[label="vxw280 < vxw260",fontsize=16,color="magenta"];1430 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1431 -> 640[label="",style="dashed", color="red", weight=0]; 1431[label="vxw280 < vxw260",fontsize=16,color="magenta"];1431 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1432 -> 641[label="",style="dashed", color="red", weight=0]; 1432[label="vxw280 < vxw260",fontsize=16,color="magenta"];1432 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1433 -> 642[label="",style="dashed", color="red", weight=0]; 1433[label="vxw280 < vxw260",fontsize=16,color="magenta"];1433 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1434 -> 643[label="",style="dashed", color="red", weight=0]; 1434[label="vxw280 < vxw260",fontsize=16,color="magenta"];1434 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1435 -> 644[label="",style="dashed", color="red", weight=0]; 1435[label="vxw280 < vxw260",fontsize=16,color="magenta"];1435 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1436 -> 645[label="",style="dashed", color="red", weight=0]; 1436[label="vxw280 < vxw260",fontsize=16,color="magenta"];1436 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1437 -> 646[label="",style="dashed", color="red", weight=0]; 1437[label="vxw280 < vxw260",fontsize=16,color="magenta"];1437 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1438 -> 647[label="",style="dashed", color="red", weight=0]; 1438[label="vxw280 < vxw260",fontsize=16,color="magenta"];1438 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1439 -> 629[label="",style="dashed", color="red", weight=0]; 1439[label="vxw281 < vxw261 || vxw281 == vxw261 && vxw282 <= vxw262",fontsize=16,color="magenta"];1439 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1440[label="vxw280 == vxw260",fontsize=16,color="blue",shape="box"];2617[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2617[label="",style="solid", color="blue", weight=9]; 2617 -> 1620[label="",style="solid", color="blue", weight=3]; 2618[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2618[label="",style="solid", color="blue", weight=9]; 2618 -> 1621[label="",style="solid", color="blue", weight=3]; 2619[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2619[label="",style="solid", color="blue", weight=9]; 2619 -> 1622[label="",style="solid", color="blue", weight=3]; 2620[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2620[label="",style="solid", color="blue", weight=9]; 2620 -> 1623[label="",style="solid", color="blue", weight=3]; 2621[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2621[label="",style="solid", color="blue", weight=9]; 2621 -> 1624[label="",style="solid", color="blue", weight=3]; 2622[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2622[label="",style="solid", color="blue", weight=9]; 2622 -> 1625[label="",style="solid", color="blue", weight=3]; 2623[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2623[label="",style="solid", color="blue", weight=9]; 2623 -> 1626[label="",style="solid", color="blue", weight=3]; 2624[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2624[label="",style="solid", color="blue", weight=9]; 2624 -> 1627[label="",style="solid", color="blue", weight=3]; 2625[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2625[label="",style="solid", color="blue", weight=9]; 2625 -> 1628[label="",style="solid", color="blue", weight=3]; 2626[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2626[label="",style="solid", color="blue", weight=9]; 2626 -> 1629[label="",style="solid", color="blue", weight=3]; 2627[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2627[label="",style="solid", color="blue", weight=9]; 2627 -> 1630[label="",style="solid", color="blue", weight=3]; 2628[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2628[label="",style="solid", color="blue", weight=9]; 2628 -> 1631[label="",style="solid", color="blue", weight=3]; 2629[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2629[label="",style="solid", color="blue", weight=9]; 2629 -> 1632[label="",style="solid", color="blue", weight=3]; 2630[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 2630[label="",style="solid", color="blue", weight=9]; 2630 -> 1633[label="",style="solid", color="blue", weight=3]; 1441 -> 634[label="",style="dashed", color="red", weight=0]; 1441[label="vxw280 < vxw260",fontsize=16,color="magenta"];1441 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1442 -> 635[label="",style="dashed", color="red", weight=0]; 1442[label="vxw280 < vxw260",fontsize=16,color="magenta"];1442 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1443 -> 636[label="",style="dashed", color="red", weight=0]; 1443[label="vxw280 < vxw260",fontsize=16,color="magenta"];1443 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1444 -> 637[label="",style="dashed", color="red", weight=0]; 1444[label="vxw280 < vxw260",fontsize=16,color="magenta"];1444 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1445 -> 638[label="",style="dashed", color="red", weight=0]; 1445[label="vxw280 < vxw260",fontsize=16,color="magenta"];1445 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1446 -> 639[label="",style="dashed", color="red", weight=0]; 1446[label="vxw280 < vxw260",fontsize=16,color="magenta"];1446 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1447 -> 640[label="",style="dashed", color="red", weight=0]; 1447[label="vxw280 < vxw260",fontsize=16,color="magenta"];1447 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1448 -> 641[label="",style="dashed", color="red", weight=0]; 1448[label="vxw280 < vxw260",fontsize=16,color="magenta"];1448 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1449 -> 642[label="",style="dashed", color="red", weight=0]; 1449[label="vxw280 < vxw260",fontsize=16,color="magenta"];1449 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1450 -> 643[label="",style="dashed", color="red", weight=0]; 1450[label="vxw280 < vxw260",fontsize=16,color="magenta"];1450 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1451 -> 644[label="",style="dashed", color="red", weight=0]; 1451[label="vxw280 < vxw260",fontsize=16,color="magenta"];1451 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1452 -> 645[label="",style="dashed", color="red", weight=0]; 1452[label="vxw280 < vxw260",fontsize=16,color="magenta"];1452 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1453 -> 646[label="",style="dashed", color="red", weight=0]; 1453[label="vxw280 < vxw260",fontsize=16,color="magenta"];1453 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1454 -> 647[label="",style="dashed", color="red", weight=0]; 1454[label="vxw280 < vxw260",fontsize=16,color="magenta"];1454 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1455[label="vxw281 <= vxw261",fontsize=16,color="blue",shape="box"];2631[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2631[label="",style="solid", color="blue", weight=9]; 2631 -> 1662[label="",style="solid", color="blue", weight=3]; 2632[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2632[label="",style="solid", color="blue", weight=9]; 2632 -> 1663[label="",style="solid", color="blue", weight=3]; 2633[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2633[label="",style="solid", color="blue", weight=9]; 2633 -> 1664[label="",style="solid", color="blue", weight=3]; 2634[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2634[label="",style="solid", color="blue", weight=9]; 2634 -> 1665[label="",style="solid", color="blue", weight=3]; 2635[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2635[label="",style="solid", color="blue", weight=9]; 2635 -> 1666[label="",style="solid", color="blue", weight=3]; 2636[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2636[label="",style="solid", color="blue", weight=9]; 2636 -> 1667[label="",style="solid", color="blue", weight=3]; 2637[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2637[label="",style="solid", color="blue", weight=9]; 2637 -> 1668[label="",style="solid", color="blue", weight=3]; 2638[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2638[label="",style="solid", color="blue", weight=9]; 2638 -> 1669[label="",style="solid", color="blue", weight=3]; 2639[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2639[label="",style="solid", color="blue", weight=9]; 2639 -> 1670[label="",style="solid", color="blue", weight=3]; 2640[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2640[label="",style="solid", color="blue", weight=9]; 2640 -> 1671[label="",style="solid", color="blue", weight=3]; 2641[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2641[label="",style="solid", color="blue", weight=9]; 2641 -> 1672[label="",style="solid", color="blue", weight=3]; 2642[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2642[label="",style="solid", color="blue", weight=9]; 2642 -> 1673[label="",style="solid", color="blue", weight=3]; 2643[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2643[label="",style="solid", color="blue", weight=9]; 2643 -> 1674[label="",style="solid", color="blue", weight=3]; 2644[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2644[label="",style="solid", color="blue", weight=9]; 2644 -> 1675[label="",style="solid", color="blue", weight=3]; 1456[label="vxw280 == vxw260",fontsize=16,color="blue",shape="box"];2645[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2645[label="",style="solid", color="blue", weight=9]; 2645 -> 1676[label="",style="solid", color="blue", weight=3]; 2646[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2646[label="",style="solid", color="blue", weight=9]; 2646 -> 1677[label="",style="solid", color="blue", weight=3]; 2647[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2647[label="",style="solid", color="blue", weight=9]; 2647 -> 1678[label="",style="solid", color="blue", weight=3]; 2648[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2648[label="",style="solid", color="blue", weight=9]; 2648 -> 1679[label="",style="solid", color="blue", weight=3]; 2649[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2649[label="",style="solid", color="blue", weight=9]; 2649 -> 1680[label="",style="solid", color="blue", weight=3]; 2650[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2650[label="",style="solid", color="blue", weight=9]; 2650 -> 1681[label="",style="solid", color="blue", weight=3]; 2651[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2651[label="",style="solid", color="blue", weight=9]; 2651 -> 1682[label="",style="solid", color="blue", weight=3]; 2652[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2652[label="",style="solid", color="blue", weight=9]; 2652 -> 1683[label="",style="solid", color="blue", weight=3]; 2653[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2653[label="",style="solid", color="blue", weight=9]; 2653 -> 1684[label="",style="solid", color="blue", weight=3]; 2654[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2654[label="",style="solid", color="blue", weight=9]; 2654 -> 1685[label="",style="solid", color="blue", weight=3]; 2655[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2655[label="",style="solid", color="blue", weight=9]; 2655 -> 1686[label="",style="solid", color="blue", weight=3]; 2656[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2656[label="",style="solid", color="blue", weight=9]; 2656 -> 1687[label="",style="solid", color="blue", weight=3]; 2657[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2657[label="",style="solid", color="blue", weight=9]; 2657 -> 1688[label="",style="solid", color="blue", weight=3]; 2658[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2658[label="",style="solid", color="blue", weight=9]; 2658 -> 1689[label="",style="solid", color="blue", weight=3]; 1457[label="vxw280",fontsize=16,color="green",shape="box"];1458[label="vxw260",fontsize=16,color="green",shape="box"];1459[label="vxw280",fontsize=16,color="green",shape="box"];1460[label="vxw260",fontsize=16,color="green",shape="box"];1461[label="vxw280",fontsize=16,color="green",shape="box"];1462[label="vxw260",fontsize=16,color="green",shape="box"];1463[label="vxw280",fontsize=16,color="green",shape="box"];1464[label="vxw260",fontsize=16,color="green",shape="box"];1465[label="vxw280",fontsize=16,color="green",shape="box"];1466[label="vxw260",fontsize=16,color="green",shape="box"];1467[label="vxw280",fontsize=16,color="green",shape="box"];1468[label="vxw260",fontsize=16,color="green",shape="box"];1469[label="vxw280",fontsize=16,color="green",shape="box"];1470[label="vxw260",fontsize=16,color="green",shape="box"];1471[label="vxw280",fontsize=16,color="green",shape="box"];1472[label="vxw260",fontsize=16,color="green",shape="box"];1473[label="vxw280",fontsize=16,color="green",shape="box"];1474[label="vxw260",fontsize=16,color="green",shape="box"];1475[label="vxw280",fontsize=16,color="green",shape="box"];1476[label="vxw260",fontsize=16,color="green",shape="box"];1477[label="vxw280",fontsize=16,color="green",shape="box"];1478[label="vxw260",fontsize=16,color="green",shape="box"];1479[label="vxw280",fontsize=16,color="green",shape="box"];1480[label="vxw260",fontsize=16,color="green",shape="box"];1481[label="vxw280",fontsize=16,color="green",shape="box"];1482[label="vxw260",fontsize=16,color="green",shape="box"];1483[label="vxw280",fontsize=16,color="green",shape="box"];1484[label="vxw260",fontsize=16,color="green",shape="box"];1485[label="vxw280",fontsize=16,color="green",shape="box"];1486[label="vxw260",fontsize=16,color="green",shape="box"];1487[label="vxw280",fontsize=16,color="green",shape="box"];1488[label="vxw260",fontsize=16,color="green",shape="box"];1489[label="vxw280",fontsize=16,color="green",shape="box"];1490[label="vxw260",fontsize=16,color="green",shape="box"];1491[label="vxw280",fontsize=16,color="green",shape="box"];1492[label="vxw260",fontsize=16,color="green",shape="box"];1493[label="vxw280",fontsize=16,color="green",shape="box"];1494[label="vxw260",fontsize=16,color="green",shape="box"];1495[label="vxw280",fontsize=16,color="green",shape="box"];1496[label="vxw260",fontsize=16,color="green",shape="box"];1497[label="vxw280",fontsize=16,color="green",shape="box"];1498[label="vxw260",fontsize=16,color="green",shape="box"];1499[label="vxw280",fontsize=16,color="green",shape="box"];1500[label="vxw260",fontsize=16,color="green",shape="box"];1501[label="vxw280",fontsize=16,color="green",shape="box"];1502[label="vxw260",fontsize=16,color="green",shape="box"];1503[label="vxw280",fontsize=16,color="green",shape="box"];1504[label="vxw260",fontsize=16,color="green",shape="box"];1505[label="vxw280",fontsize=16,color="green",shape="box"];1506[label="vxw260",fontsize=16,color="green",shape="box"];1507[label="vxw280",fontsize=16,color="green",shape="box"];1508[label="vxw260",fontsize=16,color="green",shape="box"];1509[label="vxw280",fontsize=16,color="green",shape="box"];1510[label="vxw260",fontsize=16,color="green",shape="box"];1511[label="vxw280",fontsize=16,color="green",shape="box"];1512[label="vxw260",fontsize=16,color="green",shape="box"];1513[label="vxw280",fontsize=16,color="green",shape="box"];1514[label="vxw260",fontsize=16,color="green",shape="box"];1515[label="vxw280",fontsize=16,color="green",shape="box"];1516[label="vxw260",fontsize=16,color="green",shape="box"];1517[label="vxw280",fontsize=16,color="green",shape="box"];1518[label="vxw260",fontsize=16,color="green",shape="box"];1519[label="vxw280",fontsize=16,color="green",shape="box"];1520[label="vxw260",fontsize=16,color="green",shape="box"];1521[label="vxw280",fontsize=16,color="green",shape="box"];1522[label="vxw260",fontsize=16,color="green",shape="box"];1523[label="vxw280",fontsize=16,color="green",shape="box"];1524[label="vxw260",fontsize=16,color="green",shape="box"];1525[label="vxw280",fontsize=16,color="green",shape="box"];1526[label="vxw260",fontsize=16,color="green",shape="box"];1527[label="vxw280",fontsize=16,color="green",shape="box"];1528[label="vxw260",fontsize=16,color="green",shape="box"];1529[label="vxw280",fontsize=16,color="green",shape="box"];1530[label="vxw260",fontsize=16,color="green",shape="box"];1531[label="vxw280",fontsize=16,color="green",shape="box"];1532[label="vxw260",fontsize=16,color="green",shape="box"];1533[label="vxw280",fontsize=16,color="green",shape="box"];1534[label="vxw260",fontsize=16,color="green",shape="box"];1535[label="vxw280",fontsize=16,color="green",shape="box"];1536[label="vxw260",fontsize=16,color="green",shape="box"];1537[label="vxw280",fontsize=16,color="green",shape="box"];1538[label="vxw260",fontsize=16,color="green",shape="box"];1539[label="vxw280",fontsize=16,color="green",shape="box"];1540[label="vxw260",fontsize=16,color="green",shape="box"];1541[label="primMulNat (Succ vxw31000) vxw40110",fontsize=16,color="burlywood",shape="box"];2659[label="vxw40110/Succ vxw401100",fontsize=10,color="white",style="solid",shape="box"];1541 -> 2659[label="",style="solid", color="burlywood", weight=9]; 2659 -> 1690[label="",style="solid", color="burlywood", weight=3]; 2660[label="vxw40110/Zero",fontsize=10,color="white",style="solid",shape="box"];1541 -> 2660[label="",style="solid", color="burlywood", weight=9]; 2660 -> 1691[label="",style="solid", color="burlywood", weight=3]; 1542[label="primMulNat Zero vxw40110",fontsize=16,color="burlywood",shape="box"];2661[label="vxw40110/Succ vxw401100",fontsize=10,color="white",style="solid",shape="box"];1542 -> 2661[label="",style="solid", color="burlywood", weight=9]; 2661 -> 1692[label="",style="solid", color="burlywood", weight=3]; 2662[label="vxw40110/Zero",fontsize=10,color="white",style="solid",shape="box"];1542 -> 2662[label="",style="solid", color="burlywood", weight=9]; 2662 -> 1693[label="",style="solid", color="burlywood", weight=3]; 1543[label="vxw40110",fontsize=16,color="green",shape="box"];1544[label="vxw3100",fontsize=16,color="green",shape="box"];1545[label="vxw40110",fontsize=16,color="green",shape="box"];1546[label="vxw3100",fontsize=16,color="green",shape="box"];1547[label="primCmpNat (Succ vxw2700) vxw250",fontsize=16,color="burlywood",shape="box"];2663[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1547 -> 2663[label="",style="solid", color="burlywood", weight=9]; 2663 -> 1694[label="",style="solid", color="burlywood", weight=3]; 2664[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1547 -> 2664[label="",style="solid", color="burlywood", weight=9]; 2664 -> 1695[label="",style="solid", color="burlywood", weight=3]; 1548[label="primCmpNat Zero vxw250",fontsize=16,color="burlywood",shape="box"];2665[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1548 -> 2665[label="",style="solid", color="burlywood", weight=9]; 2665 -> 1696[label="",style="solid", color="burlywood", weight=3]; 2666[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1548 -> 2666[label="",style="solid", color="burlywood", weight=9]; 2666 -> 1697[label="",style="solid", color="burlywood", weight=3]; 1549 -> 1698[label="",style="dashed", color="red", weight=0]; 1549[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1549 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1550[label="EQ",fontsize=16,color="green",shape="box"];1551 -> 1700[label="",style="dashed", color="red", weight=0]; 1551[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1551 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1552[label="EQ",fontsize=16,color="green",shape="box"];1553 -> 1702[label="",style="dashed", color="red", weight=0]; 1553[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1553 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1554[label="EQ",fontsize=16,color="green",shape="box"];1555 -> 1378[label="",style="dashed", color="red", weight=0]; 1555[label="primCmpNat (Succ vxw2700) vxw250",fontsize=16,color="magenta"];1555 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1556[label="GT",fontsize=16,color="green",shape="box"];1557[label="primCmpInt (Pos Zero) (Pos (Succ vxw2500))",fontsize=16,color="black",shape="box"];1557 -> 1706[label="",style="solid", color="black", weight=3]; 1558[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1558 -> 1707[label="",style="solid", color="black", weight=3]; 1559[label="primCmpInt (Pos Zero) (Neg (Succ vxw2500))",fontsize=16,color="black",shape="box"];1559 -> 1708[label="",style="solid", color="black", weight=3]; 1560[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1560 -> 1709[label="",style="solid", color="black", weight=3]; 1561[label="LT",fontsize=16,color="green",shape="box"];1562 -> 1378[label="",style="dashed", color="red", weight=0]; 1562[label="primCmpNat vxw250 (Succ vxw2700)",fontsize=16,color="magenta"];1562 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1563[label="primCmpInt (Neg Zero) (Pos (Succ vxw2500))",fontsize=16,color="black",shape="box"];1563 -> 1712[label="",style="solid", color="black", weight=3]; 1564[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1564 -> 1713[label="",style="solid", color="black", weight=3]; 1565[label="primCmpInt (Neg Zero) (Neg (Succ vxw2500))",fontsize=16,color="black",shape="box"];1565 -> 1714[label="",style="solid", color="black", weight=3]; 1566[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1566 -> 1715[label="",style="solid", color="black", weight=3]; 1567 -> 712[label="",style="dashed", color="red", weight=0]; 1567[label="vxw270 * vxw251",fontsize=16,color="magenta"];1567 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1568 -> 712[label="",style="dashed", color="red", weight=0]; 1568[label="vxw250 * vxw271",fontsize=16,color="magenta"];1568 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1569[label="vxw270 * vxw251",fontsize=16,color="burlywood",shape="triangle"];2667[label="vxw270/Integer vxw2700",fontsize=10,color="white",style="solid",shape="box"];1569 -> 2667[label="",style="solid", color="burlywood", weight=9]; 2667 -> 1720[label="",style="solid", color="burlywood", weight=3]; 1570 -> 1569[label="",style="dashed", color="red", weight=0]; 1570[label="vxw250 * vxw271",fontsize=16,color="magenta"];1570 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1723[label="",style="dashed", color="red", weight=0]; 1571[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1571 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1572[label="EQ",fontsize=16,color="green",shape="box"];1573[label="primCmpDouble (Double vxw270 (Pos vxw2710)) (Double vxw250 (Pos vxw2510))",fontsize=16,color="black",shape="box"];1573 -> 1725[label="",style="solid", color="black", weight=3]; 1574[label="primCmpDouble (Double vxw270 (Pos vxw2710)) (Double vxw250 (Neg vxw2510))",fontsize=16,color="black",shape="box"];1574 -> 1726[label="",style="solid", color="black", weight=3]; 1575[label="primCmpDouble (Double vxw270 (Neg vxw2710)) (Double vxw250 (Pos vxw2510))",fontsize=16,color="black",shape="box"];1575 -> 1727[label="",style="solid", color="black", weight=3]; 1576[label="primCmpDouble (Double vxw270 (Neg vxw2710)) (Double vxw250 (Neg vxw2510))",fontsize=16,color="black",shape="box"];1576 -> 1728[label="",style="solid", color="black", weight=3]; 1577 -> 1729[label="",style="dashed", color="red", weight=0]; 1577[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1577 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1578[label="EQ",fontsize=16,color="green",shape="box"];1579[label="primCmpFloat (Float vxw270 (Pos vxw2710)) (Float vxw250 (Pos vxw2510))",fontsize=16,color="black",shape="box"];1579 -> 1731[label="",style="solid", color="black", weight=3]; 1580[label="primCmpFloat (Float vxw270 (Pos vxw2710)) (Float vxw250 (Neg vxw2510))",fontsize=16,color="black",shape="box"];1580 -> 1732[label="",style="solid", color="black", weight=3]; 1581[label="primCmpFloat (Float vxw270 (Neg vxw2710)) (Float vxw250 (Pos vxw2510))",fontsize=16,color="black",shape="box"];1581 -> 1733[label="",style="solid", color="black", weight=3]; 1582[label="primCmpFloat (Float vxw270 (Neg vxw2710)) (Float vxw250 (Neg vxw2510))",fontsize=16,color="black",shape="box"];1582 -> 1734[label="",style="solid", color="black", weight=3]; 1583 -> 1735[label="",style="dashed", color="red", weight=0]; 1583[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1583 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1584[label="EQ",fontsize=16,color="green",shape="box"];1585[label="vxw271",fontsize=16,color="green",shape="box"];1586[label="vxw251",fontsize=16,color="green",shape="box"];1587 -> 1737[label="",style="dashed", color="red", weight=0]; 1587[label="primCompAux0 vxw72 (compare vxw270 vxw250)",fontsize=16,color="magenta"];1587 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1588[label="True",fontsize=16,color="green",shape="box"];1589[label="False",fontsize=16,color="green",shape="box"];1590[label="vxw280",fontsize=16,color="green",shape="box"];1591[label="vxw260",fontsize=16,color="green",shape="box"];1592[label="vxw280",fontsize=16,color="green",shape="box"];1593[label="vxw260",fontsize=16,color="green",shape="box"];1594[label="vxw280",fontsize=16,color="green",shape="box"];1595[label="vxw260",fontsize=16,color="green",shape="box"];1596[label="vxw280",fontsize=16,color="green",shape="box"];1597[label="vxw260",fontsize=16,color="green",shape="box"];1598[label="vxw280",fontsize=16,color="green",shape="box"];1599[label="vxw260",fontsize=16,color="green",shape="box"];1600[label="vxw280",fontsize=16,color="green",shape="box"];1601[label="vxw260",fontsize=16,color="green",shape="box"];1602[label="vxw280",fontsize=16,color="green",shape="box"];1603[label="vxw260",fontsize=16,color="green",shape="box"];1604[label="vxw280",fontsize=16,color="green",shape="box"];1605[label="vxw260",fontsize=16,color="green",shape="box"];1606[label="vxw280",fontsize=16,color="green",shape="box"];1607[label="vxw260",fontsize=16,color="green",shape="box"];1608[label="vxw280",fontsize=16,color="green",shape="box"];1609[label="vxw260",fontsize=16,color="green",shape="box"];1610[label="vxw280",fontsize=16,color="green",shape="box"];1611[label="vxw260",fontsize=16,color="green",shape="box"];1612[label="vxw280",fontsize=16,color="green",shape="box"];1613[label="vxw260",fontsize=16,color="green",shape="box"];1614[label="vxw280",fontsize=16,color="green",shape="box"];1615[label="vxw260",fontsize=16,color="green",shape="box"];1616[label="vxw280",fontsize=16,color="green",shape="box"];1617[label="vxw260",fontsize=16,color="green",shape="box"];1618[label="vxw281 < vxw261",fontsize=16,color="blue",shape="box"];2668[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2668[label="",style="solid", color="blue", weight=9]; 2668 -> 1740[label="",style="solid", color="blue", weight=3]; 2669[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2669[label="",style="solid", color="blue", weight=9]; 2669 -> 1741[label="",style="solid", color="blue", weight=3]; 2670[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2670[label="",style="solid", color="blue", weight=9]; 2670 -> 1742[label="",style="solid", color="blue", weight=3]; 2671[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2671[label="",style="solid", color="blue", weight=9]; 2671 -> 1743[label="",style="solid", color="blue", weight=3]; 2672[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2672[label="",style="solid", color="blue", weight=9]; 2672 -> 1744[label="",style="solid", color="blue", weight=3]; 2673[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2673[label="",style="solid", color="blue", weight=9]; 2673 -> 1745[label="",style="solid", color="blue", weight=3]; 2674[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2674[label="",style="solid", color="blue", weight=9]; 2674 -> 1746[label="",style="solid", color="blue", weight=3]; 2675[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2675[label="",style="solid", color="blue", weight=9]; 2675 -> 1747[label="",style="solid", color="blue", weight=3]; 2676[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2676[label="",style="solid", color="blue", weight=9]; 2676 -> 1748[label="",style="solid", color="blue", weight=3]; 2677[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2677[label="",style="solid", color="blue", weight=9]; 2677 -> 1749[label="",style="solid", color="blue", weight=3]; 2678[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2678[label="",style="solid", color="blue", weight=9]; 2678 -> 1750[label="",style="solid", color="blue", weight=3]; 2679[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2679[label="",style="solid", color="blue", weight=9]; 2679 -> 1751[label="",style="solid", color="blue", weight=3]; 2680[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2680[label="",style="solid", color="blue", weight=9]; 2680 -> 1752[label="",style="solid", color="blue", weight=3]; 2681[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2681[label="",style="solid", color="blue", weight=9]; 2681 -> 1753[label="",style="solid", color="blue", weight=3]; 1619 -> 340[label="",style="dashed", color="red", weight=0]; 1619[label="vxw281 == vxw261 && vxw282 <= vxw262",fontsize=16,color="magenta"];1619 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1620 -> 354[label="",style="dashed", color="red", weight=0]; 1620[label="vxw280 == vxw260",fontsize=16,color="magenta"];1620 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1621 -> 356[label="",style="dashed", color="red", weight=0]; 1621[label="vxw280 == vxw260",fontsize=16,color="magenta"];1621 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1622 -> 346[label="",style="dashed", color="red", weight=0]; 1622[label="vxw280 == vxw260",fontsize=16,color="magenta"];1622 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1623 -> 348[label="",style="dashed", color="red", weight=0]; 1623[label="vxw280 == vxw260",fontsize=16,color="magenta"];1623 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1624 -> 345[label="",style="dashed", color="red", weight=0]; 1624[label="vxw280 == vxw260",fontsize=16,color="magenta"];1624 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1625 -> 355[label="",style="dashed", color="red", weight=0]; 1625[label="vxw280 == vxw260",fontsize=16,color="magenta"];1625 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1626 -> 352[label="",style="dashed", color="red", weight=0]; 1626[label="vxw280 == vxw260",fontsize=16,color="magenta"];1626 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1627 -> 351[label="",style="dashed", color="red", weight=0]; 1627[label="vxw280 == vxw260",fontsize=16,color="magenta"];1627 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1627 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1628 -> 347[label="",style="dashed", color="red", weight=0]; 1628[label="vxw280 == vxw260",fontsize=16,color="magenta"];1628 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1628 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1629 -> 358[label="",style="dashed", color="red", weight=0]; 1629[label="vxw280 == vxw260",fontsize=16,color="magenta"];1629 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1630 -> 353[label="",style="dashed", color="red", weight=0]; 1630[label="vxw280 == vxw260",fontsize=16,color="magenta"];1630 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1631 -> 349[label="",style="dashed", color="red", weight=0]; 1631[label="vxw280 == vxw260",fontsize=16,color="magenta"];1631 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1632 -> 357[label="",style="dashed", color="red", weight=0]; 1632[label="vxw280 == vxw260",fontsize=16,color="magenta"];1632 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1633 -> 350[label="",style="dashed", color="red", weight=0]; 1633[label="vxw280 == vxw260",fontsize=16,color="magenta"];1633 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1634[label="vxw280",fontsize=16,color="green",shape="box"];1635[label="vxw260",fontsize=16,color="green",shape="box"];1636[label="vxw280",fontsize=16,color="green",shape="box"];1637[label="vxw260",fontsize=16,color="green",shape="box"];1638[label="vxw280",fontsize=16,color="green",shape="box"];1639[label="vxw260",fontsize=16,color="green",shape="box"];1640[label="vxw280",fontsize=16,color="green",shape="box"];1641[label="vxw260",fontsize=16,color="green",shape="box"];1642[label="vxw280",fontsize=16,color="green",shape="box"];1643[label="vxw260",fontsize=16,color="green",shape="box"];1644[label="vxw280",fontsize=16,color="green",shape="box"];1645[label="vxw260",fontsize=16,color="green",shape="box"];1646[label="vxw280",fontsize=16,color="green",shape="box"];1647[label="vxw260",fontsize=16,color="green",shape="box"];1648[label="vxw280",fontsize=16,color="green",shape="box"];1649[label="vxw260",fontsize=16,color="green",shape="box"];1650[label="vxw280",fontsize=16,color="green",shape="box"];1651[label="vxw260",fontsize=16,color="green",shape="box"];1652[label="vxw280",fontsize=16,color="green",shape="box"];1653[label="vxw260",fontsize=16,color="green",shape="box"];1654[label="vxw280",fontsize=16,color="green",shape="box"];1655[label="vxw260",fontsize=16,color="green",shape="box"];1656[label="vxw280",fontsize=16,color="green",shape="box"];1657[label="vxw260",fontsize=16,color="green",shape="box"];1658[label="vxw280",fontsize=16,color="green",shape="box"];1659[label="vxw260",fontsize=16,color="green",shape="box"];1660[label="vxw280",fontsize=16,color="green",shape="box"];1661[label="vxw260",fontsize=16,color="green",shape="box"];1662 -> 836[label="",style="dashed", color="red", weight=0]; 1662[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1662 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1663 -> 837[label="",style="dashed", color="red", weight=0]; 1663[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1663 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1664 -> 838[label="",style="dashed", color="red", weight=0]; 1664[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1664 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1665 -> 839[label="",style="dashed", color="red", weight=0]; 1665[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1665 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1665 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1666 -> 840[label="",style="dashed", color="red", weight=0]; 1666[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1666 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1666 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1667 -> 841[label="",style="dashed", color="red", weight=0]; 1667[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1667 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1668 -> 842[label="",style="dashed", color="red", weight=0]; 1668[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1668 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1668 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1669 -> 843[label="",style="dashed", color="red", weight=0]; 1669[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1669 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1669 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1670 -> 844[label="",style="dashed", color="red", weight=0]; 1670[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1670 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1670 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1671 -> 845[label="",style="dashed", color="red", weight=0]; 1671[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1671 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1671 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1672 -> 846[label="",style="dashed", color="red", weight=0]; 1672[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1672 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1673 -> 847[label="",style="dashed", color="red", weight=0]; 1673[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1673 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1673 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1674 -> 848[label="",style="dashed", color="red", weight=0]; 1674[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1674 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1674 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1675 -> 849[label="",style="dashed", color="red", weight=0]; 1675[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1675 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1675 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1676 -> 354[label="",style="dashed", color="red", weight=0]; 1676[label="vxw280 == vxw260",fontsize=16,color="magenta"];1676 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1677 -> 356[label="",style="dashed", color="red", weight=0]; 1677[label="vxw280 == vxw260",fontsize=16,color="magenta"];1677 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1677 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1678 -> 346[label="",style="dashed", color="red", weight=0]; 1678[label="vxw280 == vxw260",fontsize=16,color="magenta"];1678 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1678 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1679 -> 348[label="",style="dashed", color="red", weight=0]; 1679[label="vxw280 == vxw260",fontsize=16,color="magenta"];1679 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1679 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1680 -> 345[label="",style="dashed", color="red", weight=0]; 1680[label="vxw280 == vxw260",fontsize=16,color="magenta"];1680 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1680 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1681 -> 355[label="",style="dashed", color="red", weight=0]; 1681[label="vxw280 == vxw260",fontsize=16,color="magenta"];1681 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1681 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1682 -> 352[label="",style="dashed", color="red", weight=0]; 1682[label="vxw280 == vxw260",fontsize=16,color="magenta"];1682 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1682 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1683 -> 351[label="",style="dashed", color="red", weight=0]; 1683[label="vxw280 == vxw260",fontsize=16,color="magenta"];1683 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1683 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1684 -> 347[label="",style="dashed", color="red", weight=0]; 1684[label="vxw280 == vxw260",fontsize=16,color="magenta"];1684 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1684 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1685 -> 358[label="",style="dashed", color="red", weight=0]; 1685[label="vxw280 == vxw260",fontsize=16,color="magenta"];1685 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1685 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1686 -> 353[label="",style="dashed", color="red", weight=0]; 1686[label="vxw280 == vxw260",fontsize=16,color="magenta"];1686 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1686 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1687 -> 349[label="",style="dashed", color="red", weight=0]; 1687[label="vxw280 == vxw260",fontsize=16,color="magenta"];1687 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1687 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1688 -> 357[label="",style="dashed", color="red", weight=0]; 1688[label="vxw280 == vxw260",fontsize=16,color="magenta"];1688 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1688 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1689 -> 350[label="",style="dashed", color="red", weight=0]; 1689[label="vxw280 == vxw260",fontsize=16,color="magenta"];1689 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1689 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1690[label="primMulNat (Succ vxw31000) (Succ vxw401100)",fontsize=16,color="black",shape="box"];1690 -> 1840[label="",style="solid", color="black", weight=3]; 1691[label="primMulNat (Succ vxw31000) Zero",fontsize=16,color="black",shape="box"];1691 -> 1841[label="",style="solid", color="black", weight=3]; 1692[label="primMulNat Zero (Succ vxw401100)",fontsize=16,color="black",shape="box"];1692 -> 1842[label="",style="solid", color="black", weight=3]; 1693[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1693 -> 1843[label="",style="solid", color="black", weight=3]; 1694[label="primCmpNat (Succ vxw2700) (Succ vxw2500)",fontsize=16,color="black",shape="box"];1694 -> 1844[label="",style="solid", color="black", weight=3]; 1695[label="primCmpNat (Succ vxw2700) Zero",fontsize=16,color="black",shape="box"];1695 -> 1845[label="",style="solid", color="black", weight=3]; 1696[label="primCmpNat Zero (Succ vxw2500)",fontsize=16,color="black",shape="box"];1696 -> 1846[label="",style="solid", color="black", weight=3]; 1697[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1697 -> 1847[label="",style="solid", color="black", weight=3]; 1699 -> 837[label="",style="dashed", color="red", weight=0]; 1699[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1699 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1699 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1698[label="compare1 vxw27 vxw25 vxw73",fontsize=16,color="burlywood",shape="triangle"];2682[label="vxw73/False",fontsize=10,color="white",style="solid",shape="box"];1698 -> 2682[label="",style="solid", color="burlywood", weight=9]; 2682 -> 1850[label="",style="solid", color="burlywood", weight=3]; 2683[label="vxw73/True",fontsize=10,color="white",style="solid",shape="box"];1698 -> 2683[label="",style="solid", color="burlywood", weight=9]; 2683 -> 1851[label="",style="solid", color="burlywood", weight=3]; 1701 -> 838[label="",style="dashed", color="red", weight=0]; 1701[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1701 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1701 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1700[label="compare1 vxw27 vxw25 vxw74",fontsize=16,color="burlywood",shape="triangle"];2684[label="vxw74/False",fontsize=10,color="white",style="solid",shape="box"];1700 -> 2684[label="",style="solid", color="burlywood", weight=9]; 2684 -> 1854[label="",style="solid", color="burlywood", weight=3]; 2685[label="vxw74/True",fontsize=10,color="white",style="solid",shape="box"];1700 -> 2685[label="",style="solid", color="burlywood", weight=9]; 2685 -> 1855[label="",style="solid", color="burlywood", weight=3]; 1703 -> 839[label="",style="dashed", color="red", weight=0]; 1703[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1703 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1703 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1702[label="compare1 vxw27 vxw25 vxw75",fontsize=16,color="burlywood",shape="triangle"];2686[label="vxw75/False",fontsize=10,color="white",style="solid",shape="box"];1702 -> 2686[label="",style="solid", color="burlywood", weight=9]; 2686 -> 1858[label="",style="solid", color="burlywood", weight=3]; 2687[label="vxw75/True",fontsize=10,color="white",style="solid",shape="box"];1702 -> 2687[label="",style="solid", color="burlywood", weight=9]; 2687 -> 1859[label="",style="solid", color="burlywood", weight=3]; 1704[label="Succ vxw2700",fontsize=16,color="green",shape="box"];1705[label="vxw250",fontsize=16,color="green",shape="box"];1706 -> 1378[label="",style="dashed", color="red", weight=0]; 1706[label="primCmpNat Zero (Succ vxw2500)",fontsize=16,color="magenta"];1706 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1706 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1707[label="EQ",fontsize=16,color="green",shape="box"];1708[label="GT",fontsize=16,color="green",shape="box"];1709[label="EQ",fontsize=16,color="green",shape="box"];1710[label="vxw250",fontsize=16,color="green",shape="box"];1711[label="Succ vxw2700",fontsize=16,color="green",shape="box"];1712[label="LT",fontsize=16,color="green",shape="box"];1713[label="EQ",fontsize=16,color="green",shape="box"];1714 -> 1378[label="",style="dashed", color="red", weight=0]; 1714[label="primCmpNat (Succ vxw2500) Zero",fontsize=16,color="magenta"];1714 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1714 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1715[label="EQ",fontsize=16,color="green",shape="box"];1716[label="vxw270",fontsize=16,color="green",shape="box"];1717[label="vxw251",fontsize=16,color="green",shape="box"];1718[label="vxw250",fontsize=16,color="green",shape="box"];1719[label="vxw271",fontsize=16,color="green",shape="box"];1720[label="Integer vxw2700 * vxw251",fontsize=16,color="burlywood",shape="box"];2688[label="vxw251/Integer vxw2510",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2688[label="",style="solid", color="burlywood", weight=9]; 2688 -> 1864[label="",style="solid", color="burlywood", weight=3]; 1721[label="vxw250",fontsize=16,color="green",shape="box"];1722[label="vxw271",fontsize=16,color="green",shape="box"];1724 -> 843[label="",style="dashed", color="red", weight=0]; 1724[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1724 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1723[label="compare1 vxw27 vxw25 vxw76",fontsize=16,color="burlywood",shape="triangle"];2689[label="vxw76/False",fontsize=10,color="white",style="solid",shape="box"];1723 -> 2689[label="",style="solid", color="burlywood", weight=9]; 2689 -> 1867[label="",style="solid", color="burlywood", weight=3]; 2690[label="vxw76/True",fontsize=10,color="white",style="solid",shape="box"];1723 -> 2690[label="",style="solid", color="burlywood", weight=9]; 2690 -> 1868[label="",style="solid", color="burlywood", weight=3]; 1725 -> 1046[label="",style="dashed", color="red", weight=0]; 1725[label="compare (vxw270 * Pos vxw2510) (Pos vxw2710 * vxw250)",fontsize=16,color="magenta"];1725 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1726 -> 1046[label="",style="dashed", color="red", weight=0]; 1726[label="compare (vxw270 * Pos vxw2510) (Neg vxw2710 * vxw250)",fontsize=16,color="magenta"];1726 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1726 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1727 -> 1046[label="",style="dashed", color="red", weight=0]; 1727[label="compare (vxw270 * Neg vxw2510) (Pos vxw2710 * vxw250)",fontsize=16,color="magenta"];1727 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1727 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1728 -> 1046[label="",style="dashed", color="red", weight=0]; 1728[label="compare (vxw270 * Neg vxw2510) (Neg vxw2710 * vxw250)",fontsize=16,color="magenta"];1728 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1728 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1730 -> 846[label="",style="dashed", color="red", weight=0]; 1730[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1730 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1730 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1729[label="compare1 vxw27 vxw25 vxw77",fontsize=16,color="burlywood",shape="triangle"];2691[label="vxw77/False",fontsize=10,color="white",style="solid",shape="box"];1729 -> 2691[label="",style="solid", color="burlywood", weight=9]; 2691 -> 1879[label="",style="solid", color="burlywood", weight=3]; 2692[label="vxw77/True",fontsize=10,color="white",style="solid",shape="box"];1729 -> 2692[label="",style="solid", color="burlywood", weight=9]; 2692 -> 1880[label="",style="solid", color="burlywood", weight=3]; 1731 -> 1046[label="",style="dashed", color="red", weight=0]; 1731[label="compare (vxw270 * Pos vxw2510) (Pos vxw2710 * vxw250)",fontsize=16,color="magenta"];1731 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1731 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1046[label="",style="dashed", color="red", weight=0]; 1732[label="compare (vxw270 * Pos vxw2510) (Neg vxw2710 * vxw250)",fontsize=16,color="magenta"];1732 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1046[label="",style="dashed", color="red", weight=0]; 1733[label="compare (vxw270 * Neg vxw2510) (Pos vxw2710 * vxw250)",fontsize=16,color="magenta"];1733 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1046[label="",style="dashed", color="red", weight=0]; 1734[label="compare (vxw270 * Neg vxw2510) (Neg vxw2710 * vxw250)",fontsize=16,color="magenta"];1734 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1736 -> 848[label="",style="dashed", color="red", weight=0]; 1736[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1736 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1736 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1735[label="compare1 vxw27 vxw25 vxw78",fontsize=16,color="burlywood",shape="triangle"];2693[label="vxw78/False",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2693[label="",style="solid", color="burlywood", weight=9]; 2693 -> 1891[label="",style="solid", color="burlywood", weight=3]; 2694[label="vxw78/True",fontsize=10,color="white",style="solid",shape="box"];1735 -> 2694[label="",style="solid", color="burlywood", weight=9]; 2694 -> 1892[label="",style="solid", color="burlywood", weight=3]; 1738[label="vxw72",fontsize=16,color="green",shape="box"];1739[label="compare vxw270 vxw250",fontsize=16,color="blue",shape="box"];2695[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2695[label="",style="solid", color="blue", weight=9]; 2695 -> 1893[label="",style="solid", color="blue", weight=3]; 2696[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2696[label="",style="solid", color="blue", weight=9]; 2696 -> 1894[label="",style="solid", color="blue", weight=3]; 2697[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2697[label="",style="solid", color="blue", weight=9]; 2697 -> 1895[label="",style="solid", color="blue", weight=3]; 2698[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2698[label="",style="solid", color="blue", weight=9]; 2698 -> 1896[label="",style="solid", color="blue", weight=3]; 2699[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2699[label="",style="solid", color="blue", weight=9]; 2699 -> 1897[label="",style="solid", color="blue", weight=3]; 2700[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2700[label="",style="solid", color="blue", weight=9]; 2700 -> 1898[label="",style="solid", color="blue", weight=3]; 2701[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2701[label="",style="solid", color="blue", weight=9]; 2701 -> 1899[label="",style="solid", color="blue", weight=3]; 2702[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2702[label="",style="solid", color="blue", weight=9]; 2702 -> 1900[label="",style="solid", color="blue", weight=3]; 2703[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2703[label="",style="solid", color="blue", weight=9]; 2703 -> 1901[label="",style="solid", color="blue", weight=3]; 2704[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2704[label="",style="solid", color="blue", weight=9]; 2704 -> 1902[label="",style="solid", color="blue", weight=3]; 2705[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2705[label="",style="solid", color="blue", weight=9]; 2705 -> 1903[label="",style="solid", color="blue", weight=3]; 2706[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2706[label="",style="solid", color="blue", weight=9]; 2706 -> 1904[label="",style="solid", color="blue", weight=3]; 2707[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2707[label="",style="solid", color="blue", weight=9]; 2707 -> 1905[label="",style="solid", color="blue", weight=3]; 2708[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2708[label="",style="solid", color="blue", weight=9]; 2708 -> 1906[label="",style="solid", color="blue", weight=3]; 1737[label="primCompAux0 vxw82 vxw83",fontsize=16,color="burlywood",shape="triangle"];2709[label="vxw83/LT",fontsize=10,color="white",style="solid",shape="box"];1737 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 1907[label="",style="solid", color="burlywood", weight=3]; 2710[label="vxw83/EQ",fontsize=10,color="white",style="solid",shape="box"];1737 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 1908[label="",style="solid", color="burlywood", weight=3]; 2711[label="vxw83/GT",fontsize=10,color="white",style="solid",shape="box"];1737 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 1909[label="",style="solid", color="burlywood", weight=3]; 1740 -> 634[label="",style="dashed", color="red", weight=0]; 1740[label="vxw281 < vxw261",fontsize=16,color="magenta"];1740 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1740 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1741 -> 635[label="",style="dashed", color="red", weight=0]; 1741[label="vxw281 < vxw261",fontsize=16,color="magenta"];1741 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1741 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1742 -> 636[label="",style="dashed", color="red", weight=0]; 1742[label="vxw281 < vxw261",fontsize=16,color="magenta"];1742 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1743 -> 637[label="",style="dashed", color="red", weight=0]; 1743[label="vxw281 < vxw261",fontsize=16,color="magenta"];1743 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1744 -> 638[label="",style="dashed", color="red", weight=0]; 1744[label="vxw281 < vxw261",fontsize=16,color="magenta"];1744 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1745 -> 639[label="",style="dashed", color="red", weight=0]; 1745[label="vxw281 < vxw261",fontsize=16,color="magenta"];1745 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1746 -> 640[label="",style="dashed", color="red", weight=0]; 1746[label="vxw281 < vxw261",fontsize=16,color="magenta"];1746 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1747 -> 641[label="",style="dashed", color="red", weight=0]; 1747[label="vxw281 < vxw261",fontsize=16,color="magenta"];1747 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1748 -> 642[label="",style="dashed", color="red", weight=0]; 1748[label="vxw281 < vxw261",fontsize=16,color="magenta"];1748 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1749 -> 643[label="",style="dashed", color="red", weight=0]; 1749[label="vxw281 < vxw261",fontsize=16,color="magenta"];1749 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1750 -> 644[label="",style="dashed", color="red", weight=0]; 1750[label="vxw281 < vxw261",fontsize=16,color="magenta"];1750 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1751 -> 645[label="",style="dashed", color="red", weight=0]; 1751[label="vxw281 < vxw261",fontsize=16,color="magenta"];1751 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1752 -> 646[label="",style="dashed", color="red", weight=0]; 1752[label="vxw281 < vxw261",fontsize=16,color="magenta"];1752 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1753 -> 647[label="",style="dashed", color="red", weight=0]; 1753[label="vxw281 < vxw261",fontsize=16,color="magenta"];1753 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1754[label="vxw282 <= vxw262",fontsize=16,color="blue",shape="box"];2712[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2712[label="",style="solid", color="blue", weight=9]; 2712 -> 1938[label="",style="solid", color="blue", weight=3]; 2713[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2713[label="",style="solid", color="blue", weight=9]; 2713 -> 1939[label="",style="solid", color="blue", weight=3]; 2714[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2714[label="",style="solid", color="blue", weight=9]; 2714 -> 1940[label="",style="solid", color="blue", weight=3]; 2715[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2715[label="",style="solid", color="blue", weight=9]; 2715 -> 1941[label="",style="solid", color="blue", weight=3]; 2716[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2716[label="",style="solid", color="blue", weight=9]; 2716 -> 1942[label="",style="solid", color="blue", weight=3]; 2717[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2717[label="",style="solid", color="blue", weight=9]; 2717 -> 1943[label="",style="solid", color="blue", weight=3]; 2718[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2718[label="",style="solid", color="blue", weight=9]; 2718 -> 1944[label="",style="solid", color="blue", weight=3]; 2719[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2719[label="",style="solid", color="blue", weight=9]; 2719 -> 1945[label="",style="solid", color="blue", weight=3]; 2720[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2720[label="",style="solid", color="blue", weight=9]; 2720 -> 1946[label="",style="solid", color="blue", weight=3]; 2721[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2721[label="",style="solid", color="blue", weight=9]; 2721 -> 1947[label="",style="solid", color="blue", weight=3]; 2722[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2722[label="",style="solid", color="blue", weight=9]; 2722 -> 1948[label="",style="solid", color="blue", weight=3]; 2723[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2723[label="",style="solid", color="blue", weight=9]; 2723 -> 1949[label="",style="solid", color="blue", weight=3]; 2724[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2724[label="",style="solid", color="blue", weight=9]; 2724 -> 1950[label="",style="solid", color="blue", weight=3]; 2725[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2725[label="",style="solid", color="blue", weight=9]; 2725 -> 1951[label="",style="solid", color="blue", weight=3]; 1755[label="vxw281 == vxw261",fontsize=16,color="blue",shape="box"];2726[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2726[label="",style="solid", color="blue", weight=9]; 2726 -> 1952[label="",style="solid", color="blue", weight=3]; 2727[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2727[label="",style="solid", color="blue", weight=9]; 2727 -> 1953[label="",style="solid", color="blue", weight=3]; 2728[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2728[label="",style="solid", color="blue", weight=9]; 2728 -> 1954[label="",style="solid", color="blue", weight=3]; 2729[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2729[label="",style="solid", color="blue", weight=9]; 2729 -> 1955[label="",style="solid", color="blue", weight=3]; 2730[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2730[label="",style="solid", color="blue", weight=9]; 2730 -> 1956[label="",style="solid", color="blue", weight=3]; 2731[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2731[label="",style="solid", color="blue", weight=9]; 2731 -> 1957[label="",style="solid", color="blue", weight=3]; 2732[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2732[label="",style="solid", color="blue", weight=9]; 2732 -> 1958[label="",style="solid", color="blue", weight=3]; 2733[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2733[label="",style="solid", color="blue", weight=9]; 2733 -> 1959[label="",style="solid", color="blue", weight=3]; 2734[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2734[label="",style="solid", color="blue", weight=9]; 2734 -> 1960[label="",style="solid", color="blue", weight=3]; 2735[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2735[label="",style="solid", color="blue", weight=9]; 2735 -> 1961[label="",style="solid", color="blue", weight=3]; 2736[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2736[label="",style="solid", color="blue", weight=9]; 2736 -> 1962[label="",style="solid", color="blue", weight=3]; 2737[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2737[label="",style="solid", color="blue", weight=9]; 2737 -> 1963[label="",style="solid", color="blue", weight=3]; 2738[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2738[label="",style="solid", color="blue", weight=9]; 2738 -> 1964[label="",style="solid", color="blue", weight=3]; 2739[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1755 -> 2739[label="",style="solid", color="blue", weight=9]; 2739 -> 1965[label="",style="solid", color="blue", weight=3]; 1756[label="vxw280",fontsize=16,color="green",shape="box"];1757[label="vxw260",fontsize=16,color="green",shape="box"];1758[label="vxw280",fontsize=16,color="green",shape="box"];1759[label="vxw260",fontsize=16,color="green",shape="box"];1760[label="vxw280",fontsize=16,color="green",shape="box"];1761[label="vxw260",fontsize=16,color="green",shape="box"];1762[label="vxw280",fontsize=16,color="green",shape="box"];1763[label="vxw260",fontsize=16,color="green",shape="box"];1764[label="vxw280",fontsize=16,color="green",shape="box"];1765[label="vxw260",fontsize=16,color="green",shape="box"];1766[label="vxw280",fontsize=16,color="green",shape="box"];1767[label="vxw260",fontsize=16,color="green",shape="box"];1768[label="vxw280",fontsize=16,color="green",shape="box"];1769[label="vxw260",fontsize=16,color="green",shape="box"];1770[label="vxw280",fontsize=16,color="green",shape="box"];1771[label="vxw260",fontsize=16,color="green",shape="box"];1772[label="vxw280",fontsize=16,color="green",shape="box"];1773[label="vxw260",fontsize=16,color="green",shape="box"];1774[label="vxw280",fontsize=16,color="green",shape="box"];1775[label="vxw260",fontsize=16,color="green",shape="box"];1776[label="vxw280",fontsize=16,color="green",shape="box"];1777[label="vxw260",fontsize=16,color="green",shape="box"];1778[label="vxw280",fontsize=16,color="green",shape="box"];1779[label="vxw260",fontsize=16,color="green",shape="box"];1780[label="vxw280",fontsize=16,color="green",shape="box"];1781[label="vxw260",fontsize=16,color="green",shape="box"];1782[label="vxw280",fontsize=16,color="green",shape="box"];1783[label="vxw260",fontsize=16,color="green",shape="box"];1784[label="vxw281",fontsize=16,color="green",shape="box"];1785[label="vxw261",fontsize=16,color="green",shape="box"];1786[label="vxw281",fontsize=16,color="green",shape="box"];1787[label="vxw261",fontsize=16,color="green",shape="box"];1788[label="vxw281",fontsize=16,color="green",shape="box"];1789[label="vxw261",fontsize=16,color="green",shape="box"];1790[label="vxw281",fontsize=16,color="green",shape="box"];1791[label="vxw261",fontsize=16,color="green",shape="box"];1792[label="vxw281",fontsize=16,color="green",shape="box"];1793[label="vxw261",fontsize=16,color="green",shape="box"];1794[label="vxw281",fontsize=16,color="green",shape="box"];1795[label="vxw261",fontsize=16,color="green",shape="box"];1796[label="vxw281",fontsize=16,color="green",shape="box"];1797[label="vxw261",fontsize=16,color="green",shape="box"];1798[label="vxw281",fontsize=16,color="green",shape="box"];1799[label="vxw261",fontsize=16,color="green",shape="box"];1800[label="vxw281",fontsize=16,color="green",shape="box"];1801[label="vxw261",fontsize=16,color="green",shape="box"];1802[label="vxw281",fontsize=16,color="green",shape="box"];1803[label="vxw261",fontsize=16,color="green",shape="box"];1804[label="vxw281",fontsize=16,color="green",shape="box"];1805[label="vxw261",fontsize=16,color="green",shape="box"];1806[label="vxw281",fontsize=16,color="green",shape="box"];1807[label="vxw261",fontsize=16,color="green",shape="box"];1808[label="vxw281",fontsize=16,color="green",shape="box"];1809[label="vxw261",fontsize=16,color="green",shape="box"];1810[label="vxw281",fontsize=16,color="green",shape="box"];1811[label="vxw261",fontsize=16,color="green",shape="box"];1812[label="vxw280",fontsize=16,color="green",shape="box"];1813[label="vxw260",fontsize=16,color="green",shape="box"];1814[label="vxw280",fontsize=16,color="green",shape="box"];1815[label="vxw260",fontsize=16,color="green",shape="box"];1816[label="vxw280",fontsize=16,color="green",shape="box"];1817[label="vxw260",fontsize=16,color="green",shape="box"];1818[label="vxw280",fontsize=16,color="green",shape="box"];1819[label="vxw260",fontsize=16,color="green",shape="box"];1820[label="vxw280",fontsize=16,color="green",shape="box"];1821[label="vxw260",fontsize=16,color="green",shape="box"];1822[label="vxw280",fontsize=16,color="green",shape="box"];1823[label="vxw260",fontsize=16,color="green",shape="box"];1824[label="vxw280",fontsize=16,color="green",shape="box"];1825[label="vxw260",fontsize=16,color="green",shape="box"];1826[label="vxw280",fontsize=16,color="green",shape="box"];1827[label="vxw260",fontsize=16,color="green",shape="box"];1828[label="vxw280",fontsize=16,color="green",shape="box"];1829[label="vxw260",fontsize=16,color="green",shape="box"];1830[label="vxw280",fontsize=16,color="green",shape="box"];1831[label="vxw260",fontsize=16,color="green",shape="box"];1832[label="vxw280",fontsize=16,color="green",shape="box"];1833[label="vxw260",fontsize=16,color="green",shape="box"];1834[label="vxw280",fontsize=16,color="green",shape="box"];1835[label="vxw260",fontsize=16,color="green",shape="box"];1836[label="vxw280",fontsize=16,color="green",shape="box"];1837[label="vxw260",fontsize=16,color="green",shape="box"];1838[label="vxw280",fontsize=16,color="green",shape="box"];1839[label="vxw260",fontsize=16,color="green",shape="box"];1840 -> 1966[label="",style="dashed", color="red", weight=0]; 1840[label="primPlusNat (primMulNat vxw31000 (Succ vxw401100)) (Succ vxw401100)",fontsize=16,color="magenta"];1840 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1841[label="Zero",fontsize=16,color="green",shape="box"];1842[label="Zero",fontsize=16,color="green",shape="box"];1843[label="Zero",fontsize=16,color="green",shape="box"];1844 -> 1378[label="",style="dashed", color="red", weight=0]; 1844[label="primCmpNat vxw2700 vxw2500",fontsize=16,color="magenta"];1844 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1844 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1845[label="GT",fontsize=16,color="green",shape="box"];1846[label="LT",fontsize=16,color="green",shape="box"];1847[label="EQ",fontsize=16,color="green",shape="box"];1848[label="vxw27",fontsize=16,color="green",shape="box"];1849[label="vxw25",fontsize=16,color="green",shape="box"];1850[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1850 -> 1970[label="",style="solid", color="black", weight=3]; 1851[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1851 -> 1971[label="",style="solid", color="black", weight=3]; 1852[label="vxw27",fontsize=16,color="green",shape="box"];1853[label="vxw25",fontsize=16,color="green",shape="box"];1854[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1854 -> 1972[label="",style="solid", color="black", weight=3]; 1855[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1855 -> 1973[label="",style="solid", color="black", weight=3]; 1856[label="vxw27",fontsize=16,color="green",shape="box"];1857[label="vxw25",fontsize=16,color="green",shape="box"];1858[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1858 -> 1974[label="",style="solid", color="black", weight=3]; 1859[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1859 -> 1975[label="",style="solid", color="black", weight=3]; 1860[label="Zero",fontsize=16,color="green",shape="box"];1861[label="Succ vxw2500",fontsize=16,color="green",shape="box"];1862[label="Succ vxw2500",fontsize=16,color="green",shape="box"];1863[label="Zero",fontsize=16,color="green",shape="box"];1864[label="Integer vxw2700 * Integer vxw2510",fontsize=16,color="black",shape="box"];1864 -> 1976[label="",style="solid", color="black", weight=3]; 1865[label="vxw27",fontsize=16,color="green",shape="box"];1866[label="vxw25",fontsize=16,color="green",shape="box"];1867[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1867 -> 1977[label="",style="solid", color="black", weight=3]; 1868[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1868 -> 1978[label="",style="solid", color="black", weight=3]; 1869 -> 712[label="",style="dashed", color="red", weight=0]; 1869[label="vxw270 * Pos vxw2510",fontsize=16,color="magenta"];1869 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1869 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1870 -> 712[label="",style="dashed", color="red", weight=0]; 1870[label="Pos vxw2710 * vxw250",fontsize=16,color="magenta"];1870 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1870 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1871 -> 712[label="",style="dashed", color="red", weight=0]; 1871[label="vxw270 * Pos vxw2510",fontsize=16,color="magenta"];1871 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1871 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1872 -> 712[label="",style="dashed", color="red", weight=0]; 1872[label="Neg vxw2710 * vxw250",fontsize=16,color="magenta"];1872 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1872 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1873 -> 712[label="",style="dashed", color="red", weight=0]; 1873[label="vxw270 * Neg vxw2510",fontsize=16,color="magenta"];1873 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1873 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1874 -> 712[label="",style="dashed", color="red", weight=0]; 1874[label="Pos vxw2710 * vxw250",fontsize=16,color="magenta"];1874 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1875 -> 712[label="",style="dashed", color="red", weight=0]; 1875[label="vxw270 * Neg vxw2510",fontsize=16,color="magenta"];1875 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1876 -> 712[label="",style="dashed", color="red", weight=0]; 1876[label="Neg vxw2710 * vxw250",fontsize=16,color="magenta"];1876 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1877[label="vxw27",fontsize=16,color="green",shape="box"];1878[label="vxw25",fontsize=16,color="green",shape="box"];1879[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1879 -> 1995[label="",style="solid", color="black", weight=3]; 1880[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1880 -> 1996[label="",style="solid", color="black", weight=3]; 1881 -> 712[label="",style="dashed", color="red", weight=0]; 1881[label="vxw270 * Pos vxw2510",fontsize=16,color="magenta"];1881 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1882 -> 712[label="",style="dashed", color="red", weight=0]; 1882[label="Pos vxw2710 * vxw250",fontsize=16,color="magenta"];1882 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1883 -> 712[label="",style="dashed", color="red", weight=0]; 1883[label="vxw270 * Pos vxw2510",fontsize=16,color="magenta"];1883 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1884 -> 712[label="",style="dashed", color="red", weight=0]; 1884[label="Neg vxw2710 * vxw250",fontsize=16,color="magenta"];1884 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1885 -> 712[label="",style="dashed", color="red", weight=0]; 1885[label="vxw270 * Neg vxw2510",fontsize=16,color="magenta"];1885 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1886 -> 712[label="",style="dashed", color="red", weight=0]; 1886[label="Pos vxw2710 * vxw250",fontsize=16,color="magenta"];1886 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1887 -> 712[label="",style="dashed", color="red", weight=0]; 1887[label="vxw270 * Neg vxw2510",fontsize=16,color="magenta"];1887 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1888 -> 712[label="",style="dashed", color="red", weight=0]; 1888[label="Neg vxw2710 * vxw250",fontsize=16,color="magenta"];1888 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1889[label="vxw27",fontsize=16,color="green",shape="box"];1890[label="vxw25",fontsize=16,color="green",shape="box"];1891[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1891 -> 2013[label="",style="solid", color="black", weight=3]; 1892[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1892 -> 2014[label="",style="solid", color="black", weight=3]; 1893 -> 1038[label="",style="dashed", color="red", weight=0]; 1893[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1893 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1894 -> 1040[label="",style="dashed", color="red", weight=0]; 1894[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1894 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1895 -> 1042[label="",style="dashed", color="red", weight=0]; 1895[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1895 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1896 -> 1044[label="",style="dashed", color="red", weight=0]; 1896[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1896 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1897 -> 1046[label="",style="dashed", color="red", weight=0]; 1897[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1897 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1898 -> 1048[label="",style="dashed", color="red", weight=0]; 1898[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1898 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1899 -> 1050[label="",style="dashed", color="red", weight=0]; 1899[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1899 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1900 -> 1052[label="",style="dashed", color="red", weight=0]; 1900[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1900 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1901 -> 1054[label="",style="dashed", color="red", weight=0]; 1901[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1901 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1056[label="",style="dashed", color="red", weight=0]; 1902[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1902 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1058[label="",style="dashed", color="red", weight=0]; 1903[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1903 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1060[label="",style="dashed", color="red", weight=0]; 1904[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1904 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1905 -> 1062[label="",style="dashed", color="red", weight=0]; 1905[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1905 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1906 -> 1064[label="",style="dashed", color="red", weight=0]; 1906[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1906 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1907[label="primCompAux0 vxw82 LT",fontsize=16,color="black",shape="box"];1907 -> 2043[label="",style="solid", color="black", weight=3]; 1908[label="primCompAux0 vxw82 EQ",fontsize=16,color="black",shape="box"];1908 -> 2044[label="",style="solid", color="black", weight=3]; 1909[label="primCompAux0 vxw82 GT",fontsize=16,color="black",shape="box"];1909 -> 2045[label="",style="solid", color="black", weight=3]; 1910[label="vxw281",fontsize=16,color="green",shape="box"];1911[label="vxw261",fontsize=16,color="green",shape="box"];1912[label="vxw281",fontsize=16,color="green",shape="box"];1913[label="vxw261",fontsize=16,color="green",shape="box"];1914[label="vxw281",fontsize=16,color="green",shape="box"];1915[label="vxw261",fontsize=16,color="green",shape="box"];1916[label="vxw281",fontsize=16,color="green",shape="box"];1917[label="vxw261",fontsize=16,color="green",shape="box"];1918[label="vxw281",fontsize=16,color="green",shape="box"];1919[label="vxw261",fontsize=16,color="green",shape="box"];1920[label="vxw281",fontsize=16,color="green",shape="box"];1921[label="vxw261",fontsize=16,color="green",shape="box"];1922[label="vxw281",fontsize=16,color="green",shape="box"];1923[label="vxw261",fontsize=16,color="green",shape="box"];1924[label="vxw281",fontsize=16,color="green",shape="box"];1925[label="vxw261",fontsize=16,color="green",shape="box"];1926[label="vxw281",fontsize=16,color="green",shape="box"];1927[label="vxw261",fontsize=16,color="green",shape="box"];1928[label="vxw281",fontsize=16,color="green",shape="box"];1929[label="vxw261",fontsize=16,color="green",shape="box"];1930[label="vxw281",fontsize=16,color="green",shape="box"];1931[label="vxw261",fontsize=16,color="green",shape="box"];1932[label="vxw281",fontsize=16,color="green",shape="box"];1933[label="vxw261",fontsize=16,color="green",shape="box"];1934[label="vxw281",fontsize=16,color="green",shape="box"];1935[label="vxw261",fontsize=16,color="green",shape="box"];1936[label="vxw281",fontsize=16,color="green",shape="box"];1937[label="vxw261",fontsize=16,color="green",shape="box"];1938 -> 836[label="",style="dashed", color="red", weight=0]; 1938[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1938 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1938 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1939 -> 837[label="",style="dashed", color="red", weight=0]; 1939[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1939 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1940 -> 838[label="",style="dashed", color="red", weight=0]; 1940[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1940 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1941 -> 839[label="",style="dashed", color="red", weight=0]; 1941[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1941 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1942 -> 840[label="",style="dashed", color="red", weight=0]; 1942[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1942 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1943 -> 841[label="",style="dashed", color="red", weight=0]; 1943[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1943 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1943 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1944 -> 842[label="",style="dashed", color="red", weight=0]; 1944[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1944 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1945 -> 843[label="",style="dashed", color="red", weight=0]; 1945[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1945 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1946 -> 844[label="",style="dashed", color="red", weight=0]; 1946[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1946 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1947 -> 845[label="",style="dashed", color="red", weight=0]; 1947[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1947 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1948 -> 846[label="",style="dashed", color="red", weight=0]; 1948[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1948 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1949 -> 847[label="",style="dashed", color="red", weight=0]; 1949[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1949 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1950 -> 848[label="",style="dashed", color="red", weight=0]; 1950[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1950 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1951 -> 849[label="",style="dashed", color="red", weight=0]; 1951[label="vxw282 <= vxw262",fontsize=16,color="magenta"];1951 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1952 -> 354[label="",style="dashed", color="red", weight=0]; 1952[label="vxw281 == vxw261",fontsize=16,color="magenta"];1952 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1953 -> 356[label="",style="dashed", color="red", weight=0]; 1953[label="vxw281 == vxw261",fontsize=16,color="magenta"];1953 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1953 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1954 -> 346[label="",style="dashed", color="red", weight=0]; 1954[label="vxw281 == vxw261",fontsize=16,color="magenta"];1954 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1954 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1955 -> 348[label="",style="dashed", color="red", weight=0]; 1955[label="vxw281 == vxw261",fontsize=16,color="magenta"];1955 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1955 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1956 -> 345[label="",style="dashed", color="red", weight=0]; 1956[label="vxw281 == vxw261",fontsize=16,color="magenta"];1956 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1957 -> 355[label="",style="dashed", color="red", weight=0]; 1957[label="vxw281 == vxw261",fontsize=16,color="magenta"];1957 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1958 -> 352[label="",style="dashed", color="red", weight=0]; 1958[label="vxw281 == vxw261",fontsize=16,color="magenta"];1958 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1958 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1959 -> 351[label="",style="dashed", color="red", weight=0]; 1959[label="vxw281 == vxw261",fontsize=16,color="magenta"];1959 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1960 -> 347[label="",style="dashed", color="red", weight=0]; 1960[label="vxw281 == vxw261",fontsize=16,color="magenta"];1960 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1960 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1961 -> 358[label="",style="dashed", color="red", weight=0]; 1961[label="vxw281 == vxw261",fontsize=16,color="magenta"];1961 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1962 -> 353[label="",style="dashed", color="red", weight=0]; 1962[label="vxw281 == vxw261",fontsize=16,color="magenta"];1962 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1963 -> 349[label="",style="dashed", color="red", weight=0]; 1963[label="vxw281 == vxw261",fontsize=16,color="magenta"];1963 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1964 -> 357[label="",style="dashed", color="red", weight=0]; 1964[label="vxw281 == vxw261",fontsize=16,color="magenta"];1964 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1965 -> 350[label="",style="dashed", color="red", weight=0]; 1965[label="vxw281 == vxw261",fontsize=16,color="magenta"];1965 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1967 -> 1374[label="",style="dashed", color="red", weight=0]; 1967[label="primMulNat vxw31000 (Succ vxw401100)",fontsize=16,color="magenta"];1967 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1966[label="primPlusNat vxw84 (Succ vxw401100)",fontsize=16,color="burlywood",shape="triangle"];2740[label="vxw84/Succ vxw840",fontsize=10,color="white",style="solid",shape="box"];1966 -> 2740[label="",style="solid", color="burlywood", weight=9]; 2740 -> 2104[label="",style="solid", color="burlywood", weight=3]; 2741[label="vxw84/Zero",fontsize=10,color="white",style="solid",shape="box"];1966 -> 2741[label="",style="solid", color="burlywood", weight=9]; 2741 -> 2105[label="",style="solid", color="burlywood", weight=3]; 1968[label="vxw2700",fontsize=16,color="green",shape="box"];1969[label="vxw2500",fontsize=16,color="green",shape="box"];1970[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];1970 -> 2106[label="",style="solid", color="black", weight=3]; 1971[label="LT",fontsize=16,color="green",shape="box"];1972[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];1972 -> 2107[label="",style="solid", color="black", weight=3]; 1973[label="LT",fontsize=16,color="green",shape="box"];1974[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];1974 -> 2108[label="",style="solid", color="black", weight=3]; 1975[label="LT",fontsize=16,color="green",shape="box"];1976[label="Integer (primMulInt vxw2700 vxw2510)",fontsize=16,color="green",shape="box"];1976 -> 2109[label="",style="dashed", color="green", weight=3]; 1977[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];1977 -> 2110[label="",style="solid", color="black", weight=3]; 1978[label="LT",fontsize=16,color="green",shape="box"];1979[label="vxw270",fontsize=16,color="green",shape="box"];1980[label="Pos vxw2510",fontsize=16,color="green",shape="box"];1981[label="Pos vxw2710",fontsize=16,color="green",shape="box"];1982[label="vxw250",fontsize=16,color="green",shape="box"];1983[label="vxw270",fontsize=16,color="green",shape="box"];1984[label="Pos vxw2510",fontsize=16,color="green",shape="box"];1985[label="Neg vxw2710",fontsize=16,color="green",shape="box"];1986[label="vxw250",fontsize=16,color="green",shape="box"];1987[label="vxw270",fontsize=16,color="green",shape="box"];1988[label="Neg vxw2510",fontsize=16,color="green",shape="box"];1989[label="Pos vxw2710",fontsize=16,color="green",shape="box"];1990[label="vxw250",fontsize=16,color="green",shape="box"];1991[label="vxw270",fontsize=16,color="green",shape="box"];1992[label="Neg vxw2510",fontsize=16,color="green",shape="box"];1993[label="Neg vxw2710",fontsize=16,color="green",shape="box"];1994[label="vxw250",fontsize=16,color="green",shape="box"];1995[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];1995 -> 2111[label="",style="solid", color="black", weight=3]; 1996[label="LT",fontsize=16,color="green",shape="box"];1997[label="vxw270",fontsize=16,color="green",shape="box"];1998[label="Pos vxw2510",fontsize=16,color="green",shape="box"];1999[label="Pos vxw2710",fontsize=16,color="green",shape="box"];2000[label="vxw250",fontsize=16,color="green",shape="box"];2001[label="vxw270",fontsize=16,color="green",shape="box"];2002[label="Pos vxw2510",fontsize=16,color="green",shape="box"];2003[label="Neg vxw2710",fontsize=16,color="green",shape="box"];2004[label="vxw250",fontsize=16,color="green",shape="box"];2005[label="vxw270",fontsize=16,color="green",shape="box"];2006[label="Neg vxw2510",fontsize=16,color="green",shape="box"];2007[label="Pos vxw2710",fontsize=16,color="green",shape="box"];2008[label="vxw250",fontsize=16,color="green",shape="box"];2009[label="vxw270",fontsize=16,color="green",shape="box"];2010[label="Neg vxw2510",fontsize=16,color="green",shape="box"];2011[label="Neg vxw2710",fontsize=16,color="green",shape="box"];2012[label="vxw250",fontsize=16,color="green",shape="box"];2013[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];2013 -> 2112[label="",style="solid", color="black", weight=3]; 2014[label="LT",fontsize=16,color="green",shape="box"];2015[label="vxw270",fontsize=16,color="green",shape="box"];2016[label="vxw250",fontsize=16,color="green",shape="box"];2017[label="vxw270",fontsize=16,color="green",shape="box"];2018[label="vxw250",fontsize=16,color="green",shape="box"];2019[label="vxw270",fontsize=16,color="green",shape="box"];2020[label="vxw250",fontsize=16,color="green",shape="box"];2021[label="vxw270",fontsize=16,color="green",shape="box"];2022[label="vxw250",fontsize=16,color="green",shape="box"];2023[label="vxw270",fontsize=16,color="green",shape="box"];2024[label="vxw250",fontsize=16,color="green",shape="box"];2025[label="vxw270",fontsize=16,color="green",shape="box"];2026[label="vxw250",fontsize=16,color="green",shape="box"];2027[label="vxw270",fontsize=16,color="green",shape="box"];2028[label="vxw250",fontsize=16,color="green",shape="box"];2029[label="vxw270",fontsize=16,color="green",shape="box"];2030[label="vxw250",fontsize=16,color="green",shape="box"];2031[label="vxw270",fontsize=16,color="green",shape="box"];2032[label="vxw250",fontsize=16,color="green",shape="box"];2033[label="vxw270",fontsize=16,color="green",shape="box"];2034[label="vxw250",fontsize=16,color="green",shape="box"];2035[label="vxw270",fontsize=16,color="green",shape="box"];2036[label="vxw250",fontsize=16,color="green",shape="box"];2037[label="vxw270",fontsize=16,color="green",shape="box"];2038[label="vxw250",fontsize=16,color="green",shape="box"];2039[label="vxw270",fontsize=16,color="green",shape="box"];2040[label="vxw250",fontsize=16,color="green",shape="box"];2041[label="vxw270",fontsize=16,color="green",shape="box"];2042[label="vxw250",fontsize=16,color="green",shape="box"];2043[label="LT",fontsize=16,color="green",shape="box"];2044[label="vxw82",fontsize=16,color="green",shape="box"];2045[label="GT",fontsize=16,color="green",shape="box"];2046[label="vxw282",fontsize=16,color="green",shape="box"];2047[label="vxw262",fontsize=16,color="green",shape="box"];2048[label="vxw282",fontsize=16,color="green",shape="box"];2049[label="vxw262",fontsize=16,color="green",shape="box"];2050[label="vxw282",fontsize=16,color="green",shape="box"];2051[label="vxw262",fontsize=16,color="green",shape="box"];2052[label="vxw282",fontsize=16,color="green",shape="box"];2053[label="vxw262",fontsize=16,color="green",shape="box"];2054[label="vxw282",fontsize=16,color="green",shape="box"];2055[label="vxw262",fontsize=16,color="green",shape="box"];2056[label="vxw282",fontsize=16,color="green",shape="box"];2057[label="vxw262",fontsize=16,color="green",shape="box"];2058[label="vxw282",fontsize=16,color="green",shape="box"];2059[label="vxw262",fontsize=16,color="green",shape="box"];2060[label="vxw282",fontsize=16,color="green",shape="box"];2061[label="vxw262",fontsize=16,color="green",shape="box"];2062[label="vxw282",fontsize=16,color="green",shape="box"];2063[label="vxw262",fontsize=16,color="green",shape="box"];2064[label="vxw282",fontsize=16,color="green",shape="box"];2065[label="vxw262",fontsize=16,color="green",shape="box"];2066[label="vxw282",fontsize=16,color="green",shape="box"];2067[label="vxw262",fontsize=16,color="green",shape="box"];2068[label="vxw282",fontsize=16,color="green",shape="box"];2069[label="vxw262",fontsize=16,color="green",shape="box"];2070[label="vxw282",fontsize=16,color="green",shape="box"];2071[label="vxw262",fontsize=16,color="green",shape="box"];2072[label="vxw282",fontsize=16,color="green",shape="box"];2073[label="vxw262",fontsize=16,color="green",shape="box"];2074[label="vxw281",fontsize=16,color="green",shape="box"];2075[label="vxw261",fontsize=16,color="green",shape="box"];2076[label="vxw281",fontsize=16,color="green",shape="box"];2077[label="vxw261",fontsize=16,color="green",shape="box"];2078[label="vxw281",fontsize=16,color="green",shape="box"];2079[label="vxw261",fontsize=16,color="green",shape="box"];2080[label="vxw281",fontsize=16,color="green",shape="box"];2081[label="vxw261",fontsize=16,color="green",shape="box"];2082[label="vxw281",fontsize=16,color="green",shape="box"];2083[label="vxw261",fontsize=16,color="green",shape="box"];2084[label="vxw281",fontsize=16,color="green",shape="box"];2085[label="vxw261",fontsize=16,color="green",shape="box"];2086[label="vxw281",fontsize=16,color="green",shape="box"];2087[label="vxw261",fontsize=16,color="green",shape="box"];2088[label="vxw281",fontsize=16,color="green",shape="box"];2089[label="vxw261",fontsize=16,color="green",shape="box"];2090[label="vxw281",fontsize=16,color="green",shape="box"];2091[label="vxw261",fontsize=16,color="green",shape="box"];2092[label="vxw281",fontsize=16,color="green",shape="box"];2093[label="vxw261",fontsize=16,color="green",shape="box"];2094[label="vxw281",fontsize=16,color="green",shape="box"];2095[label="vxw261",fontsize=16,color="green",shape="box"];2096[label="vxw281",fontsize=16,color="green",shape="box"];2097[label="vxw261",fontsize=16,color="green",shape="box"];2098[label="vxw281",fontsize=16,color="green",shape="box"];2099[label="vxw261",fontsize=16,color="green",shape="box"];2100[label="vxw281",fontsize=16,color="green",shape="box"];2101[label="vxw261",fontsize=16,color="green",shape="box"];2102[label="Succ vxw401100",fontsize=16,color="green",shape="box"];2103[label="vxw31000",fontsize=16,color="green",shape="box"];2104[label="primPlusNat (Succ vxw840) (Succ vxw401100)",fontsize=16,color="black",shape="box"];2104 -> 2113[label="",style="solid", color="black", weight=3]; 2105[label="primPlusNat Zero (Succ vxw401100)",fontsize=16,color="black",shape="box"];2105 -> 2114[label="",style="solid", color="black", weight=3]; 2106[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2106 -> 2115[label="",style="solid", color="black", weight=3]; 2107[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2107 -> 2116[label="",style="solid", color="black", weight=3]; 2108[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2108 -> 2117[label="",style="solid", color="black", weight=3]; 2109 -> 991[label="",style="dashed", color="red", weight=0]; 2109[label="primMulInt vxw2700 vxw2510",fontsize=16,color="magenta"];2109 -> 2118[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2119[label="",style="dashed", color="magenta", weight=3]; 2110[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2110 -> 2120[label="",style="solid", color="black", weight=3]; 2111[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2111 -> 2121[label="",style="solid", color="black", weight=3]; 2112[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2112 -> 2122[label="",style="solid", color="black", weight=3]; 2113[label="Succ (Succ (primPlusNat vxw840 vxw401100))",fontsize=16,color="green",shape="box"];2113 -> 2123[label="",style="dashed", color="green", weight=3]; 2114[label="Succ vxw401100",fontsize=16,color="green",shape="box"];2115[label="GT",fontsize=16,color="green",shape="box"];2116[label="GT",fontsize=16,color="green",shape="box"];2117[label="GT",fontsize=16,color="green",shape="box"];2118[label="vxw2700",fontsize=16,color="green",shape="box"];2119[label="vxw2510",fontsize=16,color="green",shape="box"];2120[label="GT",fontsize=16,color="green",shape="box"];2121[label="GT",fontsize=16,color="green",shape="box"];2122[label="GT",fontsize=16,color="green",shape="box"];2123[label="primPlusNat vxw840 vxw401100",fontsize=16,color="burlywood",shape="triangle"];2742[label="vxw840/Succ vxw8400",fontsize=10,color="white",style="solid",shape="box"];2123 -> 2742[label="",style="solid", color="burlywood", weight=9]; 2742 -> 2124[label="",style="solid", color="burlywood", weight=3]; 2743[label="vxw840/Zero",fontsize=10,color="white",style="solid",shape="box"];2123 -> 2743[label="",style="solid", color="burlywood", weight=9]; 2743 -> 2125[label="",style="solid", color="burlywood", weight=3]; 2124[label="primPlusNat (Succ vxw8400) vxw401100",fontsize=16,color="burlywood",shape="box"];2744[label="vxw401100/Succ vxw4011000",fontsize=10,color="white",style="solid",shape="box"];2124 -> 2744[label="",style="solid", color="burlywood", weight=9]; 2744 -> 2126[label="",style="solid", color="burlywood", weight=3]; 2745[label="vxw401100/Zero",fontsize=10,color="white",style="solid",shape="box"];2124 -> 2745[label="",style="solid", color="burlywood", weight=9]; 2745 -> 2127[label="",style="solid", color="burlywood", weight=3]; 2125[label="primPlusNat Zero vxw401100",fontsize=16,color="burlywood",shape="box"];2746[label="vxw401100/Succ vxw4011000",fontsize=10,color="white",style="solid",shape="box"];2125 -> 2746[label="",style="solid", color="burlywood", weight=9]; 2746 -> 2128[label="",style="solid", color="burlywood", weight=3]; 2747[label="vxw401100/Zero",fontsize=10,color="white",style="solid",shape="box"];2125 -> 2747[label="",style="solid", color="burlywood", weight=9]; 2747 -> 2129[label="",style="solid", color="burlywood", weight=3]; 2126[label="primPlusNat (Succ vxw8400) (Succ vxw4011000)",fontsize=16,color="black",shape="box"];2126 -> 2130[label="",style="solid", color="black", weight=3]; 2127[label="primPlusNat (Succ vxw8400) Zero",fontsize=16,color="black",shape="box"];2127 -> 2131[label="",style="solid", color="black", weight=3]; 2128[label="primPlusNat Zero (Succ vxw4011000)",fontsize=16,color="black",shape="box"];2128 -> 2132[label="",style="solid", color="black", weight=3]; 2129[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2129 -> 2133[label="",style="solid", color="black", weight=3]; 2130[label="Succ (Succ (primPlusNat vxw8400 vxw4011000))",fontsize=16,color="green",shape="box"];2130 -> 2134[label="",style="dashed", color="green", weight=3]; 2131[label="Succ vxw8400",fontsize=16,color="green",shape="box"];2132[label="Succ vxw4011000",fontsize=16,color="green",shape="box"];2133[label="Zero",fontsize=16,color="green",shape="box"];2134 -> 2123[label="",style="dashed", color="red", weight=0]; 2134[label="primPlusNat vxw8400 vxw4011000",fontsize=16,color="magenta"];2134 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2135[label="vxw8400",fontsize=16,color="green",shape="box"];2136[label="vxw4011000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vxw2700), Succ(vxw2500)) -> new_primCmpNat(vxw2700, vxw2500) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) 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(vxw2700), Succ(vxw2500)) -> new_primCmpNat(vxw2700, vxw2500) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_lt3(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_primCompAux(vxw270, vxw250, new_compare4(vxw271, vxw251, beb), beb) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(ty_[], gg), ga) -> new_lt3(vxw280, vxw260, gg) new_lt2(vxw27, vxw25, bfd) -> new_compare22(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfd), bfd) new_primCompAux(vxw270, vxw250, vxw72, app(ty_Maybe, bfb)) -> new_compare5(vxw270, vxw250, bfb) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(ty_Maybe, hh)) -> new_ltEs2(vxw281, vxw261, hh) new_compare21(vxw27, vxw25, False, bab, bac) -> new_ltEs1(vxw27, vxw25, bab, bac) new_ltEs2(Just(vxw280), Just(vxw260), app(ty_[], bdh)) -> new_ltEs3(vxw280, vxw260, bdh) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(ty_@2, ca), cb), bg, bh) -> new_lt0(vxw280, vxw260, ca, cb) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs(vxw281, vxw261, ha, hb, hc) new_primCompAux(vxw270, vxw250, vxw72, app(ty_[], bfc)) -> new_compare3(vxw270, vxw250, bfc) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(ty_Either, df), dg), bh) -> new_lt1(vxw281, vxw261, df, dg) new_ltEs1(Left(vxw280), Left(vxw260), app(app(ty_@2, bah), bba), bag) -> new_ltEs0(vxw280, vxw260, bah, bba) new_lt3(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_compare3(vxw271, vxw251, beb) new_ltEs2(Just(vxw280), Just(vxw260), app(app(ty_@2, bdc), bdd)) -> new_ltEs0(vxw280, vxw260, bdc, bdd) new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(app(ty_@2, bcb), bcc)) -> new_ltEs0(vxw280, vxw260, bcb, bcc) new_compare0(vxw27, vxw25, fc, fd) -> new_compare20(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(app(ty_@3, bd), be), bf), bg, bh) -> new_lt(vxw280, vxw260, bd, be, bf) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(app(ty_@2, hd), he)) -> new_ltEs0(vxw281, vxw261, hd, he) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(ty_@2, ee), ef)) -> new_ltEs0(vxw282, vxw262, ee, ef) new_ltEs1(Left(vxw280), Left(vxw260), app(ty_Maybe, bbd), bag) -> new_ltEs2(vxw280, vxw260, bbd) new_primCompAux(vxw270, vxw250, vxw72, app(app(app(ty_@3, bec), bed), bee)) -> new_compare(vxw270, vxw250, bec, bed, bee) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(ty_[], cf), bg, bh) -> new_lt3(vxw280, vxw260, cf) new_ltEs1(Left(vxw280), Left(vxw260), app(app(app(ty_@3, bad), bae), baf), bag) -> new_ltEs(vxw280, vxw260, bad, bae, baf) new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs(vxw280, vxw260, bbg, bbh, bca) new_ltEs2(Just(vxw280), Just(vxw260), app(app(ty_Either, bde), bdf)) -> new_ltEs1(vxw280, vxw260, bde, bdf) new_primCompAux(vxw270, vxw250, vxw72, app(app(ty_@2, bef), beg)) -> new_compare0(vxw270, vxw250, bef, beg) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(app(ty_@3, ff), fg), fh), ga) -> new_lt(vxw280, vxw260, ff, fg, fh) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(ty_[], baa)) -> new_ltEs3(vxw281, vxw261, baa) new_compare3(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_primCompAux(vxw270, vxw250, new_compare4(vxw271, vxw251, beb), beb) new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(app(ty_Either, bcd), bce)) -> new_ltEs1(vxw280, vxw260, bcd, bce) new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(ty_[], bcg)) -> new_ltEs3(vxw280, vxw260, bcg) new_compare(vxw27, vxw25, ba, bb, bc) -> new_compare2(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(ty_Either, cc), cd), bg, bh) -> new_lt1(vxw280, vxw260, cc, cd) new_compare3(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_compare3(vxw271, vxw251, beb) new_compare2(vxw27, vxw25, False, ba, bb, bc) -> new_ltEs(vxw27, vxw25, ba, bb, bc) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(ty_Maybe, ce), bg, bh) -> new_lt2(vxw280, vxw260, ce) new_lt(vxw27, vxw25, ba, bb, bc) -> new_compare2(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) new_ltEs1(Left(vxw280), Left(vxw260), app(app(ty_Either, bbb), bbc), bag) -> new_ltEs1(vxw280, vxw260, bbb, bbc) new_ltEs3(vxw28, vxw26, bea) -> new_compare3(vxw28, vxw26, bea) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(app(ty_@3, da), db), dc), bh) -> new_lt(vxw281, vxw261, da, db, dc) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(ty_Either, eg), eh)) -> new_ltEs1(vxw282, vxw262, eg, eh) new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(ty_Maybe, bcf)) -> new_ltEs2(vxw280, vxw260, bcf) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(app(ty_Either, hf), hg)) -> new_ltEs1(vxw281, vxw261, hf, hg) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(ty_[], fb)) -> new_ltEs3(vxw282, vxw262, fb) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(ty_@2, gb), gc), ga) -> new_lt0(vxw280, vxw260, gb, gc) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(ty_@2, dd), de), bh) -> new_lt0(vxw281, vxw261, dd, de) new_ltEs1(Left(vxw280), Left(vxw260), app(ty_[], bbe), bag) -> new_ltEs3(vxw280, vxw260, bbe) new_compare22(vxw27, vxw25, False, bfd) -> new_ltEs2(vxw27, vxw25, bfd) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(ty_Either, gd), ge), ga) -> new_lt1(vxw280, vxw260, gd, ge) new_ltEs2(Just(vxw280), Just(vxw260), app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs(vxw280, vxw260, bch, bda, bdb) new_primCompAux(vxw270, vxw250, vxw72, app(app(ty_Either, beh), bfa)) -> new_compare1(vxw270, vxw250, beh, bfa) new_compare1(vxw27, vxw25, bab, bac) -> new_compare21(vxw27, vxw25, new_esEs6(vxw27, vxw25, bab, bac), bab, bac) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(ty_[], ea), bh) -> new_lt3(vxw281, vxw261, ea) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs(vxw282, vxw262, eb, ec, ed) new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(ty_Maybe, gf), ga) -> new_lt2(vxw280, vxw260, gf) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(ty_Maybe, fa)) -> new_ltEs2(vxw282, vxw262, fa) new_compare5(vxw27, vxw25, bfd) -> new_compare22(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfd), bfd) new_ltEs2(Just(vxw280), Just(vxw260), app(ty_Maybe, bdg)) -> new_ltEs2(vxw280, vxw260, bdg) new_compare20(vxw27, vxw25, False, fc, fd) -> new_ltEs0(vxw27, vxw25, fc, fd) new_lt0(vxw27, vxw25, fc, fd) -> new_compare20(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(ty_Maybe, dh), bh) -> new_lt2(vxw281, vxw261, dh) new_lt1(vxw27, vxw25, bab, bac) -> new_compare21(vxw27, vxw25, new_esEs6(vxw27, vxw25, bab, bac), bab, bac) The TRS R consists of the following rules: new_esEs6(Right(vxw310), Right(vxw4010), bhf, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs4(vxw310, vxw4010, bhg, bhh, caa) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vxw2700)), Pos(vxw250)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vxw63) -> True new_compare30(vxw27, vxw25) -> new_compare24(vxw27, vxw25, new_esEs8(vxw27, vxw25)) new_esEs27(vxw311, vxw4011, ty_Float) -> new_esEs18(vxw311, vxw4011) new_esEs6(Left(vxw310), Left(vxw4010), ty_Char, bgc) -> new_esEs13(vxw310, vxw4010) new_ltEs4(Left(vxw280), Left(vxw260), app(ty_Ratio, dab), bag) -> new_ltEs12(vxw280, vxw260, dab) new_ltEs9(vxw282, vxw262, app(app(ty_Either, eg), eh)) -> new_ltEs4(vxw282, vxw262, eg, eh) new_lt20(vxw280, vxw260, ty_Bool) -> new_lt15(vxw280, vxw260) new_esEs7(Just(vxw310), Just(vxw4010), app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs4(vxw310, vxw4010, cgh, cha, chb) new_ltEs18(Just(vxw280), Just(vxw260), app(app(ty_@2, bdc), bdd)) -> new_ltEs10(vxw280, vxw260, bdc, bdd) new_ltEs4(Right(vxw280), Right(vxw260), bbf, ty_Integer) -> new_ltEs13(vxw280, vxw260) new_compare24(vxw27, vxw25, False) -> new_compare12(vxw27, vxw25, new_ltEs7(vxw27, vxw25)) new_ltEs18(Nothing, Just(vxw260), dad) -> True new_esEs24(vxw311, vxw4011, app(ty_[], cef)) -> new_esEs19(vxw311, vxw4011, cef) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare31(vxw270, vxw250, app(ty_[], bfc)) -> new_compare4(vxw270, vxw250, bfc) new_primCmpInt(Pos(Zero), Neg(Succ(vxw2500))) -> GT new_esEs6(Right(vxw310), Right(vxw4010), bhf, app(ty_Maybe, cah)) -> new_esEs7(vxw310, vxw4010, cah) new_lt20(vxw280, vxw260, app(app(ty_Either, gd), ge)) -> new_lt17(vxw280, vxw260, gd, ge) new_lt6(vxw280, vxw260, ty_Char) -> new_lt8(vxw280, vxw260) new_esEs12(vxw280, vxw260, ty_Integer) -> new_esEs15(vxw280, vxw260) new_esEs22(vxw310, vxw4010, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_esEs24(vxw311, vxw4011, ty_Ordering) -> new_esEs8(vxw311, vxw4011) new_lt6(vxw280, vxw260, app(ty_Maybe, ce)) -> new_lt4(vxw280, vxw260, ce) new_esEs7(Just(vxw310), Just(vxw4010), app(ty_Maybe, daa)) -> new_esEs7(vxw310, vxw4010, daa) new_compare210(vxw27, vxw25, True, ba, bb, bc) -> EQ new_primCmpInt(Neg(Succ(vxw2700)), Neg(vxw250)) -> new_primCmpNat0(vxw250, Succ(vxw2700)) new_esEs26(vxw280, vxw260, ty_Bool) -> new_esEs16(vxw280, vxw260) new_compare16(vxw27, vxw25) -> new_primCmpInt(vxw27, vxw25) new_ltEs10(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, ga) -> new_pePe(new_lt20(vxw280, vxw260, gh), new_asAs(new_esEs26(vxw280, vxw260, gh), new_ltEs19(vxw281, vxw261, ga))) new_compare19(vxw27, vxw25, bab, bac) -> new_compare23(vxw27, vxw25, new_esEs6(vxw27, vxw25, bab, bac), bab, bac) new_esEs28(vxw310, vxw4010, app(ty_Maybe, ddd)) -> new_esEs7(vxw310, vxw4010, ddd) new_primMulNat0(Succ(vxw31000), Succ(vxw401100)) -> new_primPlusNat1(new_primMulNat0(vxw31000, Succ(vxw401100)), vxw401100) new_esEs6(Right(vxw310), Right(vxw4010), bhf, ty_Float) -> new_esEs18(vxw310, vxw4010) new_lt11(vxw27, vxw25, fc, fd) -> new_esEs8(new_compare26(vxw27, vxw25, fc, fd), LT) new_compare27(vxw27, vxw25, False, fc, fd) -> new_compare10(vxw27, vxw25, new_ltEs10(vxw27, vxw25, fc, fd), fc, fd) new_esEs25(vxw310, vxw4010, app(app(ty_@2, cff), cfg)) -> new_esEs5(vxw310, vxw4010, cff, cfg) new_esEs28(vxw310, vxw4010, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs4(vxw310, vxw4010, dcc, dcd, dce) new_esEs23(vxw312, vxw4012, ty_Double) -> new_esEs9(vxw312, vxw4012) new_ltEs9(vxw282, vxw262, app(ty_Maybe, fa)) -> new_ltEs18(vxw282, vxw262, fa) new_primCompAux0(vxw82, GT) -> GT new_esEs25(vxw310, vxw4010, ty_Char) -> new_esEs13(vxw310, vxw4010) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vxw3100)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40100))) -> False new_lt12(vxw27, vxw25) -> new_esEs8(new_compare16(vxw27, vxw25), LT) new_fsEs(vxw64) -> new_not(new_esEs8(vxw64, GT)) new_esEs7(Just(vxw310), Just(vxw4010), app(ty_[], che)) -> new_esEs19(vxw310, vxw4010, che) new_ltEs19(vxw281, vxw261, app(ty_[], baa)) -> new_ltEs6(vxw281, vxw261, baa) new_ltEs4(Right(vxw280), Right(vxw260), bbf, app(app(ty_@2, bcb), bcc)) -> new_ltEs10(vxw280, vxw260, bcb, bcc) new_ltEs19(vxw281, vxw261, ty_Bool) -> new_ltEs14(vxw281, vxw261) new_esEs5(@2(vxw310, vxw311), @2(vxw4010, vxw4011), dag, dah) -> new_asAs(new_esEs28(vxw310, vxw4010, dag), new_esEs27(vxw311, vxw4011, dah)) new_lt6(vxw280, vxw260, app(app(ty_@2, ca), cb)) -> new_lt11(vxw280, vxw260, ca, cb) new_esEs28(vxw310, vxw4010, app(ty_Ratio, ddc)) -> new_esEs14(vxw310, vxw4010, ddc) new_esEs8(EQ, EQ) -> True new_compare12(vxw27, vxw25, False) -> GT new_esEs23(vxw312, vxw4012, app(ty_Ratio, cdg)) -> new_esEs14(vxw312, vxw4012, cdg) new_primEqNat0(Succ(vxw3100), Succ(vxw40100)) -> new_primEqNat0(vxw3100, vxw40100) new_compare9(Double(vxw270, Pos(vxw2710)), Double(vxw250, Neg(vxw2510))) -> new_compare16(new_sr(vxw270, Pos(vxw2510)), new_sr(Neg(vxw2710), vxw250)) new_compare9(Double(vxw270, Neg(vxw2710)), Double(vxw250, Pos(vxw2510))) -> new_compare16(new_sr(vxw270, Neg(vxw2510)), new_sr(Pos(vxw2710), vxw250)) new_ltEs4(Right(vxw280), Right(vxw260), bbf, app(ty_Ratio, dac)) -> new_ltEs12(vxw280, vxw260, dac) new_esEs22(vxw310, vxw4010, ty_Float) -> new_esEs18(vxw310, vxw4010) new_esEs27(vxw311, vxw4011, ty_Integer) -> new_esEs15(vxw311, vxw4011) new_esEs28(vxw310, vxw4010, ty_Double) -> new_esEs9(vxw310, vxw4010) new_ltEs4(Left(vxw280), Left(vxw260), ty_Int, bag) -> new_ltEs11(vxw280, vxw260) new_primCompAux0(vxw82, LT) -> LT new_ltEs19(vxw281, vxw261, ty_Char) -> new_ltEs5(vxw281, vxw261) new_esEs7(Just(vxw310), Just(vxw4010), ty_Int) -> new_esEs10(vxw310, vxw4010) new_compare210(vxw27, vxw25, False, ba, bb, bc) -> new_compare110(vxw27, vxw25, new_ltEs8(vxw27, vxw25, ba, bb, bc), ba, bb, bc) new_not(True) -> False new_esEs6(Left(vxw310), Left(vxw4010), app(ty_Maybe, bhe), bgc) -> new_esEs7(vxw310, vxw4010, bhe) new_primCmpNat0(Zero, Zero) -> EQ new_esEs28(vxw310, vxw4010, app(ty_[], dch)) -> new_esEs19(vxw310, vxw4010, dch) new_ltEs9(vxw282, vxw262, ty_@0) -> new_ltEs15(vxw282, vxw262) new_compare14(:%(vxw270, vxw271), :%(vxw250, vxw251), ty_Integer) -> new_compare15(new_sr0(vxw270, vxw251), new_sr0(vxw250, vxw271)) new_ltEs4(Right(vxw280), Right(vxw260), bbf, app(ty_Maybe, bcf)) -> new_ltEs18(vxw280, vxw260, bcf) new_lt7(vxw281, vxw261, app(app(ty_Either, df), dg)) -> new_lt17(vxw281, vxw261, df, dg) new_esEs26(vxw280, vxw260, ty_Integer) -> new_esEs15(vxw280, vxw260) new_esEs11(vxw281, vxw261, ty_Char) -> new_esEs13(vxw281, vxw261) new_esEs7(Just(vxw310), Just(vxw4010), app(ty_Ratio, chh)) -> new_esEs14(vxw310, vxw4010, chh) new_esEs7(Just(vxw310), Just(vxw4010), ty_@0) -> new_esEs17(vxw310, vxw4010) new_esEs14(:%(vxw310, vxw311), :%(vxw4010, vxw4011), bga) -> new_asAs(new_esEs21(vxw310, vxw4010, bga), new_esEs20(vxw311, vxw4011, bga)) new_ltEs9(vxw282, vxw262, ty_Float) -> new_ltEs17(vxw282, vxw262) new_ltEs19(vxw281, vxw261, ty_Int) -> new_ltEs11(vxw281, vxw261) new_primEqNat0(Succ(vxw3100), Zero) -> False new_primEqNat0(Zero, Succ(vxw40100)) -> False new_esEs6(Left(vxw310), Left(vxw4010), app(ty_Ratio, bhd), bgc) -> new_esEs14(vxw310, vxw4010, bhd) new_esEs27(vxw311, vxw4011, ty_Int) -> new_esEs10(vxw311, vxw4011) new_compare10(vxw27, vxw25, True, fc, fd) -> LT new_ltEs4(Left(vxw280), Left(vxw260), app(ty_Maybe, bbd), bag) -> new_ltEs18(vxw280, vxw260, bbd) new_esEs12(vxw280, vxw260, app(ty_Ratio, bfe)) -> new_esEs14(vxw280, vxw260, bfe) new_lt20(vxw280, vxw260, ty_Integer) -> new_lt14(vxw280, vxw260) new_esEs12(vxw280, vxw260, ty_@0) -> new_esEs17(vxw280, vxw260) new_ltEs4(Left(vxw280), Left(vxw260), ty_Char, bag) -> new_ltEs5(vxw280, vxw260) new_compare13(vxw27, vxw25, False, bfd) -> GT new_esEs23(vxw312, vxw4012, ty_Int) -> new_esEs10(vxw312, vxw4012) new_ltEs4(Left(vxw280), Left(vxw260), ty_Double, bag) -> new_ltEs16(vxw280, vxw260) new_compare18(Float(vxw270, Neg(vxw2710)), Float(vxw250, Neg(vxw2510))) -> new_compare16(new_sr(vxw270, Neg(vxw2510)), new_sr(Neg(vxw2710), vxw250)) new_lt20(vxw280, vxw260, ty_Int) -> new_lt12(vxw280, vxw260) new_esEs24(vxw311, vxw4011, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs4(vxw311, vxw4011, cea, ceb, cec) new_esEs23(vxw312, vxw4012, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(vxw312, vxw4012, ccg, cch, cda) new_esEs24(vxw311, vxw4011, app(ty_Ratio, cfa)) -> new_esEs14(vxw311, vxw4011, cfa) new_primCmpInt(Pos(Succ(vxw2700)), Neg(vxw250)) -> GT new_esEs28(vxw310, vxw4010, ty_Int) -> new_esEs10(vxw310, vxw4010) new_esEs25(vxw310, vxw4010, ty_Bool) -> new_esEs16(vxw310, vxw4010) new_esEs28(vxw310, vxw4010, ty_@0) -> new_esEs17(vxw310, vxw4010) new_lt10(vxw27, vxw25, ba, bb, bc) -> new_esEs8(new_compare28(vxw27, vxw25, ba, bb, bc), LT) new_esEs6(Left(vxw310), Left(vxw4010), ty_Bool, bgc) -> new_esEs16(vxw310, vxw4010) new_esEs12(vxw280, vxw260, ty_Double) -> new_esEs9(vxw280, vxw260) new_esEs24(vxw311, vxw4011, ty_Double) -> new_esEs9(vxw311, vxw4011) new_ltEs13(vxw28, vxw26) -> new_fsEs(new_compare15(vxw28, vxw26)) new_ltEs7(GT, GT) -> True new_ltEs4(Left(vxw280), Left(vxw260), ty_Ordering, bag) -> new_ltEs7(vxw280, vxw260) new_compare31(vxw270, vxw250, app(ty_Maybe, bfb)) -> new_compare7(vxw270, vxw250, bfb) new_esEs26(vxw280, vxw260, ty_Float) -> new_esEs18(vxw280, vxw260) new_esEs23(vxw312, vxw4012, ty_@0) -> new_esEs17(vxw312, vxw4012) new_primCmpNat0(Zero, Succ(vxw2500)) -> LT new_esEs6(Right(vxw310), Right(vxw4010), bhf, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_esEs6(Right(vxw310), Right(vxw4010), bhf, app(ty_Ratio, cag)) -> new_esEs14(vxw310, vxw4010, cag) new_esEs19(:(vxw310, vxw311), :(vxw4010, vxw4011), cba) -> new_asAs(new_esEs22(vxw310, vxw4010, cba), new_esEs19(vxw311, vxw4011, cba)) new_esEs7(Just(vxw310), Just(vxw4010), ty_Double) -> new_esEs9(vxw310, vxw4010) new_primCompAux1(vxw270, vxw250, vxw72, beb) -> new_primCompAux0(vxw72, new_compare31(vxw270, vxw250, beb)) new_primCmpNat0(Succ(vxw2700), Zero) -> GT new_compare110(vxw27, vxw25, False, ba, bb, bc) -> GT new_pePe(False, vxw63) -> vxw63 new_lt7(vxw281, vxw261, app(ty_Maybe, dh)) -> new_lt4(vxw281, vxw261, dh) new_esEs7(Nothing, Just(vxw4010), cgg) -> False new_esEs7(Just(vxw310), Nothing, cgg) -> False new_esEs17(@0, @0) -> True new_esEs22(vxw310, vxw4010, ty_@0) -> new_esEs17(vxw310, vxw4010) new_esEs22(vxw310, vxw4010, app(ty_Ratio, ccb)) -> new_esEs14(vxw310, vxw4010, ccb) new_esEs19([], [], cba) -> True new_ltEs4(Right(vxw280), Right(vxw260), bbf, ty_@0) -> new_ltEs15(vxw280, vxw260) new_ltEs19(vxw281, vxw261, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs8(vxw281, vxw261, ha, hb, hc) new_esEs22(vxw310, vxw4010, app(app(ty_Either, cbh), cca)) -> new_esEs6(vxw310, vxw4010, cbh, cca) new_esEs20(vxw311, vxw4011, ty_Int) -> new_esEs10(vxw311, vxw4011) new_esEs27(vxw311, vxw4011, ty_Bool) -> new_esEs16(vxw311, vxw4011) new_esEs11(vxw281, vxw261, ty_Float) -> new_esEs18(vxw281, vxw261) new_esEs26(vxw280, vxw260, app(app(ty_@2, gb), gc)) -> new_esEs5(vxw280, vxw260, gb, gc) new_esEs7(Just(vxw310), Just(vxw4010), ty_Float) -> new_esEs18(vxw310, vxw4010) new_ltEs19(vxw281, vxw261, app(app(ty_@2, hd), he)) -> new_ltEs10(vxw281, vxw261, hd, he) new_ltEs19(vxw281, vxw261, ty_Double) -> new_ltEs16(vxw281, vxw261) new_esEs6(Left(vxw310), Left(vxw4010), ty_Ordering, bgc) -> new_esEs8(vxw310, vxw4010) new_compare23(vxw27, vxw25, True, bab, bac) -> EQ new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(vxw27, vxw25, False, bab, bac) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vxw40100))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40100))) -> False new_esEs24(vxw311, vxw4011, ty_Char) -> new_esEs13(vxw311, vxw4011) new_lt6(vxw280, vxw260, ty_Float) -> new_lt18(vxw280, vxw260) new_esEs7(Nothing, Nothing, cgg) -> True new_esEs6(Left(vxw310), Left(vxw4010), app(app(app(ty_@3, bgd), bge), bgf), bgc) -> new_esEs4(vxw310, vxw4010, bgd, bge, bgf) new_ltEs14(True, True) -> True new_compare31(vxw270, vxw250, ty_Char) -> new_compare6(vxw270, vxw250) new_ltEs18(Just(vxw280), Just(vxw260), ty_@0) -> new_ltEs15(vxw280, vxw260) new_primEqInt(Neg(Succ(vxw3100)), Neg(Succ(vxw40100))) -> new_primEqNat0(vxw3100, vxw40100) new_esEs25(vxw310, vxw4010, ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_esEs6(Right(vxw310), Right(vxw4010), bhf, app(app(ty_@2, cab), cac)) -> new_esEs5(vxw310, vxw4010, cab, cac) new_primCmpInt(Neg(Zero), Pos(Succ(vxw2500))) -> LT new_ltEs4(Left(vxw280), Left(vxw260), ty_Float, bag) -> new_ltEs17(vxw280, vxw260) new_primMulInt(Pos(vxw3100), Pos(vxw40110)) -> Pos(new_primMulNat0(vxw3100, vxw40110)) new_lt6(vxw280, vxw260, app(app(app(ty_@3, bd), be), bf)) -> new_lt10(vxw280, vxw260, bd, be, bf) new_esEs25(vxw310, vxw4010, app(ty_Maybe, cgd)) -> new_esEs7(vxw310, vxw4010, cgd) new_ltEs11(vxw28, vxw26) -> new_fsEs(new_compare16(vxw28, vxw26)) new_ltEs5(vxw28, vxw26) -> new_fsEs(new_compare6(vxw28, vxw26)) new_esEs24(vxw311, vxw4011, app(app(ty_Either, ceg), ceh)) -> new_esEs6(vxw311, vxw4011, ceg, ceh) new_esEs6(Left(vxw310), Left(vxw4010), app(app(ty_Either, bhb), bhc), bgc) -> new_esEs6(vxw310, vxw4010, bhb, bhc) new_lt7(vxw281, vxw261, ty_Integer) -> new_lt14(vxw281, vxw261) new_primMulNat0(Succ(vxw31000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw401100)) -> Zero new_ltEs9(vxw282, vxw262, ty_Double) -> new_ltEs16(vxw282, vxw262) new_compare28(vxw27, vxw25, ba, bb, bc) -> new_compare210(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) new_ltEs19(vxw281, vxw261, ty_Integer) -> new_ltEs13(vxw281, vxw261) new_esEs11(vxw281, vxw261, app(app(ty_@2, dd), de)) -> new_esEs5(vxw281, vxw261, dd, de) new_esEs22(vxw310, vxw4010, app(ty_Maybe, ccc)) -> new_esEs7(vxw310, vxw4010, ccc) new_primPlusNat1(Succ(vxw840), vxw401100) -> Succ(Succ(new_primPlusNat0(vxw840, vxw401100))) new_compare26(vxw27, vxw25, fc, fd) -> new_compare27(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) new_ltEs4(Right(vxw280), Right(vxw260), bbf, ty_Bool) -> new_ltEs14(vxw280, vxw260) new_esEs23(vxw312, vxw4012, app(ty_Maybe, cdh)) -> new_esEs7(vxw312, vxw4012, cdh) new_lt7(vxw281, vxw261, ty_Bool) -> new_lt15(vxw281, vxw261) new_primPlusNat0(Succ(vxw8400), Zero) -> Succ(vxw8400) new_primPlusNat0(Zero, Succ(vxw4011000)) -> Succ(vxw4011000) new_esEs7(Just(vxw310), Just(vxw4010), app(app(ty_Either, chf), chg)) -> new_esEs6(vxw310, vxw4010, chf, chg) new_esEs6(Left(vxw310), Left(vxw4010), app(ty_[], bha), bgc) -> new_esEs19(vxw310, vxw4010, bha) new_compare4(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_primCompAux1(vxw270, vxw250, new_compare4(vxw271, vxw251, beb), beb) new_primPlusNat1(Zero, vxw401100) -> Succ(vxw401100) new_lt9(vxw27, vxw25) -> new_esEs8(new_compare30(vxw27, vxw25), LT) new_esEs8(LT, LT) -> True new_esEs23(vxw312, vxw4012, ty_Float) -> new_esEs18(vxw312, vxw4012) new_esEs11(vxw281, vxw261, app(ty_Ratio, bff)) -> new_esEs14(vxw281, vxw261, bff) new_esEs6(Right(vxw310), Right(vxw4010), bhf, ty_Int) -> new_esEs10(vxw310, vxw4010) new_compare111(vxw27, vxw25, True) -> LT new_ltEs18(Just(vxw280), Just(vxw260), ty_Int) -> new_ltEs11(vxw280, vxw260) new_esEs7(Just(vxw310), Just(vxw4010), ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_esEs27(vxw311, vxw4011, ty_Char) -> new_esEs13(vxw311, vxw4011) new_esEs26(vxw280, vxw260, ty_Double) -> new_esEs9(vxw280, vxw260) new_esEs24(vxw311, vxw4011, ty_Float) -> new_esEs18(vxw311, vxw4011) new_ltEs9(vxw282, vxw262, app(ty_Ratio, bfg)) -> new_ltEs12(vxw282, vxw262, bfg) new_esEs11(vxw281, vxw261, app(app(ty_Either, df), dg)) -> new_esEs6(vxw281, vxw261, df, dg) new_compare29(vxw27, vxw25, False) -> new_compare111(vxw27, vxw25, new_ltEs14(vxw27, vxw25)) new_esEs23(vxw312, vxw4012, app(app(ty_@2, cdb), cdc)) -> new_esEs5(vxw312, vxw4012, cdb, cdc) new_esEs6(Left(vxw310), Left(vxw4010), app(app(ty_@2, bgg), bgh), bgc) -> new_esEs5(vxw310, vxw4010, bgg, bgh) new_lt20(vxw280, vxw260, ty_Float) -> new_lt18(vxw280, vxw260) new_ltEs18(Just(vxw280), Just(vxw260), ty_Double) -> new_ltEs16(vxw280, vxw260) new_lt13(vxw27, vxw25, bfh) -> new_esEs8(new_compare14(vxw27, vxw25, bfh), LT) new_esEs24(vxw311, vxw4011, app(ty_Maybe, cfb)) -> new_esEs7(vxw311, vxw4011, cfb) new_lt5(vxw27, vxw25) -> new_esEs8(new_compare8(vxw27, vxw25), LT) new_esEs11(vxw281, vxw261, ty_Ordering) -> new_esEs8(vxw281, vxw261) new_lt7(vxw281, vxw261, app(app(ty_@2, dd), de)) -> new_lt11(vxw281, vxw261, dd, de) new_esEs12(vxw280, vxw260, app(app(ty_Either, cc), cd)) -> new_esEs6(vxw280, vxw260, cc, cd) new_lt19(vxw27, vxw25, beb) -> new_esEs8(new_compare4(vxw27, vxw25, beb), LT) new_esEs27(vxw311, vxw4011, ty_Double) -> new_esEs9(vxw311, vxw4011) new_primMulInt(Neg(vxw3100), Neg(vxw40110)) -> Pos(new_primMulNat0(vxw3100, vxw40110)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw2500))) -> new_primCmpNat0(Zero, Succ(vxw2500)) new_compare25(vxw27, vxw25, True, bfd) -> EQ new_ltEs18(Just(vxw280), Just(vxw260), app(ty_Ratio, dae)) -> new_ltEs12(vxw280, vxw260, dae) new_esEs28(vxw310, vxw4010, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_esEs12(vxw280, vxw260, ty_Ordering) -> new_esEs8(vxw280, vxw260) new_esEs12(vxw280, vxw260, app(app(ty_@2, ca), cb)) -> new_esEs5(vxw280, vxw260, ca, cb) new_compare23(vxw27, vxw25, False, bab, bac) -> new_compare11(vxw27, vxw25, new_ltEs4(vxw27, vxw25, bab, bac), bab, bac) new_esEs7(Just(vxw310), Just(vxw4010), app(app(ty_@2, chc), chd)) -> new_esEs5(vxw310, vxw4010, chc, chd) new_esEs24(vxw311, vxw4011, app(app(ty_@2, ced), cee)) -> new_esEs5(vxw311, vxw4011, ced, cee) new_esEs12(vxw280, vxw260, app(ty_Maybe, ce)) -> new_esEs7(vxw280, vxw260, ce) new_compare4([], :(vxw250, vxw251), beb) -> LT new_ltEs9(vxw282, vxw262, ty_Int) -> new_ltEs11(vxw282, vxw262) new_esEs6(Right(vxw310), Right(vxw4010), bhf, ty_@0) -> new_esEs17(vxw310, vxw4010) new_esEs23(vxw312, vxw4012, ty_Ordering) -> new_esEs8(vxw312, vxw4012) new_esEs26(vxw280, vxw260, ty_Char) -> new_esEs13(vxw280, vxw260) new_ltEs6(vxw28, vxw26, bea) -> new_fsEs(new_compare4(vxw28, vxw26, bea)) new_esEs23(vxw312, vxw4012, app(app(ty_Either, cde), cdf)) -> new_esEs6(vxw312, vxw4012, cde, cdf) new_esEs28(vxw310, vxw4010, ty_Bool) -> new_esEs16(vxw310, vxw4010) new_esEs12(vxw280, vxw260, ty_Float) -> new_esEs18(vxw280, vxw260) new_ltEs4(Left(vxw280), Left(vxw260), app(app(app(ty_@3, bad), bae), baf), bag) -> new_ltEs8(vxw280, vxw260, bad, bae, baf) new_ltEs7(LT, LT) -> True new_compare14(:%(vxw270, vxw271), :%(vxw250, vxw251), ty_Int) -> new_compare16(new_sr(vxw270, vxw251), new_sr(vxw250, vxw271)) new_lt20(vxw280, vxw260, app(app(app(ty_@3, ff), fg), fh)) -> new_lt10(vxw280, vxw260, ff, fg, fh) new_esEs27(vxw311, vxw4011, app(app(ty_@2, dbd), dbe)) -> new_esEs5(vxw311, vxw4011, dbd, dbe) new_esEs26(vxw280, vxw260, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs4(vxw280, vxw260, ff, fg, fh) new_primMulInt(Pos(vxw3100), Neg(vxw40110)) -> Neg(new_primMulNat0(vxw3100, vxw40110)) new_primMulInt(Neg(vxw3100), Pos(vxw40110)) -> Neg(new_primMulNat0(vxw3100, vxw40110)) new_esEs11(vxw281, vxw261, app(ty_Maybe, dh)) -> new_esEs7(vxw281, vxw261, dh) new_lt7(vxw281, vxw261, ty_Float) -> new_lt18(vxw281, vxw261) new_esEs20(vxw311, vxw4011, ty_Integer) -> new_esEs15(vxw311, vxw4011) new_esEs22(vxw310, vxw4010, ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_ltEs4(Right(vxw280), Right(vxw260), bbf, app(app(ty_Either, bcd), bce)) -> new_ltEs4(vxw280, vxw260, bcd, bce) new_ltEs18(Nothing, Nothing, dad) -> True new_esEs6(Right(vxw310), Right(vxw4010), bhf, app(app(ty_Either, cae), caf)) -> new_esEs6(vxw310, vxw4010, cae, caf) new_esEs23(vxw312, vxw4012, ty_Char) -> new_esEs13(vxw312, vxw4012) new_compare15(Integer(vxw270), Integer(vxw250)) -> new_primCmpInt(vxw270, vxw250) new_lt7(vxw281, vxw261, app(ty_Ratio, bff)) -> new_lt13(vxw281, vxw261, bff) new_ltEs4(Left(vxw280), Left(vxw260), ty_Integer, bag) -> new_ltEs13(vxw280, vxw260) new_esEs19(:(vxw310, vxw311), [], cba) -> False new_esEs19([], :(vxw4010, vxw4011), cba) -> False new_sr0(Integer(vxw2700), Integer(vxw2510)) -> Integer(new_primMulInt(vxw2700, vxw2510)) new_ltEs18(Just(vxw280), Just(vxw260), app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs8(vxw280, vxw260, bch, bda, bdb) new_lt16(vxw27, vxw25) -> new_esEs8(new_compare9(vxw27, vxw25), LT) new_compare31(vxw270, vxw250, ty_Integer) -> new_compare15(vxw270, vxw250) new_ltEs18(Just(vxw280), Just(vxw260), app(ty_Maybe, bdg)) -> new_ltEs18(vxw280, vxw260, bdg) new_lt6(vxw280, vxw260, ty_Integer) -> new_lt14(vxw280, vxw260) new_esEs18(Float(vxw310, vxw311), Float(vxw4010, vxw4011)) -> new_esEs10(new_sr(vxw310, vxw4011), new_sr(vxw311, vxw4010)) new_lt20(vxw280, vxw260, ty_Double) -> new_lt16(vxw280, vxw260) new_esEs11(vxw281, vxw261, ty_Double) -> new_esEs9(vxw281, vxw261) new_esEs25(vxw310, vxw4010, ty_Float) -> new_esEs18(vxw310, vxw4010) new_esEs15(Integer(vxw310), Integer(vxw4010)) -> new_primEqInt(vxw310, vxw4010) new_lt7(vxw281, vxw261, ty_@0) -> new_lt5(vxw281, vxw261) new_asAs(True, vxw56) -> vxw56 new_esEs25(vxw310, vxw4010, app(ty_Ratio, cgc)) -> new_esEs14(vxw310, vxw4010, cgc) new_compare10(vxw27, vxw25, False, fc, fd) -> GT new_ltEs18(Just(vxw280), Just(vxw260), app(app(ty_Either, bde), bdf)) -> new_ltEs4(vxw280, vxw260, bde, bdf) new_esEs11(vxw281, vxw261, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vxw281, vxw261, da, db, dc) new_compare31(vxw270, vxw250, ty_Int) -> new_compare16(vxw270, vxw250) new_compare9(Double(vxw270, Neg(vxw2710)), Double(vxw250, Neg(vxw2510))) -> new_compare16(new_sr(vxw270, Neg(vxw2510)), new_sr(Neg(vxw2710), vxw250)) new_esEs6(Left(vxw310), Right(vxw4010), bhf, bgc) -> False new_esEs6(Right(vxw310), Left(vxw4010), bhf, bgc) -> False new_esEs6(Left(vxw310), Left(vxw4010), ty_Double, bgc) -> new_esEs9(vxw310, vxw4010) new_esEs24(vxw311, vxw4011, ty_Integer) -> new_esEs15(vxw311, vxw4011) new_ltEs18(Just(vxw280), Nothing, dad) -> False new_esEs22(vxw310, vxw4010, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs4(vxw310, vxw4010, cbb, cbc, cbd) new_esEs6(Left(vxw310), Left(vxw4010), ty_Float, bgc) -> new_esEs18(vxw310, vxw4010) new_ltEs18(Just(vxw280), Just(vxw260), ty_Integer) -> new_ltEs13(vxw280, vxw260) new_compare13(vxw27, vxw25, True, bfd) -> LT new_esEs26(vxw280, vxw260, app(ty_[], gg)) -> new_esEs19(vxw280, vxw260, gg) new_esEs7(Just(vxw310), Just(vxw4010), ty_Bool) -> new_esEs16(vxw310, vxw4010) new_esEs21(vxw310, vxw4010, ty_Int) -> new_esEs10(vxw310, vxw4010) new_ltEs19(vxw281, vxw261, ty_@0) -> new_ltEs15(vxw281, vxw261) new_primCmpInt(Pos(Succ(vxw2700)), Pos(vxw250)) -> new_primCmpNat0(Succ(vxw2700), vxw250) new_esEs12(vxw280, vxw260, app(ty_[], cf)) -> new_esEs19(vxw280, vxw260, cf) new_esEs24(vxw311, vxw4011, ty_Bool) -> new_esEs16(vxw311, vxw4011) new_sr(vxw310, vxw4011) -> new_primMulInt(vxw310, vxw4011) new_esEs28(vxw310, vxw4010, ty_Char) -> new_esEs13(vxw310, vxw4010) new_lt7(vxw281, vxw261, ty_Double) -> new_lt16(vxw281, vxw261) new_esEs25(vxw310, vxw4010, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_compare4(:(vxw270, vxw271), [], beb) -> GT new_primMulNat0(Zero, Zero) -> Zero new_ltEs9(vxw282, vxw262, ty_Char) -> new_ltEs5(vxw282, vxw262) new_esEs25(vxw310, vxw4010, ty_Double) -> new_esEs9(vxw310, vxw4010) new_compare18(Float(vxw270, Pos(vxw2710)), Float(vxw250, Pos(vxw2510))) -> new_compare16(new_sr(vxw270, Pos(vxw2510)), new_sr(Pos(vxw2710), vxw250)) new_esEs27(vxw311, vxw4011, ty_Ordering) -> new_esEs8(vxw311, vxw4011) new_compare111(vxw27, vxw25, False) -> GT new_esEs22(vxw310, vxw4010, app(app(ty_@2, cbe), cbf)) -> new_esEs5(vxw310, vxw4010, cbe, cbf) new_esEs26(vxw280, vxw260, app(app(ty_Either, gd), ge)) -> new_esEs6(vxw280, vxw260, gd, ge) new_lt15(vxw27, vxw25) -> new_esEs8(new_compare17(vxw27, vxw25), LT) new_esEs4(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ccd, cce, ccf) -> new_asAs(new_esEs25(vxw310, vxw4010, ccd), new_asAs(new_esEs24(vxw311, vxw4011, cce), new_esEs23(vxw312, vxw4012, ccf))) new_ltEs7(LT, EQ) -> True new_esEs11(vxw281, vxw261, app(ty_[], ea)) -> new_esEs19(vxw281, vxw261, ea) new_lt6(vxw280, vxw260, ty_Bool) -> new_lt15(vxw280, vxw260) new_esEs11(vxw281, vxw261, ty_@0) -> new_esEs17(vxw281, vxw261) new_ltEs4(Right(vxw280), Right(vxw260), bbf, ty_Int) -> new_ltEs11(vxw280, vxw260) new_esEs9(Double(vxw310, vxw311), Double(vxw4010, vxw4011)) -> new_esEs10(new_sr(vxw310, vxw4011), new_sr(vxw311, vxw4010)) new_esEs27(vxw311, vxw4011, app(ty_[], dbf)) -> new_esEs19(vxw311, vxw4011, dbf) new_ltEs17(vxw28, vxw26) -> new_fsEs(new_compare18(vxw28, vxw26)) new_lt20(vxw280, vxw260, app(ty_Ratio, cge)) -> new_lt13(vxw280, vxw260, cge) new_ltEs14(False, True) -> True new_compare25(vxw27, vxw25, False, bfd) -> new_compare13(vxw27, vxw25, new_ltEs18(vxw27, vxw25, bfd), bfd) new_compare9(Double(vxw270, Pos(vxw2710)), Double(vxw250, Pos(vxw2510))) -> new_compare16(new_sr(vxw270, Pos(vxw2510)), new_sr(Pos(vxw2710), vxw250)) new_esEs6(Left(vxw310), Left(vxw4010), ty_Integer, bgc) -> new_esEs15(vxw310, vxw4010) new_esEs25(vxw310, vxw4010, app(app(ty_Either, cga), cgb)) -> new_esEs6(vxw310, vxw4010, cga, cgb) new_esEs11(vxw281, vxw261, ty_Int) -> new_esEs10(vxw281, vxw261) new_primCompAux0(vxw82, EQ) -> vxw82 new_esEs7(Just(vxw310), Just(vxw4010), ty_Char) -> new_esEs13(vxw310, vxw4010) new_lt20(vxw280, vxw260, ty_Char) -> new_lt8(vxw280, vxw260) new_ltEs4(Left(vxw280), Left(vxw260), ty_@0, bag) -> new_ltEs15(vxw280, vxw260) new_ltEs4(Right(vxw280), Right(vxw260), bbf, app(ty_[], bcg)) -> new_ltEs6(vxw280, vxw260, bcg) new_lt17(vxw27, vxw25, bab, bac) -> new_esEs8(new_compare19(vxw27, vxw25, bab, bac), LT) new_primEqInt(Neg(Succ(vxw3100)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40100))) -> False new_primEqInt(Pos(Succ(vxw3100)), Pos(Succ(vxw40100))) -> new_primEqNat0(vxw3100, vxw40100) new_ltEs19(vxw281, vxw261, app(ty_Maybe, hh)) -> new_ltEs18(vxw281, vxw261, hh) new_esEs22(vxw310, vxw4010, ty_Int) -> new_esEs10(vxw310, vxw4010) new_esEs6(Right(vxw310), Right(vxw4010), bhf, ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_ltEs4(Right(vxw280), Right(vxw260), bbf, ty_Ordering) -> new_ltEs7(vxw280, vxw260) new_compare31(vxw270, vxw250, app(app(ty_@2, bef), beg)) -> new_compare26(vxw270, vxw250, bef, beg) new_compare24(vxw27, vxw25, True) -> EQ new_ltEs4(Left(vxw280), Left(vxw260), app(ty_[], bbe), bag) -> new_ltEs6(vxw280, vxw260, bbe) new_ltEs4(Left(vxw280), Left(vxw260), app(app(ty_Either, bbb), bbc), bag) -> new_ltEs4(vxw280, vxw260, bbb, bbc) new_esEs16(True, True) -> True new_esEs22(vxw310, vxw4010, app(ty_[], cbg)) -> new_esEs19(vxw310, vxw4010, cbg) new_ltEs18(Just(vxw280), Just(vxw260), ty_Float) -> new_ltEs17(vxw280, vxw260) new_esEs6(Right(vxw310), Right(vxw4010), bhf, ty_Bool) -> new_esEs16(vxw310, vxw4010) new_ltEs4(Right(vxw280), Right(vxw260), bbf, ty_Double) -> new_ltEs16(vxw280, vxw260) new_primEqInt(Pos(Succ(vxw3100)), Neg(vxw4010)) -> False new_primEqInt(Neg(Succ(vxw3100)), Pos(vxw4010)) -> False new_lt20(vxw280, vxw260, app(app(ty_@2, gb), gc)) -> new_lt11(vxw280, vxw260, gb, gc) new_esEs26(vxw280, vxw260, ty_Ordering) -> new_esEs8(vxw280, vxw260) new_ltEs12(vxw28, vxw26, bgb) -> new_fsEs(new_compare14(vxw28, vxw26, bgb)) new_primCmpInt(Neg(Zero), Neg(Succ(vxw2500))) -> new_primCmpNat0(Succ(vxw2500), Zero) new_compare4([], [], beb) -> EQ new_esEs12(vxw280, vxw260, ty_Char) -> new_esEs13(vxw280, vxw260) new_compare31(vxw270, vxw250, ty_Bool) -> new_compare17(vxw270, vxw250) new_esEs12(vxw280, vxw260, app(app(app(ty_@3, bd), be), bf)) -> new_esEs4(vxw280, vxw260, bd, be, bf) new_compare31(vxw270, vxw250, ty_Float) -> new_compare18(vxw270, vxw250) new_ltEs19(vxw281, vxw261, app(ty_Ratio, cgf)) -> new_ltEs12(vxw281, vxw261, cgf) new_lt7(vxw281, vxw261, app(app(app(ty_@3, da), db), dc)) -> new_lt10(vxw281, vxw261, da, db, dc) new_esEs26(vxw280, vxw260, app(ty_Maybe, gf)) -> new_esEs7(vxw280, vxw260, gf) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt20(vxw280, vxw260, app(ty_[], gg)) -> new_lt19(vxw280, vxw260, gg) new_esEs21(vxw310, vxw4010, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_esEs23(vxw312, vxw4012, app(ty_[], cdd)) -> new_esEs19(vxw312, vxw4012, cdd) new_lt18(vxw27, vxw25) -> new_esEs8(new_compare18(vxw27, vxw25), LT) new_esEs13(Char(vxw310), Char(vxw4010)) -> new_primEqNat0(vxw310, vxw4010) new_compare110(vxw27, vxw25, True, ba, bb, bc) -> LT new_ltEs4(Right(vxw280), Right(vxw260), bbf, ty_Char) -> new_ltEs5(vxw280, vxw260) new_esEs27(vxw311, vxw4011, app(ty_Maybe, dcb)) -> new_esEs7(vxw311, vxw4011, dcb) new_ltEs9(vxw282, vxw262, ty_Bool) -> new_ltEs14(vxw282, vxw262) new_compare31(vxw270, vxw250, app(app(app(ty_@3, bec), bed), bee)) -> new_compare28(vxw270, vxw250, bec, bed, bee) new_compare17(vxw27, vxw25) -> new_compare29(vxw27, vxw25, new_esEs16(vxw27, vxw25)) new_ltEs7(EQ, GT) -> True new_esEs27(vxw311, vxw4011, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs4(vxw311, vxw4011, dba, dbb, dbc) new_compare31(vxw270, vxw250, app(ty_Ratio, daf)) -> new_compare14(vxw270, vxw250, daf) new_not(False) -> True new_ltEs9(vxw282, vxw262, app(ty_[], fb)) -> new_ltEs6(vxw282, vxw262, fb) new_esEs28(vxw310, vxw4010, ty_Float) -> new_esEs18(vxw310, vxw4010) new_lt20(vxw280, vxw260, ty_Ordering) -> new_lt9(vxw280, vxw260) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs4(Left(vxw280), Left(vxw260), ty_Bool, bag) -> new_ltEs14(vxw280, vxw260) new_compare29(vxw27, vxw25, True) -> EQ new_primPlusNat0(Succ(vxw8400), Succ(vxw4011000)) -> Succ(Succ(new_primPlusNat0(vxw8400, vxw4011000))) new_ltEs7(EQ, EQ) -> True new_lt6(vxw280, vxw260, app(ty_Ratio, bfe)) -> new_lt13(vxw280, vxw260, bfe) new_ltEs19(vxw281, vxw261, ty_Ordering) -> new_ltEs7(vxw281, vxw261) new_ltEs7(GT, EQ) -> False new_compare18(Float(vxw270, Pos(vxw2710)), Float(vxw250, Neg(vxw2510))) -> new_compare16(new_sr(vxw270, Pos(vxw2510)), new_sr(Neg(vxw2710), vxw250)) new_compare18(Float(vxw270, Neg(vxw2710)), Float(vxw250, Pos(vxw2510))) -> new_compare16(new_sr(vxw270, Neg(vxw2510)), new_sr(Pos(vxw2710), vxw250)) new_lt4(vxw27, vxw25, bfd) -> new_esEs8(new_compare7(vxw27, vxw25, bfd), LT) new_compare27(vxw27, vxw25, True, fc, fd) -> EQ new_ltEs4(Left(vxw280), Left(vxw260), app(app(ty_@2, bah), bba), bag) -> new_ltEs10(vxw280, vxw260, bah, bba) new_esEs12(vxw280, vxw260, ty_Bool) -> new_esEs16(vxw280, vxw260) new_esEs24(vxw311, vxw4011, ty_@0) -> new_esEs17(vxw311, vxw4011) new_ltEs4(Left(vxw280), Right(vxw260), bbf, bag) -> True new_ltEs18(Just(vxw280), Just(vxw260), ty_Bool) -> new_ltEs14(vxw280, vxw260) new_ltEs18(Just(vxw280), Just(vxw260), app(ty_[], bdh)) -> new_ltEs6(vxw280, vxw260, bdh) new_esEs22(vxw310, vxw4010, ty_Double) -> new_esEs9(vxw310, vxw4010) new_compare11(vxw27, vxw25, True, bab, bac) -> LT new_esEs12(vxw280, vxw260, ty_Int) -> new_esEs10(vxw280, vxw260) new_ltEs18(Just(vxw280), Just(vxw260), ty_Char) -> new_ltEs5(vxw280, vxw260) new_ltEs9(vxw282, vxw262, ty_Ordering) -> new_ltEs7(vxw282, vxw262) new_esEs24(vxw311, vxw4011, ty_Int) -> new_esEs10(vxw311, vxw4011) new_esEs10(vxw31, vxw401) -> new_primEqInt(vxw31, vxw401) new_lt7(vxw281, vxw261, app(ty_[], ea)) -> new_lt19(vxw281, vxw261, ea) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(vxw310, vxw4010, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs4(vxw310, vxw4010, cfc, cfd, cfe) new_esEs27(vxw311, vxw4011, ty_@0) -> new_esEs17(vxw311, vxw4011) new_compare31(vxw270, vxw250, ty_Ordering) -> new_compare30(vxw270, vxw250) new_ltEs4(Right(vxw280), Right(vxw260), bbf, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs8(vxw280, vxw260, bbg, bbh, bca) new_esEs28(vxw310, vxw4010, app(app(ty_@2, dcf), dcg)) -> new_esEs5(vxw310, vxw4010, dcf, dcg) new_lt6(vxw280, vxw260, ty_Int) -> new_lt12(vxw280, vxw260) new_esEs22(vxw310, vxw4010, ty_Char) -> new_esEs13(vxw310, vxw4010) new_esEs27(vxw311, vxw4011, app(app(ty_Either, dbg), dbh)) -> new_esEs6(vxw311, vxw4011, dbg, dbh) new_lt8(vxw27, vxw25) -> new_esEs8(new_compare6(vxw27, vxw25), LT) new_ltEs7(EQ, LT) -> False new_lt20(vxw280, vxw260, ty_@0) -> new_lt5(vxw280, vxw260) new_esEs27(vxw311, vxw4011, app(ty_Ratio, dca)) -> new_esEs14(vxw311, vxw4011, dca) new_esEs25(vxw310, vxw4010, ty_Int) -> new_esEs10(vxw310, vxw4010) new_esEs22(vxw310, vxw4010, ty_Bool) -> new_esEs16(vxw310, vxw4010) new_ltEs19(vxw281, vxw261, app(app(ty_Either, hf), hg)) -> new_ltEs4(vxw281, vxw261, hf, hg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt6(vxw280, vxw260, ty_Ordering) -> new_lt9(vxw280, vxw260) new_esEs26(vxw280, vxw260, ty_@0) -> new_esEs17(vxw280, vxw260) new_esEs6(Right(vxw310), Right(vxw4010), bhf, ty_Double) -> new_esEs9(vxw310, vxw4010) new_lt20(vxw280, vxw260, app(ty_Maybe, gf)) -> new_lt4(vxw280, vxw260, gf) new_esEs7(Just(vxw310), Just(vxw4010), ty_Integer) -> new_esEs15(vxw310, vxw4010) new_ltEs14(False, False) -> True new_ltEs7(GT, LT) -> False new_compare31(vxw270, vxw250, ty_@0) -> new_compare8(vxw270, vxw250) new_primCmpNat0(Succ(vxw2700), Succ(vxw2500)) -> new_primCmpNat0(vxw2700, vxw2500) new_esEs25(vxw310, vxw4010, ty_@0) -> new_esEs17(vxw310, vxw4010) new_esEs16(False, False) -> True new_compare31(vxw270, vxw250, ty_Double) -> new_compare9(vxw270, vxw250) new_esEs6(Right(vxw310), Right(vxw4010), bhf, app(ty_[], cad)) -> new_esEs19(vxw310, vxw4010, cad) new_esEs26(vxw280, vxw260, app(ty_Ratio, cge)) -> new_esEs14(vxw280, vxw260, cge) new_lt6(vxw280, vxw260, ty_Double) -> new_lt16(vxw280, vxw260) new_esEs23(vxw312, vxw4012, ty_Bool) -> new_esEs16(vxw312, vxw4012) new_esEs26(vxw280, vxw260, ty_Int) -> new_esEs10(vxw280, vxw260) new_compare12(vxw27, vxw25, True) -> LT new_ltEs18(Just(vxw280), Just(vxw260), ty_Ordering) -> new_ltEs7(vxw280, vxw260) new_lt14(vxw27, vxw25) -> new_esEs8(new_compare15(vxw27, vxw25), LT) new_esEs28(vxw310, vxw4010, ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_lt6(vxw280, vxw260, app(app(ty_Either, cc), cd)) -> new_lt17(vxw280, vxw260, cc, cd) new_ltEs15(vxw28, vxw26) -> new_fsEs(new_compare8(vxw28, vxw26)) new_compare6(Char(vxw270), Char(vxw250)) -> new_primCmpNat0(vxw270, vxw250) new_compare7(vxw27, vxw25, bfd) -> new_compare25(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfd), bfd) new_lt6(vxw280, vxw260, app(ty_[], cf)) -> new_lt19(vxw280, vxw260, cf) new_ltEs9(vxw282, vxw262, ty_Integer) -> new_ltEs13(vxw282, vxw262) new_ltEs7(LT, GT) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs6(Right(vxw310), Right(vxw4010), bhf, ty_Char) -> new_esEs13(vxw310, vxw4010) new_esEs28(vxw310, vxw4010, app(app(ty_Either, dda), ddb)) -> new_esEs6(vxw310, vxw4010, dda, ddb) new_esEs11(vxw281, vxw261, ty_Integer) -> new_esEs15(vxw281, vxw261) new_esEs6(Left(vxw310), Left(vxw4010), ty_@0, bgc) -> new_esEs17(vxw310, vxw4010) new_esEs23(vxw312, vxw4012, ty_Integer) -> new_esEs15(vxw312, vxw4012) new_primEqNat0(Zero, Zero) -> True new_esEs25(vxw310, vxw4010, app(ty_[], cfh)) -> new_esEs19(vxw310, vxw4010, cfh) new_lt7(vxw281, vxw261, ty_Int) -> new_lt12(vxw281, vxw261) new_ltEs9(vxw282, vxw262, app(app(ty_@2, ee), ef)) -> new_ltEs10(vxw282, vxw262, ee, ef) new_ltEs14(True, False) -> False new_ltEs4(Right(vxw280), Right(vxw260), bbf, ty_Float) -> new_ltEs17(vxw280, vxw260) new_asAs(False, vxw56) -> False new_esEs6(Left(vxw310), Left(vxw4010), ty_Int, bgc) -> new_esEs10(vxw310, vxw4010) new_ltEs9(vxw282, vxw262, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs8(vxw282, vxw262, eb, ec, ed) new_ltEs8(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, bh) -> new_pePe(new_lt6(vxw280, vxw260, cg), new_asAs(new_esEs12(vxw280, vxw260, cg), new_pePe(new_lt7(vxw281, vxw261, bg), new_asAs(new_esEs11(vxw281, vxw261, bg), new_ltEs9(vxw282, vxw262, bh))))) new_lt6(vxw280, vxw260, ty_@0) -> new_lt5(vxw280, vxw260) new_lt7(vxw281, vxw261, ty_Ordering) -> new_lt9(vxw281, vxw261) new_esEs11(vxw281, vxw261, ty_Bool) -> new_esEs16(vxw281, vxw261) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs4(Right(vxw280), Left(vxw260), bbf, bag) -> False new_lt7(vxw281, vxw261, ty_Char) -> new_lt8(vxw281, vxw261) new_ltEs16(vxw28, vxw26) -> new_fsEs(new_compare9(vxw28, vxw26)) new_ltEs19(vxw281, vxw261, ty_Float) -> new_ltEs17(vxw281, vxw261) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare31(vxw270, vxw250, app(app(ty_Either, beh), bfa)) -> new_compare19(vxw270, vxw250, beh, bfa) The set Q consists of the following terms: new_compare11(x0, x1, False, x2, x3) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_compare210(x0, x1, False, x2, x3, x4) new_esEs25(x0, x1, ty_@0) new_compare13(x0, x1, False, x2) new_esEs24(x0, x1, ty_Integer) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_compare111(x0, x1, False) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_ltEs19(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs18(Nothing, Just(x0), x1) new_compare10(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, x2) new_compare31(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Double) new_esEs12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs18(Just(x0), Just(x1), ty_Int) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare28(x0, x1, x2, x3, x4) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primMulInt(Neg(x0), Neg(x1)) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs18(Just(x0), Nothing, x1) new_compare24(x0, x1, False) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1) new_esEs25(x0, x1, ty_Char) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_ltEs16(x0, x1) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_sr0(Integer(x0), Integer(x1)) new_primMulInt(Pos(x0), Pos(x1)) new_primEqNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Bool) new_ltEs18(Just(x0), Just(x1), ty_@0) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_primCompAux0(x0, EQ) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_compare110(x0, x1, True, x2, x3, x4) new_compare4(:(x0, x1), [], x2) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Char) new_lt6(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(Double(x0, x1), Double(x2, x3)) new_ltEs7(EQ, EQ) new_compare19(x0, x1, x2, x3) new_esEs16(True, True) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare12(x0, x1, True) new_compare8(@0, @0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_lt15(x0, x1) new_lt7(x0, x1, ty_Int) new_compare31(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs21(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, x2) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(x0, x1, ty_Double) new_lt18(x0, x1) new_esEs17(@0, @0) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt14(x0, x1) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_compare13(x0, x1, True, x2) new_esEs27(x0, x1, ty_Int) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_esEs12(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Float) new_esEs12(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), ty_Integer) new_ltEs6(x0, x1, x2) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Ordering) new_esEs7(Nothing, Just(x0), x1) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_lt8(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1) new_lt7(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs26(x0, x1, ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_compare4([], :(x0, x1), x2) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_ltEs9(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs26(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs11(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Char) new_esEs25(x0, x1, ty_Int) new_esEs8(GT, GT) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_primCmpNat0(Succ(x0), Zero) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Zero, Succ(x0)) new_ltEs18(Just(x0), Just(x1), ty_Bool) new_esEs25(x0, x1, ty_Integer) new_compare17(x0, x1) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs14(False, False) new_primCompAux0(x0, LT) new_ltEs9(x0, x1, app(ty_[], x2)) new_ltEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt6(x0, x1, ty_Char) new_esEs7(Nothing, Nothing, x0) new_ltEs18(Just(x0), Just(x1), ty_Ordering) new_compare16(x0, x1) new_lt20(x0, x1, ty_Bool) new_lt6(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Int) new_esEs16(False, False) new_lt6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, True, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Zero, Succ(x0)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs24(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Nothing, x1) new_compare110(x0, x1, False, x2, x3, x4) new_lt11(x0, x1, x2, x3) new_ltEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare25(x0, x1, False, x2) new_esEs12(x0, x1, ty_Char) new_compare7(x0, x1, x2) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True) new_lt20(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs26(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs7(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs9(x0, x1, ty_@0) new_ltEs15(x0, x1) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs12(x0, x1, ty_Int) new_esEs22(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_@0) new_lt6(x0, x1, ty_Float) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_lt7(x0, x1, ty_Float) new_ltEs9(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Zero) new_lt10(x0, x1, x2, x3, x4) new_ltEs17(x0, x1) new_esEs19([], [], x0) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt17(x0, x1, x2, x3) new_ltEs18(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(LT, LT) new_esEs28(x0, x1, ty_@0) new_ltEs5(x0, x1) new_esEs11(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_fsEs(x0) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs11(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs13(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare29(x0, x1, True) new_esEs23(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Char) new_ltEs9(x0, x1, ty_Char) new_primPlusNat0(Zero, Succ(x0)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs14(True, True) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_not(True) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_compare27(x0, x1, False, x2, x3) new_esEs28(x0, x1, ty_Int) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs9(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_compare4([], [], x0) new_compare25(x0, x1, True, x2) new_esEs11(x0, x1, ty_Ordering) new_ltEs18(Just(x0), Just(x1), ty_Float) new_compare23(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Integer) new_lt12(x0, x1) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs11(x0, x1, ty_Integer) new_esEs12(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) new_compare31(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare29(x0, x1, False) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_sr(x0, x1) new_ltEs7(GT, GT) new_esEs27(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare4(:(x0, x1), :(x2, x3), x4) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs22(x0, x1, ty_Float) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_compare210(x0, x1, True, x2, x3, x4) new_lt6(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_lt7(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs19(:(x0, x1), :(x2, x3), x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Integer) new_lt16(x0, x1) new_ltEs9(x0, x1, ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_lt9(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_compare111(x0, x1, True) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_compare10(x0, x1, False, x2, x3) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs24(x0, x1, ty_Float) new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(:(x0, x1), [], x2) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_Double) new_ltEs12(x0, x1, x2) new_esEs22(x0, x1, ty_Ordering) new_lt5(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_asAs(True, x0) new_esEs13(Char(x0), Char(x1)) new_esEs22(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, ty_@0) new_compare31(x0, x1, ty_Bool) new_compare12(x0, x1, False) new_ltEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs9(x0, x1, ty_Int) new_primCompAux0(x0, GT) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs18(Float(x0, x1), Float(x2, x3)) new_ltEs14(False, True) new_compare6(Char(x0), Char(x1)) new_ltEs14(True, False) new_compare15(Integer(x0), Integer(x1)) new_primEqNat0(Zero, Zero) new_lt6(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs22(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, ty_@0) new_not(False) new_ltEs18(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, app(ty_[], x2)) new_compare23(x0, x1, False, x2, x3) new_compare31(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs14(:%(x0, x1), :%(x2, x3), x4) new_esEs28(x0, x1, ty_Bool) new_ltEs9(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, x2) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt20(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_@0) new_compare31(x0, x1, ty_Char) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_esEs15(Integer(x0), Integer(x1)) new_esEs16(False, True) new_esEs16(True, False) new_esEs21(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Float) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs12(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs12(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Integer) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_ltEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs19([], :(x0, x1), x2) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs27(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Zero) new_ltEs11(x0, x1) new_esEs24(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), x1) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) 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_compare22(vxw27, vxw25, False, bfd) -> new_ltEs2(vxw27, vxw25, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_lt3(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_primCompAux(vxw270, vxw250, new_compare4(vxw271, vxw251, beb), beb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt3(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_compare3(vxw271, vxw251, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare5(vxw27, vxw25, bfd) -> new_compare22(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfd), bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare3(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_primCompAux(vxw270, vxw250, new_compare4(vxw271, vxw251, beb), beb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs2(Just(vxw280), Just(vxw260), app(app(ty_@2, bdc), bdd)) -> new_ltEs0(vxw280, vxw260, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(vxw280), Just(vxw260), app(ty_Maybe, bdg)) -> new_ltEs2(vxw280, vxw260, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(vxw28, vxw26, bea) -> new_compare3(vxw28, vxw26, bea) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs2(Just(vxw280), Just(vxw260), app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs(vxw280, vxw260, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(vxw27, vxw25, fc, fd) -> new_compare20(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(ty_[], gg), ga) -> new_lt3(vxw280, vxw260, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(ty_@2, ee), ef)) -> new_ltEs0(vxw282, vxw262, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(ty_Maybe, gf), ga) -> new_lt2(vxw280, vxw260, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(ty_Maybe, fa)) -> new_ltEs2(vxw282, vxw262, fa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(ty_Maybe, hh)) -> new_ltEs2(vxw281, vxw261, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs(vxw282, vxw262, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare3(:(vxw270, vxw271), :(vxw250, vxw251), beb) -> new_compare3(vxw271, vxw251, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt1(vxw27, vxw25, bab, bac) -> new_compare21(vxw27, vxw25, new_esEs6(vxw27, vxw25, bab, bac), bab, bac) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare1(vxw27, vxw25, bab, bac) -> new_compare21(vxw27, vxw25, new_esEs6(vxw27, vxw25, bab, bac), bab, bac) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(app(ty_@2, hd), he)) -> new_ltEs0(vxw281, vxw261, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(vxw27, vxw25, False, fc, fd) -> new_ltEs0(vxw27, vxw25, fc, fd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs2(Just(vxw280), Just(vxw260), app(app(ty_Either, bde), bdf)) -> new_ltEs1(vxw280, vxw260, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(vxw280), Just(vxw260), app(ty_[], bdh)) -> new_ltEs3(vxw280, vxw260, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs(vxw281, vxw261, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(vxw27, vxw25, False, ba, bb, bc) -> new_ltEs(vxw27, vxw25, ba, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(ty_Either, eg), eh)) -> new_ltEs1(vxw282, vxw262, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(app(ty_Either, hf), hg)) -> new_ltEs1(vxw281, vxw261, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(vxw27, vxw25, False, bab, bac) -> new_ltEs1(vxw27, vxw25, bab, bac) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(vxw270, vxw250, vxw72, app(app(ty_@2, bef), beg)) -> new_compare0(vxw270, vxw250, bef, beg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_lt(vxw27, vxw25, ba, bb, bc) -> new_compare2(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare(vxw27, vxw25, ba, bb, bc) -> new_compare2(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare0(vxw27, vxw25, fc, fd) -> new_compare20(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt2(vxw27, vxw25, bfd) -> new_compare22(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfd), bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_primCompAux(vxw270, vxw250, vxw72, app(ty_[], bfc)) -> new_compare3(vxw270, vxw250, bfc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vxw270, vxw250, vxw72, app(app(app(ty_@3, bec), bed), bee)) -> new_compare(vxw270, vxw250, bec, bed, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(app(ty_@3, ff), fg), fh), ga) -> new_lt(vxw280, vxw260, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(ty_[], fb)) -> new_ltEs3(vxw282, vxw262, fb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), gh, app(ty_[], baa)) -> new_ltEs3(vxw281, vxw261, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(vxw270, vxw250, vxw72, app(app(ty_Either, beh), bfa)) -> new_compare1(vxw270, vxw250, beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vxw270, vxw250, vxw72, app(ty_Maybe, bfb)) -> new_compare5(vxw270, vxw250, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(ty_@2, gb), gc), ga) -> new_lt0(vxw280, vxw260, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(ty_Either, gd), ge), ga) -> new_lt1(vxw280, vxw260, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(ty_[], cf), bg, bh) -> new_lt3(vxw280, vxw260, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(ty_[], ea), bh) -> new_lt3(vxw281, vxw261, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vxw280), Left(vxw260), app(app(ty_@2, bah), bba), bag) -> new_ltEs0(vxw280, vxw260, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(app(ty_@2, bcb), bcc)) -> new_ltEs0(vxw280, vxw260, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(ty_Maybe, ce), bg, bh) -> new_lt2(vxw280, vxw260, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(ty_Maybe, dh), bh) -> new_lt2(vxw281, vxw261, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vxw280), Left(vxw260), app(ty_Maybe, bbd), bag) -> new_ltEs2(vxw280, vxw260, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(ty_Maybe, bcf)) -> new_ltEs2(vxw280, vxw260, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vxw280), Left(vxw260), app(app(app(ty_@3, bad), bae), baf), bag) -> new_ltEs(vxw280, vxw260, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs(vxw280, vxw260, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(app(ty_Either, bcd), bce)) -> new_ltEs1(vxw280, vxw260, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vxw280), Left(vxw260), app(app(ty_Either, bbb), bbc), bag) -> new_ltEs1(vxw280, vxw260, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(vxw280), Right(vxw260), bbf, app(ty_[], bcg)) -> new_ltEs3(vxw280, vxw260, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vxw280), Left(vxw260), app(ty_[], bbe), bag) -> new_ltEs3(vxw280, vxw260, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(app(ty_@3, bd), be), bf), bg, bh) -> new_lt(vxw280, vxw260, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(app(ty_@3, da), db), dc), bh) -> new_lt(vxw281, vxw261, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(ty_@2, ca), cb), bg, bh) -> new_lt0(vxw280, vxw260, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(ty_@2, dd), de), bh) -> new_lt0(vxw281, vxw261, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(ty_Either, df), dg), bh) -> new_lt1(vxw281, vxw261, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(ty_Either, cc), cd), bg, bh) -> new_lt1(vxw280, vxw260, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vxw31000), Succ(vxw401100)) -> new_primMulNat(vxw31000, Succ(vxw401100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) 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(vxw31000), Succ(vxw401100)) -> new_primMulNat(vxw31000, Succ(vxw401100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_insertBy0(vxw25, vxw26, vxw27, vxw28, vxw29, False, ba, bb) -> new_insertBy00(vxw25, vxw26, vxw27, vxw28, vxw29, new_pePe(new_lt21(vxw27, vxw25, ba), new_asAs(new_esEs29(vxw27, vxw25, ba), new_ltEs20(vxw28, vxw26, bb))), ba, bb) new_insertBy(@2(vxw30, vxw31), :(@2(vxw400, vxw401), vxw41), be, bf) -> new_insertBy0(vxw400, vxw401, vxw30, vxw31, vxw41, new_asAs(new_esEs31(vxw30, vxw400, be), new_esEs30(vxw31, vxw401, bf)), be, bf) new_insertBy00(vxw45, vxw46, vxw47, vxw48, vxw49, False, bc, bd) -> new_insertBy(@2(vxw47, vxw48), vxw49, bc, bd) The TRS R consists of the following rules: new_esEs30(vxw31, vxw401, app(ty_[], bce)) -> new_esEs19(vxw31, vxw401, bce) new_esEs6(Right(vxw310), Right(vxw4010), bbb, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs4(vxw310, vxw4010, bbc, bbd, bbe) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vxw2700)), Pos(vxw250)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vxw63) -> True new_esEs30(vxw31, vxw401, ty_Ordering) -> new_esEs8(vxw31, vxw401) new_compare30(vxw27, vxw25) -> new_compare24(vxw27, vxw25, new_esEs8(vxw27, vxw25)) new_esEs27(vxw311, vxw4011, ty_Float) -> new_esEs18(vxw311, vxw4011) new_esEs31(vxw30, vxw400, ty_Char) -> new_esEs13(vxw30, vxw400) new_esEs6(Left(vxw310), Left(vxw4010), ty_Char, hg) -> new_esEs13(vxw310, vxw4010) new_ltEs4(Left(vxw280), Left(vxw260), app(ty_Ratio, ceh), ceb) -> new_ltEs12(vxw280, vxw260, ceh) new_ltEs20(vxw28, vxw26, ty_Int) -> new_ltEs11(vxw28, vxw26) new_ltEs9(vxw282, vxw262, app(app(ty_Either, ha), hb)) -> new_ltEs4(vxw282, vxw262, ha, hb) new_lt20(vxw280, vxw260, ty_Bool) -> new_lt15(vxw280, vxw260) new_esEs7(Just(vxw310), Just(vxw4010), app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs4(vxw310, vxw4010, cch, cda, cdb) new_ltEs18(Just(vxw280), Just(vxw260), app(app(ty_@2, chd), che)) -> new_ltEs10(vxw280, vxw260, chd, che) new_ltEs4(Right(vxw280), Right(vxw260), cfe, ty_Integer) -> new_ltEs13(vxw280, vxw260) new_compare24(vxw27, vxw25, False) -> new_compare12(vxw27, vxw25, new_ltEs7(vxw27, vxw25)) new_ltEs18(Nothing, Just(vxw260), cgh) -> True new_esEs24(vxw311, vxw4011, app(ty_[], bgb)) -> new_esEs19(vxw311, vxw4011, bgb) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare31(vxw270, vxw250, app(ty_[], dbf)) -> new_compare4(vxw270, vxw250, dbf) new_primCmpInt(Pos(Zero), Neg(Succ(vxw2500))) -> GT new_esEs6(Right(vxw310), Right(vxw4010), bbb, app(ty_Maybe, bcd)) -> new_esEs7(vxw310, vxw4010, bcd) new_lt20(vxw280, vxw260, app(app(ty_Either, cba), cbb)) -> new_lt17(vxw280, vxw260, cba, cbb) new_lt6(vxw280, vxw260, ty_Char) -> new_lt8(vxw280, vxw260) new_esEs12(vxw280, vxw260, ty_Integer) -> new_esEs15(vxw280, vxw260) new_esEs22(vxw310, vxw4010, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_esEs24(vxw311, vxw4011, ty_Ordering) -> new_esEs8(vxw311, vxw4011) new_lt6(vxw280, vxw260, app(ty_Maybe, ef)) -> new_lt4(vxw280, vxw260, ef) new_esEs7(Just(vxw310), Just(vxw4010), app(ty_Maybe, cea)) -> new_esEs7(vxw310, vxw4010, cea) new_compare210(vxw27, vxw25, True, cc, cd, ce) -> EQ new_primCmpInt(Neg(Succ(vxw2700)), Neg(vxw250)) -> new_primCmpNat0(vxw250, Succ(vxw2700)) new_esEs26(vxw280, vxw260, ty_Bool) -> new_esEs16(vxw280, vxw260) new_compare16(vxw27, vxw25) -> new_primCmpInt(vxw27, vxw25) new_ltEs10(@2(vxw280, vxw281), @2(vxw260, vxw261), caa, cab) -> new_pePe(new_lt20(vxw280, vxw260, caa), new_asAs(new_esEs26(vxw280, vxw260, caa), new_ltEs19(vxw281, vxw261, cab))) new_compare19(vxw27, vxw25, ca, cb) -> new_compare23(vxw27, vxw25, new_esEs6(vxw27, vxw25, ca, cb), ca, cb) new_esEs28(vxw310, vxw4010, app(ty_Maybe, dfd)) -> new_esEs7(vxw310, vxw4010, dfd) new_primMulNat0(Succ(vxw31000), Succ(vxw401100)) -> new_primPlusNat1(new_primMulNat0(vxw31000, Succ(vxw401100)), vxw401100) new_esEs6(Right(vxw310), Right(vxw4010), bbb, ty_Float) -> new_esEs18(vxw310, vxw4010) new_lt11(vxw27, vxw25, bg, bh) -> new_esEs8(new_compare26(vxw27, vxw25, bg, bh), LT) new_compare27(vxw27, vxw25, False, bg, bh) -> new_compare10(vxw27, vxw25, new_ltEs10(vxw27, vxw25, bg, bh), bg, bh) new_esEs25(vxw310, vxw4010, app(app(ty_@2, bhb), bhc)) -> new_esEs5(vxw310, vxw4010, bhb, bhc) new_esEs28(vxw310, vxw4010, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs4(vxw310, vxw4010, dec, ded, dee) new_lt21(vxw27, vxw25, ty_Ordering) -> new_lt9(vxw27, vxw25) new_esEs23(vxw312, vxw4012, ty_Double) -> new_esEs9(vxw312, vxw4012) new_ltEs20(vxw28, vxw26, ty_Char) -> new_ltEs5(vxw28, vxw26) new_ltEs9(vxw282, vxw262, app(ty_Maybe, hc)) -> new_ltEs18(vxw282, vxw262, hc) new_primCompAux0(vxw82, GT) -> GT new_esEs25(vxw310, vxw4010, ty_Char) -> new_esEs13(vxw310, vxw4010) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vxw3100)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40100))) -> False new_lt12(vxw27, vxw25) -> new_esEs8(new_compare16(vxw27, vxw25), LT) new_fsEs(vxw64) -> new_not(new_esEs8(vxw64, GT)) new_esEs7(Just(vxw310), Just(vxw4010), app(ty_[], cde)) -> new_esEs19(vxw310, vxw4010, cde) new_ltEs19(vxw281, vxw261, app(ty_[], ccf)) -> new_ltEs6(vxw281, vxw261, ccf) new_ltEs4(Right(vxw280), Right(vxw260), cfe, app(app(ty_@2, cga), cgb)) -> new_ltEs10(vxw280, vxw260, cga, cgb) new_ltEs19(vxw281, vxw261, ty_Bool) -> new_ltEs14(vxw281, vxw261) new_esEs5(@2(vxw310, vxw311), @2(vxw4010, vxw4011), dac, dad) -> new_asAs(new_esEs28(vxw310, vxw4010, dac), new_esEs27(vxw311, vxw4011, dad)) new_lt6(vxw280, vxw260, app(app(ty_@2, ea), eb)) -> new_lt11(vxw280, vxw260, ea, eb) new_esEs28(vxw310, vxw4010, app(ty_Ratio, dfc)) -> new_esEs14(vxw310, vxw4010, dfc) new_esEs29(vxw27, vxw25, app(ty_[], da)) -> new_esEs19(vxw27, vxw25, da) new_esEs8(EQ, EQ) -> True new_compare12(vxw27, vxw25, False) -> GT new_esEs23(vxw312, vxw4012, app(ty_Ratio, bfc)) -> new_esEs14(vxw312, vxw4012, bfc) new_primEqNat0(Succ(vxw3100), Succ(vxw40100)) -> new_primEqNat0(vxw3100, vxw40100) new_compare9(Double(vxw270, Pos(vxw2710)), Double(vxw250, Neg(vxw2510))) -> new_compare16(new_sr(vxw270, Pos(vxw2510)), new_sr(Neg(vxw2710), vxw250)) new_compare9(Double(vxw270, Neg(vxw2710)), Double(vxw250, Pos(vxw2510))) -> new_compare16(new_sr(vxw270, Neg(vxw2510)), new_sr(Pos(vxw2710), vxw250)) new_ltEs4(Right(vxw280), Right(vxw260), cfe, app(ty_Ratio, cgc)) -> new_ltEs12(vxw280, vxw260, cgc) new_esEs31(vxw30, vxw400, app(app(ty_@2, dcb), dcc)) -> new_esEs5(vxw30, vxw400, dcb, dcc) new_esEs22(vxw310, vxw4010, ty_Float) -> new_esEs18(vxw310, vxw4010) new_esEs27(vxw311, vxw4011, ty_Integer) -> new_esEs15(vxw311, vxw4011) new_esEs28(vxw310, vxw4010, ty_Double) -> new_esEs9(vxw310, vxw4010) new_ltEs4(Left(vxw280), Left(vxw260), ty_Int, ceb) -> new_ltEs11(vxw280, vxw260) new_primCompAux0(vxw82, LT) -> LT new_ltEs19(vxw281, vxw261, ty_Char) -> new_ltEs5(vxw281, vxw261) new_esEs7(Just(vxw310), Just(vxw4010), ty_Int) -> new_esEs10(vxw310, vxw4010) new_compare210(vxw27, vxw25, False, cc, cd, ce) -> new_compare110(vxw27, vxw25, new_ltEs8(vxw27, vxw25, cc, cd, ce), cc, cd, ce) new_not(True) -> False new_esEs6(Left(vxw310), Left(vxw4010), app(ty_Maybe, bba), hg) -> new_esEs7(vxw310, vxw4010, bba) new_ltEs20(vxw28, vxw26, app(app(ty_@2, caa), cab)) -> new_ltEs10(vxw28, vxw26, caa, cab) new_primCmpNat0(Zero, Zero) -> EQ new_esEs28(vxw310, vxw4010, app(ty_[], deh)) -> new_esEs19(vxw310, vxw4010, deh) new_ltEs9(vxw282, vxw262, ty_@0) -> new_ltEs15(vxw282, vxw262) new_compare14(:%(vxw270, vxw271), :%(vxw250, vxw251), ty_Integer) -> new_compare15(new_sr0(vxw270, vxw251), new_sr0(vxw250, vxw271)) new_ltEs4(Right(vxw280), Right(vxw260), cfe, app(ty_Maybe, cgf)) -> new_ltEs18(vxw280, vxw260, cgf) new_lt7(vxw281, vxw261, app(app(ty_Either, fg), fh)) -> new_lt17(vxw281, vxw261, fg, fh) new_esEs26(vxw280, vxw260, ty_Integer) -> new_esEs15(vxw280, vxw260) new_esEs11(vxw281, vxw261, ty_Char) -> new_esEs13(vxw281, vxw261) new_esEs7(Just(vxw310), Just(vxw4010), app(ty_Ratio, cdh)) -> new_esEs14(vxw310, vxw4010, cdh) new_esEs7(Just(vxw310), Just(vxw4010), ty_@0) -> new_esEs17(vxw310, vxw4010) new_esEs14(:%(vxw310, vxw311), :%(vxw4010, vxw4011), he) -> new_asAs(new_esEs21(vxw310, vxw4010, he), new_esEs20(vxw311, vxw4011, he)) new_ltEs9(vxw282, vxw262, ty_Float) -> new_ltEs17(vxw282, vxw262) new_ltEs19(vxw281, vxw261, ty_Int) -> new_ltEs11(vxw281, vxw261) new_primEqNat0(Succ(vxw3100), Zero) -> False new_primEqNat0(Zero, Succ(vxw40100)) -> False new_esEs6(Left(vxw310), Left(vxw4010), app(ty_Ratio, bah), hg) -> new_esEs14(vxw310, vxw4010, bah) new_esEs27(vxw311, vxw4011, ty_Int) -> new_esEs10(vxw311, vxw4011) new_compare10(vxw27, vxw25, True, bg, bh) -> LT new_ltEs4(Left(vxw280), Left(vxw260), app(ty_Maybe, cfc), ceb) -> new_ltEs18(vxw280, vxw260, cfc) new_esEs12(vxw280, vxw260, app(ty_Ratio, ec)) -> new_esEs14(vxw280, vxw260, ec) new_lt20(vxw280, vxw260, ty_Integer) -> new_lt14(vxw280, vxw260) new_ltEs20(vxw28, vxw26, ty_Bool) -> new_ltEs14(vxw28, vxw26) new_esEs12(vxw280, vxw260, ty_@0) -> new_esEs17(vxw280, vxw260) new_ltEs4(Left(vxw280), Left(vxw260), ty_Char, ceb) -> new_ltEs5(vxw280, vxw260) new_compare13(vxw27, vxw25, False, cg) -> GT new_esEs23(vxw312, vxw4012, ty_Int) -> new_esEs10(vxw312, vxw4012) new_ltEs4(Left(vxw280), Left(vxw260), ty_Double, ceb) -> new_ltEs16(vxw280, vxw260) new_compare18(Float(vxw270, Neg(vxw2710)), Float(vxw250, Neg(vxw2510))) -> new_compare16(new_sr(vxw270, Neg(vxw2510)), new_sr(Neg(vxw2710), vxw250)) new_lt20(vxw280, vxw260, ty_Int) -> new_lt12(vxw280, vxw260) new_esEs30(vxw31, vxw401, ty_Double) -> new_esEs9(vxw31, vxw401) new_esEs24(vxw311, vxw4011, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs4(vxw311, vxw4011, bfe, bff, bfg) new_esEs23(vxw312, vxw4012, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs4(vxw312, vxw4012, bec, bed, bee) new_esEs30(vxw31, vxw401, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs4(vxw31, vxw401, bdh, bea, beb) new_esEs24(vxw311, vxw4011, app(ty_Ratio, bge)) -> new_esEs14(vxw311, vxw4011, bge) new_primCmpInt(Pos(Succ(vxw2700)), Neg(vxw250)) -> GT new_esEs28(vxw310, vxw4010, ty_Int) -> new_esEs10(vxw310, vxw4010) new_esEs25(vxw310, vxw4010, ty_Bool) -> new_esEs16(vxw310, vxw4010) new_esEs28(vxw310, vxw4010, ty_@0) -> new_esEs17(vxw310, vxw4010) new_lt10(vxw27, vxw25, cc, cd, ce) -> new_esEs8(new_compare28(vxw27, vxw25, cc, cd, ce), LT) new_esEs6(Left(vxw310), Left(vxw4010), ty_Bool, hg) -> new_esEs16(vxw310, vxw4010) new_lt21(vxw27, vxw25, ty_Integer) -> new_lt14(vxw27, vxw25) new_esEs31(vxw30, vxw400, ty_Bool) -> new_esEs16(vxw30, vxw400) new_esEs12(vxw280, vxw260, ty_Double) -> new_esEs9(vxw280, vxw260) new_esEs24(vxw311, vxw4011, ty_Double) -> new_esEs9(vxw311, vxw4011) new_esEs29(vxw27, vxw25, ty_Char) -> new_esEs13(vxw27, vxw25) new_ltEs13(vxw28, vxw26) -> new_fsEs(new_compare15(vxw28, vxw26)) new_ltEs7(GT, GT) -> True new_ltEs4(Left(vxw280), Left(vxw260), ty_Ordering, ceb) -> new_ltEs7(vxw280, vxw260) new_compare31(vxw270, vxw250, app(ty_Maybe, dbe)) -> new_compare7(vxw270, vxw250, dbe) new_esEs26(vxw280, vxw260, ty_Float) -> new_esEs18(vxw280, vxw260) new_esEs23(vxw312, vxw4012, ty_@0) -> new_esEs17(vxw312, vxw4012) new_primCmpNat0(Zero, Succ(vxw2500)) -> LT new_esEs6(Right(vxw310), Right(vxw4010), bbb, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_esEs6(Right(vxw310), Right(vxw4010), bbb, app(ty_Ratio, bcc)) -> new_esEs14(vxw310, vxw4010, bcc) new_esEs29(vxw27, vxw25, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs4(vxw27, vxw25, cc, cd, ce) new_esEs19(:(vxw310, vxw311), :(vxw4010, vxw4011), bce) -> new_asAs(new_esEs22(vxw310, vxw4010, bce), new_esEs19(vxw311, vxw4011, bce)) new_esEs7(Just(vxw310), Just(vxw4010), ty_Double) -> new_esEs9(vxw310, vxw4010) new_primCompAux1(vxw270, vxw250, vxw72, da) -> new_primCompAux0(vxw72, new_compare31(vxw270, vxw250, da)) new_primCmpNat0(Succ(vxw2700), Zero) -> GT new_compare110(vxw27, vxw25, False, cc, cd, ce) -> GT new_pePe(False, vxw63) -> vxw63 new_lt7(vxw281, vxw261, app(ty_Maybe, ga)) -> new_lt4(vxw281, vxw261, ga) new_esEs7(Nothing, Just(vxw4010), ccg) -> False new_esEs7(Just(vxw310), Nothing, ccg) -> False new_esEs17(@0, @0) -> True new_esEs22(vxw310, vxw4010, ty_@0) -> new_esEs17(vxw310, vxw4010) new_esEs22(vxw310, vxw4010, app(ty_Ratio, bdf)) -> new_esEs14(vxw310, vxw4010, bdf) new_esEs19([], [], bce) -> True new_ltEs4(Right(vxw280), Right(vxw260), cfe, ty_@0) -> new_ltEs15(vxw280, vxw260) new_ltEs19(vxw281, vxw261, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs8(vxw281, vxw261, cbe, cbf, cbg) new_esEs22(vxw310, vxw4010, app(app(ty_Either, bdd), bde)) -> new_esEs6(vxw310, vxw4010, bdd, bde) new_esEs20(vxw311, vxw4011, ty_Int) -> new_esEs10(vxw311, vxw4011) new_esEs27(vxw311, vxw4011, ty_Bool) -> new_esEs16(vxw311, vxw4011) new_esEs11(vxw281, vxw261, ty_Float) -> new_esEs18(vxw281, vxw261) new_esEs26(vxw280, vxw260, app(app(ty_@2, caf), cag)) -> new_esEs5(vxw280, vxw260, caf, cag) new_esEs7(Just(vxw310), Just(vxw4010), ty_Float) -> new_esEs18(vxw310, vxw4010) new_ltEs19(vxw281, vxw261, app(app(ty_@2, cbh), cca)) -> new_ltEs10(vxw281, vxw261, cbh, cca) new_ltEs19(vxw281, vxw261, ty_Double) -> new_ltEs16(vxw281, vxw261) new_esEs6(Left(vxw310), Left(vxw4010), ty_Ordering, hg) -> new_esEs8(vxw310, vxw4010) new_compare23(vxw27, vxw25, True, ca, cb) -> EQ new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(vxw27, vxw25, False, ca, cb) -> GT new_lt21(vxw27, vxw25, ty_Bool) -> new_lt15(vxw27, vxw25) new_primEqInt(Pos(Zero), Neg(Succ(vxw40100))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40100))) -> False new_esEs24(vxw311, vxw4011, ty_Char) -> new_esEs13(vxw311, vxw4011) new_lt6(vxw280, vxw260, ty_Float) -> new_lt18(vxw280, vxw260) new_esEs7(Nothing, Nothing, ccg) -> True new_esEs29(vxw27, vxw25, ty_@0) -> new_esEs17(vxw27, vxw25) new_esEs6(Left(vxw310), Left(vxw4010), app(app(app(ty_@3, hh), baa), bab), hg) -> new_esEs4(vxw310, vxw4010, hh, baa, bab) new_ltEs14(True, True) -> True new_compare31(vxw270, vxw250, ty_Char) -> new_compare6(vxw270, vxw250) new_ltEs18(Just(vxw280), Just(vxw260), ty_@0) -> new_ltEs15(vxw280, vxw260) new_esEs30(vxw31, vxw401, ty_Int) -> new_esEs10(vxw31, vxw401) new_primEqInt(Neg(Succ(vxw3100)), Neg(Succ(vxw40100))) -> new_primEqNat0(vxw3100, vxw40100) new_esEs25(vxw310, vxw4010, ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_esEs6(Right(vxw310), Right(vxw4010), bbb, app(app(ty_@2, bbf), bbg)) -> new_esEs5(vxw310, vxw4010, bbf, bbg) new_ltEs20(vxw28, vxw26, ty_Double) -> new_ltEs16(vxw28, vxw26) new_primCmpInt(Neg(Zero), Pos(Succ(vxw2500))) -> LT new_ltEs4(Left(vxw280), Left(vxw260), ty_Float, ceb) -> new_ltEs17(vxw280, vxw260) new_primMulInt(Pos(vxw3100), Pos(vxw40110)) -> Pos(new_primMulNat0(vxw3100, vxw40110)) new_lt6(vxw280, vxw260, app(app(app(ty_@3, df), dg), dh)) -> new_lt10(vxw280, vxw260, df, dg, dh) new_esEs25(vxw310, vxw4010, app(ty_Maybe, bhh)) -> new_esEs7(vxw310, vxw4010, bhh) new_ltEs11(vxw28, vxw26) -> new_fsEs(new_compare16(vxw28, vxw26)) new_ltEs5(vxw28, vxw26) -> new_fsEs(new_compare6(vxw28, vxw26)) new_lt21(vxw27, vxw25, ty_Float) -> new_lt18(vxw27, vxw25) new_esEs24(vxw311, vxw4011, app(app(ty_Either, bgc), bgd)) -> new_esEs6(vxw311, vxw4011, bgc, bgd) new_esEs29(vxw27, vxw25, ty_Bool) -> new_esEs16(vxw27, vxw25) new_esEs6(Left(vxw310), Left(vxw4010), app(app(ty_Either, baf), bag), hg) -> new_esEs6(vxw310, vxw4010, baf, bag) new_lt7(vxw281, vxw261, ty_Integer) -> new_lt14(vxw281, vxw261) new_esEs29(vxw27, vxw25, ty_Int) -> new_esEs10(vxw27, vxw25) new_esEs30(vxw31, vxw401, ty_@0) -> new_esEs17(vxw31, vxw401) new_primMulNat0(Succ(vxw31000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw401100)) -> Zero new_ltEs9(vxw282, vxw262, ty_Double) -> new_ltEs16(vxw282, vxw262) new_esEs31(vxw30, vxw400, app(app(app(ty_@3, dbg), dbh), dca)) -> new_esEs4(vxw30, vxw400, dbg, dbh, dca) new_compare28(vxw27, vxw25, cc, cd, ce) -> new_compare210(vxw27, vxw25, new_esEs4(vxw27, vxw25, cc, cd, ce), cc, cd, ce) new_lt21(vxw27, vxw25, app(app(app(ty_@3, cc), cd), ce)) -> new_lt10(vxw27, vxw25, cc, cd, ce) new_ltEs19(vxw281, vxw261, ty_Integer) -> new_ltEs13(vxw281, vxw261) new_esEs11(vxw281, vxw261, app(app(ty_@2, fc), fd)) -> new_esEs5(vxw281, vxw261, fc, fd) new_esEs22(vxw310, vxw4010, app(ty_Maybe, bdg)) -> new_esEs7(vxw310, vxw4010, bdg) new_primPlusNat1(Succ(vxw840), vxw401100) -> Succ(Succ(new_primPlusNat0(vxw840, vxw401100))) new_compare26(vxw27, vxw25, bg, bh) -> new_compare27(vxw27, vxw25, new_esEs5(vxw27, vxw25, bg, bh), bg, bh) new_ltEs4(Right(vxw280), Right(vxw260), cfe, ty_Bool) -> new_ltEs14(vxw280, vxw260) new_esEs23(vxw312, vxw4012, app(ty_Maybe, bfd)) -> new_esEs7(vxw312, vxw4012, bfd) new_lt7(vxw281, vxw261, ty_Bool) -> new_lt15(vxw281, vxw261) new_primPlusNat0(Succ(vxw8400), Zero) -> Succ(vxw8400) new_primPlusNat0(Zero, Succ(vxw4011000)) -> Succ(vxw4011000) new_esEs7(Just(vxw310), Just(vxw4010), app(app(ty_Either, cdf), cdg)) -> new_esEs6(vxw310, vxw4010, cdf, cdg) new_esEs6(Left(vxw310), Left(vxw4010), app(ty_[], bae), hg) -> new_esEs19(vxw310, vxw4010, bae) new_compare4(:(vxw270, vxw271), :(vxw250, vxw251), da) -> new_primCompAux1(vxw270, vxw250, new_compare4(vxw271, vxw251, da), da) new_primPlusNat1(Zero, vxw401100) -> Succ(vxw401100) new_lt9(vxw27, vxw25) -> new_esEs8(new_compare30(vxw27, vxw25), LT) new_esEs8(LT, LT) -> True new_esEs23(vxw312, vxw4012, ty_Float) -> new_esEs18(vxw312, vxw4012) new_esEs11(vxw281, vxw261, app(ty_Ratio, ff)) -> new_esEs14(vxw281, vxw261, ff) new_esEs6(Right(vxw310), Right(vxw4010), bbb, ty_Int) -> new_esEs10(vxw310, vxw4010) new_compare111(vxw27, vxw25, True) -> LT new_ltEs18(Just(vxw280), Just(vxw260), ty_Int) -> new_ltEs11(vxw280, vxw260) new_esEs7(Just(vxw310), Just(vxw4010), ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_esEs27(vxw311, vxw4011, ty_Char) -> new_esEs13(vxw311, vxw4011) new_esEs26(vxw280, vxw260, ty_Double) -> new_esEs9(vxw280, vxw260) new_esEs24(vxw311, vxw4011, ty_Float) -> new_esEs18(vxw311, vxw4011) new_ltEs9(vxw282, vxw262, app(ty_Ratio, gh)) -> new_ltEs12(vxw282, vxw262, gh) new_esEs11(vxw281, vxw261, app(app(ty_Either, fg), fh)) -> new_esEs6(vxw281, vxw261, fg, fh) new_compare29(vxw27, vxw25, False) -> new_compare111(vxw27, vxw25, new_ltEs14(vxw27, vxw25)) new_esEs23(vxw312, vxw4012, app(app(ty_@2, bef), beg)) -> new_esEs5(vxw312, vxw4012, bef, beg) new_esEs6(Left(vxw310), Left(vxw4010), app(app(ty_@2, bac), bad), hg) -> new_esEs5(vxw310, vxw4010, bac, bad) new_lt20(vxw280, vxw260, ty_Float) -> new_lt18(vxw280, vxw260) new_ltEs18(Just(vxw280), Just(vxw260), ty_Double) -> new_ltEs16(vxw280, vxw260) new_lt13(vxw27, vxw25, cf) -> new_esEs8(new_compare14(vxw27, vxw25, cf), LT) new_esEs24(vxw311, vxw4011, app(ty_Maybe, bgf)) -> new_esEs7(vxw311, vxw4011, bgf) new_lt5(vxw27, vxw25) -> new_esEs8(new_compare8(vxw27, vxw25), LT) new_esEs11(vxw281, vxw261, ty_Ordering) -> new_esEs8(vxw281, vxw261) new_lt7(vxw281, vxw261, app(app(ty_@2, fc), fd)) -> new_lt11(vxw281, vxw261, fc, fd) new_esEs31(vxw30, vxw400, ty_@0) -> new_esEs17(vxw30, vxw400) new_esEs12(vxw280, vxw260, app(app(ty_Either, ed), ee)) -> new_esEs6(vxw280, vxw260, ed, ee) new_lt19(vxw27, vxw25, da) -> new_esEs8(new_compare4(vxw27, vxw25, da), LT) new_esEs27(vxw311, vxw4011, ty_Double) -> new_esEs9(vxw311, vxw4011) new_primMulInt(Neg(vxw3100), Neg(vxw40110)) -> Pos(new_primMulNat0(vxw3100, vxw40110)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw2500))) -> new_primCmpNat0(Zero, Succ(vxw2500)) new_compare25(vxw27, vxw25, True, cg) -> EQ new_ltEs18(Just(vxw280), Just(vxw260), app(ty_Ratio, chf)) -> new_ltEs12(vxw280, vxw260, chf) new_esEs28(vxw310, vxw4010, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_esEs12(vxw280, vxw260, ty_Ordering) -> new_esEs8(vxw280, vxw260) new_esEs12(vxw280, vxw260, app(app(ty_@2, ea), eb)) -> new_esEs5(vxw280, vxw260, ea, eb) new_esEs31(vxw30, vxw400, ty_Int) -> new_esEs10(vxw30, vxw400) new_compare23(vxw27, vxw25, False, ca, cb) -> new_compare11(vxw27, vxw25, new_ltEs4(vxw27, vxw25, ca, cb), ca, cb) new_esEs7(Just(vxw310), Just(vxw4010), app(app(ty_@2, cdc), cdd)) -> new_esEs5(vxw310, vxw4010, cdc, cdd) new_esEs24(vxw311, vxw4011, app(app(ty_@2, bfh), bga)) -> new_esEs5(vxw311, vxw4011, bfh, bga) new_esEs12(vxw280, vxw260, app(ty_Maybe, ef)) -> new_esEs7(vxw280, vxw260, ef) new_compare4([], :(vxw250, vxw251), da) -> LT new_esEs31(vxw30, vxw400, app(ty_[], dcd)) -> new_esEs19(vxw30, vxw400, dcd) new_ltEs9(vxw282, vxw262, ty_Int) -> new_ltEs11(vxw282, vxw262) new_esEs6(Right(vxw310), Right(vxw4010), bbb, ty_@0) -> new_esEs17(vxw310, vxw4010) new_esEs23(vxw312, vxw4012, ty_Ordering) -> new_esEs8(vxw312, vxw4012) new_esEs26(vxw280, vxw260, ty_Char) -> new_esEs13(vxw280, vxw260) new_ltEs6(vxw28, vxw26, db) -> new_fsEs(new_compare4(vxw28, vxw26, db)) new_esEs23(vxw312, vxw4012, app(app(ty_Either, bfa), bfb)) -> new_esEs6(vxw312, vxw4012, bfa, bfb) new_esEs28(vxw310, vxw4010, ty_Bool) -> new_esEs16(vxw310, vxw4010) new_esEs12(vxw280, vxw260, ty_Float) -> new_esEs18(vxw280, vxw260) new_ltEs4(Left(vxw280), Left(vxw260), app(app(app(ty_@3, cec), ced), cee), ceb) -> new_ltEs8(vxw280, vxw260, cec, ced, cee) new_ltEs7(LT, LT) -> True new_compare14(:%(vxw270, vxw271), :%(vxw250, vxw251), ty_Int) -> new_compare16(new_sr(vxw270, vxw251), new_sr(vxw250, vxw271)) new_lt20(vxw280, vxw260, app(app(app(ty_@3, cac), cad), cae)) -> new_lt10(vxw280, vxw260, cac, cad, cae) new_esEs27(vxw311, vxw4011, app(app(ty_@2, ddd), dde)) -> new_esEs5(vxw311, vxw4011, ddd, dde) new_esEs26(vxw280, vxw260, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs4(vxw280, vxw260, cac, cad, cae) new_primMulInt(Pos(vxw3100), Neg(vxw40110)) -> Neg(new_primMulNat0(vxw3100, vxw40110)) new_primMulInt(Neg(vxw3100), Pos(vxw40110)) -> Neg(new_primMulNat0(vxw3100, vxw40110)) new_esEs11(vxw281, vxw261, app(ty_Maybe, ga)) -> new_esEs7(vxw281, vxw261, ga) new_lt7(vxw281, vxw261, ty_Float) -> new_lt18(vxw281, vxw261) new_esEs20(vxw311, vxw4011, ty_Integer) -> new_esEs15(vxw311, vxw4011) new_esEs22(vxw310, vxw4010, ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_lt21(vxw27, vxw25, app(app(ty_@2, bg), bh)) -> new_lt11(vxw27, vxw25, bg, bh) new_ltEs4(Right(vxw280), Right(vxw260), cfe, app(app(ty_Either, cgd), cge)) -> new_ltEs4(vxw280, vxw260, cgd, cge) new_ltEs18(Nothing, Nothing, cgh) -> True new_esEs6(Right(vxw310), Right(vxw4010), bbb, app(app(ty_Either, bca), bcb)) -> new_esEs6(vxw310, vxw4010, bca, bcb) new_esEs23(vxw312, vxw4012, ty_Char) -> new_esEs13(vxw312, vxw4012) new_compare15(Integer(vxw270), Integer(vxw250)) -> new_primCmpInt(vxw270, vxw250) new_lt7(vxw281, vxw261, app(ty_Ratio, ff)) -> new_lt13(vxw281, vxw261, ff) new_lt21(vxw27, vxw25, app(ty_[], da)) -> new_lt19(vxw27, vxw25, da) new_ltEs4(Left(vxw280), Left(vxw260), ty_Integer, ceb) -> new_ltEs13(vxw280, vxw260) new_esEs19(:(vxw310, vxw311), [], bce) -> False new_esEs19([], :(vxw4010, vxw4011), bce) -> False new_sr0(Integer(vxw2700), Integer(vxw2510)) -> Integer(new_primMulInt(vxw2700, vxw2510)) new_ltEs18(Just(vxw280), Just(vxw260), app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs8(vxw280, vxw260, cha, chb, chc) new_lt16(vxw27, vxw25) -> new_esEs8(new_compare9(vxw27, vxw25), LT) new_ltEs20(vxw28, vxw26, app(app(ty_Either, cfe), ceb)) -> new_ltEs4(vxw28, vxw26, cfe, ceb) new_esEs31(vxw30, vxw400, app(ty_Ratio, dcg)) -> new_esEs14(vxw30, vxw400, dcg) new_compare31(vxw270, vxw250, ty_Integer) -> new_compare15(vxw270, vxw250) new_esEs29(vxw27, vxw25, ty_Integer) -> new_esEs15(vxw27, vxw25) new_ltEs18(Just(vxw280), Just(vxw260), app(ty_Maybe, daa)) -> new_ltEs18(vxw280, vxw260, daa) new_lt6(vxw280, vxw260, ty_Integer) -> new_lt14(vxw280, vxw260) new_esEs18(Float(vxw310, vxw311), Float(vxw4010, vxw4011)) -> new_esEs10(new_sr(vxw310, vxw4011), new_sr(vxw311, vxw4010)) new_lt20(vxw280, vxw260, ty_Double) -> new_lt16(vxw280, vxw260) new_esEs11(vxw281, vxw261, ty_Double) -> new_esEs9(vxw281, vxw261) new_esEs30(vxw31, vxw401, ty_Integer) -> new_esEs15(vxw31, vxw401) new_esEs25(vxw310, vxw4010, ty_Float) -> new_esEs18(vxw310, vxw4010) new_esEs15(Integer(vxw310), Integer(vxw4010)) -> new_primEqInt(vxw310, vxw4010) new_lt7(vxw281, vxw261, ty_@0) -> new_lt5(vxw281, vxw261) new_asAs(True, vxw56) -> vxw56 new_esEs25(vxw310, vxw4010, app(ty_Ratio, bhg)) -> new_esEs14(vxw310, vxw4010, bhg) new_compare10(vxw27, vxw25, False, bg, bh) -> GT new_ltEs18(Just(vxw280), Just(vxw260), app(app(ty_Either, chg), chh)) -> new_ltEs4(vxw280, vxw260, chg, chh) new_esEs11(vxw281, vxw261, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs4(vxw281, vxw261, eh, fa, fb) new_compare31(vxw270, vxw250, ty_Int) -> new_compare16(vxw270, vxw250) new_compare9(Double(vxw270, Neg(vxw2710)), Double(vxw250, Neg(vxw2510))) -> new_compare16(new_sr(vxw270, Neg(vxw2510)), new_sr(Neg(vxw2710), vxw250)) new_ltEs20(vxw28, vxw26, ty_@0) -> new_ltEs15(vxw28, vxw26) new_esEs6(Left(vxw310), Right(vxw4010), bbb, hg) -> False new_esEs6(Right(vxw310), Left(vxw4010), bbb, hg) -> False new_esEs31(vxw30, vxw400, ty_Double) -> new_esEs9(vxw30, vxw400) new_esEs6(Left(vxw310), Left(vxw4010), ty_Double, hg) -> new_esEs9(vxw310, vxw4010) new_esEs24(vxw311, vxw4011, ty_Integer) -> new_esEs15(vxw311, vxw4011) new_lt21(vxw27, vxw25, ty_Char) -> new_lt8(vxw27, vxw25) new_ltEs18(Just(vxw280), Nothing, cgh) -> False new_esEs22(vxw310, vxw4010, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs4(vxw310, vxw4010, bcf, bcg, bch) new_esEs6(Left(vxw310), Left(vxw4010), ty_Float, hg) -> new_esEs18(vxw310, vxw4010) new_lt21(vxw27, vxw25, ty_Int) -> new_lt12(vxw27, vxw25) new_ltEs18(Just(vxw280), Just(vxw260), ty_Integer) -> new_ltEs13(vxw280, vxw260) new_esEs31(vxw30, vxw400, ty_Float) -> new_esEs18(vxw30, vxw400) new_compare13(vxw27, vxw25, True, cg) -> LT new_esEs26(vxw280, vxw260, app(ty_[], cbd)) -> new_esEs19(vxw280, vxw260, cbd) new_esEs7(Just(vxw310), Just(vxw4010), ty_Bool) -> new_esEs16(vxw310, vxw4010) new_esEs21(vxw310, vxw4010, ty_Int) -> new_esEs10(vxw310, vxw4010) new_ltEs19(vxw281, vxw261, ty_@0) -> new_ltEs15(vxw281, vxw261) new_primCmpInt(Pos(Succ(vxw2700)), Pos(vxw250)) -> new_primCmpNat0(Succ(vxw2700), vxw250) new_esEs12(vxw280, vxw260, app(ty_[], eg)) -> new_esEs19(vxw280, vxw260, eg) new_esEs24(vxw311, vxw4011, ty_Bool) -> new_esEs16(vxw311, vxw4011) new_esEs30(vxw31, vxw401, ty_Bool) -> new_esEs16(vxw31, vxw401) new_sr(vxw310, vxw4011) -> new_primMulInt(vxw310, vxw4011) new_esEs28(vxw310, vxw4010, ty_Char) -> new_esEs13(vxw310, vxw4010) new_lt7(vxw281, vxw261, ty_Double) -> new_lt16(vxw281, vxw261) new_esEs25(vxw310, vxw4010, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_compare4(:(vxw270, vxw271), [], da) -> GT new_primMulNat0(Zero, Zero) -> Zero new_ltEs9(vxw282, vxw262, ty_Char) -> new_ltEs5(vxw282, vxw262) new_esEs25(vxw310, vxw4010, ty_Double) -> new_esEs9(vxw310, vxw4010) new_compare18(Float(vxw270, Pos(vxw2710)), Float(vxw250, Pos(vxw2510))) -> new_compare16(new_sr(vxw270, Pos(vxw2510)), new_sr(Pos(vxw2710), vxw250)) new_esEs27(vxw311, vxw4011, ty_Ordering) -> new_esEs8(vxw311, vxw4011) new_compare111(vxw27, vxw25, False) -> GT new_esEs22(vxw310, vxw4010, app(app(ty_@2, bda), bdb)) -> new_esEs5(vxw310, vxw4010, bda, bdb) new_esEs26(vxw280, vxw260, app(app(ty_Either, cba), cbb)) -> new_esEs6(vxw280, vxw260, cba, cbb) new_lt15(vxw27, vxw25) -> new_esEs8(new_compare17(vxw27, vxw25), LT) new_esEs31(vxw30, vxw400, app(ty_Maybe, dch)) -> new_esEs7(vxw30, vxw400, dch) new_esEs4(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), bdh, bea, beb) -> new_asAs(new_esEs25(vxw310, vxw4010, bdh), new_asAs(new_esEs24(vxw311, vxw4011, bea), new_esEs23(vxw312, vxw4012, beb))) new_ltEs7(LT, EQ) -> True new_esEs11(vxw281, vxw261, app(ty_[], gb)) -> new_esEs19(vxw281, vxw261, gb) new_lt6(vxw280, vxw260, ty_Bool) -> new_lt15(vxw280, vxw260) new_ltEs20(vxw28, vxw26, ty_Integer) -> new_ltEs13(vxw28, vxw26) new_esEs11(vxw281, vxw261, ty_@0) -> new_esEs17(vxw281, vxw261) new_ltEs4(Right(vxw280), Right(vxw260), cfe, ty_Int) -> new_ltEs11(vxw280, vxw260) new_lt21(vxw27, vxw25, app(ty_Maybe, cg)) -> new_lt4(vxw27, vxw25, cg) new_esEs9(Double(vxw310, vxw311), Double(vxw4010, vxw4011)) -> new_esEs10(new_sr(vxw310, vxw4011), new_sr(vxw311, vxw4010)) new_ltEs20(vxw28, vxw26, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs8(vxw28, vxw26, dc, dd, de) new_esEs27(vxw311, vxw4011, app(ty_[], ddf)) -> new_esEs19(vxw311, vxw4011, ddf) new_esEs31(vxw30, vxw400, app(app(ty_Either, dce), dcf)) -> new_esEs6(vxw30, vxw400, dce, dcf) new_ltEs17(vxw28, vxw26) -> new_fsEs(new_compare18(vxw28, vxw26)) new_lt20(vxw280, vxw260, app(ty_Ratio, cah)) -> new_lt13(vxw280, vxw260, cah) new_ltEs20(vxw28, vxw26, app(ty_Maybe, cgh)) -> new_ltEs18(vxw28, vxw26, cgh) new_ltEs14(False, True) -> True new_esEs29(vxw27, vxw25, app(ty_Ratio, cf)) -> new_esEs14(vxw27, vxw25, cf) new_compare25(vxw27, vxw25, False, cg) -> new_compare13(vxw27, vxw25, new_ltEs18(vxw27, vxw25, cg), cg) new_esEs31(vxw30, vxw400, ty_Integer) -> new_esEs15(vxw30, vxw400) new_compare9(Double(vxw270, Pos(vxw2710)), Double(vxw250, Pos(vxw2510))) -> new_compare16(new_sr(vxw270, Pos(vxw2510)), new_sr(Pos(vxw2710), vxw250)) new_esEs6(Left(vxw310), Left(vxw4010), ty_Integer, hg) -> new_esEs15(vxw310, vxw4010) new_esEs25(vxw310, vxw4010, app(app(ty_Either, bhe), bhf)) -> new_esEs6(vxw310, vxw4010, bhe, bhf) new_esEs11(vxw281, vxw261, ty_Int) -> new_esEs10(vxw281, vxw261) new_primCompAux0(vxw82, EQ) -> vxw82 new_esEs7(Just(vxw310), Just(vxw4010), ty_Char) -> new_esEs13(vxw310, vxw4010) new_lt20(vxw280, vxw260, ty_Char) -> new_lt8(vxw280, vxw260) new_ltEs4(Left(vxw280), Left(vxw260), ty_@0, ceb) -> new_ltEs15(vxw280, vxw260) new_ltEs4(Right(vxw280), Right(vxw260), cfe, app(ty_[], cgg)) -> new_ltEs6(vxw280, vxw260, cgg) new_ltEs20(vxw28, vxw26, app(ty_Ratio, hf)) -> new_ltEs12(vxw28, vxw26, hf) new_lt17(vxw27, vxw25, ca, cb) -> new_esEs8(new_compare19(vxw27, vxw25, ca, cb), LT) new_primEqInt(Neg(Succ(vxw3100)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40100))) -> False new_primEqInt(Pos(Succ(vxw3100)), Pos(Succ(vxw40100))) -> new_primEqNat0(vxw3100, vxw40100) new_ltEs19(vxw281, vxw261, app(ty_Maybe, cce)) -> new_ltEs18(vxw281, vxw261, cce) new_esEs22(vxw310, vxw4010, ty_Int) -> new_esEs10(vxw310, vxw4010) new_esEs6(Right(vxw310), Right(vxw4010), bbb, ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_ltEs4(Right(vxw280), Right(vxw260), cfe, ty_Ordering) -> new_ltEs7(vxw280, vxw260) new_compare31(vxw270, vxw250, app(app(ty_@2, dah), dba)) -> new_compare26(vxw270, vxw250, dah, dba) new_compare24(vxw27, vxw25, True) -> EQ new_ltEs4(Left(vxw280), Left(vxw260), app(ty_[], cfd), ceb) -> new_ltEs6(vxw280, vxw260, cfd) new_ltEs4(Left(vxw280), Left(vxw260), app(app(ty_Either, cfa), cfb), ceb) -> new_ltEs4(vxw280, vxw260, cfa, cfb) new_esEs16(True, True) -> True new_esEs22(vxw310, vxw4010, app(ty_[], bdc)) -> new_esEs19(vxw310, vxw4010, bdc) new_ltEs18(Just(vxw280), Just(vxw260), ty_Float) -> new_ltEs17(vxw280, vxw260) new_esEs29(vxw27, vxw25, ty_Double) -> new_esEs9(vxw27, vxw25) new_esEs6(Right(vxw310), Right(vxw4010), bbb, ty_Bool) -> new_esEs16(vxw310, vxw4010) new_ltEs4(Right(vxw280), Right(vxw260), cfe, ty_Double) -> new_ltEs16(vxw280, vxw260) new_primEqInt(Pos(Succ(vxw3100)), Neg(vxw4010)) -> False new_primEqInt(Neg(Succ(vxw3100)), Pos(vxw4010)) -> False new_lt20(vxw280, vxw260, app(app(ty_@2, caf), cag)) -> new_lt11(vxw280, vxw260, caf, cag) new_esEs26(vxw280, vxw260, ty_Ordering) -> new_esEs8(vxw280, vxw260) new_ltEs12(vxw28, vxw26, hf) -> new_fsEs(new_compare14(vxw28, vxw26, hf)) new_primCmpInt(Neg(Zero), Neg(Succ(vxw2500))) -> new_primCmpNat0(Succ(vxw2500), Zero) new_compare4([], [], da) -> EQ new_esEs12(vxw280, vxw260, ty_Char) -> new_esEs13(vxw280, vxw260) new_compare31(vxw270, vxw250, ty_Bool) -> new_compare17(vxw270, vxw250) new_esEs12(vxw280, vxw260, app(app(app(ty_@3, df), dg), dh)) -> new_esEs4(vxw280, vxw260, df, dg, dh) new_compare31(vxw270, vxw250, ty_Float) -> new_compare18(vxw270, vxw250) new_ltEs19(vxw281, vxw261, app(ty_Ratio, ccb)) -> new_ltEs12(vxw281, vxw261, ccb) new_lt7(vxw281, vxw261, app(app(app(ty_@3, eh), fa), fb)) -> new_lt10(vxw281, vxw261, eh, fa, fb) new_esEs26(vxw280, vxw260, app(ty_Maybe, cbc)) -> new_esEs7(vxw280, vxw260, cbc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt20(vxw280, vxw260, app(ty_[], cbd)) -> new_lt19(vxw280, vxw260, cbd) new_esEs21(vxw310, vxw4010, ty_Integer) -> new_esEs15(vxw310, vxw4010) new_esEs23(vxw312, vxw4012, app(ty_[], beh)) -> new_esEs19(vxw312, vxw4012, beh) new_lt18(vxw27, vxw25) -> new_esEs8(new_compare18(vxw27, vxw25), LT) new_esEs13(Char(vxw310), Char(vxw4010)) -> new_primEqNat0(vxw310, vxw4010) new_compare110(vxw27, vxw25, True, cc, cd, ce) -> LT new_ltEs4(Right(vxw280), Right(vxw260), cfe, ty_Char) -> new_ltEs5(vxw280, vxw260) new_esEs30(vxw31, vxw401, app(ty_Ratio, he)) -> new_esEs14(vxw31, vxw401, he) new_esEs27(vxw311, vxw4011, app(ty_Maybe, deb)) -> new_esEs7(vxw311, vxw4011, deb) new_ltEs9(vxw282, vxw262, ty_Bool) -> new_ltEs14(vxw282, vxw262) new_compare31(vxw270, vxw250, app(app(app(ty_@3, dae), daf), dag)) -> new_compare28(vxw270, vxw250, dae, daf, dag) new_compare17(vxw27, vxw25) -> new_compare29(vxw27, vxw25, new_esEs16(vxw27, vxw25)) new_ltEs7(EQ, GT) -> True new_esEs27(vxw311, vxw4011, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs4(vxw311, vxw4011, dda, ddb, ddc) new_compare31(vxw270, vxw250, app(ty_Ratio, dbb)) -> new_compare14(vxw270, vxw250, dbb) new_not(False) -> True new_ltEs9(vxw282, vxw262, app(ty_[], hd)) -> new_ltEs6(vxw282, vxw262, hd) new_esEs28(vxw310, vxw4010, ty_Float) -> new_esEs18(vxw310, vxw4010) new_esEs31(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) new_lt20(vxw280, vxw260, ty_Ordering) -> new_lt9(vxw280, vxw260) new_lt21(vxw27, vxw25, app(app(ty_Either, ca), cb)) -> new_lt17(vxw27, vxw25, ca, cb) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs4(Left(vxw280), Left(vxw260), ty_Bool, ceb) -> new_ltEs14(vxw280, vxw260) new_esEs30(vxw31, vxw401, ty_Char) -> new_esEs13(vxw31, vxw401) new_compare29(vxw27, vxw25, True) -> EQ new_primPlusNat0(Succ(vxw8400), Succ(vxw4011000)) -> Succ(Succ(new_primPlusNat0(vxw8400, vxw4011000))) new_esEs29(vxw27, vxw25, app(app(ty_Either, ca), cb)) -> new_esEs6(vxw27, vxw25, ca, cb) new_ltEs7(EQ, EQ) -> True new_lt6(vxw280, vxw260, app(ty_Ratio, ec)) -> new_lt13(vxw280, vxw260, ec) new_ltEs19(vxw281, vxw261, ty_Ordering) -> new_ltEs7(vxw281, vxw261) new_ltEs7(GT, EQ) -> False new_compare18(Float(vxw270, Pos(vxw2710)), Float(vxw250, Neg(vxw2510))) -> new_compare16(new_sr(vxw270, Pos(vxw2510)), new_sr(Neg(vxw2710), vxw250)) new_compare18(Float(vxw270, Neg(vxw2710)), Float(vxw250, Pos(vxw2510))) -> new_compare16(new_sr(vxw270, Neg(vxw2510)), new_sr(Pos(vxw2710), vxw250)) new_lt4(vxw27, vxw25, cg) -> new_esEs8(new_compare7(vxw27, vxw25, cg), LT) new_compare27(vxw27, vxw25, True, bg, bh) -> EQ new_ltEs4(Left(vxw280), Left(vxw260), app(app(ty_@2, cef), ceg), ceb) -> new_ltEs10(vxw280, vxw260, cef, ceg) new_esEs12(vxw280, vxw260, ty_Bool) -> new_esEs16(vxw280, vxw260) new_esEs24(vxw311, vxw4011, ty_@0) -> new_esEs17(vxw311, vxw4011) new_ltEs4(Left(vxw280), Right(vxw260), cfe, ceb) -> True new_ltEs18(Just(vxw280), Just(vxw260), ty_Bool) -> new_ltEs14(vxw280, vxw260) new_ltEs18(Just(vxw280), Just(vxw260), app(ty_[], dab)) -> new_ltEs6(vxw280, vxw260, dab) new_esEs22(vxw310, vxw4010, ty_Double) -> new_esEs9(vxw310, vxw4010) new_compare11(vxw27, vxw25, True, ca, cb) -> LT new_esEs12(vxw280, vxw260, ty_Int) -> new_esEs10(vxw280, vxw260) new_ltEs20(vxw28, vxw26, app(ty_[], db)) -> new_ltEs6(vxw28, vxw26, db) new_esEs30(vxw31, vxw401, app(app(ty_Either, bbb), hg)) -> new_esEs6(vxw31, vxw401, bbb, hg) new_ltEs20(vxw28, vxw26, ty_Ordering) -> new_ltEs7(vxw28, vxw26) new_ltEs18(Just(vxw280), Just(vxw260), ty_Char) -> new_ltEs5(vxw280, vxw260) new_ltEs9(vxw282, vxw262, ty_Ordering) -> new_ltEs7(vxw282, vxw262) new_esEs24(vxw311, vxw4011, ty_Int) -> new_esEs10(vxw311, vxw4011) new_esEs10(vxw31, vxw401) -> new_primEqInt(vxw31, vxw401) new_lt7(vxw281, vxw261, app(ty_[], gb)) -> new_lt19(vxw281, vxw261, gb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(vxw310, vxw4010, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs4(vxw310, vxw4010, bgg, bgh, bha) new_esEs27(vxw311, vxw4011, ty_@0) -> new_esEs17(vxw311, vxw4011) new_compare31(vxw270, vxw250, ty_Ordering) -> new_compare30(vxw270, vxw250) new_ltEs4(Right(vxw280), Right(vxw260), cfe, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs8(vxw280, vxw260, cff, cfg, cfh) new_esEs28(vxw310, vxw4010, app(app(ty_@2, def), deg)) -> new_esEs5(vxw310, vxw4010, def, deg) new_lt6(vxw280, vxw260, ty_Int) -> new_lt12(vxw280, vxw260) new_esEs22(vxw310, vxw4010, ty_Char) -> new_esEs13(vxw310, vxw4010) new_esEs27(vxw311, vxw4011, app(app(ty_Either, ddg), ddh)) -> new_esEs6(vxw311, vxw4011, ddg, ddh) new_lt8(vxw27, vxw25) -> new_esEs8(new_compare6(vxw27, vxw25), LT) new_ltEs7(EQ, LT) -> False new_lt20(vxw280, vxw260, ty_@0) -> new_lt5(vxw280, vxw260) new_esEs27(vxw311, vxw4011, app(ty_Ratio, dea)) -> new_esEs14(vxw311, vxw4011, dea) new_esEs30(vxw31, vxw401, app(ty_Maybe, ccg)) -> new_esEs7(vxw31, vxw401, ccg) new_esEs25(vxw310, vxw4010, ty_Int) -> new_esEs10(vxw310, vxw4010) new_esEs22(vxw310, vxw4010, ty_Bool) -> new_esEs16(vxw310, vxw4010) new_ltEs19(vxw281, vxw261, app(app(ty_Either, ccc), ccd)) -> new_ltEs4(vxw281, vxw261, ccc, ccd) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs30(vxw31, vxw401, app(app(ty_@2, dac), dad)) -> new_esEs5(vxw31, vxw401, dac, dad) new_lt6(vxw280, vxw260, ty_Ordering) -> new_lt9(vxw280, vxw260) new_esEs26(vxw280, vxw260, ty_@0) -> new_esEs17(vxw280, vxw260) new_esEs30(vxw31, vxw401, ty_Float) -> new_esEs18(vxw31, vxw401) new_esEs6(Right(vxw310), Right(vxw4010), bbb, ty_Double) -> new_esEs9(vxw310, vxw4010) new_lt20(vxw280, vxw260, app(ty_Maybe, cbc)) -> new_lt4(vxw280, vxw260, cbc) new_esEs7(Just(vxw310), Just(vxw4010), ty_Integer) -> new_esEs15(vxw310, vxw4010) new_ltEs14(False, False) -> True new_ltEs7(GT, LT) -> False new_compare31(vxw270, vxw250, ty_@0) -> new_compare8(vxw270, vxw250) new_primCmpNat0(Succ(vxw2700), Succ(vxw2500)) -> new_primCmpNat0(vxw2700, vxw2500) new_lt21(vxw27, vxw25, ty_@0) -> new_lt5(vxw27, vxw25) new_esEs25(vxw310, vxw4010, ty_@0) -> new_esEs17(vxw310, vxw4010) new_esEs16(False, False) -> True new_compare31(vxw270, vxw250, ty_Double) -> new_compare9(vxw270, vxw250) new_esEs6(Right(vxw310), Right(vxw4010), bbb, app(ty_[], bbh)) -> new_esEs19(vxw310, vxw4010, bbh) new_esEs26(vxw280, vxw260, app(ty_Ratio, cah)) -> new_esEs14(vxw280, vxw260, cah) new_lt6(vxw280, vxw260, ty_Double) -> new_lt16(vxw280, vxw260) new_lt21(vxw27, vxw25, app(ty_Ratio, cf)) -> new_lt13(vxw27, vxw25, cf) new_esEs23(vxw312, vxw4012, ty_Bool) -> new_esEs16(vxw312, vxw4012) new_esEs26(vxw280, vxw260, ty_Int) -> new_esEs10(vxw280, vxw260) new_compare12(vxw27, vxw25, True) -> LT new_ltEs18(Just(vxw280), Just(vxw260), ty_Ordering) -> new_ltEs7(vxw280, vxw260) new_lt14(vxw27, vxw25) -> new_esEs8(new_compare15(vxw27, vxw25), LT) new_esEs28(vxw310, vxw4010, ty_Ordering) -> new_esEs8(vxw310, vxw4010) new_lt6(vxw280, vxw260, app(app(ty_Either, ed), ee)) -> new_lt17(vxw280, vxw260, ed, ee) new_ltEs15(vxw28, vxw26) -> new_fsEs(new_compare8(vxw28, vxw26)) new_compare6(Char(vxw270), Char(vxw250)) -> new_primCmpNat0(vxw270, vxw250) new_compare7(vxw27, vxw25, cg) -> new_compare25(vxw27, vxw25, new_esEs7(vxw27, vxw25, cg), cg) new_lt6(vxw280, vxw260, app(ty_[], eg)) -> new_lt19(vxw280, vxw260, eg) new_ltEs9(vxw282, vxw262, ty_Integer) -> new_ltEs13(vxw282, vxw262) new_ltEs7(LT, GT) -> True new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs6(Right(vxw310), Right(vxw4010), bbb, ty_Char) -> new_esEs13(vxw310, vxw4010) new_esEs28(vxw310, vxw4010, app(app(ty_Either, dfa), dfb)) -> new_esEs6(vxw310, vxw4010, dfa, dfb) new_esEs11(vxw281, vxw261, ty_Integer) -> new_esEs15(vxw281, vxw261) new_esEs6(Left(vxw310), Left(vxw4010), ty_@0, hg) -> new_esEs17(vxw310, vxw4010) new_esEs23(vxw312, vxw4012, ty_Integer) -> new_esEs15(vxw312, vxw4012) new_primEqNat0(Zero, Zero) -> True new_esEs25(vxw310, vxw4010, app(ty_[], bhd)) -> new_esEs19(vxw310, vxw4010, bhd) new_esEs29(vxw27, vxw25, ty_Ordering) -> new_esEs8(vxw27, vxw25) new_esEs29(vxw27, vxw25, app(app(ty_@2, bg), bh)) -> new_esEs5(vxw27, vxw25, bg, bh) new_lt21(vxw27, vxw25, ty_Double) -> new_lt16(vxw27, vxw25) new_lt7(vxw281, vxw261, ty_Int) -> new_lt12(vxw281, vxw261) new_ltEs9(vxw282, vxw262, app(app(ty_@2, gf), gg)) -> new_ltEs10(vxw282, vxw262, gf, gg) new_ltEs14(True, False) -> False new_ltEs4(Right(vxw280), Right(vxw260), cfe, ty_Float) -> new_ltEs17(vxw280, vxw260) new_asAs(False, vxw56) -> False new_ltEs20(vxw28, vxw26, ty_Float) -> new_ltEs17(vxw28, vxw26) new_esEs6(Left(vxw310), Left(vxw4010), ty_Int, hg) -> new_esEs10(vxw310, vxw4010) new_ltEs9(vxw282, vxw262, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs8(vxw282, vxw262, gc, gd, ge) new_esEs29(vxw27, vxw25, app(ty_Maybe, cg)) -> new_esEs7(vxw27, vxw25, cg) new_ltEs8(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), dc, dd, de) -> new_pePe(new_lt6(vxw280, vxw260, dc), new_asAs(new_esEs12(vxw280, vxw260, dc), new_pePe(new_lt7(vxw281, vxw261, dd), new_asAs(new_esEs11(vxw281, vxw261, dd), new_ltEs9(vxw282, vxw262, de))))) new_lt6(vxw280, vxw260, ty_@0) -> new_lt5(vxw280, vxw260) new_lt7(vxw281, vxw261, ty_Ordering) -> new_lt9(vxw281, vxw261) new_esEs11(vxw281, vxw261, ty_Bool) -> new_esEs16(vxw281, vxw261) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs4(Right(vxw280), Left(vxw260), cfe, ceb) -> False new_esEs29(vxw27, vxw25, ty_Float) -> new_esEs18(vxw27, vxw25) new_lt7(vxw281, vxw261, ty_Char) -> new_lt8(vxw281, vxw261) new_ltEs16(vxw28, vxw26) -> new_fsEs(new_compare9(vxw28, vxw26)) new_ltEs19(vxw281, vxw261, ty_Float) -> new_ltEs17(vxw281, vxw261) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare31(vxw270, vxw250, app(app(ty_Either, dbc), dbd)) -> new_compare19(vxw270, vxw250, dbc, dbd) The set Q consists of the following terms: new_esEs30(x0, x1, app(ty_[], x2)) new_esEs8(EQ, EQ) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt20(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Nothing, x1) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_@0) new_esEs25(x0, x1, ty_@0) new_compare4([], [], x0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare23(x0, x1, True, x2, x3) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, ty_Integer) new_compare111(x0, x1, False) new_lt6(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_lt7(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Bool) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, False, x2, x3, x4) new_compare31(x0, x1, ty_Double) new_esEs14(:%(x0, x1), :%(x2, x3), x4) new_esEs12(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Ordering) new_ltEs18(Just(x0), Just(x1), ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs7(Nothing, Nothing, x0) new_compare24(x0, x1, False) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare30(x0, x1) new_compare31(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Char) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare7(x0, x1, x2) new_esEs29(x0, x1, ty_Bool) new_esEs23(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, x2, x3, x4) new_pePe(False, x0) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Int) new_compare11(x0, x1, True, x2, x3) new_primCompAux1(x0, x1, x2, x3) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_lt7(x0, x1, app(ty_Ratio, x2)) new_sr0(Integer(x0), Integer(x1)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Nothing, Just(x0), x1) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqNat0(Succ(x0), Zero) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs23(x0, x1, ty_Bool) new_ltEs18(Just(x0), Just(x1), ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt17(x0, x1, x2, x3) new_primCompAux0(x0, EQ) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, False, x2, x3) new_lt7(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs23(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, True, x2) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, x2) new_esEs28(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(Double(x0, x1), Double(x2, x3)) new_ltEs7(EQ, EQ) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs16(True, True) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare12(x0, x1, True) new_compare8(@0, @0) new_esEs29(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Char) new_ltEs18(Nothing, Just(x0), x1) new_lt15(x0, x1) new_lt7(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Ordering) new_lt6(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt7(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs21(x0, x1, ty_Integer) new_compare110(x0, x1, True, x2, x3, x4) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs27(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_compare23(x0, x1, False, x2, x3) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Double) new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs9(x0, x1, ty_Double) new_lt18(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Float) new_esEs17(@0, @0) new_esEs20(x0, x1, ty_Int) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt14(x0, x1) new_lt7(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_compare4([], :(x0, x1), x2) new_esEs27(x0, x1, ty_Int) new_esEs12(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Float) new_esEs12(x0, x1, ty_Integer) new_ltEs18(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Float) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare27(x0, x1, True, x2, x3) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Ordering) new_esEs19([], :(x0, x1), x2) new_lt8(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1) new_esEs26(x0, x1, ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_compare110(x0, x1, False, x2, x3, x4) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_ltEs9(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs26(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Int) new_compare25(x0, x1, False, x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(GT, GT) new_ltEs9(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs9(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_primCmpNat0(Succ(x0), Zero) new_esEs19([], [], x0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primMulNat0(Zero, Succ(x0)) new_esEs30(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs18(Just(x0), Just(x1), ty_Bool) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Integer) new_compare17(x0, x1) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs14(False, False) new_primCompAux0(x0, LT) new_esEs31(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs8(LT, LT) new_compare11(x0, x1, False, x2, x3) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Char) new_ltEs18(Just(x0), Just(x1), ty_Ordering) new_compare16(x0, x1) new_lt21(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Int) new_esEs16(False, False) new_lt20(x0, x1, ty_Float) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Double) new_compare31(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs12(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, x2) new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Bool) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True) new_lt20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Int) new_asAs(False, x0) new_esEs7(Just(x0), Just(x1), ty_Double) new_compare19(x0, x1, x2, x3) new_ltEs9(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Int) new_esEs30(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs9(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(x0, x1) new_esEs12(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Bool) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_lt21(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare4(:(x0, x1), [], x2) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt11(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Just(x0), Just(x1), ty_@0) new_lt6(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs31(x0, x1, ty_Char) new_lt7(x0, x1, ty_Float) new_ltEs9(x0, x1, ty_Bool) new_compare31(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, x2, x3) new_esEs27(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), Zero) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(x0, x1) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Char) new_compare10(x0, x1, False, x2, x3) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(LT, LT) new_compare13(x0, x1, False, x2) new_esEs31(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1) new_ltEs12(x0, x1, x2) new_esEs11(x0, x1, ty_@0) new_esEs19(:(x0, x1), [], x2) new_ltEs20(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Bool) new_fsEs(x0) new_esEs7(Just(x0), Just(x1), ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_ltEs13(x0, x1) new_compare29(x0, x1, True) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Bool) new_lt10(x0, x1, x2, x3, x4) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_esEs19(:(x0, x1), :(x2, x3), x4) new_esEs11(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Char) new_ltEs9(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_Integer) new_primPlusNat0(Zero, Succ(x0)) new_ltEs14(True, True) new_not(True) new_esEs26(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_lt4(x0, x1, x2) new_esEs28(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs30(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs9(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Ordering) new_ltEs18(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_lt21(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt21(x0, x1, ty_Ordering) new_pePe(True, x0) new_esEs11(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_compare29(x0, x1, False) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Ordering) new_sr(x0, x1) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(GT, GT) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare10(x0, x1, True, x2, x3) new_esEs7(Just(x0), Just(x1), ty_Float) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, ty_Float) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt6(x0, x1, ty_@0) new_compare210(x0, x1, True, x2, x3, x4) new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt7(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_lt21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_lt7(x0, x1, ty_Integer) new_lt16(x0, x1) new_ltEs9(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs8(LT, GT) new_esEs8(GT, LT) new_lt9(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_compare111(x0, x1, True) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_esEs31(x0, x1, ty_Integer) new_compare4(:(x0, x1), :(x2, x3), x4) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, ty_Ordering) new_lt5(x0, x1) new_asAs(True, x0) new_esEs13(Char(x0), Char(x1)) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs22(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, ty_@0) new_compare31(x0, x1, ty_Bool) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, False) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, x2) new_ltEs9(x0, x1, ty_Int) new_primCompAux0(x0, GT) new_esEs31(x0, x1, ty_Bool) new_esEs18(Float(x0, x1), Float(x2, x3)) new_ltEs14(False, True) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare6(Char(x0), Char(x1)) new_ltEs14(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Integer(x0), Integer(x1)) new_primEqNat0(Zero, Zero) new_esEs29(x0, x1, ty_Char) new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Integer) new_not(False) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs18(Just(x0), Just(x1), ty_Double) new_ltEs18(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Int) new_ltEs9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Double) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_@0) new_compare31(x0, x1, ty_Char) new_primPlusNat1(Zero, x0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(Integer(x0), Integer(x1)) new_esEs16(False, True) new_esEs16(True, False) new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Zero) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs20(x0, x1, ty_Ordering) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs7(Just(x0), Just(x1), ty_Int) new_esEs12(x0, x1, ty_@0) new_compare25(x0, x1, True, x2) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs12(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs7(Just(x0), Just(x1), ty_Char) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs27(x0, x1, ty_Double) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt7(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Zero) new_esEs29(x0, x1, ty_Float) new_ltEs11(x0, x1) new_esEs24(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat1(Succ(x0), x1) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) 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_insertBy00(vxw45, vxw46, vxw47, vxw48, vxw49, False, bc, bd) -> new_insertBy(@2(vxw47, vxw48), vxw49, bc, bd) The graph contains the following edges 5 >= 2, 7 >= 3, 8 >= 4 *new_insertBy(@2(vxw30, vxw31), :(@2(vxw400, vxw401), vxw41), be, bf) -> new_insertBy0(vxw400, vxw401, vxw30, vxw31, vxw41, new_asAs(new_esEs31(vxw30, vxw400, be), new_esEs30(vxw31, vxw401, bf)), be, bf) The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 7, 4 >= 8 *new_insertBy0(vxw25, vxw26, vxw27, vxw28, vxw29, False, ba, bb) -> new_insertBy00(vxw25, vxw26, vxw27, vxw28, vxw29, new_pePe(new_lt21(vxw27, vxw25, ba), new_asAs(new_esEs29(vxw27, vxw25, ba), new_ltEs20(vxw28, vxw26, bb))), ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vxw3100), Succ(vxw40100)) -> new_primEqNat(vxw3100, vxw40100) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) 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(vxw3100), Succ(vxw40100)) -> new_primEqNat(vxw3100, vxw40100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vxw8400), Succ(vxw4011000)) -> new_primPlusNat(vxw8400, vxw4011000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) 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(vxw8400), Succ(vxw4011000)) -> new_primPlusNat(vxw8400, vxw4011000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES ---------------------------------------- (33) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Left(vxw310), Left(vxw4010), app(ty_Maybe, bbh), bbb) -> new_esEs3(vxw310, vxw4010, bbh) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(ty_[], bh)) -> new_esEs1(vxw312, vxw4012, bh) new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(ty_Maybe, baf)) -> new_esEs3(vxw310, vxw4010, baf) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(app(app(ty_@3, bc), bd), be)) -> new_esEs(vxw312, vxw4012, bc, bd, be) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(ty_Maybe, hd), gf) -> new_esEs3(vxw310, vxw4010, hd) new_esEs2(Right(vxw310), Right(vxw4010), bca, app(app(ty_@2, bce), bcf)) -> new_esEs0(vxw310, vxw4010, bce, bcf) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(app(ty_@2, da), db), cg) -> new_esEs0(vxw311, vxw4011, da, db) new_esEs2(Right(vxw310), Right(vxw4010), bca, app(app(ty_Either, bch), bda)) -> new_esEs2(vxw310, vxw4010, bch, bda) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(ty_[], ed), bb, cg) -> new_esEs1(vxw310, vxw4010, ed) new_esEs3(Just(vxw310), Just(vxw4010), app(app(ty_Either, bea), beb)) -> new_esEs2(vxw310, vxw4010, bea, beb) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(app(app(ty_@3, gc), gd), ge), gf) -> new_esEs(vxw310, vxw4010, gc, gd, ge) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(app(ty_@2, fd), ff)) -> new_esEs0(vxw311, vxw4011, fd, ff) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(ty_Maybe, gb)) -> new_esEs3(vxw311, vxw4011, gb) new_esEs2(Left(vxw310), Left(vxw4010), app(ty_[], bbe), bbb) -> new_esEs1(vxw310, vxw4010, bbe) new_esEs2(Right(vxw310), Right(vxw4010), bca, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs(vxw310, vxw4010, bcb, bcc, bcd) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(ty_[], dc), cg) -> new_esEs1(vxw311, vxw4011, dc) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(app(ty_Either, fh), ga)) -> new_esEs2(vxw311, vxw4011, fh, ga) new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs(vxw310, vxw4010, hf, hg, hh) new_esEs3(Just(vxw310), Just(vxw4010), app(ty_Maybe, bec)) -> new_esEs3(vxw310, vxw4010, bec) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(ty_[], ha), gf) -> new_esEs1(vxw310, vxw4010, ha) new_esEs3(Just(vxw310), Just(vxw4010), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(vxw310, vxw4010, bdc, bdd, bde) new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(app(ty_Either, bad), bae)) -> new_esEs2(vxw310, vxw4010, bad, bae) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(app(app(ty_@3, cd), ce), cf), cg) -> new_esEs(vxw311, vxw4011, cd, ce, cf) new_esEs3(Just(vxw310), Just(vxw4010), app(ty_[], bdh)) -> new_esEs1(vxw310, vxw4010, bdh) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(app(ty_Either, ca), cb)) -> new_esEs2(vxw312, vxw4012, ca, cb) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(ty_[], fg)) -> new_esEs1(vxw311, vxw4011, fg) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(app(ty_@2, bf), bg)) -> new_esEs0(vxw312, vxw4012, bf, bg) new_esEs2(Left(vxw310), Left(vxw4010), app(app(ty_Either, bbf), bbg), bbb) -> new_esEs2(vxw310, vxw4010, bbf, bbg) new_esEs2(Right(vxw310), Right(vxw4010), bca, app(ty_[], bcg)) -> new_esEs1(vxw310, vxw4010, bcg) new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(app(ty_@2, baa), bab)) -> new_esEs0(vxw310, vxw4010, baa, bab) new_esEs3(Just(vxw310), Just(vxw4010), app(app(ty_@2, bdf), bdg)) -> new_esEs0(vxw310, vxw4010, bdf, bdg) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(app(ty_Either, dd), de), cg) -> new_esEs2(vxw311, vxw4011, dd, de) new_esEs2(Right(vxw310), Right(vxw4010), bca, app(ty_Maybe, bdb)) -> new_esEs3(vxw310, vxw4010, bdb) new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), he) -> new_esEs1(vxw311, vxw4011, he) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(app(app(ty_@3, dg), dh), ea), bb, cg) -> new_esEs(vxw310, vxw4010, dg, dh, ea) new_esEs2(Left(vxw310), Left(vxw4010), app(app(ty_@2, bbc), bbd), bbb) -> new_esEs0(vxw310, vxw4010, bbc, bbd) new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(ty_[], bac)) -> new_esEs1(vxw310, vxw4010, bac) new_esEs2(Left(vxw310), Left(vxw4010), app(app(app(ty_@3, bag), bah), bba), bbb) -> new_esEs(vxw310, vxw4010, bag, bah, bba) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(ty_Maybe, cc)) -> new_esEs3(vxw312, vxw4012, cc) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(ty_Maybe, df), cg) -> new_esEs3(vxw311, vxw4011, df) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(app(ty_Either, ee), ef), bb, cg) -> new_esEs2(vxw310, vxw4010, ee, ef) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(app(ty_@2, gg), gh), gf) -> new_esEs0(vxw310, vxw4010, gg, gh) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(app(ty_Either, hb), hc), gf) -> new_esEs2(vxw310, vxw4010, hb, hc) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(app(ty_@2, eb), ec), bb, cg) -> new_esEs0(vxw310, vxw4010, eb, ec) new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs(vxw311, vxw4011, fa, fb, fc) new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(ty_Maybe, eg), bb, cg) -> new_esEs3(vxw310, vxw4010, eg) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (34) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs3(Just(vxw310), Just(vxw4010), app(app(ty_Either, bea), beb)) -> new_esEs2(vxw310, vxw4010, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vxw310), Just(vxw4010), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(vxw310, vxw4010, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(app(ty_Either, bad), bae)) -> new_esEs2(vxw310, vxw4010, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs(vxw310, vxw4010, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(vxw310), Just(vxw4010), app(ty_[], bdh)) -> new_esEs1(vxw310, vxw4010, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(vxw310), Just(vxw4010), app(app(ty_@2, bdf), bdg)) -> new_esEs0(vxw310, vxw4010, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vxw310), Just(vxw4010), app(ty_Maybe, bec)) -> new_esEs3(vxw310, vxw4010, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(app(ty_@2, baa), bab)) -> new_esEs0(vxw310, vxw4010, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(ty_Maybe, baf)) -> new_esEs3(vxw310, vxw4010, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(app(ty_Either, ca), cb)) -> new_esEs2(vxw312, vxw4012, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(app(ty_Either, dd), de), cg) -> new_esEs2(vxw311, vxw4011, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(app(ty_Either, ee), ef), bb, cg) -> new_esEs2(vxw310, vxw4010, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(app(ty_Either, fh), ga)) -> new_esEs2(vxw311, vxw4011, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(app(ty_Either, hb), hc), gf) -> new_esEs2(vxw310, vxw4010, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Right(vxw310), Right(vxw4010), bca, app(app(ty_Either, bch), bda)) -> new_esEs2(vxw310, vxw4010, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(vxw310), Left(vxw4010), app(app(ty_Either, bbf), bbg), bbb) -> new_esEs2(vxw310, vxw4010, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), he) -> new_esEs1(vxw311, vxw4011, he) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(vxw310, vxw311), :(vxw4010, vxw4011), app(ty_[], bac)) -> new_esEs1(vxw310, vxw4010, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(app(app(ty_@3, bc), bd), be)) -> new_esEs(vxw312, vxw4012, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(app(app(ty_@3, cd), ce), cf), cg) -> new_esEs(vxw311, vxw4011, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(app(app(ty_@3, dg), dh), ea), bb, cg) -> new_esEs(vxw310, vxw4010, dg, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(app(app(ty_@3, gc), gd), ge), gf) -> new_esEs(vxw310, vxw4010, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs(vxw311, vxw4011, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(Right(vxw310), Right(vxw4010), bca, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs(vxw310, vxw4010, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(Left(vxw310), Left(vxw4010), app(app(app(ty_@3, bag), bah), bba), bbb) -> new_esEs(vxw310, vxw4010, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(ty_[], bh)) -> new_esEs1(vxw312, vxw4012, bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(ty_[], ed), bb, cg) -> new_esEs1(vxw310, vxw4010, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(ty_[], dc), cg) -> new_esEs1(vxw311, vxw4011, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(ty_[], ha), gf) -> new_esEs1(vxw310, vxw4010, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(ty_[], fg)) -> new_esEs1(vxw311, vxw4011, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(vxw310), Left(vxw4010), app(ty_[], bbe), bbb) -> new_esEs1(vxw310, vxw4010, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(vxw310), Right(vxw4010), bca, app(ty_[], bcg)) -> new_esEs1(vxw310, vxw4010, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(app(ty_@2, da), db), cg) -> new_esEs0(vxw311, vxw4011, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(app(ty_@2, bf), bg)) -> new_esEs0(vxw312, vxw4012, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(app(ty_@2, eb), ec), bb, cg) -> new_esEs0(vxw310, vxw4010, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, bb, app(ty_Maybe, cc)) -> new_esEs3(vxw312, vxw4012, cc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), ba, app(ty_Maybe, df), cg) -> new_esEs3(vxw311, vxw4011, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vxw310, vxw311, vxw312), @3(vxw4010, vxw4011, vxw4012), app(ty_Maybe, eg), bb, cg) -> new_esEs3(vxw310, vxw4010, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(app(ty_@2, fd), ff)) -> new_esEs0(vxw311, vxw4011, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(app(ty_@2, gg), gh), gf) -> new_esEs0(vxw310, vxw4010, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Right(vxw310), Right(vxw4010), bca, app(app(ty_@2, bce), bcf)) -> new_esEs0(vxw310, vxw4010, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(vxw310), Left(vxw4010), app(app(ty_@2, bbc), bbd), bbb) -> new_esEs0(vxw310, vxw4010, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), app(ty_Maybe, hd), gf) -> new_esEs3(vxw310, vxw4010, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vxw310, vxw311), @2(vxw4010, vxw4011), eh, app(ty_Maybe, gb)) -> new_esEs3(vxw311, vxw4011, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(vxw310), Left(vxw4010), app(ty_Maybe, bbh), bbb) -> new_esEs3(vxw310, vxw4010, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(vxw310), Right(vxw4010), bca, app(ty_Maybe, bdb)) -> new_esEs3(vxw310, vxw4010, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (35) YES