/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, 0 ms] (6) HASKELL (7) COR [EQUIVALENT, 6 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 14 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 71 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { 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; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { 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 Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { 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; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "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 zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " 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 vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " 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; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { 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 zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " 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 "reduce2D vwv vww = gcd vwv vww; " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " ---------------------------------------- (10) Obligation: mainModule Main module Main where { 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 Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="compare",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="compare vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2172[label="vwx3/(vwx30,vwx31)",fontsize=10,color="white",style="solid",shape="box"];6 -> 2172[label="",style="solid", color="burlywood", weight=9]; 2172 -> 7[label="",style="solid", color="burlywood", weight=3]; 7[label="compare2 (vwx30,vwx31) vwx4 ((vwx30,vwx31) == vwx4)",fontsize=16,color="burlywood",shape="box"];2173[label="vwx4/(vwx40,vwx41)",fontsize=10,color="white",style="solid",shape="box"];7 -> 2173[label="",style="solid", color="burlywood", weight=9]; 2173 -> 8[label="",style="solid", color="burlywood", weight=3]; 8[label="compare2 (vwx30,vwx31) (vwx40,vwx41) ((vwx30,vwx31) == (vwx40,vwx41))",fontsize=16,color="black",shape="box"];8 -> 9[label="",style="solid", color="black", weight=3]; 9 -> 90[label="",style="dashed", color="red", weight=0]; 9[label="compare2 (vwx30,vwx31) (vwx40,vwx41) (vwx30 == vwx40 && vwx31 == vwx41)",fontsize=16,color="magenta"];9 -> 91[label="",style="dashed", color="magenta", weight=3]; 9 -> 92[label="",style="dashed", color="magenta", weight=3]; 9 -> 93[label="",style="dashed", color="magenta", weight=3]; 9 -> 94[label="",style="dashed", color="magenta", weight=3]; 9 -> 95[label="",style="dashed", color="magenta", weight=3]; 91[label="vwx40",fontsize=16,color="green",shape="box"];92 -> 381[label="",style="dashed", color="red", weight=0]; 92[label="vwx30 == vwx40 && vwx31 == vwx41",fontsize=16,color="magenta"];92 -> 382[label="",style="dashed", color="magenta", weight=3]; 92 -> 383[label="",style="dashed", color="magenta", weight=3]; 93[label="vwx30",fontsize=16,color="green",shape="box"];94[label="vwx31",fontsize=16,color="green",shape="box"];95[label="vwx41",fontsize=16,color="green",shape="box"];90[label="compare2 (vwx22,vwx23) (vwx24,vwx25) vwx26",fontsize=16,color="burlywood",shape="triangle"];2174[label="vwx26/False",fontsize=10,color="white",style="solid",shape="box"];90 -> 2174[label="",style="solid", color="burlywood", weight=9]; 2174 -> 115[label="",style="solid", color="burlywood", weight=3]; 2175[label="vwx26/True",fontsize=10,color="white",style="solid",shape="box"];90 -> 2175[label="",style="solid", color="burlywood", weight=9]; 2175 -> 116[label="",style="solid", color="burlywood", weight=3]; 382[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];2176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2176[label="",style="solid", color="blue", weight=9]; 2176 -> 386[label="",style="solid", color="blue", weight=3]; 2177[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2177[label="",style="solid", color="blue", weight=9]; 2177 -> 387[label="",style="solid", color="blue", weight=3]; 2178[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2178[label="",style="solid", color="blue", weight=9]; 2178 -> 388[label="",style="solid", color="blue", weight=3]; 2179[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2179[label="",style="solid", color="blue", weight=9]; 2179 -> 389[label="",style="solid", color="blue", weight=3]; 2180[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2180[label="",style="solid", color="blue", weight=9]; 2180 -> 390[label="",style="solid", color="blue", weight=3]; 2181[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2181[label="",style="solid", color="blue", weight=9]; 2181 -> 391[label="",style="solid", color="blue", weight=3]; 2182[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2182[label="",style="solid", color="blue", weight=9]; 2182 -> 392[label="",style="solid", color="blue", weight=3]; 2183[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2183[label="",style="solid", color="blue", weight=9]; 2183 -> 393[label="",style="solid", color="blue", weight=3]; 2184[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2184[label="",style="solid", color="blue", weight=9]; 2184 -> 394[label="",style="solid", color="blue", weight=3]; 2185[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2185[label="",style="solid", color="blue", weight=9]; 2185 -> 395[label="",style="solid", color="blue", weight=3]; 2186[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2186[label="",style="solid", color="blue", weight=9]; 2186 -> 396[label="",style="solid", color="blue", weight=3]; 2187[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2187[label="",style="solid", color="blue", weight=9]; 2187 -> 397[label="",style="solid", color="blue", weight=3]; 2188[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2188[label="",style="solid", color="blue", weight=9]; 2188 -> 398[label="",style="solid", color="blue", weight=3]; 2189[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2189[label="",style="solid", color="blue", weight=9]; 2189 -> 399[label="",style="solid", color="blue", weight=3]; 383[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2190[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2190[label="",style="solid", color="blue", weight=9]; 2190 -> 400[label="",style="solid", color="blue", weight=3]; 2191[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2191[label="",style="solid", color="blue", weight=9]; 2191 -> 401[label="",style="solid", color="blue", weight=3]; 2192[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2192[label="",style="solid", color="blue", weight=9]; 2192 -> 402[label="",style="solid", color="blue", weight=3]; 2193[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2193[label="",style="solid", color="blue", weight=9]; 2193 -> 403[label="",style="solid", color="blue", weight=3]; 2194[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2194[label="",style="solid", color="blue", weight=9]; 2194 -> 404[label="",style="solid", color="blue", weight=3]; 2195[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2195[label="",style="solid", color="blue", weight=9]; 2195 -> 405[label="",style="solid", color="blue", weight=3]; 2196[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2196[label="",style="solid", color="blue", weight=9]; 2196 -> 406[label="",style="solid", color="blue", weight=3]; 2197[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2197[label="",style="solid", color="blue", weight=9]; 2197 -> 407[label="",style="solid", color="blue", weight=3]; 2198[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2198[label="",style="solid", color="blue", weight=9]; 2198 -> 408[label="",style="solid", color="blue", weight=3]; 2199[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2199[label="",style="solid", color="blue", weight=9]; 2199 -> 409[label="",style="solid", color="blue", weight=3]; 2200[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2200[label="",style="solid", color="blue", weight=9]; 2200 -> 410[label="",style="solid", color="blue", weight=3]; 2201[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2201[label="",style="solid", color="blue", weight=9]; 2201 -> 411[label="",style="solid", color="blue", weight=3]; 2202[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2202[label="",style="solid", color="blue", weight=9]; 2202 -> 412[label="",style="solid", color="blue", weight=3]; 2203[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2203[label="",style="solid", color="blue", weight=9]; 2203 -> 413[label="",style="solid", color="blue", weight=3]; 381[label="vwx49 && vwx50",fontsize=16,color="burlywood",shape="triangle"];2204[label="vwx49/False",fontsize=10,color="white",style="solid",shape="box"];381 -> 2204[label="",style="solid", color="burlywood", weight=9]; 2204 -> 414[label="",style="solid", color="burlywood", weight=3]; 2205[label="vwx49/True",fontsize=10,color="white",style="solid",shape="box"];381 -> 2205[label="",style="solid", color="burlywood", weight=9]; 2205 -> 415[label="",style="solid", color="burlywood", weight=3]; 115[label="compare2 (vwx22,vwx23) (vwx24,vwx25) False",fontsize=16,color="black",shape="box"];115 -> 133[label="",style="solid", color="black", weight=3]; 116[label="compare2 (vwx22,vwx23) (vwx24,vwx25) True",fontsize=16,color="black",shape="box"];116 -> 134[label="",style="solid", color="black", weight=3]; 386[label="vwx31 == vwx41",fontsize=16,color="black",shape="triangle"];386 -> 432[label="",style="solid", color="black", weight=3]; 387[label="vwx31 == vwx41",fontsize=16,color="black",shape="triangle"];387 -> 433[label="",style="solid", color="black", weight=3]; 388[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2206[label="vwx31/Left vwx310",fontsize=10,color="white",style="solid",shape="box"];388 -> 2206[label="",style="solid", color="burlywood", weight=9]; 2206 -> 434[label="",style="solid", color="burlywood", weight=3]; 2207[label="vwx31/Right vwx310",fontsize=10,color="white",style="solid",shape="box"];388 -> 2207[label="",style="solid", color="burlywood", weight=9]; 2207 -> 435[label="",style="solid", color="burlywood", weight=3]; 389[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2208[label="vwx31/vwx310 : vwx311",fontsize=10,color="white",style="solid",shape="box"];389 -> 2208[label="",style="solid", color="burlywood", weight=9]; 2208 -> 436[label="",style="solid", color="burlywood", weight=3]; 2209[label="vwx31/[]",fontsize=10,color="white",style="solid",shape="box"];389 -> 2209[label="",style="solid", color="burlywood", weight=9]; 2209 -> 437[label="",style="solid", color="burlywood", weight=3]; 390[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2210[label="vwx31/Nothing",fontsize=10,color="white",style="solid",shape="box"];390 -> 2210[label="",style="solid", color="burlywood", weight=9]; 2210 -> 438[label="",style="solid", color="burlywood", weight=3]; 2211[label="vwx31/Just vwx310",fontsize=10,color="white",style="solid",shape="box"];390 -> 2211[label="",style="solid", color="burlywood", weight=9]; 2211 -> 439[label="",style="solid", color="burlywood", weight=3]; 391[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2212[label="vwx31/LT",fontsize=10,color="white",style="solid",shape="box"];391 -> 2212[label="",style="solid", color="burlywood", weight=9]; 2212 -> 440[label="",style="solid", color="burlywood", weight=3]; 2213[label="vwx31/EQ",fontsize=10,color="white",style="solid",shape="box"];391 -> 2213[label="",style="solid", color="burlywood", weight=9]; 2213 -> 441[label="",style="solid", color="burlywood", weight=3]; 2214[label="vwx31/GT",fontsize=10,color="white",style="solid",shape="box"];391 -> 2214[label="",style="solid", color="burlywood", weight=9]; 2214 -> 442[label="",style="solid", color="burlywood", weight=3]; 392[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2215[label="vwx31/vwx310 :% vwx311",fontsize=10,color="white",style="solid",shape="box"];392 -> 2215[label="",style="solid", color="burlywood", weight=9]; 2215 -> 443[label="",style="solid", color="burlywood", weight=3]; 393[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2216[label="vwx31/False",fontsize=10,color="white",style="solid",shape="box"];393 -> 2216[label="",style="solid", color="burlywood", weight=9]; 2216 -> 444[label="",style="solid", color="burlywood", weight=3]; 2217[label="vwx31/True",fontsize=10,color="white",style="solid",shape="box"];393 -> 2217[label="",style="solid", color="burlywood", weight=9]; 2217 -> 445[label="",style="solid", color="burlywood", weight=3]; 394[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2218[label="vwx31/(vwx310,vwx311)",fontsize=10,color="white",style="solid",shape="box"];394 -> 2218[label="",style="solid", color="burlywood", weight=9]; 2218 -> 446[label="",style="solid", color="burlywood", weight=3]; 395[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2219[label="vwx31/()",fontsize=10,color="white",style="solid",shape="box"];395 -> 2219[label="",style="solid", color="burlywood", weight=9]; 2219 -> 447[label="",style="solid", color="burlywood", weight=3]; 396[label="vwx31 == vwx41",fontsize=16,color="black",shape="triangle"];396 -> 448[label="",style="solid", color="black", weight=3]; 397[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2220[label="vwx31/(vwx310,vwx311,vwx312)",fontsize=10,color="white",style="solid",shape="box"];397 -> 2220[label="",style="solid", color="burlywood", weight=9]; 2220 -> 449[label="",style="solid", color="burlywood", weight=3]; 398[label="vwx31 == vwx41",fontsize=16,color="black",shape="triangle"];398 -> 450[label="",style="solid", color="black", weight=3]; 399[label="vwx31 == vwx41",fontsize=16,color="burlywood",shape="triangle"];2221[label="vwx31/Integer vwx310",fontsize=10,color="white",style="solid",shape="box"];399 -> 2221[label="",style="solid", color="burlywood", weight=9]; 2221 -> 451[label="",style="solid", color="burlywood", weight=3]; 400 -> 386[label="",style="dashed", color="red", weight=0]; 400[label="vwx30 == vwx40",fontsize=16,color="magenta"];400 -> 452[label="",style="dashed", color="magenta", weight=3]; 400 -> 453[label="",style="dashed", color="magenta", weight=3]; 401 -> 387[label="",style="dashed", color="red", weight=0]; 401[label="vwx30 == vwx40",fontsize=16,color="magenta"];401 -> 454[label="",style="dashed", color="magenta", weight=3]; 401 -> 455[label="",style="dashed", color="magenta", weight=3]; 402 -> 388[label="",style="dashed", color="red", weight=0]; 402[label="vwx30 == vwx40",fontsize=16,color="magenta"];402 -> 456[label="",style="dashed", color="magenta", weight=3]; 402 -> 457[label="",style="dashed", color="magenta", weight=3]; 403 -> 389[label="",style="dashed", color="red", weight=0]; 403[label="vwx30 == vwx40",fontsize=16,color="magenta"];403 -> 458[label="",style="dashed", color="magenta", weight=3]; 403 -> 459[label="",style="dashed", color="magenta", weight=3]; 404 -> 390[label="",style="dashed", color="red", weight=0]; 404[label="vwx30 == vwx40",fontsize=16,color="magenta"];404 -> 460[label="",style="dashed", color="magenta", weight=3]; 404 -> 461[label="",style="dashed", color="magenta", weight=3]; 405 -> 391[label="",style="dashed", color="red", weight=0]; 405[label="vwx30 == vwx40",fontsize=16,color="magenta"];405 -> 462[label="",style="dashed", color="magenta", weight=3]; 405 -> 463[label="",style="dashed", color="magenta", weight=3]; 406 -> 392[label="",style="dashed", color="red", weight=0]; 406[label="vwx30 == vwx40",fontsize=16,color="magenta"];406 -> 464[label="",style="dashed", color="magenta", weight=3]; 406 -> 465[label="",style="dashed", color="magenta", weight=3]; 407 -> 393[label="",style="dashed", color="red", weight=0]; 407[label="vwx30 == vwx40",fontsize=16,color="magenta"];407 -> 466[label="",style="dashed", color="magenta", weight=3]; 407 -> 467[label="",style="dashed", color="magenta", weight=3]; 408 -> 394[label="",style="dashed", color="red", weight=0]; 408[label="vwx30 == vwx40",fontsize=16,color="magenta"];408 -> 468[label="",style="dashed", color="magenta", weight=3]; 408 -> 469[label="",style="dashed", color="magenta", weight=3]; 409 -> 395[label="",style="dashed", color="red", weight=0]; 409[label="vwx30 == vwx40",fontsize=16,color="magenta"];409 -> 470[label="",style="dashed", color="magenta", weight=3]; 409 -> 471[label="",style="dashed", color="magenta", weight=3]; 410 -> 396[label="",style="dashed", color="red", weight=0]; 410[label="vwx30 == vwx40",fontsize=16,color="magenta"];410 -> 472[label="",style="dashed", color="magenta", weight=3]; 410 -> 473[label="",style="dashed", color="magenta", weight=3]; 411 -> 397[label="",style="dashed", color="red", weight=0]; 411[label="vwx30 == vwx40",fontsize=16,color="magenta"];411 -> 474[label="",style="dashed", color="magenta", weight=3]; 411 -> 475[label="",style="dashed", color="magenta", weight=3]; 412 -> 398[label="",style="dashed", color="red", weight=0]; 412[label="vwx30 == vwx40",fontsize=16,color="magenta"];412 -> 476[label="",style="dashed", color="magenta", weight=3]; 412 -> 477[label="",style="dashed", color="magenta", weight=3]; 413 -> 399[label="",style="dashed", color="red", weight=0]; 413[label="vwx30 == vwx40",fontsize=16,color="magenta"];413 -> 478[label="",style="dashed", color="magenta", weight=3]; 413 -> 479[label="",style="dashed", color="magenta", weight=3]; 414[label="False && vwx50",fontsize=16,color="black",shape="box"];414 -> 480[label="",style="solid", color="black", weight=3]; 415[label="True && vwx50",fontsize=16,color="black",shape="box"];415 -> 481[label="",style="solid", color="black", weight=3]; 133 -> 510[label="",style="dashed", color="red", weight=0]; 133[label="compare1 (vwx22,vwx23) (vwx24,vwx25) ((vwx22,vwx23) <= (vwx24,vwx25))",fontsize=16,color="magenta"];133 -> 511[label="",style="dashed", color="magenta", weight=3]; 133 -> 512[label="",style="dashed", color="magenta", weight=3]; 133 -> 513[label="",style="dashed", color="magenta", weight=3]; 133 -> 514[label="",style="dashed", color="magenta", weight=3]; 133 -> 515[label="",style="dashed", color="magenta", weight=3]; 134[label="EQ",fontsize=16,color="green",shape="box"];432[label="primEqInt vwx31 vwx41",fontsize=16,color="burlywood",shape="triangle"];2222[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];432 -> 2222[label="",style="solid", color="burlywood", weight=9]; 2222 -> 524[label="",style="solid", color="burlywood", weight=3]; 2223[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];432 -> 2223[label="",style="solid", color="burlywood", weight=9]; 2223 -> 525[label="",style="solid", color="burlywood", weight=3]; 433[label="primEqFloat vwx31 vwx41",fontsize=16,color="burlywood",shape="box"];2224[label="vwx31/Float vwx310 vwx311",fontsize=10,color="white",style="solid",shape="box"];433 -> 2224[label="",style="solid", color="burlywood", weight=9]; 2224 -> 526[label="",style="solid", color="burlywood", weight=3]; 434[label="Left vwx310 == vwx41",fontsize=16,color="burlywood",shape="box"];2225[label="vwx41/Left vwx410",fontsize=10,color="white",style="solid",shape="box"];434 -> 2225[label="",style="solid", color="burlywood", weight=9]; 2225 -> 527[label="",style="solid", color="burlywood", weight=3]; 2226[label="vwx41/Right vwx410",fontsize=10,color="white",style="solid",shape="box"];434 -> 2226[label="",style="solid", color="burlywood", weight=9]; 2226 -> 528[label="",style="solid", color="burlywood", weight=3]; 435[label="Right vwx310 == vwx41",fontsize=16,color="burlywood",shape="box"];2227[label="vwx41/Left vwx410",fontsize=10,color="white",style="solid",shape="box"];435 -> 2227[label="",style="solid", color="burlywood", weight=9]; 2227 -> 529[label="",style="solid", color="burlywood", weight=3]; 2228[label="vwx41/Right vwx410",fontsize=10,color="white",style="solid",shape="box"];435 -> 2228[label="",style="solid", color="burlywood", weight=9]; 2228 -> 530[label="",style="solid", color="burlywood", weight=3]; 436[label="vwx310 : vwx311 == vwx41",fontsize=16,color="burlywood",shape="box"];2229[label="vwx41/vwx410 : vwx411",fontsize=10,color="white",style="solid",shape="box"];436 -> 2229[label="",style="solid", color="burlywood", weight=9]; 2229 -> 531[label="",style="solid", color="burlywood", weight=3]; 2230[label="vwx41/[]",fontsize=10,color="white",style="solid",shape="box"];436 -> 2230[label="",style="solid", color="burlywood", weight=9]; 2230 -> 532[label="",style="solid", color="burlywood", weight=3]; 437[label="[] == vwx41",fontsize=16,color="burlywood",shape="box"];2231[label="vwx41/vwx410 : vwx411",fontsize=10,color="white",style="solid",shape="box"];437 -> 2231[label="",style="solid", color="burlywood", weight=9]; 2231 -> 533[label="",style="solid", color="burlywood", weight=3]; 2232[label="vwx41/[]",fontsize=10,color="white",style="solid",shape="box"];437 -> 2232[label="",style="solid", color="burlywood", weight=9]; 2232 -> 534[label="",style="solid", color="burlywood", weight=3]; 438[label="Nothing == vwx41",fontsize=16,color="burlywood",shape="box"];2233[label="vwx41/Nothing",fontsize=10,color="white",style="solid",shape="box"];438 -> 2233[label="",style="solid", color="burlywood", weight=9]; 2233 -> 535[label="",style="solid", color="burlywood", weight=3]; 2234[label="vwx41/Just vwx410",fontsize=10,color="white",style="solid",shape="box"];438 -> 2234[label="",style="solid", color="burlywood", weight=9]; 2234 -> 536[label="",style="solid", color="burlywood", weight=3]; 439[label="Just vwx310 == vwx41",fontsize=16,color="burlywood",shape="box"];2235[label="vwx41/Nothing",fontsize=10,color="white",style="solid",shape="box"];439 -> 2235[label="",style="solid", color="burlywood", weight=9]; 2235 -> 537[label="",style="solid", color="burlywood", weight=3]; 2236[label="vwx41/Just vwx410",fontsize=10,color="white",style="solid",shape="box"];439 -> 2236[label="",style="solid", color="burlywood", weight=9]; 2236 -> 538[label="",style="solid", color="burlywood", weight=3]; 440[label="LT == vwx41",fontsize=16,color="burlywood",shape="box"];2237[label="vwx41/LT",fontsize=10,color="white",style="solid",shape="box"];440 -> 2237[label="",style="solid", color="burlywood", weight=9]; 2237 -> 539[label="",style="solid", color="burlywood", weight=3]; 2238[label="vwx41/EQ",fontsize=10,color="white",style="solid",shape="box"];440 -> 2238[label="",style="solid", color="burlywood", weight=9]; 2238 -> 540[label="",style="solid", color="burlywood", weight=3]; 2239[label="vwx41/GT",fontsize=10,color="white",style="solid",shape="box"];440 -> 2239[label="",style="solid", color="burlywood", weight=9]; 2239 -> 541[label="",style="solid", color="burlywood", weight=3]; 441[label="EQ == vwx41",fontsize=16,color="burlywood",shape="box"];2240[label="vwx41/LT",fontsize=10,color="white",style="solid",shape="box"];441 -> 2240[label="",style="solid", color="burlywood", weight=9]; 2240 -> 542[label="",style="solid", color="burlywood", weight=3]; 2241[label="vwx41/EQ",fontsize=10,color="white",style="solid",shape="box"];441 -> 2241[label="",style="solid", color="burlywood", weight=9]; 2241 -> 543[label="",style="solid", color="burlywood", weight=3]; 2242[label="vwx41/GT",fontsize=10,color="white",style="solid",shape="box"];441 -> 2242[label="",style="solid", color="burlywood", weight=9]; 2242 -> 544[label="",style="solid", color="burlywood", weight=3]; 442[label="GT == vwx41",fontsize=16,color="burlywood",shape="box"];2243[label="vwx41/LT",fontsize=10,color="white",style="solid",shape="box"];442 -> 2243[label="",style="solid", color="burlywood", weight=9]; 2243 -> 545[label="",style="solid", color="burlywood", weight=3]; 2244[label="vwx41/EQ",fontsize=10,color="white",style="solid",shape="box"];442 -> 2244[label="",style="solid", color="burlywood", weight=9]; 2244 -> 546[label="",style="solid", color="burlywood", weight=3]; 2245[label="vwx41/GT",fontsize=10,color="white",style="solid",shape="box"];442 -> 2245[label="",style="solid", color="burlywood", weight=9]; 2245 -> 547[label="",style="solid", color="burlywood", weight=3]; 443[label="vwx310 :% vwx311 == vwx41",fontsize=16,color="burlywood",shape="box"];2246[label="vwx41/vwx410 :% vwx411",fontsize=10,color="white",style="solid",shape="box"];443 -> 2246[label="",style="solid", color="burlywood", weight=9]; 2246 -> 548[label="",style="solid", color="burlywood", weight=3]; 444[label="False == vwx41",fontsize=16,color="burlywood",shape="box"];2247[label="vwx41/False",fontsize=10,color="white",style="solid",shape="box"];444 -> 2247[label="",style="solid", color="burlywood", weight=9]; 2247 -> 549[label="",style="solid", color="burlywood", weight=3]; 2248[label="vwx41/True",fontsize=10,color="white",style="solid",shape="box"];444 -> 2248[label="",style="solid", color="burlywood", weight=9]; 2248 -> 550[label="",style="solid", color="burlywood", weight=3]; 445[label="True == vwx41",fontsize=16,color="burlywood",shape="box"];2249[label="vwx41/False",fontsize=10,color="white",style="solid",shape="box"];445 -> 2249[label="",style="solid", color="burlywood", weight=9]; 2249 -> 551[label="",style="solid", color="burlywood", weight=3]; 2250[label="vwx41/True",fontsize=10,color="white",style="solid",shape="box"];445 -> 2250[label="",style="solid", color="burlywood", weight=9]; 2250 -> 552[label="",style="solid", color="burlywood", weight=3]; 446[label="(vwx310,vwx311) == vwx41",fontsize=16,color="burlywood",shape="box"];2251[label="vwx41/(vwx410,vwx411)",fontsize=10,color="white",style="solid",shape="box"];446 -> 2251[label="",style="solid", color="burlywood", weight=9]; 2251 -> 553[label="",style="solid", color="burlywood", weight=3]; 447[label="() == vwx41",fontsize=16,color="burlywood",shape="box"];2252[label="vwx41/()",fontsize=10,color="white",style="solid",shape="box"];447 -> 2252[label="",style="solid", color="burlywood", weight=9]; 2252 -> 554[label="",style="solid", color="burlywood", weight=3]; 448[label="primEqDouble vwx31 vwx41",fontsize=16,color="burlywood",shape="box"];2253[label="vwx31/Double vwx310 vwx311",fontsize=10,color="white",style="solid",shape="box"];448 -> 2253[label="",style="solid", color="burlywood", weight=9]; 2253 -> 555[label="",style="solid", color="burlywood", weight=3]; 449[label="(vwx310,vwx311,vwx312) == vwx41",fontsize=16,color="burlywood",shape="box"];2254[label="vwx41/(vwx410,vwx411,vwx412)",fontsize=10,color="white",style="solid",shape="box"];449 -> 2254[label="",style="solid", color="burlywood", weight=9]; 2254 -> 556[label="",style="solid", color="burlywood", weight=3]; 450[label="primEqChar vwx31 vwx41",fontsize=16,color="burlywood",shape="box"];2255[label="vwx31/Char vwx310",fontsize=10,color="white",style="solid",shape="box"];450 -> 2255[label="",style="solid", color="burlywood", weight=9]; 2255 -> 557[label="",style="solid", color="burlywood", weight=3]; 451[label="Integer vwx310 == vwx41",fontsize=16,color="burlywood",shape="box"];2256[label="vwx41/Integer vwx410",fontsize=10,color="white",style="solid",shape="box"];451 -> 2256[label="",style="solid", color="burlywood", weight=9]; 2256 -> 558[label="",style="solid", color="burlywood", weight=3]; 452[label="vwx30",fontsize=16,color="green",shape="box"];453[label="vwx40",fontsize=16,color="green",shape="box"];454[label="vwx30",fontsize=16,color="green",shape="box"];455[label="vwx40",fontsize=16,color="green",shape="box"];456[label="vwx30",fontsize=16,color="green",shape="box"];457[label="vwx40",fontsize=16,color="green",shape="box"];458[label="vwx30",fontsize=16,color="green",shape="box"];459[label="vwx40",fontsize=16,color="green",shape="box"];460[label="vwx30",fontsize=16,color="green",shape="box"];461[label="vwx40",fontsize=16,color="green",shape="box"];462[label="vwx30",fontsize=16,color="green",shape="box"];463[label="vwx40",fontsize=16,color="green",shape="box"];464[label="vwx30",fontsize=16,color="green",shape="box"];465[label="vwx40",fontsize=16,color="green",shape="box"];466[label="vwx30",fontsize=16,color="green",shape="box"];467[label="vwx40",fontsize=16,color="green",shape="box"];468[label="vwx30",fontsize=16,color="green",shape="box"];469[label="vwx40",fontsize=16,color="green",shape="box"];470[label="vwx30",fontsize=16,color="green",shape="box"];471[label="vwx40",fontsize=16,color="green",shape="box"];472[label="vwx30",fontsize=16,color="green",shape="box"];473[label="vwx40",fontsize=16,color="green",shape="box"];474[label="vwx30",fontsize=16,color="green",shape="box"];475[label="vwx40",fontsize=16,color="green",shape="box"];476[label="vwx30",fontsize=16,color="green",shape="box"];477[label="vwx40",fontsize=16,color="green",shape="box"];478[label="vwx30",fontsize=16,color="green",shape="box"];479[label="vwx40",fontsize=16,color="green",shape="box"];480[label="False",fontsize=16,color="green",shape="box"];481[label="vwx50",fontsize=16,color="green",shape="box"];511[label="vwx25",fontsize=16,color="green",shape="box"];512[label="vwx24",fontsize=16,color="green",shape="box"];513[label="vwx22",fontsize=16,color="green",shape="box"];514[label="vwx23",fontsize=16,color="green",shape="box"];515[label="(vwx22,vwx23) <= (vwx24,vwx25)",fontsize=16,color="black",shape="box"];515 -> 559[label="",style="solid", color="black", weight=3]; 510[label="compare1 (vwx40,vwx41) (vwx42,vwx43) vwx51",fontsize=16,color="burlywood",shape="triangle"];2257[label="vwx51/False",fontsize=10,color="white",style="solid",shape="box"];510 -> 2257[label="",style="solid", color="burlywood", weight=9]; 2257 -> 560[label="",style="solid", color="burlywood", weight=3]; 2258[label="vwx51/True",fontsize=10,color="white",style="solid",shape="box"];510 -> 2258[label="",style="solid", color="burlywood", weight=9]; 2258 -> 561[label="",style="solid", color="burlywood", weight=3]; 524[label="primEqInt (Pos vwx310) vwx41",fontsize=16,color="burlywood",shape="box"];2259[label="vwx310/Succ vwx3100",fontsize=10,color="white",style="solid",shape="box"];524 -> 2259[label="",style="solid", color="burlywood", weight=9]; 2259 -> 562[label="",style="solid", color="burlywood", weight=3]; 2260[label="vwx310/Zero",fontsize=10,color="white",style="solid",shape="box"];524 -> 2260[label="",style="solid", color="burlywood", weight=9]; 2260 -> 563[label="",style="solid", color="burlywood", weight=3]; 525[label="primEqInt (Neg vwx310) vwx41",fontsize=16,color="burlywood",shape="box"];2261[label="vwx310/Succ vwx3100",fontsize=10,color="white",style="solid",shape="box"];525 -> 2261[label="",style="solid", color="burlywood", weight=9]; 2261 -> 564[label="",style="solid", color="burlywood", weight=3]; 2262[label="vwx310/Zero",fontsize=10,color="white",style="solid",shape="box"];525 -> 2262[label="",style="solid", color="burlywood", weight=9]; 2262 -> 565[label="",style="solid", color="burlywood", weight=3]; 526[label="primEqFloat (Float vwx310 vwx311) vwx41",fontsize=16,color="burlywood",shape="box"];2263[label="vwx41/Float vwx410 vwx411",fontsize=10,color="white",style="solid",shape="box"];526 -> 2263[label="",style="solid", color="burlywood", weight=9]; 2263 -> 566[label="",style="solid", color="burlywood", weight=3]; 527[label="Left vwx310 == Left vwx410",fontsize=16,color="black",shape="box"];527 -> 567[label="",style="solid", color="black", weight=3]; 528[label="Left vwx310 == Right vwx410",fontsize=16,color="black",shape="box"];528 -> 568[label="",style="solid", color="black", weight=3]; 529[label="Right vwx310 == Left vwx410",fontsize=16,color="black",shape="box"];529 -> 569[label="",style="solid", color="black", weight=3]; 530[label="Right vwx310 == Right vwx410",fontsize=16,color="black",shape="box"];530 -> 570[label="",style="solid", color="black", weight=3]; 531[label="vwx310 : vwx311 == vwx410 : vwx411",fontsize=16,color="black",shape="box"];531 -> 571[label="",style="solid", color="black", weight=3]; 532[label="vwx310 : vwx311 == []",fontsize=16,color="black",shape="box"];532 -> 572[label="",style="solid", color="black", weight=3]; 533[label="[] == vwx410 : vwx411",fontsize=16,color="black",shape="box"];533 -> 573[label="",style="solid", color="black", weight=3]; 534[label="[] == []",fontsize=16,color="black",shape="box"];534 -> 574[label="",style="solid", color="black", weight=3]; 535[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];535 -> 575[label="",style="solid", color="black", weight=3]; 536[label="Nothing == Just vwx410",fontsize=16,color="black",shape="box"];536 -> 576[label="",style="solid", color="black", weight=3]; 537[label="Just vwx310 == Nothing",fontsize=16,color="black",shape="box"];537 -> 577[label="",style="solid", color="black", weight=3]; 538[label="Just vwx310 == Just vwx410",fontsize=16,color="black",shape="box"];538 -> 578[label="",style="solid", color="black", weight=3]; 539[label="LT == LT",fontsize=16,color="black",shape="box"];539 -> 579[label="",style="solid", color="black", weight=3]; 540[label="LT == EQ",fontsize=16,color="black",shape="box"];540 -> 580[label="",style="solid", color="black", weight=3]; 541[label="LT == GT",fontsize=16,color="black",shape="box"];541 -> 581[label="",style="solid", color="black", weight=3]; 542[label="EQ == LT",fontsize=16,color="black",shape="box"];542 -> 582[label="",style="solid", color="black", weight=3]; 543[label="EQ == EQ",fontsize=16,color="black",shape="box"];543 -> 583[label="",style="solid", color="black", weight=3]; 544[label="EQ == GT",fontsize=16,color="black",shape="box"];544 -> 584[label="",style="solid", color="black", weight=3]; 545[label="GT == LT",fontsize=16,color="black",shape="box"];545 -> 585[label="",style="solid", color="black", weight=3]; 546[label="GT == EQ",fontsize=16,color="black",shape="box"];546 -> 586[label="",style="solid", color="black", weight=3]; 547[label="GT == GT",fontsize=16,color="black",shape="box"];547 -> 587[label="",style="solid", color="black", weight=3]; 548[label="vwx310 :% vwx311 == vwx410 :% vwx411",fontsize=16,color="black",shape="box"];548 -> 588[label="",style="solid", color="black", weight=3]; 549[label="False == False",fontsize=16,color="black",shape="box"];549 -> 589[label="",style="solid", color="black", weight=3]; 550[label="False == True",fontsize=16,color="black",shape="box"];550 -> 590[label="",style="solid", color="black", weight=3]; 551[label="True == False",fontsize=16,color="black",shape="box"];551 -> 591[label="",style="solid", color="black", weight=3]; 552[label="True == True",fontsize=16,color="black",shape="box"];552 -> 592[label="",style="solid", color="black", weight=3]; 553[label="(vwx310,vwx311) == (vwx410,vwx411)",fontsize=16,color="black",shape="box"];553 -> 593[label="",style="solid", color="black", weight=3]; 554[label="() == ()",fontsize=16,color="black",shape="box"];554 -> 594[label="",style="solid", color="black", weight=3]; 555[label="primEqDouble (Double vwx310 vwx311) vwx41",fontsize=16,color="burlywood",shape="box"];2264[label="vwx41/Double vwx410 vwx411",fontsize=10,color="white",style="solid",shape="box"];555 -> 2264[label="",style="solid", color="burlywood", weight=9]; 2264 -> 595[label="",style="solid", color="burlywood", weight=3]; 556[label="(vwx310,vwx311,vwx312) == (vwx410,vwx411,vwx412)",fontsize=16,color="black",shape="box"];556 -> 596[label="",style="solid", color="black", weight=3]; 557[label="primEqChar (Char vwx310) vwx41",fontsize=16,color="burlywood",shape="box"];2265[label="vwx41/Char vwx410",fontsize=10,color="white",style="solid",shape="box"];557 -> 2265[label="",style="solid", color="burlywood", weight=9]; 2265 -> 597[label="",style="solid", color="burlywood", weight=3]; 558[label="Integer vwx310 == Integer vwx410",fontsize=16,color="black",shape="box"];558 -> 598[label="",style="solid", color="black", weight=3]; 559 -> 668[label="",style="dashed", color="red", weight=0]; 559[label="vwx22 < vwx24 || vwx22 == vwx24 && vwx23 <= vwx25",fontsize=16,color="magenta"];559 -> 669[label="",style="dashed", color="magenta", weight=3]; 559 -> 670[label="",style="dashed", color="magenta", weight=3]; 560[label="compare1 (vwx40,vwx41) (vwx42,vwx43) False",fontsize=16,color="black",shape="box"];560 -> 601[label="",style="solid", color="black", weight=3]; 561[label="compare1 (vwx40,vwx41) (vwx42,vwx43) True",fontsize=16,color="black",shape="box"];561 -> 602[label="",style="solid", color="black", weight=3]; 562[label="primEqInt (Pos (Succ vwx3100)) vwx41",fontsize=16,color="burlywood",shape="box"];2266[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];562 -> 2266[label="",style="solid", color="burlywood", weight=9]; 2266 -> 603[label="",style="solid", color="burlywood", weight=3]; 2267[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];562 -> 2267[label="",style="solid", color="burlywood", weight=9]; 2267 -> 604[label="",style="solid", color="burlywood", weight=3]; 563[label="primEqInt (Pos Zero) vwx41",fontsize=16,color="burlywood",shape="box"];2268[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];563 -> 2268[label="",style="solid", color="burlywood", weight=9]; 2268 -> 605[label="",style="solid", color="burlywood", weight=3]; 2269[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];563 -> 2269[label="",style="solid", color="burlywood", weight=9]; 2269 -> 606[label="",style="solid", color="burlywood", weight=3]; 564[label="primEqInt (Neg (Succ vwx3100)) vwx41",fontsize=16,color="burlywood",shape="box"];2270[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];564 -> 2270[label="",style="solid", color="burlywood", weight=9]; 2270 -> 607[label="",style="solid", color="burlywood", weight=3]; 2271[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];564 -> 2271[label="",style="solid", color="burlywood", weight=9]; 2271 -> 608[label="",style="solid", color="burlywood", weight=3]; 565[label="primEqInt (Neg Zero) vwx41",fontsize=16,color="burlywood",shape="box"];2272[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];565 -> 2272[label="",style="solid", color="burlywood", weight=9]; 2272 -> 609[label="",style="solid", color="burlywood", weight=3]; 2273[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];565 -> 2273[label="",style="solid", color="burlywood", weight=9]; 2273 -> 610[label="",style="solid", color="burlywood", weight=3]; 566[label="primEqFloat (Float vwx310 vwx311) (Float vwx410 vwx411)",fontsize=16,color="black",shape="box"];566 -> 611[label="",style="solid", color="black", weight=3]; 567[label="vwx310 == vwx410",fontsize=16,color="blue",shape="box"];2274[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2274[label="",style="solid", color="blue", weight=9]; 2274 -> 612[label="",style="solid", color="blue", weight=3]; 2275[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2275[label="",style="solid", color="blue", weight=9]; 2275 -> 613[label="",style="solid", color="blue", weight=3]; 2276[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2276[label="",style="solid", color="blue", weight=9]; 2276 -> 614[label="",style="solid", color="blue", weight=3]; 2277[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2277[label="",style="solid", color="blue", weight=9]; 2277 -> 615[label="",style="solid", color="blue", weight=3]; 2278[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2278[label="",style="solid", color="blue", weight=9]; 2278 -> 616[label="",style="solid", color="blue", weight=3]; 2279[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2279[label="",style="solid", color="blue", weight=9]; 2279 -> 617[label="",style="solid", color="blue", weight=3]; 2280[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2280[label="",style="solid", color="blue", weight=9]; 2280 -> 618[label="",style="solid", color="blue", weight=3]; 2281[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2281[label="",style="solid", color="blue", weight=9]; 2281 -> 619[label="",style="solid", color="blue", weight=3]; 2282[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2282[label="",style="solid", color="blue", weight=9]; 2282 -> 620[label="",style="solid", color="blue", weight=3]; 2283[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2283[label="",style="solid", color="blue", weight=9]; 2283 -> 621[label="",style="solid", color="blue", weight=3]; 2284[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2284[label="",style="solid", color="blue", weight=9]; 2284 -> 622[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"];567 -> 2285[label="",style="solid", color="blue", weight=9]; 2285 -> 623[label="",style="solid", color="blue", weight=3]; 2286[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2286[label="",style="solid", color="blue", weight=9]; 2286 -> 624[label="",style="solid", color="blue", weight=3]; 2287[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];567 -> 2287[label="",style="solid", color="blue", weight=9]; 2287 -> 625[label="",style="solid", color="blue", weight=3]; 568[label="False",fontsize=16,color="green",shape="box"];569[label="False",fontsize=16,color="green",shape="box"];570[label="vwx310 == vwx410",fontsize=16,color="blue",shape="box"];2288[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2288[label="",style="solid", color="blue", weight=9]; 2288 -> 626[label="",style="solid", color="blue", weight=3]; 2289[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2289[label="",style="solid", color="blue", weight=9]; 2289 -> 627[label="",style="solid", color="blue", weight=3]; 2290[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2290[label="",style="solid", color="blue", weight=9]; 2290 -> 628[label="",style="solid", color="blue", weight=3]; 2291[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2291[label="",style="solid", color="blue", weight=9]; 2291 -> 629[label="",style="solid", color="blue", weight=3]; 2292[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2292[label="",style="solid", color="blue", weight=9]; 2292 -> 630[label="",style="solid", color="blue", weight=3]; 2293[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2293[label="",style="solid", color="blue", weight=9]; 2293 -> 631[label="",style="solid", color="blue", weight=3]; 2294[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2294[label="",style="solid", color="blue", weight=9]; 2294 -> 632[label="",style="solid", color="blue", weight=3]; 2295[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2295[label="",style="solid", color="blue", weight=9]; 2295 -> 633[label="",style="solid", color="blue", weight=3]; 2296[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2296[label="",style="solid", color="blue", weight=9]; 2296 -> 634[label="",style="solid", color="blue", weight=3]; 2297[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2297[label="",style="solid", color="blue", weight=9]; 2297 -> 635[label="",style="solid", color="blue", weight=3]; 2298[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2298[label="",style="solid", color="blue", weight=9]; 2298 -> 636[label="",style="solid", color="blue", weight=3]; 2299[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2299[label="",style="solid", color="blue", weight=9]; 2299 -> 637[label="",style="solid", color="blue", weight=3]; 2300[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2300[label="",style="solid", color="blue", weight=9]; 2300 -> 638[label="",style="solid", color="blue", weight=3]; 2301[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];570 -> 2301[label="",style="solid", color="blue", weight=9]; 2301 -> 639[label="",style="solid", color="blue", weight=3]; 571 -> 381[label="",style="dashed", color="red", weight=0]; 571[label="vwx310 == vwx410 && vwx311 == vwx411",fontsize=16,color="magenta"];571 -> 640[label="",style="dashed", color="magenta", weight=3]; 571 -> 641[label="",style="dashed", color="magenta", weight=3]; 572[label="False",fontsize=16,color="green",shape="box"];573[label="False",fontsize=16,color="green",shape="box"];574[label="True",fontsize=16,color="green",shape="box"];575[label="True",fontsize=16,color="green",shape="box"];576[label="False",fontsize=16,color="green",shape="box"];577[label="False",fontsize=16,color="green",shape="box"];578[label="vwx310 == vwx410",fontsize=16,color="blue",shape="box"];2302[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2302[label="",style="solid", color="blue", weight=9]; 2302 -> 642[label="",style="solid", color="blue", weight=3]; 2303[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2303[label="",style="solid", color="blue", weight=9]; 2303 -> 643[label="",style="solid", color="blue", weight=3]; 2304[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2304[label="",style="solid", color="blue", weight=9]; 2304 -> 644[label="",style="solid", color="blue", weight=3]; 2305[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2305[label="",style="solid", color="blue", weight=9]; 2305 -> 645[label="",style="solid", color="blue", weight=3]; 2306[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2306[label="",style="solid", color="blue", weight=9]; 2306 -> 646[label="",style="solid", color="blue", weight=3]; 2307[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2307[label="",style="solid", color="blue", weight=9]; 2307 -> 647[label="",style="solid", color="blue", weight=3]; 2308[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2308[label="",style="solid", color="blue", weight=9]; 2308 -> 648[label="",style="solid", color="blue", weight=3]; 2309[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2309[label="",style="solid", color="blue", weight=9]; 2309 -> 649[label="",style="solid", color="blue", weight=3]; 2310[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2310[label="",style="solid", color="blue", weight=9]; 2310 -> 650[label="",style="solid", color="blue", weight=3]; 2311[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2311[label="",style="solid", color="blue", weight=9]; 2311 -> 651[label="",style="solid", color="blue", weight=3]; 2312[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2312[label="",style="solid", color="blue", weight=9]; 2312 -> 652[label="",style="solid", color="blue", weight=3]; 2313[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2313[label="",style="solid", color="blue", weight=9]; 2313 -> 653[label="",style="solid", color="blue", weight=3]; 2314[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2314[label="",style="solid", color="blue", weight=9]; 2314 -> 654[label="",style="solid", color="blue", weight=3]; 2315[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];578 -> 2315[label="",style="solid", color="blue", weight=9]; 2315 -> 655[label="",style="solid", color="blue", weight=3]; 579[label="True",fontsize=16,color="green",shape="box"];580[label="False",fontsize=16,color="green",shape="box"];581[label="False",fontsize=16,color="green",shape="box"];582[label="False",fontsize=16,color="green",shape="box"];583[label="True",fontsize=16,color="green",shape="box"];584[label="False",fontsize=16,color="green",shape="box"];585[label="False",fontsize=16,color="green",shape="box"];586[label="False",fontsize=16,color="green",shape="box"];587[label="True",fontsize=16,color="green",shape="box"];588 -> 381[label="",style="dashed", color="red", weight=0]; 588[label="vwx310 == vwx410 && vwx311 == vwx411",fontsize=16,color="magenta"];588 -> 656[label="",style="dashed", color="magenta", weight=3]; 588 -> 657[label="",style="dashed", color="magenta", weight=3]; 589[label="True",fontsize=16,color="green",shape="box"];590[label="False",fontsize=16,color="green",shape="box"];591[label="False",fontsize=16,color="green",shape="box"];592[label="True",fontsize=16,color="green",shape="box"];593 -> 381[label="",style="dashed", color="red", weight=0]; 593[label="vwx310 == vwx410 && vwx311 == vwx411",fontsize=16,color="magenta"];593 -> 658[label="",style="dashed", color="magenta", weight=3]; 593 -> 659[label="",style="dashed", color="magenta", weight=3]; 594[label="True",fontsize=16,color="green",shape="box"];595[label="primEqDouble (Double vwx310 vwx311) (Double vwx410 vwx411)",fontsize=16,color="black",shape="box"];595 -> 660[label="",style="solid", color="black", weight=3]; 596 -> 381[label="",style="dashed", color="red", weight=0]; 596[label="vwx310 == vwx410 && vwx311 == vwx411 && vwx312 == vwx412",fontsize=16,color="magenta"];596 -> 661[label="",style="dashed", color="magenta", weight=3]; 596 -> 662[label="",style="dashed", color="magenta", weight=3]; 597[label="primEqChar (Char vwx310) (Char vwx410)",fontsize=16,color="black",shape="box"];597 -> 663[label="",style="solid", color="black", weight=3]; 598 -> 432[label="",style="dashed", color="red", weight=0]; 598[label="primEqInt vwx310 vwx410",fontsize=16,color="magenta"];598 -> 664[label="",style="dashed", color="magenta", weight=3]; 598 -> 665[label="",style="dashed", color="magenta", weight=3]; 669 -> 381[label="",style="dashed", color="red", weight=0]; 669[label="vwx22 == vwx24 && vwx23 <= vwx25",fontsize=16,color="magenta"];669 -> 673[label="",style="dashed", color="magenta", weight=3]; 669 -> 674[label="",style="dashed", color="magenta", weight=3]; 670[label="vwx22 < vwx24",fontsize=16,color="blue",shape="box"];2316[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2316[label="",style="solid", color="blue", weight=9]; 2316 -> 675[label="",style="solid", color="blue", weight=3]; 2317[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2317[label="",style="solid", color="blue", weight=9]; 2317 -> 676[label="",style="solid", color="blue", weight=3]; 2318[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2318[label="",style="solid", color="blue", weight=9]; 2318 -> 677[label="",style="solid", color="blue", weight=3]; 2319[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2319[label="",style="solid", color="blue", weight=9]; 2319 -> 678[label="",style="solid", color="blue", weight=3]; 2320[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2320[label="",style="solid", color="blue", weight=9]; 2320 -> 679[label="",style="solid", color="blue", weight=3]; 2321[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 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"];670 -> 2322[label="",style="solid", color="blue", weight=9]; 2322 -> 681[label="",style="solid", color="blue", weight=3]; 2323[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2323[label="",style="solid", color="blue", weight=9]; 2323 -> 682[label="",style="solid", color="blue", weight=3]; 2324[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2324[label="",style="solid", color="blue", weight=9]; 2324 -> 683[label="",style="solid", color="blue", weight=3]; 2325[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2325[label="",style="solid", color="blue", weight=9]; 2325 -> 684[label="",style="solid", color="blue", weight=3]; 2326[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2326[label="",style="solid", color="blue", weight=9]; 2326 -> 685[label="",style="solid", color="blue", weight=3]; 2327[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 2327[label="",style="solid", color="blue", weight=9]; 2327 -> 686[label="",style="solid", color="blue", weight=3]; 2328[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];670 -> 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"];670 -> 2329[label="",style="solid", color="blue", weight=9]; 2329 -> 688[label="",style="solid", color="blue", weight=3]; 668[label="vwx56 || vwx57",fontsize=16,color="burlywood",shape="triangle"];2330[label="vwx56/False",fontsize=10,color="white",style="solid",shape="box"];668 -> 2330[label="",style="solid", color="burlywood", weight=9]; 2330 -> 689[label="",style="solid", color="burlywood", weight=3]; 2331[label="vwx56/True",fontsize=10,color="white",style="solid",shape="box"];668 -> 2331[label="",style="solid", color="burlywood", weight=9]; 2331 -> 690[label="",style="solid", color="burlywood", weight=3]; 601[label="compare0 (vwx40,vwx41) (vwx42,vwx43) otherwise",fontsize=16,color="black",shape="box"];601 -> 691[label="",style="solid", color="black", weight=3]; 602[label="LT",fontsize=16,color="green",shape="box"];603[label="primEqInt (Pos (Succ vwx3100)) (Pos vwx410)",fontsize=16,color="burlywood",shape="box"];2332[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];603 -> 2332[label="",style="solid", color="burlywood", weight=9]; 2332 -> 692[label="",style="solid", color="burlywood", weight=3]; 2333[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];603 -> 2333[label="",style="solid", color="burlywood", weight=9]; 2333 -> 693[label="",style="solid", color="burlywood", weight=3]; 604[label="primEqInt (Pos (Succ vwx3100)) (Neg vwx410)",fontsize=16,color="black",shape="box"];604 -> 694[label="",style="solid", color="black", weight=3]; 605[label="primEqInt (Pos Zero) (Pos vwx410)",fontsize=16,color="burlywood",shape="box"];2334[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];605 -> 2334[label="",style="solid", color="burlywood", weight=9]; 2334 -> 695[label="",style="solid", color="burlywood", weight=3]; 2335[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];605 -> 2335[label="",style="solid", color="burlywood", weight=9]; 2335 -> 696[label="",style="solid", color="burlywood", weight=3]; 606[label="primEqInt (Pos Zero) (Neg vwx410)",fontsize=16,color="burlywood",shape="box"];2336[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];606 -> 2336[label="",style="solid", color="burlywood", weight=9]; 2336 -> 697[label="",style="solid", color="burlywood", weight=3]; 2337[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];606 -> 2337[label="",style="solid", color="burlywood", weight=9]; 2337 -> 698[label="",style="solid", color="burlywood", weight=3]; 607[label="primEqInt (Neg (Succ vwx3100)) (Pos vwx410)",fontsize=16,color="black",shape="box"];607 -> 699[label="",style="solid", color="black", weight=3]; 608[label="primEqInt (Neg (Succ vwx3100)) (Neg vwx410)",fontsize=16,color="burlywood",shape="box"];2338[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];608 -> 2338[label="",style="solid", color="burlywood", weight=9]; 2338 -> 700[label="",style="solid", color="burlywood", weight=3]; 2339[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];608 -> 2339[label="",style="solid", color="burlywood", weight=9]; 2339 -> 701[label="",style="solid", color="burlywood", weight=3]; 609[label="primEqInt (Neg Zero) (Pos vwx410)",fontsize=16,color="burlywood",shape="box"];2340[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];609 -> 2340[label="",style="solid", color="burlywood", weight=9]; 2340 -> 702[label="",style="solid", color="burlywood", weight=3]; 2341[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];609 -> 2341[label="",style="solid", color="burlywood", weight=9]; 2341 -> 703[label="",style="solid", color="burlywood", weight=3]; 610[label="primEqInt (Neg Zero) (Neg vwx410)",fontsize=16,color="burlywood",shape="box"];2342[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];610 -> 2342[label="",style="solid", color="burlywood", weight=9]; 2342 -> 704[label="",style="solid", color="burlywood", weight=3]; 2343[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];610 -> 2343[label="",style="solid", color="burlywood", weight=9]; 2343 -> 705[label="",style="solid", color="burlywood", weight=3]; 611 -> 386[label="",style="dashed", color="red", weight=0]; 611[label="vwx310 * vwx411 == vwx311 * vwx410",fontsize=16,color="magenta"];611 -> 706[label="",style="dashed", color="magenta", weight=3]; 611 -> 707[label="",style="dashed", color="magenta", weight=3]; 612 -> 386[label="",style="dashed", color="red", weight=0]; 612[label="vwx310 == vwx410",fontsize=16,color="magenta"];612 -> 708[label="",style="dashed", color="magenta", weight=3]; 612 -> 709[label="",style="dashed", color="magenta", weight=3]; 613 -> 387[label="",style="dashed", color="red", weight=0]; 613[label="vwx310 == vwx410",fontsize=16,color="magenta"];613 -> 710[label="",style="dashed", color="magenta", weight=3]; 613 -> 711[label="",style="dashed", color="magenta", weight=3]; 614 -> 388[label="",style="dashed", color="red", weight=0]; 614[label="vwx310 == vwx410",fontsize=16,color="magenta"];614 -> 712[label="",style="dashed", color="magenta", weight=3]; 614 -> 713[label="",style="dashed", color="magenta", weight=3]; 615 -> 389[label="",style="dashed", color="red", weight=0]; 615[label="vwx310 == vwx410",fontsize=16,color="magenta"];615 -> 714[label="",style="dashed", color="magenta", weight=3]; 615 -> 715[label="",style="dashed", color="magenta", weight=3]; 616 -> 390[label="",style="dashed", color="red", weight=0]; 616[label="vwx310 == vwx410",fontsize=16,color="magenta"];616 -> 716[label="",style="dashed", color="magenta", weight=3]; 616 -> 717[label="",style="dashed", color="magenta", weight=3]; 617 -> 391[label="",style="dashed", color="red", weight=0]; 617[label="vwx310 == vwx410",fontsize=16,color="magenta"];617 -> 718[label="",style="dashed", color="magenta", weight=3]; 617 -> 719[label="",style="dashed", color="magenta", weight=3]; 618 -> 392[label="",style="dashed", color="red", weight=0]; 618[label="vwx310 == vwx410",fontsize=16,color="magenta"];618 -> 720[label="",style="dashed", color="magenta", weight=3]; 618 -> 721[label="",style="dashed", color="magenta", weight=3]; 619 -> 393[label="",style="dashed", color="red", weight=0]; 619[label="vwx310 == vwx410",fontsize=16,color="magenta"];619 -> 722[label="",style="dashed", color="magenta", weight=3]; 619 -> 723[label="",style="dashed", color="magenta", weight=3]; 620 -> 394[label="",style="dashed", color="red", weight=0]; 620[label="vwx310 == vwx410",fontsize=16,color="magenta"];620 -> 724[label="",style="dashed", color="magenta", weight=3]; 620 -> 725[label="",style="dashed", color="magenta", weight=3]; 621 -> 395[label="",style="dashed", color="red", weight=0]; 621[label="vwx310 == vwx410",fontsize=16,color="magenta"];621 -> 726[label="",style="dashed", color="magenta", weight=3]; 621 -> 727[label="",style="dashed", color="magenta", weight=3]; 622 -> 396[label="",style="dashed", color="red", weight=0]; 622[label="vwx310 == vwx410",fontsize=16,color="magenta"];622 -> 728[label="",style="dashed", color="magenta", weight=3]; 622 -> 729[label="",style="dashed", color="magenta", weight=3]; 623 -> 397[label="",style="dashed", color="red", weight=0]; 623[label="vwx310 == vwx410",fontsize=16,color="magenta"];623 -> 730[label="",style="dashed", color="magenta", weight=3]; 623 -> 731[label="",style="dashed", color="magenta", weight=3]; 624 -> 398[label="",style="dashed", color="red", weight=0]; 624[label="vwx310 == vwx410",fontsize=16,color="magenta"];624 -> 732[label="",style="dashed", color="magenta", weight=3]; 624 -> 733[label="",style="dashed", color="magenta", weight=3]; 625 -> 399[label="",style="dashed", color="red", weight=0]; 625[label="vwx310 == vwx410",fontsize=16,color="magenta"];625 -> 734[label="",style="dashed", color="magenta", weight=3]; 625 -> 735[label="",style="dashed", color="magenta", weight=3]; 626 -> 386[label="",style="dashed", color="red", weight=0]; 626[label="vwx310 == vwx410",fontsize=16,color="magenta"];626 -> 736[label="",style="dashed", color="magenta", weight=3]; 626 -> 737[label="",style="dashed", color="magenta", weight=3]; 627 -> 387[label="",style="dashed", color="red", weight=0]; 627[label="vwx310 == vwx410",fontsize=16,color="magenta"];627 -> 738[label="",style="dashed", color="magenta", weight=3]; 627 -> 739[label="",style="dashed", color="magenta", weight=3]; 628 -> 388[label="",style="dashed", color="red", weight=0]; 628[label="vwx310 == vwx410",fontsize=16,color="magenta"];628 -> 740[label="",style="dashed", color="magenta", weight=3]; 628 -> 741[label="",style="dashed", color="magenta", weight=3]; 629 -> 389[label="",style="dashed", color="red", weight=0]; 629[label="vwx310 == vwx410",fontsize=16,color="magenta"];629 -> 742[label="",style="dashed", color="magenta", weight=3]; 629 -> 743[label="",style="dashed", color="magenta", weight=3]; 630 -> 390[label="",style="dashed", color="red", weight=0]; 630[label="vwx310 == vwx410",fontsize=16,color="magenta"];630 -> 744[label="",style="dashed", color="magenta", weight=3]; 630 -> 745[label="",style="dashed", color="magenta", weight=3]; 631 -> 391[label="",style="dashed", color="red", weight=0]; 631[label="vwx310 == vwx410",fontsize=16,color="magenta"];631 -> 746[label="",style="dashed", color="magenta", weight=3]; 631 -> 747[label="",style="dashed", color="magenta", weight=3]; 632 -> 392[label="",style="dashed", color="red", weight=0]; 632[label="vwx310 == vwx410",fontsize=16,color="magenta"];632 -> 748[label="",style="dashed", color="magenta", weight=3]; 632 -> 749[label="",style="dashed", color="magenta", weight=3]; 633 -> 393[label="",style="dashed", color="red", weight=0]; 633[label="vwx310 == vwx410",fontsize=16,color="magenta"];633 -> 750[label="",style="dashed", color="magenta", weight=3]; 633 -> 751[label="",style="dashed", color="magenta", weight=3]; 634 -> 394[label="",style="dashed", color="red", weight=0]; 634[label="vwx310 == vwx410",fontsize=16,color="magenta"];634 -> 752[label="",style="dashed", color="magenta", weight=3]; 634 -> 753[label="",style="dashed", color="magenta", weight=3]; 635 -> 395[label="",style="dashed", color="red", weight=0]; 635[label="vwx310 == vwx410",fontsize=16,color="magenta"];635 -> 754[label="",style="dashed", color="magenta", weight=3]; 635 -> 755[label="",style="dashed", color="magenta", weight=3]; 636 -> 396[label="",style="dashed", color="red", weight=0]; 636[label="vwx310 == vwx410",fontsize=16,color="magenta"];636 -> 756[label="",style="dashed", color="magenta", weight=3]; 636 -> 757[label="",style="dashed", color="magenta", weight=3]; 637 -> 397[label="",style="dashed", color="red", weight=0]; 637[label="vwx310 == vwx410",fontsize=16,color="magenta"];637 -> 758[label="",style="dashed", color="magenta", weight=3]; 637 -> 759[label="",style="dashed", color="magenta", weight=3]; 638 -> 398[label="",style="dashed", color="red", weight=0]; 638[label="vwx310 == vwx410",fontsize=16,color="magenta"];638 -> 760[label="",style="dashed", color="magenta", weight=3]; 638 -> 761[label="",style="dashed", color="magenta", weight=3]; 639 -> 399[label="",style="dashed", color="red", weight=0]; 639[label="vwx310 == vwx410",fontsize=16,color="magenta"];639 -> 762[label="",style="dashed", color="magenta", weight=3]; 639 -> 763[label="",style="dashed", color="magenta", weight=3]; 640 -> 389[label="",style="dashed", color="red", weight=0]; 640[label="vwx311 == vwx411",fontsize=16,color="magenta"];640 -> 764[label="",style="dashed", color="magenta", weight=3]; 640 -> 765[label="",style="dashed", color="magenta", weight=3]; 641[label="vwx310 == vwx410",fontsize=16,color="blue",shape="box"];2344[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2344[label="",style="solid", color="blue", weight=9]; 2344 -> 766[label="",style="solid", color="blue", weight=3]; 2345[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2345[label="",style="solid", color="blue", weight=9]; 2345 -> 767[label="",style="solid", color="blue", weight=3]; 2346[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2346[label="",style="solid", color="blue", weight=9]; 2346 -> 768[label="",style="solid", color="blue", weight=3]; 2347[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2347[label="",style="solid", color="blue", weight=9]; 2347 -> 769[label="",style="solid", color="blue", weight=3]; 2348[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2348[label="",style="solid", color="blue", weight=9]; 2348 -> 770[label="",style="solid", color="blue", weight=3]; 2349[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2349[label="",style="solid", color="blue", weight=9]; 2349 -> 771[label="",style="solid", color="blue", weight=3]; 2350[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2350[label="",style="solid", color="blue", weight=9]; 2350 -> 772[label="",style="solid", color="blue", weight=3]; 2351[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2351[label="",style="solid", color="blue", weight=9]; 2351 -> 773[label="",style="solid", color="blue", weight=3]; 2352[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2352[label="",style="solid", color="blue", weight=9]; 2352 -> 774[label="",style="solid", color="blue", weight=3]; 2353[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2353[label="",style="solid", color="blue", weight=9]; 2353 -> 775[label="",style="solid", color="blue", weight=3]; 2354[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2354[label="",style="solid", color="blue", weight=9]; 2354 -> 776[label="",style="solid", color="blue", weight=3]; 2355[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2355[label="",style="solid", color="blue", weight=9]; 2355 -> 777[label="",style="solid", color="blue", weight=3]; 2356[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2356[label="",style="solid", color="blue", weight=9]; 2356 -> 778[label="",style="solid", color="blue", weight=3]; 2357[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];641 -> 2357[label="",style="solid", color="blue", weight=9]; 2357 -> 779[label="",style="solid", color="blue", weight=3]; 642 -> 386[label="",style="dashed", color="red", weight=0]; 642[label="vwx310 == vwx410",fontsize=16,color="magenta"];642 -> 780[label="",style="dashed", color="magenta", weight=3]; 642 -> 781[label="",style="dashed", color="magenta", weight=3]; 643 -> 387[label="",style="dashed", color="red", weight=0]; 643[label="vwx310 == vwx410",fontsize=16,color="magenta"];643 -> 782[label="",style="dashed", color="magenta", weight=3]; 643 -> 783[label="",style="dashed", color="magenta", weight=3]; 644 -> 388[label="",style="dashed", color="red", weight=0]; 644[label="vwx310 == vwx410",fontsize=16,color="magenta"];644 -> 784[label="",style="dashed", color="magenta", weight=3]; 644 -> 785[label="",style="dashed", color="magenta", weight=3]; 645 -> 389[label="",style="dashed", color="red", weight=0]; 645[label="vwx310 == vwx410",fontsize=16,color="magenta"];645 -> 786[label="",style="dashed", color="magenta", weight=3]; 645 -> 787[label="",style="dashed", color="magenta", weight=3]; 646 -> 390[label="",style="dashed", color="red", weight=0]; 646[label="vwx310 == vwx410",fontsize=16,color="magenta"];646 -> 788[label="",style="dashed", color="magenta", weight=3]; 646 -> 789[label="",style="dashed", color="magenta", weight=3]; 647 -> 391[label="",style="dashed", color="red", weight=0]; 647[label="vwx310 == vwx410",fontsize=16,color="magenta"];647 -> 790[label="",style="dashed", color="magenta", weight=3]; 647 -> 791[label="",style="dashed", color="magenta", weight=3]; 648 -> 392[label="",style="dashed", color="red", weight=0]; 648[label="vwx310 == vwx410",fontsize=16,color="magenta"];648 -> 792[label="",style="dashed", color="magenta", weight=3]; 648 -> 793[label="",style="dashed", color="magenta", weight=3]; 649 -> 393[label="",style="dashed", color="red", weight=0]; 649[label="vwx310 == vwx410",fontsize=16,color="magenta"];649 -> 794[label="",style="dashed", color="magenta", weight=3]; 649 -> 795[label="",style="dashed", color="magenta", weight=3]; 650 -> 394[label="",style="dashed", color="red", weight=0]; 650[label="vwx310 == vwx410",fontsize=16,color="magenta"];650 -> 796[label="",style="dashed", color="magenta", weight=3]; 650 -> 797[label="",style="dashed", color="magenta", weight=3]; 651 -> 395[label="",style="dashed", color="red", weight=0]; 651[label="vwx310 == vwx410",fontsize=16,color="magenta"];651 -> 798[label="",style="dashed", color="magenta", weight=3]; 651 -> 799[label="",style="dashed", color="magenta", weight=3]; 652 -> 396[label="",style="dashed", color="red", weight=0]; 652[label="vwx310 == vwx410",fontsize=16,color="magenta"];652 -> 800[label="",style="dashed", color="magenta", weight=3]; 652 -> 801[label="",style="dashed", color="magenta", weight=3]; 653 -> 397[label="",style="dashed", color="red", weight=0]; 653[label="vwx310 == vwx410",fontsize=16,color="magenta"];653 -> 802[label="",style="dashed", color="magenta", weight=3]; 653 -> 803[label="",style="dashed", color="magenta", weight=3]; 654 -> 398[label="",style="dashed", color="red", weight=0]; 654[label="vwx310 == vwx410",fontsize=16,color="magenta"];654 -> 804[label="",style="dashed", color="magenta", weight=3]; 654 -> 805[label="",style="dashed", color="magenta", weight=3]; 655 -> 399[label="",style="dashed", color="red", weight=0]; 655[label="vwx310 == vwx410",fontsize=16,color="magenta"];655 -> 806[label="",style="dashed", color="magenta", weight=3]; 655 -> 807[label="",style="dashed", color="magenta", weight=3]; 656[label="vwx311 == vwx411",fontsize=16,color="blue",shape="box"];2358[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];656 -> 2358[label="",style="solid", color="blue", weight=9]; 2358 -> 808[label="",style="solid", color="blue", weight=3]; 2359[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];656 -> 2359[label="",style="solid", color="blue", weight=9]; 2359 -> 809[label="",style="solid", color="blue", weight=3]; 657[label="vwx310 == vwx410",fontsize=16,color="blue",shape="box"];2360[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];657 -> 2360[label="",style="solid", color="blue", weight=9]; 2360 -> 810[label="",style="solid", color="blue", weight=3]; 2361[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];657 -> 2361[label="",style="solid", color="blue", weight=9]; 2361 -> 811[label="",style="solid", color="blue", weight=3]; 658[label="vwx311 == vwx411",fontsize=16,color="blue",shape="box"];2362[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2362[label="",style="solid", color="blue", weight=9]; 2362 -> 812[label="",style="solid", color="blue", weight=3]; 2363[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2363[label="",style="solid", color="blue", weight=9]; 2363 -> 813[label="",style="solid", color="blue", weight=3]; 2364[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2364[label="",style="solid", color="blue", weight=9]; 2364 -> 814[label="",style="solid", color="blue", weight=3]; 2365[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2365[label="",style="solid", color="blue", weight=9]; 2365 -> 815[label="",style="solid", color="blue", weight=3]; 2366[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2366[label="",style="solid", color="blue", weight=9]; 2366 -> 816[label="",style="solid", color="blue", weight=3]; 2367[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2367[label="",style="solid", color="blue", weight=9]; 2367 -> 817[label="",style="solid", color="blue", weight=3]; 2368[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2368[label="",style="solid", color="blue", weight=9]; 2368 -> 818[label="",style="solid", color="blue", weight=3]; 2369[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2369[label="",style="solid", color="blue", weight=9]; 2369 -> 819[label="",style="solid", color="blue", weight=3]; 2370[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2370[label="",style="solid", color="blue", weight=9]; 2370 -> 820[label="",style="solid", color="blue", weight=3]; 2371[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2371[label="",style="solid", color="blue", weight=9]; 2371 -> 821[label="",style="solid", color="blue", weight=3]; 2372[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2372[label="",style="solid", color="blue", weight=9]; 2372 -> 822[label="",style="solid", color="blue", weight=3]; 2373[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2373[label="",style="solid", color="blue", weight=9]; 2373 -> 823[label="",style="solid", color="blue", weight=3]; 2374[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2374[label="",style="solid", color="blue", weight=9]; 2374 -> 824[label="",style="solid", color="blue", weight=3]; 2375[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];658 -> 2375[label="",style="solid", color="blue", weight=9]; 2375 -> 825[label="",style="solid", color="blue", weight=3]; 659[label="vwx310 == vwx410",fontsize=16,color="blue",shape="box"];2376[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2376[label="",style="solid", color="blue", weight=9]; 2376 -> 826[label="",style="solid", color="blue", weight=3]; 2377[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2377[label="",style="solid", color="blue", weight=9]; 2377 -> 827[label="",style="solid", color="blue", weight=3]; 2378[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2378[label="",style="solid", color="blue", weight=9]; 2378 -> 828[label="",style="solid", color="blue", weight=3]; 2379[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2379[label="",style="solid", color="blue", weight=9]; 2379 -> 829[label="",style="solid", color="blue", weight=3]; 2380[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2380[label="",style="solid", color="blue", weight=9]; 2380 -> 830[label="",style="solid", color="blue", weight=3]; 2381[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2381[label="",style="solid", color="blue", weight=9]; 2381 -> 831[label="",style="solid", color="blue", weight=3]; 2382[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2382[label="",style="solid", color="blue", weight=9]; 2382 -> 832[label="",style="solid", color="blue", weight=3]; 2383[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2383[label="",style="solid", color="blue", weight=9]; 2383 -> 833[label="",style="solid", color="blue", weight=3]; 2384[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2384[label="",style="solid", color="blue", weight=9]; 2384 -> 834[label="",style="solid", color="blue", weight=3]; 2385[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2385[label="",style="solid", color="blue", weight=9]; 2385 -> 835[label="",style="solid", color="blue", weight=3]; 2386[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2386[label="",style="solid", color="blue", weight=9]; 2386 -> 836[label="",style="solid", color="blue", weight=3]; 2387[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2387[label="",style="solid", color="blue", weight=9]; 2387 -> 837[label="",style="solid", color="blue", weight=3]; 2388[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2388[label="",style="solid", color="blue", weight=9]; 2388 -> 838[label="",style="solid", color="blue", weight=3]; 2389[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 2389[label="",style="solid", color="blue", weight=9]; 2389 -> 839[label="",style="solid", color="blue", weight=3]; 660 -> 386[label="",style="dashed", color="red", weight=0]; 660[label="vwx310 * vwx411 == vwx311 * vwx410",fontsize=16,color="magenta"];660 -> 840[label="",style="dashed", color="magenta", weight=3]; 660 -> 841[label="",style="dashed", color="magenta", weight=3]; 661 -> 381[label="",style="dashed", color="red", weight=0]; 661[label="vwx311 == vwx411 && vwx312 == vwx412",fontsize=16,color="magenta"];661 -> 842[label="",style="dashed", color="magenta", weight=3]; 661 -> 843[label="",style="dashed", color="magenta", weight=3]; 662[label="vwx310 == vwx410",fontsize=16,color="blue",shape="box"];2390[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2390[label="",style="solid", color="blue", weight=9]; 2390 -> 844[label="",style="solid", color="blue", weight=3]; 2391[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2391[label="",style="solid", color="blue", weight=9]; 2391 -> 845[label="",style="solid", color="blue", weight=3]; 2392[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2392[label="",style="solid", color="blue", weight=9]; 2392 -> 846[label="",style="solid", color="blue", weight=3]; 2393[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2393[label="",style="solid", color="blue", weight=9]; 2393 -> 847[label="",style="solid", color="blue", weight=3]; 2394[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2394[label="",style="solid", color="blue", weight=9]; 2394 -> 848[label="",style="solid", color="blue", weight=3]; 2395[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2395[label="",style="solid", color="blue", weight=9]; 2395 -> 849[label="",style="solid", color="blue", weight=3]; 2396[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2396[label="",style="solid", color="blue", weight=9]; 2396 -> 850[label="",style="solid", color="blue", weight=3]; 2397[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2397[label="",style="solid", color="blue", weight=9]; 2397 -> 851[label="",style="solid", color="blue", weight=3]; 2398[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2398[label="",style="solid", color="blue", weight=9]; 2398 -> 852[label="",style="solid", color="blue", weight=3]; 2399[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2399[label="",style="solid", color="blue", weight=9]; 2399 -> 853[label="",style="solid", color="blue", weight=3]; 2400[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2400[label="",style="solid", color="blue", weight=9]; 2400 -> 854[label="",style="solid", color="blue", weight=3]; 2401[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2401[label="",style="solid", color="blue", weight=9]; 2401 -> 855[label="",style="solid", color="blue", weight=3]; 2402[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2402[label="",style="solid", color="blue", weight=9]; 2402 -> 856[label="",style="solid", color="blue", weight=3]; 2403[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];662 -> 2403[label="",style="solid", color="blue", weight=9]; 2403 -> 857[label="",style="solid", color="blue", weight=3]; 663[label="primEqNat vwx310 vwx410",fontsize=16,color="burlywood",shape="triangle"];2404[label="vwx310/Succ vwx3100",fontsize=10,color="white",style="solid",shape="box"];663 -> 2404[label="",style="solid", color="burlywood", weight=9]; 2404 -> 858[label="",style="solid", color="burlywood", weight=3]; 2405[label="vwx310/Zero",fontsize=10,color="white",style="solid",shape="box"];663 -> 2405[label="",style="solid", color="burlywood", weight=9]; 2405 -> 859[label="",style="solid", color="burlywood", weight=3]; 664[label="vwx310",fontsize=16,color="green",shape="box"];665[label="vwx410",fontsize=16,color="green",shape="box"];673[label="vwx23 <= vwx25",fontsize=16,color="blue",shape="box"];2406[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2406[label="",style="solid", color="blue", weight=9]; 2406 -> 860[label="",style="solid", color="blue", weight=3]; 2407[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2407[label="",style="solid", color="blue", weight=9]; 2407 -> 861[label="",style="solid", color="blue", weight=3]; 2408[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2408[label="",style="solid", color="blue", weight=9]; 2408 -> 862[label="",style="solid", color="blue", weight=3]; 2409[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2409[label="",style="solid", color="blue", weight=9]; 2409 -> 863[label="",style="solid", color="blue", weight=3]; 2410[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2410[label="",style="solid", color="blue", weight=9]; 2410 -> 864[label="",style="solid", color="blue", weight=3]; 2411[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2411[label="",style="solid", color="blue", weight=9]; 2411 -> 865[label="",style="solid", color="blue", weight=3]; 2412[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2412[label="",style="solid", color="blue", weight=9]; 2412 -> 866[label="",style="solid", color="blue", weight=3]; 2413[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2413[label="",style="solid", color="blue", weight=9]; 2413 -> 867[label="",style="solid", color="blue", weight=3]; 2414[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2414[label="",style="solid", color="blue", weight=9]; 2414 -> 868[label="",style="solid", color="blue", weight=3]; 2415[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2415[label="",style="solid", color="blue", weight=9]; 2415 -> 869[label="",style="solid", color="blue", weight=3]; 2416[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2416[label="",style="solid", color="blue", weight=9]; 2416 -> 870[label="",style="solid", color="blue", weight=3]; 2417[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2417[label="",style="solid", color="blue", weight=9]; 2417 -> 871[label="",style="solid", color="blue", weight=3]; 2418[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2418[label="",style="solid", color="blue", weight=9]; 2418 -> 872[label="",style="solid", color="blue", weight=3]; 2419[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];673 -> 2419[label="",style="solid", color="blue", weight=9]; 2419 -> 873[label="",style="solid", color="blue", weight=3]; 674[label="vwx22 == vwx24",fontsize=16,color="blue",shape="box"];2420[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2420[label="",style="solid", color="blue", weight=9]; 2420 -> 874[label="",style="solid", color="blue", weight=3]; 2421[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2421[label="",style="solid", color="blue", weight=9]; 2421 -> 875[label="",style="solid", color="blue", weight=3]; 2422[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2422[label="",style="solid", color="blue", weight=9]; 2422 -> 876[label="",style="solid", color="blue", weight=3]; 2423[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2423[label="",style="solid", color="blue", weight=9]; 2423 -> 877[label="",style="solid", color="blue", weight=3]; 2424[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2424[label="",style="solid", color="blue", weight=9]; 2424 -> 878[label="",style="solid", color="blue", weight=3]; 2425[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2425[label="",style="solid", color="blue", weight=9]; 2425 -> 879[label="",style="solid", color="blue", weight=3]; 2426[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2426[label="",style="solid", color="blue", weight=9]; 2426 -> 880[label="",style="solid", color="blue", weight=3]; 2427[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2427[label="",style="solid", color="blue", weight=9]; 2427 -> 881[label="",style="solid", color="blue", weight=3]; 2428[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2428[label="",style="solid", color="blue", weight=9]; 2428 -> 882[label="",style="solid", color="blue", weight=3]; 2429[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2429[label="",style="solid", color="blue", weight=9]; 2429 -> 883[label="",style="solid", color="blue", weight=3]; 2430[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2430[label="",style="solid", color="blue", weight=9]; 2430 -> 884[label="",style="solid", color="blue", weight=3]; 2431[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2431[label="",style="solid", color="blue", weight=9]; 2431 -> 885[label="",style="solid", color="blue", weight=3]; 2432[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2432[label="",style="solid", color="blue", weight=9]; 2432 -> 886[label="",style="solid", color="blue", weight=3]; 2433[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];674 -> 2433[label="",style="solid", color="blue", weight=9]; 2433 -> 887[label="",style="solid", color="blue", weight=3]; 675[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];675 -> 888[label="",style="solid", color="black", weight=3]; 676[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];676 -> 889[label="",style="solid", color="black", weight=3]; 677[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];677 -> 890[label="",style="solid", color="black", weight=3]; 678[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];678 -> 891[label="",style="solid", color="black", weight=3]; 679[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];679 -> 892[label="",style="solid", color="black", weight=3]; 680[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];680 -> 893[label="",style="solid", color="black", weight=3]; 681[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];681 -> 894[label="",style="solid", color="black", weight=3]; 682[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];682 -> 895[label="",style="solid", color="black", weight=3]; 683[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];683 -> 896[label="",style="solid", color="black", weight=3]; 684[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];684 -> 897[label="",style="solid", color="black", weight=3]; 685[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];685 -> 898[label="",style="solid", color="black", weight=3]; 686[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];686 -> 899[label="",style="solid", color="black", weight=3]; 687[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];687 -> 900[label="",style="solid", color="black", weight=3]; 688[label="vwx22 < vwx24",fontsize=16,color="black",shape="triangle"];688 -> 901[label="",style="solid", color="black", weight=3]; 689[label="False || vwx57",fontsize=16,color="black",shape="box"];689 -> 902[label="",style="solid", color="black", weight=3]; 690[label="True || vwx57",fontsize=16,color="black",shape="box"];690 -> 903[label="",style="solid", color="black", weight=3]; 691[label="compare0 (vwx40,vwx41) (vwx42,vwx43) True",fontsize=16,color="black",shape="box"];691 -> 904[label="",style="solid", color="black", weight=3]; 692[label="primEqInt (Pos (Succ vwx3100)) (Pos (Succ vwx4100))",fontsize=16,color="black",shape="box"];692 -> 905[label="",style="solid", color="black", weight=3]; 693[label="primEqInt (Pos (Succ vwx3100)) (Pos Zero)",fontsize=16,color="black",shape="box"];693 -> 906[label="",style="solid", color="black", weight=3]; 694[label="False",fontsize=16,color="green",shape="box"];695[label="primEqInt (Pos Zero) (Pos (Succ vwx4100))",fontsize=16,color="black",shape="box"];695 -> 907[label="",style="solid", color="black", weight=3]; 696[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];696 -> 908[label="",style="solid", color="black", weight=3]; 697[label="primEqInt (Pos Zero) (Neg (Succ vwx4100))",fontsize=16,color="black",shape="box"];697 -> 909[label="",style="solid", color="black", weight=3]; 698[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];698 -> 910[label="",style="solid", color="black", weight=3]; 699[label="False",fontsize=16,color="green",shape="box"];700[label="primEqInt (Neg (Succ vwx3100)) (Neg (Succ vwx4100))",fontsize=16,color="black",shape="box"];700 -> 911[label="",style="solid", color="black", weight=3]; 701[label="primEqInt (Neg (Succ vwx3100)) (Neg Zero)",fontsize=16,color="black",shape="box"];701 -> 912[label="",style="solid", color="black", weight=3]; 702[label="primEqInt (Neg Zero) (Pos (Succ vwx4100))",fontsize=16,color="black",shape="box"];702 -> 913[label="",style="solid", color="black", weight=3]; 703[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];703 -> 914[label="",style="solid", color="black", weight=3]; 704[label="primEqInt (Neg Zero) (Neg (Succ vwx4100))",fontsize=16,color="black",shape="box"];704 -> 915[label="",style="solid", color="black", weight=3]; 705[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];705 -> 916[label="",style="solid", color="black", weight=3]; 706[label="vwx310 * vwx411",fontsize=16,color="black",shape="triangle"];706 -> 917[label="",style="solid", color="black", weight=3]; 707 -> 706[label="",style="dashed", color="red", weight=0]; 707[label="vwx311 * vwx410",fontsize=16,color="magenta"];707 -> 918[label="",style="dashed", color="magenta", weight=3]; 707 -> 919[label="",style="dashed", color="magenta", weight=3]; 708[label="vwx310",fontsize=16,color="green",shape="box"];709[label="vwx410",fontsize=16,color="green",shape="box"];710[label="vwx310",fontsize=16,color="green",shape="box"];711[label="vwx410",fontsize=16,color="green",shape="box"];712[label="vwx310",fontsize=16,color="green",shape="box"];713[label="vwx410",fontsize=16,color="green",shape="box"];714[label="vwx310",fontsize=16,color="green",shape="box"];715[label="vwx410",fontsize=16,color="green",shape="box"];716[label="vwx310",fontsize=16,color="green",shape="box"];717[label="vwx410",fontsize=16,color="green",shape="box"];718[label="vwx310",fontsize=16,color="green",shape="box"];719[label="vwx410",fontsize=16,color="green",shape="box"];720[label="vwx310",fontsize=16,color="green",shape="box"];721[label="vwx410",fontsize=16,color="green",shape="box"];722[label="vwx310",fontsize=16,color="green",shape="box"];723[label="vwx410",fontsize=16,color="green",shape="box"];724[label="vwx310",fontsize=16,color="green",shape="box"];725[label="vwx410",fontsize=16,color="green",shape="box"];726[label="vwx310",fontsize=16,color="green",shape="box"];727[label="vwx410",fontsize=16,color="green",shape="box"];728[label="vwx310",fontsize=16,color="green",shape="box"];729[label="vwx410",fontsize=16,color="green",shape="box"];730[label="vwx310",fontsize=16,color="green",shape="box"];731[label="vwx410",fontsize=16,color="green",shape="box"];732[label="vwx310",fontsize=16,color="green",shape="box"];733[label="vwx410",fontsize=16,color="green",shape="box"];734[label="vwx310",fontsize=16,color="green",shape="box"];735[label="vwx410",fontsize=16,color="green",shape="box"];736[label="vwx310",fontsize=16,color="green",shape="box"];737[label="vwx410",fontsize=16,color="green",shape="box"];738[label="vwx310",fontsize=16,color="green",shape="box"];739[label="vwx410",fontsize=16,color="green",shape="box"];740[label="vwx310",fontsize=16,color="green",shape="box"];741[label="vwx410",fontsize=16,color="green",shape="box"];742[label="vwx310",fontsize=16,color="green",shape="box"];743[label="vwx410",fontsize=16,color="green",shape="box"];744[label="vwx310",fontsize=16,color="green",shape="box"];745[label="vwx410",fontsize=16,color="green",shape="box"];746[label="vwx310",fontsize=16,color="green",shape="box"];747[label="vwx410",fontsize=16,color="green",shape="box"];748[label="vwx310",fontsize=16,color="green",shape="box"];749[label="vwx410",fontsize=16,color="green",shape="box"];750[label="vwx310",fontsize=16,color="green",shape="box"];751[label="vwx410",fontsize=16,color="green",shape="box"];752[label="vwx310",fontsize=16,color="green",shape="box"];753[label="vwx410",fontsize=16,color="green",shape="box"];754[label="vwx310",fontsize=16,color="green",shape="box"];755[label="vwx410",fontsize=16,color="green",shape="box"];756[label="vwx310",fontsize=16,color="green",shape="box"];757[label="vwx410",fontsize=16,color="green",shape="box"];758[label="vwx310",fontsize=16,color="green",shape="box"];759[label="vwx410",fontsize=16,color="green",shape="box"];760[label="vwx310",fontsize=16,color="green",shape="box"];761[label="vwx410",fontsize=16,color="green",shape="box"];762[label="vwx310",fontsize=16,color="green",shape="box"];763[label="vwx410",fontsize=16,color="green",shape="box"];764[label="vwx311",fontsize=16,color="green",shape="box"];765[label="vwx411",fontsize=16,color="green",shape="box"];766 -> 386[label="",style="dashed", color="red", weight=0]; 766[label="vwx310 == vwx410",fontsize=16,color="magenta"];766 -> 920[label="",style="dashed", color="magenta", weight=3]; 766 -> 921[label="",style="dashed", color="magenta", weight=3]; 767 -> 387[label="",style="dashed", color="red", weight=0]; 767[label="vwx310 == vwx410",fontsize=16,color="magenta"];767 -> 922[label="",style="dashed", color="magenta", weight=3]; 767 -> 923[label="",style="dashed", color="magenta", weight=3]; 768 -> 388[label="",style="dashed", color="red", weight=0]; 768[label="vwx310 == vwx410",fontsize=16,color="magenta"];768 -> 924[label="",style="dashed", color="magenta", weight=3]; 768 -> 925[label="",style="dashed", color="magenta", weight=3]; 769 -> 389[label="",style="dashed", color="red", weight=0]; 769[label="vwx310 == vwx410",fontsize=16,color="magenta"];769 -> 926[label="",style="dashed", color="magenta", weight=3]; 769 -> 927[label="",style="dashed", color="magenta", weight=3]; 770 -> 390[label="",style="dashed", color="red", weight=0]; 770[label="vwx310 == vwx410",fontsize=16,color="magenta"];770 -> 928[label="",style="dashed", color="magenta", weight=3]; 770 -> 929[label="",style="dashed", color="magenta", weight=3]; 771 -> 391[label="",style="dashed", color="red", weight=0]; 771[label="vwx310 == vwx410",fontsize=16,color="magenta"];771 -> 930[label="",style="dashed", color="magenta", weight=3]; 771 -> 931[label="",style="dashed", color="magenta", weight=3]; 772 -> 392[label="",style="dashed", color="red", weight=0]; 772[label="vwx310 == vwx410",fontsize=16,color="magenta"];772 -> 932[label="",style="dashed", color="magenta", weight=3]; 772 -> 933[label="",style="dashed", color="magenta", weight=3]; 773 -> 393[label="",style="dashed", color="red", weight=0]; 773[label="vwx310 == vwx410",fontsize=16,color="magenta"];773 -> 934[label="",style="dashed", color="magenta", weight=3]; 773 -> 935[label="",style="dashed", color="magenta", weight=3]; 774 -> 394[label="",style="dashed", color="red", weight=0]; 774[label="vwx310 == vwx410",fontsize=16,color="magenta"];774 -> 936[label="",style="dashed", color="magenta", weight=3]; 774 -> 937[label="",style="dashed", color="magenta", weight=3]; 775 -> 395[label="",style="dashed", color="red", weight=0]; 775[label="vwx310 == vwx410",fontsize=16,color="magenta"];775 -> 938[label="",style="dashed", color="magenta", weight=3]; 775 -> 939[label="",style="dashed", color="magenta", weight=3]; 776 -> 396[label="",style="dashed", color="red", weight=0]; 776[label="vwx310 == vwx410",fontsize=16,color="magenta"];776 -> 940[label="",style="dashed", color="magenta", weight=3]; 776 -> 941[label="",style="dashed", color="magenta", weight=3]; 777 -> 397[label="",style="dashed", color="red", weight=0]; 777[label="vwx310 == vwx410",fontsize=16,color="magenta"];777 -> 942[label="",style="dashed", color="magenta", weight=3]; 777 -> 943[label="",style="dashed", color="magenta", weight=3]; 778 -> 398[label="",style="dashed", color="red", weight=0]; 778[label="vwx310 == vwx410",fontsize=16,color="magenta"];778 -> 944[label="",style="dashed", color="magenta", weight=3]; 778 -> 945[label="",style="dashed", color="magenta", weight=3]; 779 -> 399[label="",style="dashed", color="red", weight=0]; 779[label="vwx310 == vwx410",fontsize=16,color="magenta"];779 -> 946[label="",style="dashed", color="magenta", weight=3]; 779 -> 947[label="",style="dashed", color="magenta", weight=3]; 780[label="vwx310",fontsize=16,color="green",shape="box"];781[label="vwx410",fontsize=16,color="green",shape="box"];782[label="vwx310",fontsize=16,color="green",shape="box"];783[label="vwx410",fontsize=16,color="green",shape="box"];784[label="vwx310",fontsize=16,color="green",shape="box"];785[label="vwx410",fontsize=16,color="green",shape="box"];786[label="vwx310",fontsize=16,color="green",shape="box"];787[label="vwx410",fontsize=16,color="green",shape="box"];788[label="vwx310",fontsize=16,color="green",shape="box"];789[label="vwx410",fontsize=16,color="green",shape="box"];790[label="vwx310",fontsize=16,color="green",shape="box"];791[label="vwx410",fontsize=16,color="green",shape="box"];792[label="vwx310",fontsize=16,color="green",shape="box"];793[label="vwx410",fontsize=16,color="green",shape="box"];794[label="vwx310",fontsize=16,color="green",shape="box"];795[label="vwx410",fontsize=16,color="green",shape="box"];796[label="vwx310",fontsize=16,color="green",shape="box"];797[label="vwx410",fontsize=16,color="green",shape="box"];798[label="vwx310",fontsize=16,color="green",shape="box"];799[label="vwx410",fontsize=16,color="green",shape="box"];800[label="vwx310",fontsize=16,color="green",shape="box"];801[label="vwx410",fontsize=16,color="green",shape="box"];802[label="vwx310",fontsize=16,color="green",shape="box"];803[label="vwx410",fontsize=16,color="green",shape="box"];804[label="vwx310",fontsize=16,color="green",shape="box"];805[label="vwx410",fontsize=16,color="green",shape="box"];806[label="vwx310",fontsize=16,color="green",shape="box"];807[label="vwx410",fontsize=16,color="green",shape="box"];808 -> 386[label="",style="dashed", color="red", weight=0]; 808[label="vwx311 == vwx411",fontsize=16,color="magenta"];808 -> 948[label="",style="dashed", color="magenta", weight=3]; 808 -> 949[label="",style="dashed", color="magenta", weight=3]; 809 -> 399[label="",style="dashed", color="red", weight=0]; 809[label="vwx311 == vwx411",fontsize=16,color="magenta"];809 -> 950[label="",style="dashed", color="magenta", weight=3]; 809 -> 951[label="",style="dashed", color="magenta", weight=3]; 810 -> 386[label="",style="dashed", color="red", weight=0]; 810[label="vwx310 == vwx410",fontsize=16,color="magenta"];810 -> 952[label="",style="dashed", color="magenta", weight=3]; 810 -> 953[label="",style="dashed", color="magenta", weight=3]; 811 -> 399[label="",style="dashed", color="red", weight=0]; 811[label="vwx310 == vwx410",fontsize=16,color="magenta"];811 -> 954[label="",style="dashed", color="magenta", weight=3]; 811 -> 955[label="",style="dashed", color="magenta", weight=3]; 812 -> 386[label="",style="dashed", color="red", weight=0]; 812[label="vwx311 == vwx411",fontsize=16,color="magenta"];812 -> 956[label="",style="dashed", color="magenta", weight=3]; 812 -> 957[label="",style="dashed", color="magenta", weight=3]; 813 -> 387[label="",style="dashed", color="red", weight=0]; 813[label="vwx311 == vwx411",fontsize=16,color="magenta"];813 -> 958[label="",style="dashed", color="magenta", weight=3]; 813 -> 959[label="",style="dashed", color="magenta", weight=3]; 814 -> 388[label="",style="dashed", color="red", weight=0]; 814[label="vwx311 == vwx411",fontsize=16,color="magenta"];814 -> 960[label="",style="dashed", color="magenta", weight=3]; 814 -> 961[label="",style="dashed", color="magenta", weight=3]; 815 -> 389[label="",style="dashed", color="red", weight=0]; 815[label="vwx311 == vwx411",fontsize=16,color="magenta"];815 -> 962[label="",style="dashed", color="magenta", weight=3]; 815 -> 963[label="",style="dashed", color="magenta", weight=3]; 816 -> 390[label="",style="dashed", color="red", weight=0]; 816[label="vwx311 == vwx411",fontsize=16,color="magenta"];816 -> 964[label="",style="dashed", color="magenta", weight=3]; 816 -> 965[label="",style="dashed", color="magenta", weight=3]; 817 -> 391[label="",style="dashed", color="red", weight=0]; 817[label="vwx311 == vwx411",fontsize=16,color="magenta"];817 -> 966[label="",style="dashed", color="magenta", weight=3]; 817 -> 967[label="",style="dashed", color="magenta", weight=3]; 818 -> 392[label="",style="dashed", color="red", weight=0]; 818[label="vwx311 == vwx411",fontsize=16,color="magenta"];818 -> 968[label="",style="dashed", color="magenta", weight=3]; 818 -> 969[label="",style="dashed", color="magenta", weight=3]; 819 -> 393[label="",style="dashed", color="red", weight=0]; 819[label="vwx311 == vwx411",fontsize=16,color="magenta"];819 -> 970[label="",style="dashed", color="magenta", weight=3]; 819 -> 971[label="",style="dashed", color="magenta", weight=3]; 820 -> 394[label="",style="dashed", color="red", weight=0]; 820[label="vwx311 == vwx411",fontsize=16,color="magenta"];820 -> 972[label="",style="dashed", color="magenta", weight=3]; 820 -> 973[label="",style="dashed", color="magenta", weight=3]; 821 -> 395[label="",style="dashed", color="red", weight=0]; 821[label="vwx311 == vwx411",fontsize=16,color="magenta"];821 -> 974[label="",style="dashed", color="magenta", weight=3]; 821 -> 975[label="",style="dashed", color="magenta", weight=3]; 822 -> 396[label="",style="dashed", color="red", weight=0]; 822[label="vwx311 == vwx411",fontsize=16,color="magenta"];822 -> 976[label="",style="dashed", color="magenta", weight=3]; 822 -> 977[label="",style="dashed", color="magenta", weight=3]; 823 -> 397[label="",style="dashed", color="red", weight=0]; 823[label="vwx311 == vwx411",fontsize=16,color="magenta"];823 -> 978[label="",style="dashed", color="magenta", weight=3]; 823 -> 979[label="",style="dashed", color="magenta", weight=3]; 824 -> 398[label="",style="dashed", color="red", weight=0]; 824[label="vwx311 == vwx411",fontsize=16,color="magenta"];824 -> 980[label="",style="dashed", color="magenta", weight=3]; 824 -> 981[label="",style="dashed", color="magenta", weight=3]; 825 -> 399[label="",style="dashed", color="red", weight=0]; 825[label="vwx311 == vwx411",fontsize=16,color="magenta"];825 -> 982[label="",style="dashed", color="magenta", weight=3]; 825 -> 983[label="",style="dashed", color="magenta", weight=3]; 826 -> 386[label="",style="dashed", color="red", weight=0]; 826[label="vwx310 == vwx410",fontsize=16,color="magenta"];826 -> 984[label="",style="dashed", color="magenta", weight=3]; 826 -> 985[label="",style="dashed", color="magenta", weight=3]; 827 -> 387[label="",style="dashed", color="red", weight=0]; 827[label="vwx310 == vwx410",fontsize=16,color="magenta"];827 -> 986[label="",style="dashed", color="magenta", weight=3]; 827 -> 987[label="",style="dashed", color="magenta", weight=3]; 828 -> 388[label="",style="dashed", color="red", weight=0]; 828[label="vwx310 == vwx410",fontsize=16,color="magenta"];828 -> 988[label="",style="dashed", color="magenta", weight=3]; 828 -> 989[label="",style="dashed", color="magenta", weight=3]; 829 -> 389[label="",style="dashed", color="red", weight=0]; 829[label="vwx310 == vwx410",fontsize=16,color="magenta"];829 -> 990[label="",style="dashed", color="magenta", weight=3]; 829 -> 991[label="",style="dashed", color="magenta", weight=3]; 830 -> 390[label="",style="dashed", color="red", weight=0]; 830[label="vwx310 == vwx410",fontsize=16,color="magenta"];830 -> 992[label="",style="dashed", color="magenta", weight=3]; 830 -> 993[label="",style="dashed", color="magenta", weight=3]; 831 -> 391[label="",style="dashed", color="red", weight=0]; 831[label="vwx310 == vwx410",fontsize=16,color="magenta"];831 -> 994[label="",style="dashed", color="magenta", weight=3]; 831 -> 995[label="",style="dashed", color="magenta", weight=3]; 832 -> 392[label="",style="dashed", color="red", weight=0]; 832[label="vwx310 == vwx410",fontsize=16,color="magenta"];832 -> 996[label="",style="dashed", color="magenta", weight=3]; 832 -> 997[label="",style="dashed", color="magenta", weight=3]; 833 -> 393[label="",style="dashed", color="red", weight=0]; 833[label="vwx310 == vwx410",fontsize=16,color="magenta"];833 -> 998[label="",style="dashed", color="magenta", weight=3]; 833 -> 999[label="",style="dashed", color="magenta", weight=3]; 834 -> 394[label="",style="dashed", color="red", weight=0]; 834[label="vwx310 == vwx410",fontsize=16,color="magenta"];834 -> 1000[label="",style="dashed", color="magenta", weight=3]; 834 -> 1001[label="",style="dashed", color="magenta", weight=3]; 835 -> 395[label="",style="dashed", color="red", weight=0]; 835[label="vwx310 == vwx410",fontsize=16,color="magenta"];835 -> 1002[label="",style="dashed", color="magenta", weight=3]; 835 -> 1003[label="",style="dashed", color="magenta", weight=3]; 836 -> 396[label="",style="dashed", color="red", weight=0]; 836[label="vwx310 == vwx410",fontsize=16,color="magenta"];836 -> 1004[label="",style="dashed", color="magenta", weight=3]; 836 -> 1005[label="",style="dashed", color="magenta", weight=3]; 837 -> 397[label="",style="dashed", color="red", weight=0]; 837[label="vwx310 == vwx410",fontsize=16,color="magenta"];837 -> 1006[label="",style="dashed", color="magenta", weight=3]; 837 -> 1007[label="",style="dashed", color="magenta", weight=3]; 838 -> 398[label="",style="dashed", color="red", weight=0]; 838[label="vwx310 == vwx410",fontsize=16,color="magenta"];838 -> 1008[label="",style="dashed", color="magenta", weight=3]; 838 -> 1009[label="",style="dashed", color="magenta", weight=3]; 839 -> 399[label="",style="dashed", color="red", weight=0]; 839[label="vwx310 == vwx410",fontsize=16,color="magenta"];839 -> 1010[label="",style="dashed", color="magenta", weight=3]; 839 -> 1011[label="",style="dashed", color="magenta", weight=3]; 840 -> 706[label="",style="dashed", color="red", weight=0]; 840[label="vwx310 * vwx411",fontsize=16,color="magenta"];840 -> 1012[label="",style="dashed", color="magenta", weight=3]; 840 -> 1013[label="",style="dashed", color="magenta", weight=3]; 841 -> 706[label="",style="dashed", color="red", weight=0]; 841[label="vwx311 * vwx410",fontsize=16,color="magenta"];841 -> 1014[label="",style="dashed", color="magenta", weight=3]; 841 -> 1015[label="",style="dashed", color="magenta", weight=3]; 842[label="vwx312 == vwx412",fontsize=16,color="blue",shape="box"];2434[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2434[label="",style="solid", color="blue", weight=9]; 2434 -> 1016[label="",style="solid", color="blue", weight=3]; 2435[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2435[label="",style="solid", color="blue", weight=9]; 2435 -> 1017[label="",style="solid", color="blue", weight=3]; 2436[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2436[label="",style="solid", color="blue", weight=9]; 2436 -> 1018[label="",style="solid", color="blue", weight=3]; 2437[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2437[label="",style="solid", color="blue", weight=9]; 2437 -> 1019[label="",style="solid", color="blue", weight=3]; 2438[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2438[label="",style="solid", color="blue", weight=9]; 2438 -> 1020[label="",style="solid", color="blue", weight=3]; 2439[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2439[label="",style="solid", color="blue", weight=9]; 2439 -> 1021[label="",style="solid", color="blue", weight=3]; 2440[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2440[label="",style="solid", color="blue", weight=9]; 2440 -> 1022[label="",style="solid", color="blue", weight=3]; 2441[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2441[label="",style="solid", color="blue", weight=9]; 2441 -> 1023[label="",style="solid", color="blue", weight=3]; 2442[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2442[label="",style="solid", color="blue", weight=9]; 2442 -> 1024[label="",style="solid", color="blue", weight=3]; 2443[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2443[label="",style="solid", color="blue", weight=9]; 2443 -> 1025[label="",style="solid", color="blue", weight=3]; 2444[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2444[label="",style="solid", color="blue", weight=9]; 2444 -> 1026[label="",style="solid", color="blue", weight=3]; 2445[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2445[label="",style="solid", color="blue", weight=9]; 2445 -> 1027[label="",style="solid", color="blue", weight=3]; 2446[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2446[label="",style="solid", color="blue", weight=9]; 2446 -> 1028[label="",style="solid", color="blue", weight=3]; 2447[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];842 -> 2447[label="",style="solid", color="blue", weight=9]; 2447 -> 1029[label="",style="solid", color="blue", weight=3]; 843[label="vwx311 == vwx411",fontsize=16,color="blue",shape="box"];2448[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2448[label="",style="solid", color="blue", weight=9]; 2448 -> 1030[label="",style="solid", color="blue", weight=3]; 2449[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2449[label="",style="solid", color="blue", weight=9]; 2449 -> 1031[label="",style="solid", color="blue", weight=3]; 2450[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2450[label="",style="solid", color="blue", weight=9]; 2450 -> 1032[label="",style="solid", color="blue", weight=3]; 2451[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2451[label="",style="solid", color="blue", weight=9]; 2451 -> 1033[label="",style="solid", color="blue", weight=3]; 2452[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2452[label="",style="solid", color="blue", weight=9]; 2452 -> 1034[label="",style="solid", color="blue", weight=3]; 2453[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2453[label="",style="solid", color="blue", weight=9]; 2453 -> 1035[label="",style="solid", color="blue", weight=3]; 2454[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2454[label="",style="solid", color="blue", weight=9]; 2454 -> 1036[label="",style="solid", color="blue", weight=3]; 2455[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2455[label="",style="solid", color="blue", weight=9]; 2455 -> 1037[label="",style="solid", color="blue", weight=3]; 2456[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2456[label="",style="solid", color="blue", weight=9]; 2456 -> 1038[label="",style="solid", color="blue", weight=3]; 2457[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2457[label="",style="solid", color="blue", weight=9]; 2457 -> 1039[label="",style="solid", color="blue", weight=3]; 2458[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2458[label="",style="solid", color="blue", weight=9]; 2458 -> 1040[label="",style="solid", color="blue", weight=3]; 2459[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2459[label="",style="solid", color="blue", weight=9]; 2459 -> 1041[label="",style="solid", color="blue", weight=3]; 2460[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2460[label="",style="solid", color="blue", weight=9]; 2460 -> 1042[label="",style="solid", color="blue", weight=3]; 2461[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];843 -> 2461[label="",style="solid", color="blue", weight=9]; 2461 -> 1043[label="",style="solid", color="blue", weight=3]; 844 -> 386[label="",style="dashed", color="red", weight=0]; 844[label="vwx310 == vwx410",fontsize=16,color="magenta"];844 -> 1044[label="",style="dashed", color="magenta", weight=3]; 844 -> 1045[label="",style="dashed", color="magenta", weight=3]; 845 -> 387[label="",style="dashed", color="red", weight=0]; 845[label="vwx310 == vwx410",fontsize=16,color="magenta"];845 -> 1046[label="",style="dashed", color="magenta", weight=3]; 845 -> 1047[label="",style="dashed", color="magenta", weight=3]; 846 -> 388[label="",style="dashed", color="red", weight=0]; 846[label="vwx310 == vwx410",fontsize=16,color="magenta"];846 -> 1048[label="",style="dashed", color="magenta", weight=3]; 846 -> 1049[label="",style="dashed", color="magenta", weight=3]; 847 -> 389[label="",style="dashed", color="red", weight=0]; 847[label="vwx310 == vwx410",fontsize=16,color="magenta"];847 -> 1050[label="",style="dashed", color="magenta", weight=3]; 847 -> 1051[label="",style="dashed", color="magenta", weight=3]; 848 -> 390[label="",style="dashed", color="red", weight=0]; 848[label="vwx310 == vwx410",fontsize=16,color="magenta"];848 -> 1052[label="",style="dashed", color="magenta", weight=3]; 848 -> 1053[label="",style="dashed", color="magenta", weight=3]; 849 -> 391[label="",style="dashed", color="red", weight=0]; 849[label="vwx310 == vwx410",fontsize=16,color="magenta"];849 -> 1054[label="",style="dashed", color="magenta", weight=3]; 849 -> 1055[label="",style="dashed", color="magenta", weight=3]; 850 -> 392[label="",style="dashed", color="red", weight=0]; 850[label="vwx310 == vwx410",fontsize=16,color="magenta"];850 -> 1056[label="",style="dashed", color="magenta", weight=3]; 850 -> 1057[label="",style="dashed", color="magenta", weight=3]; 851 -> 393[label="",style="dashed", color="red", weight=0]; 851[label="vwx310 == vwx410",fontsize=16,color="magenta"];851 -> 1058[label="",style="dashed", color="magenta", weight=3]; 851 -> 1059[label="",style="dashed", color="magenta", weight=3]; 852 -> 394[label="",style="dashed", color="red", weight=0]; 852[label="vwx310 == vwx410",fontsize=16,color="magenta"];852 -> 1060[label="",style="dashed", color="magenta", weight=3]; 852 -> 1061[label="",style="dashed", color="magenta", weight=3]; 853 -> 395[label="",style="dashed", color="red", weight=0]; 853[label="vwx310 == vwx410",fontsize=16,color="magenta"];853 -> 1062[label="",style="dashed", color="magenta", weight=3]; 853 -> 1063[label="",style="dashed", color="magenta", weight=3]; 854 -> 396[label="",style="dashed", color="red", weight=0]; 854[label="vwx310 == vwx410",fontsize=16,color="magenta"];854 -> 1064[label="",style="dashed", color="magenta", weight=3]; 854 -> 1065[label="",style="dashed", color="magenta", weight=3]; 855 -> 397[label="",style="dashed", color="red", weight=0]; 855[label="vwx310 == vwx410",fontsize=16,color="magenta"];855 -> 1066[label="",style="dashed", color="magenta", weight=3]; 855 -> 1067[label="",style="dashed", color="magenta", weight=3]; 856 -> 398[label="",style="dashed", color="red", weight=0]; 856[label="vwx310 == vwx410",fontsize=16,color="magenta"];856 -> 1068[label="",style="dashed", color="magenta", weight=3]; 856 -> 1069[label="",style="dashed", color="magenta", weight=3]; 857 -> 399[label="",style="dashed", color="red", weight=0]; 857[label="vwx310 == vwx410",fontsize=16,color="magenta"];857 -> 1070[label="",style="dashed", color="magenta", weight=3]; 857 -> 1071[label="",style="dashed", color="magenta", weight=3]; 858[label="primEqNat (Succ vwx3100) vwx410",fontsize=16,color="burlywood",shape="box"];2462[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];858 -> 2462[label="",style="solid", color="burlywood", weight=9]; 2462 -> 1072[label="",style="solid", color="burlywood", weight=3]; 2463[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];858 -> 2463[label="",style="solid", color="burlywood", weight=9]; 2463 -> 1073[label="",style="solid", color="burlywood", weight=3]; 859[label="primEqNat Zero vwx410",fontsize=16,color="burlywood",shape="box"];2464[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];859 -> 2464[label="",style="solid", color="burlywood", weight=9]; 2464 -> 1074[label="",style="solid", color="burlywood", weight=3]; 2465[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];859 -> 2465[label="",style="solid", color="burlywood", weight=9]; 2465 -> 1075[label="",style="solid", color="burlywood", weight=3]; 860[label="vwx23 <= vwx25",fontsize=16,color="black",shape="triangle"];860 -> 1076[label="",style="solid", color="black", weight=3]; 861[label="vwx23 <= vwx25",fontsize=16,color="burlywood",shape="triangle"];2466[label="vwx23/Left vwx230",fontsize=10,color="white",style="solid",shape="box"];861 -> 2466[label="",style="solid", color="burlywood", weight=9]; 2466 -> 1077[label="",style="solid", color="burlywood", weight=3]; 2467[label="vwx23/Right vwx230",fontsize=10,color="white",style="solid",shape="box"];861 -> 2467[label="",style="solid", color="burlywood", weight=9]; 2467 -> 1078[label="",style="solid", color="burlywood", weight=3]; 862[label="vwx23 <= vwx25",fontsize=16,color="burlywood",shape="triangle"];2468[label="vwx23/False",fontsize=10,color="white",style="solid",shape="box"];862 -> 2468[label="",style="solid", color="burlywood", weight=9]; 2468 -> 1079[label="",style="solid", color="burlywood", weight=3]; 2469[label="vwx23/True",fontsize=10,color="white",style="solid",shape="box"];862 -> 2469[label="",style="solid", color="burlywood", weight=9]; 2469 -> 1080[label="",style="solid", color="burlywood", weight=3]; 863[label="vwx23 <= vwx25",fontsize=16,color="black",shape="triangle"];863 -> 1081[label="",style="solid", color="black", weight=3]; 864[label="vwx23 <= vwx25",fontsize=16,color="black",shape="triangle"];864 -> 1082[label="",style="solid", color="black", weight=3]; 865[label="vwx23 <= vwx25",fontsize=16,color="burlywood",shape="triangle"];2470[label="vwx23/(vwx230,vwx231)",fontsize=10,color="white",style="solid",shape="box"];865 -> 2470[label="",style="solid", color="burlywood", weight=9]; 2470 -> 1083[label="",style="solid", color="burlywood", weight=3]; 866[label="vwx23 <= vwx25",fontsize=16,color="burlywood",shape="triangle"];2471[label="vwx23/LT",fontsize=10,color="white",style="solid",shape="box"];866 -> 2471[label="",style="solid", color="burlywood", weight=9]; 2471 -> 1084[label="",style="solid", color="burlywood", weight=3]; 2472[label="vwx23/EQ",fontsize=10,color="white",style="solid",shape="box"];866 -> 2472[label="",style="solid", color="burlywood", weight=9]; 2472 -> 1085[label="",style="solid", color="burlywood", weight=3]; 2473[label="vwx23/GT",fontsize=10,color="white",style="solid",shape="box"];866 -> 2473[label="",style="solid", color="burlywood", weight=9]; 2473 -> 1086[label="",style="solid", color="burlywood", weight=3]; 867[label="vwx23 <= vwx25",fontsize=16,color="black",shape="triangle"];867 -> 1087[label="",style="solid", color="black", weight=3]; 868[label="vwx23 <= vwx25",fontsize=16,color="black",shape="triangle"];868 -> 1088[label="",style="solid", color="black", weight=3]; 869[label="vwx23 <= vwx25",fontsize=16,color="burlywood",shape="triangle"];2474[label="vwx23/(vwx230,vwx231,vwx232)",fontsize=10,color="white",style="solid",shape="box"];869 -> 2474[label="",style="solid", color="burlywood", weight=9]; 2474 -> 1089[label="",style="solid", color="burlywood", weight=3]; 870[label="vwx23 <= vwx25",fontsize=16,color="black",shape="triangle"];870 -> 1090[label="",style="solid", color="black", weight=3]; 871[label="vwx23 <= vwx25",fontsize=16,color="burlywood",shape="triangle"];2475[label="vwx23/Nothing",fontsize=10,color="white",style="solid",shape="box"];871 -> 2475[label="",style="solid", color="burlywood", weight=9]; 2475 -> 1091[label="",style="solid", color="burlywood", weight=3]; 2476[label="vwx23/Just vwx230",fontsize=10,color="white",style="solid",shape="box"];871 -> 2476[label="",style="solid", color="burlywood", weight=9]; 2476 -> 1092[label="",style="solid", color="burlywood", weight=3]; 872[label="vwx23 <= vwx25",fontsize=16,color="black",shape="triangle"];872 -> 1093[label="",style="solid", color="black", weight=3]; 873[label="vwx23 <= vwx25",fontsize=16,color="black",shape="triangle"];873 -> 1094[label="",style="solid", color="black", weight=3]; 874 -> 386[label="",style="dashed", color="red", weight=0]; 874[label="vwx22 == vwx24",fontsize=16,color="magenta"];874 -> 1095[label="",style="dashed", color="magenta", weight=3]; 874 -> 1096[label="",style="dashed", color="magenta", weight=3]; 875 -> 388[label="",style="dashed", color="red", weight=0]; 875[label="vwx22 == vwx24",fontsize=16,color="magenta"];875 -> 1097[label="",style="dashed", color="magenta", weight=3]; 875 -> 1098[label="",style="dashed", color="magenta", weight=3]; 876 -> 393[label="",style="dashed", color="red", weight=0]; 876[label="vwx22 == vwx24",fontsize=16,color="magenta"];876 -> 1099[label="",style="dashed", color="magenta", weight=3]; 876 -> 1100[label="",style="dashed", color="magenta", weight=3]; 877 -> 395[label="",style="dashed", color="red", weight=0]; 877[label="vwx22 == vwx24",fontsize=16,color="magenta"];877 -> 1101[label="",style="dashed", color="magenta", weight=3]; 877 -> 1102[label="",style="dashed", color="magenta", weight=3]; 878 -> 399[label="",style="dashed", color="red", weight=0]; 878[label="vwx22 == vwx24",fontsize=16,color="magenta"];878 -> 1103[label="",style="dashed", color="magenta", weight=3]; 878 -> 1104[label="",style="dashed", color="magenta", weight=3]; 879 -> 394[label="",style="dashed", color="red", weight=0]; 879[label="vwx22 == vwx24",fontsize=16,color="magenta"];879 -> 1105[label="",style="dashed", color="magenta", weight=3]; 879 -> 1106[label="",style="dashed", color="magenta", weight=3]; 880 -> 391[label="",style="dashed", color="red", weight=0]; 880[label="vwx22 == vwx24",fontsize=16,color="magenta"];880 -> 1107[label="",style="dashed", color="magenta", weight=3]; 880 -> 1108[label="",style="dashed", color="magenta", weight=3]; 881 -> 398[label="",style="dashed", color="red", weight=0]; 881[label="vwx22 == vwx24",fontsize=16,color="magenta"];881 -> 1109[label="",style="dashed", color="magenta", weight=3]; 881 -> 1110[label="",style="dashed", color="magenta", weight=3]; 882 -> 392[label="",style="dashed", color="red", weight=0]; 882[label="vwx22 == vwx24",fontsize=16,color="magenta"];882 -> 1111[label="",style="dashed", color="magenta", weight=3]; 882 -> 1112[label="",style="dashed", color="magenta", weight=3]; 883 -> 397[label="",style="dashed", color="red", weight=0]; 883[label="vwx22 == vwx24",fontsize=16,color="magenta"];883 -> 1113[label="",style="dashed", color="magenta", weight=3]; 883 -> 1114[label="",style="dashed", color="magenta", weight=3]; 884 -> 389[label="",style="dashed", color="red", weight=0]; 884[label="vwx22 == vwx24",fontsize=16,color="magenta"];884 -> 1115[label="",style="dashed", color="magenta", weight=3]; 884 -> 1116[label="",style="dashed", color="magenta", weight=3]; 885 -> 390[label="",style="dashed", color="red", weight=0]; 885[label="vwx22 == vwx24",fontsize=16,color="magenta"];885 -> 1117[label="",style="dashed", color="magenta", weight=3]; 885 -> 1118[label="",style="dashed", color="magenta", weight=3]; 886 -> 396[label="",style="dashed", color="red", weight=0]; 886[label="vwx22 == vwx24",fontsize=16,color="magenta"];886 -> 1119[label="",style="dashed", color="magenta", weight=3]; 886 -> 1120[label="",style="dashed", color="magenta", weight=3]; 887 -> 387[label="",style="dashed", color="red", weight=0]; 887[label="vwx22 == vwx24",fontsize=16,color="magenta"];887 -> 1121[label="",style="dashed", color="magenta", weight=3]; 887 -> 1122[label="",style="dashed", color="magenta", weight=3]; 888 -> 391[label="",style="dashed", color="red", weight=0]; 888[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];888 -> 1123[label="",style="dashed", color="magenta", weight=3]; 888 -> 1124[label="",style="dashed", color="magenta", weight=3]; 889 -> 391[label="",style="dashed", color="red", weight=0]; 889[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];889 -> 1125[label="",style="dashed", color="magenta", weight=3]; 889 -> 1126[label="",style="dashed", color="magenta", weight=3]; 890 -> 391[label="",style="dashed", color="red", weight=0]; 890[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];890 -> 1127[label="",style="dashed", color="magenta", weight=3]; 890 -> 1128[label="",style="dashed", color="magenta", weight=3]; 891 -> 391[label="",style="dashed", color="red", weight=0]; 891[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];891 -> 1129[label="",style="dashed", color="magenta", weight=3]; 891 -> 1130[label="",style="dashed", color="magenta", weight=3]; 892 -> 391[label="",style="dashed", color="red", weight=0]; 892[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];892 -> 1131[label="",style="dashed", color="magenta", weight=3]; 892 -> 1132[label="",style="dashed", color="magenta", weight=3]; 893 -> 391[label="",style="dashed", color="red", weight=0]; 893[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];893 -> 1133[label="",style="dashed", color="magenta", weight=3]; 893 -> 1134[label="",style="dashed", color="magenta", weight=3]; 894 -> 391[label="",style="dashed", color="red", weight=0]; 894[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];894 -> 1135[label="",style="dashed", color="magenta", weight=3]; 894 -> 1136[label="",style="dashed", color="magenta", weight=3]; 895 -> 391[label="",style="dashed", color="red", weight=0]; 895[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];895 -> 1137[label="",style="dashed", color="magenta", weight=3]; 895 -> 1138[label="",style="dashed", color="magenta", weight=3]; 896 -> 391[label="",style="dashed", color="red", weight=0]; 896[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];896 -> 1139[label="",style="dashed", color="magenta", weight=3]; 896 -> 1140[label="",style="dashed", color="magenta", weight=3]; 897 -> 391[label="",style="dashed", color="red", weight=0]; 897[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];897 -> 1141[label="",style="dashed", color="magenta", weight=3]; 897 -> 1142[label="",style="dashed", color="magenta", weight=3]; 898 -> 391[label="",style="dashed", color="red", weight=0]; 898[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];898 -> 1143[label="",style="dashed", color="magenta", weight=3]; 898 -> 1144[label="",style="dashed", color="magenta", weight=3]; 899 -> 391[label="",style="dashed", color="red", weight=0]; 899[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];899 -> 1145[label="",style="dashed", color="magenta", weight=3]; 899 -> 1146[label="",style="dashed", color="magenta", weight=3]; 900 -> 391[label="",style="dashed", color="red", weight=0]; 900[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];900 -> 1147[label="",style="dashed", color="magenta", weight=3]; 900 -> 1148[label="",style="dashed", color="magenta", weight=3]; 901 -> 391[label="",style="dashed", color="red", weight=0]; 901[label="compare vwx22 vwx24 == LT",fontsize=16,color="magenta"];901 -> 1149[label="",style="dashed", color="magenta", weight=3]; 901 -> 1150[label="",style="dashed", color="magenta", weight=3]; 902[label="vwx57",fontsize=16,color="green",shape="box"];903[label="True",fontsize=16,color="green",shape="box"];904[label="GT",fontsize=16,color="green",shape="box"];905 -> 663[label="",style="dashed", color="red", weight=0]; 905[label="primEqNat vwx3100 vwx4100",fontsize=16,color="magenta"];905 -> 1151[label="",style="dashed", color="magenta", weight=3]; 905 -> 1152[label="",style="dashed", color="magenta", weight=3]; 906[label="False",fontsize=16,color="green",shape="box"];907[label="False",fontsize=16,color="green",shape="box"];908[label="True",fontsize=16,color="green",shape="box"];909[label="False",fontsize=16,color="green",shape="box"];910[label="True",fontsize=16,color="green",shape="box"];911 -> 663[label="",style="dashed", color="red", weight=0]; 911[label="primEqNat vwx3100 vwx4100",fontsize=16,color="magenta"];911 -> 1153[label="",style="dashed", color="magenta", weight=3]; 911 -> 1154[label="",style="dashed", color="magenta", weight=3]; 912[label="False",fontsize=16,color="green",shape="box"];913[label="False",fontsize=16,color="green",shape="box"];914[label="True",fontsize=16,color="green",shape="box"];915[label="False",fontsize=16,color="green",shape="box"];916[label="True",fontsize=16,color="green",shape="box"];917[label="primMulInt vwx310 vwx411",fontsize=16,color="burlywood",shape="triangle"];2477[label="vwx310/Pos vwx3100",fontsize=10,color="white",style="solid",shape="box"];917 -> 2477[label="",style="solid", color="burlywood", weight=9]; 2477 -> 1155[label="",style="solid", color="burlywood", weight=3]; 2478[label="vwx310/Neg vwx3100",fontsize=10,color="white",style="solid",shape="box"];917 -> 2478[label="",style="solid", color="burlywood", weight=9]; 2478 -> 1156[label="",style="solid", color="burlywood", weight=3]; 918[label="vwx410",fontsize=16,color="green",shape="box"];919[label="vwx311",fontsize=16,color="green",shape="box"];920[label="vwx310",fontsize=16,color="green",shape="box"];921[label="vwx410",fontsize=16,color="green",shape="box"];922[label="vwx310",fontsize=16,color="green",shape="box"];923[label="vwx410",fontsize=16,color="green",shape="box"];924[label="vwx310",fontsize=16,color="green",shape="box"];925[label="vwx410",fontsize=16,color="green",shape="box"];926[label="vwx310",fontsize=16,color="green",shape="box"];927[label="vwx410",fontsize=16,color="green",shape="box"];928[label="vwx310",fontsize=16,color="green",shape="box"];929[label="vwx410",fontsize=16,color="green",shape="box"];930[label="vwx310",fontsize=16,color="green",shape="box"];931[label="vwx410",fontsize=16,color="green",shape="box"];932[label="vwx310",fontsize=16,color="green",shape="box"];933[label="vwx410",fontsize=16,color="green",shape="box"];934[label="vwx310",fontsize=16,color="green",shape="box"];935[label="vwx410",fontsize=16,color="green",shape="box"];936[label="vwx310",fontsize=16,color="green",shape="box"];937[label="vwx410",fontsize=16,color="green",shape="box"];938[label="vwx310",fontsize=16,color="green",shape="box"];939[label="vwx410",fontsize=16,color="green",shape="box"];940[label="vwx310",fontsize=16,color="green",shape="box"];941[label="vwx410",fontsize=16,color="green",shape="box"];942[label="vwx310",fontsize=16,color="green",shape="box"];943[label="vwx410",fontsize=16,color="green",shape="box"];944[label="vwx310",fontsize=16,color="green",shape="box"];945[label="vwx410",fontsize=16,color="green",shape="box"];946[label="vwx310",fontsize=16,color="green",shape="box"];947[label="vwx410",fontsize=16,color="green",shape="box"];948[label="vwx311",fontsize=16,color="green",shape="box"];949[label="vwx411",fontsize=16,color="green",shape="box"];950[label="vwx311",fontsize=16,color="green",shape="box"];951[label="vwx411",fontsize=16,color="green",shape="box"];952[label="vwx310",fontsize=16,color="green",shape="box"];953[label="vwx410",fontsize=16,color="green",shape="box"];954[label="vwx310",fontsize=16,color="green",shape="box"];955[label="vwx410",fontsize=16,color="green",shape="box"];956[label="vwx311",fontsize=16,color="green",shape="box"];957[label="vwx411",fontsize=16,color="green",shape="box"];958[label="vwx311",fontsize=16,color="green",shape="box"];959[label="vwx411",fontsize=16,color="green",shape="box"];960[label="vwx311",fontsize=16,color="green",shape="box"];961[label="vwx411",fontsize=16,color="green",shape="box"];962[label="vwx311",fontsize=16,color="green",shape="box"];963[label="vwx411",fontsize=16,color="green",shape="box"];964[label="vwx311",fontsize=16,color="green",shape="box"];965[label="vwx411",fontsize=16,color="green",shape="box"];966[label="vwx311",fontsize=16,color="green",shape="box"];967[label="vwx411",fontsize=16,color="green",shape="box"];968[label="vwx311",fontsize=16,color="green",shape="box"];969[label="vwx411",fontsize=16,color="green",shape="box"];970[label="vwx311",fontsize=16,color="green",shape="box"];971[label="vwx411",fontsize=16,color="green",shape="box"];972[label="vwx311",fontsize=16,color="green",shape="box"];973[label="vwx411",fontsize=16,color="green",shape="box"];974[label="vwx311",fontsize=16,color="green",shape="box"];975[label="vwx411",fontsize=16,color="green",shape="box"];976[label="vwx311",fontsize=16,color="green",shape="box"];977[label="vwx411",fontsize=16,color="green",shape="box"];978[label="vwx311",fontsize=16,color="green",shape="box"];979[label="vwx411",fontsize=16,color="green",shape="box"];980[label="vwx311",fontsize=16,color="green",shape="box"];981[label="vwx411",fontsize=16,color="green",shape="box"];982[label="vwx311",fontsize=16,color="green",shape="box"];983[label="vwx411",fontsize=16,color="green",shape="box"];984[label="vwx310",fontsize=16,color="green",shape="box"];985[label="vwx410",fontsize=16,color="green",shape="box"];986[label="vwx310",fontsize=16,color="green",shape="box"];987[label="vwx410",fontsize=16,color="green",shape="box"];988[label="vwx310",fontsize=16,color="green",shape="box"];989[label="vwx410",fontsize=16,color="green",shape="box"];990[label="vwx310",fontsize=16,color="green",shape="box"];991[label="vwx410",fontsize=16,color="green",shape="box"];992[label="vwx310",fontsize=16,color="green",shape="box"];993[label="vwx410",fontsize=16,color="green",shape="box"];994[label="vwx310",fontsize=16,color="green",shape="box"];995[label="vwx410",fontsize=16,color="green",shape="box"];996[label="vwx310",fontsize=16,color="green",shape="box"];997[label="vwx410",fontsize=16,color="green",shape="box"];998[label="vwx310",fontsize=16,color="green",shape="box"];999[label="vwx410",fontsize=16,color="green",shape="box"];1000[label="vwx310",fontsize=16,color="green",shape="box"];1001[label="vwx410",fontsize=16,color="green",shape="box"];1002[label="vwx310",fontsize=16,color="green",shape="box"];1003[label="vwx410",fontsize=16,color="green",shape="box"];1004[label="vwx310",fontsize=16,color="green",shape="box"];1005[label="vwx410",fontsize=16,color="green",shape="box"];1006[label="vwx310",fontsize=16,color="green",shape="box"];1007[label="vwx410",fontsize=16,color="green",shape="box"];1008[label="vwx310",fontsize=16,color="green",shape="box"];1009[label="vwx410",fontsize=16,color="green",shape="box"];1010[label="vwx310",fontsize=16,color="green",shape="box"];1011[label="vwx410",fontsize=16,color="green",shape="box"];1012[label="vwx411",fontsize=16,color="green",shape="box"];1013[label="vwx310",fontsize=16,color="green",shape="box"];1014[label="vwx410",fontsize=16,color="green",shape="box"];1015[label="vwx311",fontsize=16,color="green",shape="box"];1016 -> 386[label="",style="dashed", color="red", weight=0]; 1016[label="vwx312 == vwx412",fontsize=16,color="magenta"];1016 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1017 -> 387[label="",style="dashed", color="red", weight=0]; 1017[label="vwx312 == vwx412",fontsize=16,color="magenta"];1017 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1018 -> 388[label="",style="dashed", color="red", weight=0]; 1018[label="vwx312 == vwx412",fontsize=16,color="magenta"];1018 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1019 -> 389[label="",style="dashed", color="red", weight=0]; 1019[label="vwx312 == vwx412",fontsize=16,color="magenta"];1019 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1020 -> 390[label="",style="dashed", color="red", weight=0]; 1020[label="vwx312 == vwx412",fontsize=16,color="magenta"];1020 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1021 -> 391[label="",style="dashed", color="red", weight=0]; 1021[label="vwx312 == vwx412",fontsize=16,color="magenta"];1021 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1022 -> 392[label="",style="dashed", color="red", weight=0]; 1022[label="vwx312 == vwx412",fontsize=16,color="magenta"];1022 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1023 -> 393[label="",style="dashed", color="red", weight=0]; 1023[label="vwx312 == vwx412",fontsize=16,color="magenta"];1023 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1024 -> 394[label="",style="dashed", color="red", weight=0]; 1024[label="vwx312 == vwx412",fontsize=16,color="magenta"];1024 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1025 -> 395[label="",style="dashed", color="red", weight=0]; 1025[label="vwx312 == vwx412",fontsize=16,color="magenta"];1025 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1026 -> 396[label="",style="dashed", color="red", weight=0]; 1026[label="vwx312 == vwx412",fontsize=16,color="magenta"];1026 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1027 -> 397[label="",style="dashed", color="red", weight=0]; 1027[label="vwx312 == vwx412",fontsize=16,color="magenta"];1027 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1028 -> 398[label="",style="dashed", color="red", weight=0]; 1028[label="vwx312 == vwx412",fontsize=16,color="magenta"];1028 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1029 -> 399[label="",style="dashed", color="red", weight=0]; 1029[label="vwx312 == vwx412",fontsize=16,color="magenta"];1029 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1030 -> 386[label="",style="dashed", color="red", weight=0]; 1030[label="vwx311 == vwx411",fontsize=16,color="magenta"];1030 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1031 -> 387[label="",style="dashed", color="red", weight=0]; 1031[label="vwx311 == vwx411",fontsize=16,color="magenta"];1031 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1032 -> 388[label="",style="dashed", color="red", weight=0]; 1032[label="vwx311 == vwx411",fontsize=16,color="magenta"];1032 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1033 -> 389[label="",style="dashed", color="red", weight=0]; 1033[label="vwx311 == vwx411",fontsize=16,color="magenta"];1033 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1034 -> 390[label="",style="dashed", color="red", weight=0]; 1034[label="vwx311 == vwx411",fontsize=16,color="magenta"];1034 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1035 -> 391[label="",style="dashed", color="red", weight=0]; 1035[label="vwx311 == vwx411",fontsize=16,color="magenta"];1035 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1035 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1036 -> 392[label="",style="dashed", color="red", weight=0]; 1036[label="vwx311 == vwx411",fontsize=16,color="magenta"];1036 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1036 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1037 -> 393[label="",style="dashed", color="red", weight=0]; 1037[label="vwx311 == vwx411",fontsize=16,color="magenta"];1037 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1037 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1038 -> 394[label="",style="dashed", color="red", weight=0]; 1038[label="vwx311 == vwx411",fontsize=16,color="magenta"];1038 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1038 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1039 -> 395[label="",style="dashed", color="red", weight=0]; 1039[label="vwx311 == vwx411",fontsize=16,color="magenta"];1039 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1039 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1040 -> 396[label="",style="dashed", color="red", weight=0]; 1040[label="vwx311 == vwx411",fontsize=16,color="magenta"];1040 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1041 -> 397[label="",style="dashed", color="red", weight=0]; 1041[label="vwx311 == vwx411",fontsize=16,color="magenta"];1041 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1042 -> 398[label="",style="dashed", color="red", weight=0]; 1042[label="vwx311 == vwx411",fontsize=16,color="magenta"];1042 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1042 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1043 -> 399[label="",style="dashed", color="red", weight=0]; 1043[label="vwx311 == vwx411",fontsize=16,color="magenta"];1043 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1043 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1044[label="vwx310",fontsize=16,color="green",shape="box"];1045[label="vwx410",fontsize=16,color="green",shape="box"];1046[label="vwx310",fontsize=16,color="green",shape="box"];1047[label="vwx410",fontsize=16,color="green",shape="box"];1048[label="vwx310",fontsize=16,color="green",shape="box"];1049[label="vwx410",fontsize=16,color="green",shape="box"];1050[label="vwx310",fontsize=16,color="green",shape="box"];1051[label="vwx410",fontsize=16,color="green",shape="box"];1052[label="vwx310",fontsize=16,color="green",shape="box"];1053[label="vwx410",fontsize=16,color="green",shape="box"];1054[label="vwx310",fontsize=16,color="green",shape="box"];1055[label="vwx410",fontsize=16,color="green",shape="box"];1056[label="vwx310",fontsize=16,color="green",shape="box"];1057[label="vwx410",fontsize=16,color="green",shape="box"];1058[label="vwx310",fontsize=16,color="green",shape="box"];1059[label="vwx410",fontsize=16,color="green",shape="box"];1060[label="vwx310",fontsize=16,color="green",shape="box"];1061[label="vwx410",fontsize=16,color="green",shape="box"];1062[label="vwx310",fontsize=16,color="green",shape="box"];1063[label="vwx410",fontsize=16,color="green",shape="box"];1064[label="vwx310",fontsize=16,color="green",shape="box"];1065[label="vwx410",fontsize=16,color="green",shape="box"];1066[label="vwx310",fontsize=16,color="green",shape="box"];1067[label="vwx410",fontsize=16,color="green",shape="box"];1068[label="vwx310",fontsize=16,color="green",shape="box"];1069[label="vwx410",fontsize=16,color="green",shape="box"];1070[label="vwx310",fontsize=16,color="green",shape="box"];1071[label="vwx410",fontsize=16,color="green",shape="box"];1072[label="primEqNat (Succ vwx3100) (Succ vwx4100)",fontsize=16,color="black",shape="box"];1072 -> 1213[label="",style="solid", color="black", weight=3]; 1073[label="primEqNat (Succ vwx3100) Zero",fontsize=16,color="black",shape="box"];1073 -> 1214[label="",style="solid", color="black", weight=3]; 1074[label="primEqNat Zero (Succ vwx4100)",fontsize=16,color="black",shape="box"];1074 -> 1215[label="",style="solid", color="black", weight=3]; 1075[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1075 -> 1216[label="",style="solid", color="black", weight=3]; 1076[label="compare vwx23 vwx25 /= GT",fontsize=16,color="black",shape="box"];1076 -> 1217[label="",style="solid", color="black", weight=3]; 1077[label="Left vwx230 <= vwx25",fontsize=16,color="burlywood",shape="box"];2479[label="vwx25/Left vwx250",fontsize=10,color="white",style="solid",shape="box"];1077 -> 2479[label="",style="solid", color="burlywood", weight=9]; 2479 -> 1218[label="",style="solid", color="burlywood", weight=3]; 2480[label="vwx25/Right vwx250",fontsize=10,color="white",style="solid",shape="box"];1077 -> 2480[label="",style="solid", color="burlywood", weight=9]; 2480 -> 1219[label="",style="solid", color="burlywood", weight=3]; 1078[label="Right vwx230 <= vwx25",fontsize=16,color="burlywood",shape="box"];2481[label="vwx25/Left vwx250",fontsize=10,color="white",style="solid",shape="box"];1078 -> 2481[label="",style="solid", color="burlywood", weight=9]; 2481 -> 1220[label="",style="solid", color="burlywood", weight=3]; 2482[label="vwx25/Right vwx250",fontsize=10,color="white",style="solid",shape="box"];1078 -> 2482[label="",style="solid", color="burlywood", weight=9]; 2482 -> 1221[label="",style="solid", color="burlywood", weight=3]; 1079[label="False <= vwx25",fontsize=16,color="burlywood",shape="box"];2483[label="vwx25/False",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2483[label="",style="solid", color="burlywood", weight=9]; 2483 -> 1222[label="",style="solid", color="burlywood", weight=3]; 2484[label="vwx25/True",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2484[label="",style="solid", color="burlywood", weight=9]; 2484 -> 1223[label="",style="solid", color="burlywood", weight=3]; 1080[label="True <= vwx25",fontsize=16,color="burlywood",shape="box"];2485[label="vwx25/False",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2485[label="",style="solid", color="burlywood", weight=9]; 2485 -> 1224[label="",style="solid", color="burlywood", weight=3]; 2486[label="vwx25/True",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2486[label="",style="solid", color="burlywood", weight=9]; 2486 -> 1225[label="",style="solid", color="burlywood", weight=3]; 1081[label="compare vwx23 vwx25 /= GT",fontsize=16,color="black",shape="box"];1081 -> 1226[label="",style="solid", color="black", weight=3]; 1082[label="compare vwx23 vwx25 /= GT",fontsize=16,color="black",shape="box"];1082 -> 1227[label="",style="solid", color="black", weight=3]; 1083[label="(vwx230,vwx231) <= vwx25",fontsize=16,color="burlywood",shape="box"];2487[label="vwx25/(vwx250,vwx251)",fontsize=10,color="white",style="solid",shape="box"];1083 -> 2487[label="",style="solid", color="burlywood", weight=9]; 2487 -> 1228[label="",style="solid", color="burlywood", weight=3]; 1084[label="LT <= vwx25",fontsize=16,color="burlywood",shape="box"];2488[label="vwx25/LT",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2488[label="",style="solid", color="burlywood", weight=9]; 2488 -> 1229[label="",style="solid", color="burlywood", weight=3]; 2489[label="vwx25/EQ",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2489[label="",style="solid", color="burlywood", weight=9]; 2489 -> 1230[label="",style="solid", color="burlywood", weight=3]; 2490[label="vwx25/GT",fontsize=10,color="white",style="solid",shape="box"];1084 -> 2490[label="",style="solid", color="burlywood", weight=9]; 2490 -> 1231[label="",style="solid", color="burlywood", weight=3]; 1085[label="EQ <= vwx25",fontsize=16,color="burlywood",shape="box"];2491[label="vwx25/LT",fontsize=10,color="white",style="solid",shape="box"];1085 -> 2491[label="",style="solid", color="burlywood", weight=9]; 2491 -> 1232[label="",style="solid", color="burlywood", weight=3]; 2492[label="vwx25/EQ",fontsize=10,color="white",style="solid",shape="box"];1085 -> 2492[label="",style="solid", color="burlywood", weight=9]; 2492 -> 1233[label="",style="solid", color="burlywood", weight=3]; 2493[label="vwx25/GT",fontsize=10,color="white",style="solid",shape="box"];1085 -> 2493[label="",style="solid", color="burlywood", weight=9]; 2493 -> 1234[label="",style="solid", color="burlywood", weight=3]; 1086[label="GT <= vwx25",fontsize=16,color="burlywood",shape="box"];2494[label="vwx25/LT",fontsize=10,color="white",style="solid",shape="box"];1086 -> 2494[label="",style="solid", color="burlywood", weight=9]; 2494 -> 1235[label="",style="solid", color="burlywood", weight=3]; 2495[label="vwx25/EQ",fontsize=10,color="white",style="solid",shape="box"];1086 -> 2495[label="",style="solid", color="burlywood", weight=9]; 2495 -> 1236[label="",style="solid", color="burlywood", weight=3]; 2496[label="vwx25/GT",fontsize=10,color="white",style="solid",shape="box"];1086 -> 2496[label="",style="solid", color="burlywood", weight=9]; 2496 -> 1237[label="",style="solid", color="burlywood", weight=3]; 1087[label="compare vwx23 vwx25 /= GT",fontsize=16,color="black",shape="box"];1087 -> 1238[label="",style="solid", color="black", weight=3]; 1088[label="compare vwx23 vwx25 /= GT",fontsize=16,color="black",shape="box"];1088 -> 1239[label="",style="solid", color="black", weight=3]; 1089[label="(vwx230,vwx231,vwx232) <= vwx25",fontsize=16,color="burlywood",shape="box"];2497[label="vwx25/(vwx250,vwx251,vwx252)",fontsize=10,color="white",style="solid",shape="box"];1089 -> 2497[label="",style="solid", color="burlywood", weight=9]; 2497 -> 1240[label="",style="solid", color="burlywood", weight=3]; 1090[label="compare vwx23 vwx25 /= GT",fontsize=16,color="black",shape="box"];1090 -> 1241[label="",style="solid", color="black", weight=3]; 1091[label="Nothing <= vwx25",fontsize=16,color="burlywood",shape="box"];2498[label="vwx25/Nothing",fontsize=10,color="white",style="solid",shape="box"];1091 -> 2498[label="",style="solid", color="burlywood", weight=9]; 2498 -> 1242[label="",style="solid", color="burlywood", weight=3]; 2499[label="vwx25/Just vwx250",fontsize=10,color="white",style="solid",shape="box"];1091 -> 2499[label="",style="solid", color="burlywood", weight=9]; 2499 -> 1243[label="",style="solid", color="burlywood", weight=3]; 1092[label="Just vwx230 <= vwx25",fontsize=16,color="burlywood",shape="box"];2500[label="vwx25/Nothing",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2500[label="",style="solid", color="burlywood", weight=9]; 2500 -> 1244[label="",style="solid", color="burlywood", weight=3]; 2501[label="vwx25/Just vwx250",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2501[label="",style="solid", color="burlywood", weight=9]; 2501 -> 1245[label="",style="solid", color="burlywood", weight=3]; 1093[label="compare vwx23 vwx25 /= GT",fontsize=16,color="black",shape="box"];1093 -> 1246[label="",style="solid", color="black", weight=3]; 1094[label="compare vwx23 vwx25 /= GT",fontsize=16,color="black",shape="box"];1094 -> 1247[label="",style="solid", color="black", weight=3]; 1095[label="vwx22",fontsize=16,color="green",shape="box"];1096[label="vwx24",fontsize=16,color="green",shape="box"];1097[label="vwx22",fontsize=16,color="green",shape="box"];1098[label="vwx24",fontsize=16,color="green",shape="box"];1099[label="vwx22",fontsize=16,color="green",shape="box"];1100[label="vwx24",fontsize=16,color="green",shape="box"];1101[label="vwx22",fontsize=16,color="green",shape="box"];1102[label="vwx24",fontsize=16,color="green",shape="box"];1103[label="vwx22",fontsize=16,color="green",shape="box"];1104[label="vwx24",fontsize=16,color="green",shape="box"];1105[label="vwx22",fontsize=16,color="green",shape="box"];1106[label="vwx24",fontsize=16,color="green",shape="box"];1107[label="vwx22",fontsize=16,color="green",shape="box"];1108[label="vwx24",fontsize=16,color="green",shape="box"];1109[label="vwx22",fontsize=16,color="green",shape="box"];1110[label="vwx24",fontsize=16,color="green",shape="box"];1111[label="vwx22",fontsize=16,color="green",shape="box"];1112[label="vwx24",fontsize=16,color="green",shape="box"];1113[label="vwx22",fontsize=16,color="green",shape="box"];1114[label="vwx24",fontsize=16,color="green",shape="box"];1115[label="vwx22",fontsize=16,color="green",shape="box"];1116[label="vwx24",fontsize=16,color="green",shape="box"];1117[label="vwx22",fontsize=16,color="green",shape="box"];1118[label="vwx24",fontsize=16,color="green",shape="box"];1119[label="vwx22",fontsize=16,color="green",shape="box"];1120[label="vwx24",fontsize=16,color="green",shape="box"];1121[label="vwx22",fontsize=16,color="green",shape="box"];1122[label="vwx24",fontsize=16,color="green",shape="box"];1123[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1123 -> 1248[label="",style="solid", color="black", weight=3]; 1124[label="LT",fontsize=16,color="green",shape="box"];1125[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1125 -> 1249[label="",style="solid", color="black", weight=3]; 1126[label="LT",fontsize=16,color="green",shape="box"];1127[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1127 -> 1250[label="",style="solid", color="black", weight=3]; 1128[label="LT",fontsize=16,color="green",shape="box"];1129[label="compare vwx22 vwx24",fontsize=16,color="burlywood",shape="triangle"];2502[label="vwx22/()",fontsize=10,color="white",style="solid",shape="box"];1129 -> 2502[label="",style="solid", color="burlywood", weight=9]; 2502 -> 1251[label="",style="solid", color="burlywood", weight=3]; 1130[label="LT",fontsize=16,color="green",shape="box"];1131[label="compare vwx22 vwx24",fontsize=16,color="burlywood",shape="triangle"];2503[label="vwx22/Integer vwx220",fontsize=10,color="white",style="solid",shape="box"];1131 -> 2503[label="",style="solid", color="burlywood", weight=9]; 2503 -> 1252[label="",style="solid", color="burlywood", weight=3]; 1132[label="LT",fontsize=16,color="green",shape="box"];1133 -> 4[label="",style="dashed", color="red", weight=0]; 1133[label="compare vwx22 vwx24",fontsize=16,color="magenta"];1133 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1134[label="LT",fontsize=16,color="green",shape="box"];1135[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1135 -> 1255[label="",style="solid", color="black", weight=3]; 1136[label="LT",fontsize=16,color="green",shape="box"];1137[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1137 -> 1256[label="",style="solid", color="black", weight=3]; 1138[label="LT",fontsize=16,color="green",shape="box"];1139[label="compare vwx22 vwx24",fontsize=16,color="burlywood",shape="triangle"];2504[label="vwx22/vwx220 :% vwx221",fontsize=10,color="white",style="solid",shape="box"];1139 -> 2504[label="",style="solid", color="burlywood", weight=9]; 2504 -> 1257[label="",style="solid", color="burlywood", weight=3]; 1140[label="LT",fontsize=16,color="green",shape="box"];1141[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1141 -> 1258[label="",style="solid", color="black", weight=3]; 1142[label="LT",fontsize=16,color="green",shape="box"];1143[label="compare vwx22 vwx24",fontsize=16,color="burlywood",shape="triangle"];2505[label="vwx22/vwx220 : vwx221",fontsize=10,color="white",style="solid",shape="box"];1143 -> 2505[label="",style="solid", color="burlywood", weight=9]; 2505 -> 1259[label="",style="solid", color="burlywood", weight=3]; 2506[label="vwx22/[]",fontsize=10,color="white",style="solid",shape="box"];1143 -> 2506[label="",style="solid", color="burlywood", weight=9]; 2506 -> 1260[label="",style="solid", color="burlywood", weight=3]; 1144[label="LT",fontsize=16,color="green",shape="box"];1145[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1145 -> 1261[label="",style="solid", color="black", weight=3]; 1146[label="LT",fontsize=16,color="green",shape="box"];1147[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1147 -> 1262[label="",style="solid", color="black", weight=3]; 1148[label="LT",fontsize=16,color="green",shape="box"];1149[label="compare vwx22 vwx24",fontsize=16,color="black",shape="triangle"];1149 -> 1263[label="",style="solid", color="black", weight=3]; 1150[label="LT",fontsize=16,color="green",shape="box"];1151[label="vwx3100",fontsize=16,color="green",shape="box"];1152[label="vwx4100",fontsize=16,color="green",shape="box"];1153[label="vwx3100",fontsize=16,color="green",shape="box"];1154[label="vwx4100",fontsize=16,color="green",shape="box"];1155[label="primMulInt (Pos vwx3100) vwx411",fontsize=16,color="burlywood",shape="box"];2507[label="vwx411/Pos vwx4110",fontsize=10,color="white",style="solid",shape="box"];1155 -> 2507[label="",style="solid", color="burlywood", weight=9]; 2507 -> 1264[label="",style="solid", color="burlywood", weight=3]; 2508[label="vwx411/Neg vwx4110",fontsize=10,color="white",style="solid",shape="box"];1155 -> 2508[label="",style="solid", color="burlywood", weight=9]; 2508 -> 1265[label="",style="solid", color="burlywood", weight=3]; 1156[label="primMulInt (Neg vwx3100) vwx411",fontsize=16,color="burlywood",shape="box"];2509[label="vwx411/Pos vwx4110",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2509[label="",style="solid", color="burlywood", weight=9]; 2509 -> 1266[label="",style="solid", color="burlywood", weight=3]; 2510[label="vwx411/Neg vwx4110",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2510[label="",style="solid", color="burlywood", weight=9]; 2510 -> 1267[label="",style="solid", color="burlywood", weight=3]; 1157[label="vwx312",fontsize=16,color="green",shape="box"];1158[label="vwx412",fontsize=16,color="green",shape="box"];1159[label="vwx312",fontsize=16,color="green",shape="box"];1160[label="vwx412",fontsize=16,color="green",shape="box"];1161[label="vwx312",fontsize=16,color="green",shape="box"];1162[label="vwx412",fontsize=16,color="green",shape="box"];1163[label="vwx312",fontsize=16,color="green",shape="box"];1164[label="vwx412",fontsize=16,color="green",shape="box"];1165[label="vwx312",fontsize=16,color="green",shape="box"];1166[label="vwx412",fontsize=16,color="green",shape="box"];1167[label="vwx312",fontsize=16,color="green",shape="box"];1168[label="vwx412",fontsize=16,color="green",shape="box"];1169[label="vwx312",fontsize=16,color="green",shape="box"];1170[label="vwx412",fontsize=16,color="green",shape="box"];1171[label="vwx312",fontsize=16,color="green",shape="box"];1172[label="vwx412",fontsize=16,color="green",shape="box"];1173[label="vwx312",fontsize=16,color="green",shape="box"];1174[label="vwx412",fontsize=16,color="green",shape="box"];1175[label="vwx312",fontsize=16,color="green",shape="box"];1176[label="vwx412",fontsize=16,color="green",shape="box"];1177[label="vwx312",fontsize=16,color="green",shape="box"];1178[label="vwx412",fontsize=16,color="green",shape="box"];1179[label="vwx312",fontsize=16,color="green",shape="box"];1180[label="vwx412",fontsize=16,color="green",shape="box"];1181[label="vwx312",fontsize=16,color="green",shape="box"];1182[label="vwx412",fontsize=16,color="green",shape="box"];1183[label="vwx312",fontsize=16,color="green",shape="box"];1184[label="vwx412",fontsize=16,color="green",shape="box"];1185[label="vwx311",fontsize=16,color="green",shape="box"];1186[label="vwx411",fontsize=16,color="green",shape="box"];1187[label="vwx311",fontsize=16,color="green",shape="box"];1188[label="vwx411",fontsize=16,color="green",shape="box"];1189[label="vwx311",fontsize=16,color="green",shape="box"];1190[label="vwx411",fontsize=16,color="green",shape="box"];1191[label="vwx311",fontsize=16,color="green",shape="box"];1192[label="vwx411",fontsize=16,color="green",shape="box"];1193[label="vwx311",fontsize=16,color="green",shape="box"];1194[label="vwx411",fontsize=16,color="green",shape="box"];1195[label="vwx311",fontsize=16,color="green",shape="box"];1196[label="vwx411",fontsize=16,color="green",shape="box"];1197[label="vwx311",fontsize=16,color="green",shape="box"];1198[label="vwx411",fontsize=16,color="green",shape="box"];1199[label="vwx311",fontsize=16,color="green",shape="box"];1200[label="vwx411",fontsize=16,color="green",shape="box"];1201[label="vwx311",fontsize=16,color="green",shape="box"];1202[label="vwx411",fontsize=16,color="green",shape="box"];1203[label="vwx311",fontsize=16,color="green",shape="box"];1204[label="vwx411",fontsize=16,color="green",shape="box"];1205[label="vwx311",fontsize=16,color="green",shape="box"];1206[label="vwx411",fontsize=16,color="green",shape="box"];1207[label="vwx311",fontsize=16,color="green",shape="box"];1208[label="vwx411",fontsize=16,color="green",shape="box"];1209[label="vwx311",fontsize=16,color="green",shape="box"];1210[label="vwx411",fontsize=16,color="green",shape="box"];1211[label="vwx311",fontsize=16,color="green",shape="box"];1212[label="vwx411",fontsize=16,color="green",shape="box"];1213 -> 663[label="",style="dashed", color="red", weight=0]; 1213[label="primEqNat vwx3100 vwx4100",fontsize=16,color="magenta"];1213 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1214[label="False",fontsize=16,color="green",shape="box"];1215[label="False",fontsize=16,color="green",shape="box"];1216[label="True",fontsize=16,color="green",shape="box"];1217 -> 1270[label="",style="dashed", color="red", weight=0]; 1217[label="not (compare vwx23 vwx25 == GT)",fontsize=16,color="magenta"];1217 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1218[label="Left vwx230 <= Left vwx250",fontsize=16,color="black",shape="box"];1218 -> 1279[label="",style="solid", color="black", weight=3]; 1219[label="Left vwx230 <= Right vwx250",fontsize=16,color="black",shape="box"];1219 -> 1280[label="",style="solid", color="black", weight=3]; 1220[label="Right vwx230 <= Left vwx250",fontsize=16,color="black",shape="box"];1220 -> 1281[label="",style="solid", color="black", weight=3]; 1221[label="Right vwx230 <= Right vwx250",fontsize=16,color="black",shape="box"];1221 -> 1282[label="",style="solid", color="black", weight=3]; 1222[label="False <= False",fontsize=16,color="black",shape="box"];1222 -> 1283[label="",style="solid", color="black", weight=3]; 1223[label="False <= True",fontsize=16,color="black",shape="box"];1223 -> 1284[label="",style="solid", color="black", weight=3]; 1224[label="True <= False",fontsize=16,color="black",shape="box"];1224 -> 1285[label="",style="solid", color="black", weight=3]; 1225[label="True <= True",fontsize=16,color="black",shape="box"];1225 -> 1286[label="",style="solid", color="black", weight=3]; 1226 -> 1270[label="",style="dashed", color="red", weight=0]; 1226[label="not (compare vwx23 vwx25 == GT)",fontsize=16,color="magenta"];1226 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1270[label="",style="dashed", color="red", weight=0]; 1227[label="not (compare vwx23 vwx25 == GT)",fontsize=16,color="magenta"];1227 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1228[label="(vwx230,vwx231) <= (vwx250,vwx251)",fontsize=16,color="black",shape="box"];1228 -> 1287[label="",style="solid", color="black", weight=3]; 1229[label="LT <= LT",fontsize=16,color="black",shape="box"];1229 -> 1288[label="",style="solid", color="black", weight=3]; 1230[label="LT <= EQ",fontsize=16,color="black",shape="box"];1230 -> 1289[label="",style="solid", color="black", weight=3]; 1231[label="LT <= GT",fontsize=16,color="black",shape="box"];1231 -> 1290[label="",style="solid", color="black", weight=3]; 1232[label="EQ <= LT",fontsize=16,color="black",shape="box"];1232 -> 1291[label="",style="solid", color="black", weight=3]; 1233[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1233 -> 1292[label="",style="solid", color="black", weight=3]; 1234[label="EQ <= GT",fontsize=16,color="black",shape="box"];1234 -> 1293[label="",style="solid", color="black", weight=3]; 1235[label="GT <= LT",fontsize=16,color="black",shape="box"];1235 -> 1294[label="",style="solid", color="black", weight=3]; 1236[label="GT <= EQ",fontsize=16,color="black",shape="box"];1236 -> 1295[label="",style="solid", color="black", weight=3]; 1237[label="GT <= GT",fontsize=16,color="black",shape="box"];1237 -> 1296[label="",style="solid", color="black", weight=3]; 1238 -> 1270[label="",style="dashed", color="red", weight=0]; 1238[label="not (compare vwx23 vwx25 == GT)",fontsize=16,color="magenta"];1238 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1270[label="",style="dashed", color="red", weight=0]; 1239[label="not (compare vwx23 vwx25 == GT)",fontsize=16,color="magenta"];1239 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1240[label="(vwx230,vwx231,vwx232) <= (vwx250,vwx251,vwx252)",fontsize=16,color="black",shape="box"];1240 -> 1297[label="",style="solid", color="black", weight=3]; 1241 -> 1270[label="",style="dashed", color="red", weight=0]; 1241[label="not (compare vwx23 vwx25 == GT)",fontsize=16,color="magenta"];1241 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1242[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1242 -> 1298[label="",style="solid", color="black", weight=3]; 1243[label="Nothing <= Just vwx250",fontsize=16,color="black",shape="box"];1243 -> 1299[label="",style="solid", color="black", weight=3]; 1244[label="Just vwx230 <= Nothing",fontsize=16,color="black",shape="box"];1244 -> 1300[label="",style="solid", color="black", weight=3]; 1245[label="Just vwx230 <= Just vwx250",fontsize=16,color="black",shape="box"];1245 -> 1301[label="",style="solid", color="black", weight=3]; 1246 -> 1270[label="",style="dashed", color="red", weight=0]; 1246[label="not (compare vwx23 vwx25 == GT)",fontsize=16,color="magenta"];1246 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1270[label="",style="dashed", color="red", weight=0]; 1247[label="not (compare vwx23 vwx25 == GT)",fontsize=16,color="magenta"];1247 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1248[label="primCmpInt vwx22 vwx24",fontsize=16,color="burlywood",shape="triangle"];2511[label="vwx22/Pos vwx220",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2511[label="",style="solid", color="burlywood", weight=9]; 2511 -> 1302[label="",style="solid", color="burlywood", weight=3]; 2512[label="vwx22/Neg vwx220",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2512[label="",style="solid", color="burlywood", weight=9]; 2512 -> 1303[label="",style="solid", color="burlywood", weight=3]; 1249[label="compare3 vwx22 vwx24",fontsize=16,color="black",shape="box"];1249 -> 1304[label="",style="solid", color="black", weight=3]; 1250[label="compare3 vwx22 vwx24",fontsize=16,color="black",shape="box"];1250 -> 1305[label="",style="solid", color="black", weight=3]; 1251[label="compare () vwx24",fontsize=16,color="burlywood",shape="box"];2513[label="vwx24/()",fontsize=10,color="white",style="solid",shape="box"];1251 -> 2513[label="",style="solid", color="burlywood", weight=9]; 2513 -> 1306[label="",style="solid", color="burlywood", weight=3]; 1252[label="compare (Integer vwx220) vwx24",fontsize=16,color="burlywood",shape="box"];2514[label="vwx24/Integer vwx240",fontsize=10,color="white",style="solid",shape="box"];1252 -> 2514[label="",style="solid", color="burlywood", weight=9]; 2514 -> 1307[label="",style="solid", color="burlywood", weight=3]; 1253[label="vwx22",fontsize=16,color="green",shape="box"];1254[label="vwx24",fontsize=16,color="green",shape="box"];1255[label="compare3 vwx22 vwx24",fontsize=16,color="black",shape="box"];1255 -> 1308[label="",style="solid", color="black", weight=3]; 1256[label="primCmpChar vwx22 vwx24",fontsize=16,color="burlywood",shape="box"];2515[label="vwx22/Char vwx220",fontsize=10,color="white",style="solid",shape="box"];1256 -> 2515[label="",style="solid", color="burlywood", weight=9]; 2515 -> 1309[label="",style="solid", color="burlywood", weight=3]; 1257[label="compare (vwx220 :% vwx221) vwx24",fontsize=16,color="burlywood",shape="box"];2516[label="vwx24/vwx240 :% vwx241",fontsize=10,color="white",style="solid",shape="box"];1257 -> 2516[label="",style="solid", color="burlywood", weight=9]; 2516 -> 1310[label="",style="solid", color="burlywood", weight=3]; 1258[label="compare3 vwx22 vwx24",fontsize=16,color="black",shape="box"];1258 -> 1311[label="",style="solid", color="black", weight=3]; 1259[label="compare (vwx220 : vwx221) vwx24",fontsize=16,color="burlywood",shape="box"];2517[label="vwx24/vwx240 : vwx241",fontsize=10,color="white",style="solid",shape="box"];1259 -> 2517[label="",style="solid", color="burlywood", weight=9]; 2517 -> 1312[label="",style="solid", color="burlywood", weight=3]; 2518[label="vwx24/[]",fontsize=10,color="white",style="solid",shape="box"];1259 -> 2518[label="",style="solid", color="burlywood", weight=9]; 2518 -> 1313[label="",style="solid", color="burlywood", weight=3]; 1260[label="compare [] vwx24",fontsize=16,color="burlywood",shape="box"];2519[label="vwx24/vwx240 : vwx241",fontsize=10,color="white",style="solid",shape="box"];1260 -> 2519[label="",style="solid", color="burlywood", weight=9]; 2519 -> 1314[label="",style="solid", color="burlywood", weight=3]; 2520[label="vwx24/[]",fontsize=10,color="white",style="solid",shape="box"];1260 -> 2520[label="",style="solid", color="burlywood", weight=9]; 2520 -> 1315[label="",style="solid", color="burlywood", weight=3]; 1261[label="compare3 vwx22 vwx24",fontsize=16,color="black",shape="box"];1261 -> 1316[label="",style="solid", color="black", weight=3]; 1262[label="primCmpDouble vwx22 vwx24",fontsize=16,color="burlywood",shape="box"];2521[label="vwx22/Double vwx220 vwx221",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2521[label="",style="solid", color="burlywood", weight=9]; 2521 -> 1317[label="",style="solid", color="burlywood", weight=3]; 1263[label="primCmpFloat vwx22 vwx24",fontsize=16,color="burlywood",shape="box"];2522[label="vwx22/Float vwx220 vwx221",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2522[label="",style="solid", color="burlywood", weight=9]; 2522 -> 1318[label="",style="solid", color="burlywood", weight=3]; 1264[label="primMulInt (Pos vwx3100) (Pos vwx4110)",fontsize=16,color="black",shape="box"];1264 -> 1319[label="",style="solid", color="black", weight=3]; 1265[label="primMulInt (Pos vwx3100) (Neg vwx4110)",fontsize=16,color="black",shape="box"];1265 -> 1320[label="",style="solid", color="black", weight=3]; 1266[label="primMulInt (Neg vwx3100) (Pos vwx4110)",fontsize=16,color="black",shape="box"];1266 -> 1321[label="",style="solid", color="black", weight=3]; 1267[label="primMulInt (Neg vwx3100) (Neg vwx4110)",fontsize=16,color="black",shape="box"];1267 -> 1322[label="",style="solid", color="black", weight=3]; 1268[label="vwx3100",fontsize=16,color="green",shape="box"];1269[label="vwx4100",fontsize=16,color="green",shape="box"];1271 -> 391[label="",style="dashed", color="red", weight=0]; 1271[label="compare vwx23 vwx25 == GT",fontsize=16,color="magenta"];1271 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1270[label="not vwx58",fontsize=16,color="burlywood",shape="triangle"];2523[label="vwx58/False",fontsize=10,color="white",style="solid",shape="box"];1270 -> 2523[label="",style="solid", color="burlywood", weight=9]; 2523 -> 1325[label="",style="solid", color="burlywood", weight=3]; 2524[label="vwx58/True",fontsize=10,color="white",style="solid",shape="box"];1270 -> 2524[label="",style="solid", color="burlywood", weight=9]; 2524 -> 1326[label="",style="solid", color="burlywood", weight=3]; 1279[label="vwx230 <= vwx250",fontsize=16,color="blue",shape="box"];2525[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2525[label="",style="solid", color="blue", weight=9]; 2525 -> 1341[label="",style="solid", color="blue", weight=3]; 2526[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2526[label="",style="solid", color="blue", weight=9]; 2526 -> 1342[label="",style="solid", color="blue", weight=3]; 2527[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2527[label="",style="solid", color="blue", weight=9]; 2527 -> 1343[label="",style="solid", color="blue", weight=3]; 2528[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2528[label="",style="solid", color="blue", weight=9]; 2528 -> 1344[label="",style="solid", color="blue", weight=3]; 2529[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2529[label="",style="solid", color="blue", weight=9]; 2529 -> 1345[label="",style="solid", color="blue", weight=3]; 2530[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2530[label="",style="solid", color="blue", weight=9]; 2530 -> 1346[label="",style="solid", color="blue", weight=3]; 2531[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2531[label="",style="solid", color="blue", weight=9]; 2531 -> 1347[label="",style="solid", color="blue", weight=3]; 2532[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2532[label="",style="solid", color="blue", weight=9]; 2532 -> 1348[label="",style="solid", color="blue", weight=3]; 2533[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2533[label="",style="solid", color="blue", weight=9]; 2533 -> 1349[label="",style="solid", color="blue", weight=3]; 2534[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2534[label="",style="solid", color="blue", weight=9]; 2534 -> 1350[label="",style="solid", color="blue", weight=3]; 2535[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2535[label="",style="solid", color="blue", weight=9]; 2535 -> 1351[label="",style="solid", color="blue", weight=3]; 2536[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2536[label="",style="solid", color="blue", weight=9]; 2536 -> 1352[label="",style="solid", color="blue", weight=3]; 2537[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2537[label="",style="solid", color="blue", weight=9]; 2537 -> 1353[label="",style="solid", color="blue", weight=3]; 2538[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 2538[label="",style="solid", color="blue", weight=9]; 2538 -> 1354[label="",style="solid", color="blue", weight=3]; 1280[label="True",fontsize=16,color="green",shape="box"];1281[label="False",fontsize=16,color="green",shape="box"];1282[label="vwx230 <= vwx250",fontsize=16,color="blue",shape="box"];2539[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2539[label="",style="solid", color="blue", weight=9]; 2539 -> 1355[label="",style="solid", color="blue", weight=3]; 2540[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2540[label="",style="solid", color="blue", weight=9]; 2540 -> 1356[label="",style="solid", color="blue", weight=3]; 2541[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2541[label="",style="solid", color="blue", weight=9]; 2541 -> 1357[label="",style="solid", color="blue", weight=3]; 2542[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2542[label="",style="solid", color="blue", weight=9]; 2542 -> 1358[label="",style="solid", color="blue", weight=3]; 2543[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2543[label="",style="solid", color="blue", weight=9]; 2543 -> 1359[label="",style="solid", color="blue", weight=3]; 2544[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2544[label="",style="solid", color="blue", weight=9]; 2544 -> 1360[label="",style="solid", color="blue", weight=3]; 2545[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2545[label="",style="solid", color="blue", weight=9]; 2545 -> 1361[label="",style="solid", color="blue", weight=3]; 2546[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2546[label="",style="solid", color="blue", weight=9]; 2546 -> 1362[label="",style="solid", color="blue", weight=3]; 2547[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2547[label="",style="solid", color="blue", weight=9]; 2547 -> 1363[label="",style="solid", color="blue", weight=3]; 2548[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2548[label="",style="solid", color="blue", weight=9]; 2548 -> 1364[label="",style="solid", color="blue", weight=3]; 2549[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2549[label="",style="solid", color="blue", weight=9]; 2549 -> 1365[label="",style="solid", color="blue", weight=3]; 2550[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2550[label="",style="solid", color="blue", weight=9]; 2550 -> 1366[label="",style="solid", color="blue", weight=3]; 2551[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2551[label="",style="solid", color="blue", weight=9]; 2551 -> 1367[label="",style="solid", color="blue", weight=3]; 2552[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1282 -> 2552[label="",style="solid", color="blue", weight=9]; 2552 -> 1368[label="",style="solid", color="blue", weight=3]; 1283[label="True",fontsize=16,color="green",shape="box"];1284[label="True",fontsize=16,color="green",shape="box"];1285[label="False",fontsize=16,color="green",shape="box"];1286[label="True",fontsize=16,color="green",shape="box"];1272 -> 391[label="",style="dashed", color="red", weight=0]; 1272[label="compare vwx23 vwx25 == GT",fontsize=16,color="magenta"];1272 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1273 -> 391[label="",style="dashed", color="red", weight=0]; 1273[label="compare vwx23 vwx25 == GT",fontsize=16,color="magenta"];1273 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1287 -> 668[label="",style="dashed", color="red", weight=0]; 1287[label="vwx230 < vwx250 || vwx230 == vwx250 && vwx231 <= vwx251",fontsize=16,color="magenta"];1287 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1287 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1288[label="True",fontsize=16,color="green",shape="box"];1289[label="True",fontsize=16,color="green",shape="box"];1290[label="True",fontsize=16,color="green",shape="box"];1291[label="False",fontsize=16,color="green",shape="box"];1292[label="True",fontsize=16,color="green",shape="box"];1293[label="True",fontsize=16,color="green",shape="box"];1294[label="False",fontsize=16,color="green",shape="box"];1295[label="False",fontsize=16,color="green",shape="box"];1296[label="True",fontsize=16,color="green",shape="box"];1274 -> 391[label="",style="dashed", color="red", weight=0]; 1274[label="compare vwx23 vwx25 == GT",fontsize=16,color="magenta"];1274 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1275 -> 391[label="",style="dashed", color="red", weight=0]; 1275[label="compare vwx23 vwx25 == GT",fontsize=16,color="magenta"];1275 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1297 -> 668[label="",style="dashed", color="red", weight=0]; 1297[label="vwx230 < vwx250 || vwx230 == vwx250 && (vwx231 < vwx251 || vwx231 == vwx251 && vwx232 <= vwx252)",fontsize=16,color="magenta"];1297 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1276 -> 391[label="",style="dashed", color="red", weight=0]; 1276[label="compare vwx23 vwx25 == GT",fontsize=16,color="magenta"];1276 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1298[label="True",fontsize=16,color="green",shape="box"];1299[label="True",fontsize=16,color="green",shape="box"];1300[label="False",fontsize=16,color="green",shape="box"];1301[label="vwx230 <= vwx250",fontsize=16,color="blue",shape="box"];2553[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2553[label="",style="solid", color="blue", weight=9]; 2553 -> 1373[label="",style="solid", color="blue", weight=3]; 2554[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2554[label="",style="solid", color="blue", weight=9]; 2554 -> 1374[label="",style="solid", color="blue", weight=3]; 2555[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2555[label="",style="solid", color="blue", weight=9]; 2555 -> 1375[label="",style="solid", color="blue", weight=3]; 2556[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2556[label="",style="solid", color="blue", weight=9]; 2556 -> 1376[label="",style="solid", color="blue", weight=3]; 2557[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2557[label="",style="solid", color="blue", weight=9]; 2557 -> 1377[label="",style="solid", color="blue", weight=3]; 2558[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2558[label="",style="solid", color="blue", weight=9]; 2558 -> 1378[label="",style="solid", color="blue", weight=3]; 2559[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2559[label="",style="solid", color="blue", weight=9]; 2559 -> 1379[label="",style="solid", color="blue", weight=3]; 2560[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2560[label="",style="solid", color="blue", weight=9]; 2560 -> 1380[label="",style="solid", color="blue", weight=3]; 2561[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2561[label="",style="solid", color="blue", weight=9]; 2561 -> 1381[label="",style="solid", color="blue", weight=3]; 2562[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2562[label="",style="solid", color="blue", weight=9]; 2562 -> 1382[label="",style="solid", color="blue", weight=3]; 2563[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2563[label="",style="solid", color="blue", weight=9]; 2563 -> 1383[label="",style="solid", color="blue", weight=3]; 2564[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2564[label="",style="solid", color="blue", weight=9]; 2564 -> 1384[label="",style="solid", color="blue", weight=3]; 2565[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2565[label="",style="solid", color="blue", weight=9]; 2565 -> 1385[label="",style="solid", color="blue", weight=3]; 2566[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2566[label="",style="solid", color="blue", weight=9]; 2566 -> 1386[label="",style="solid", color="blue", weight=3]; 1277 -> 391[label="",style="dashed", color="red", weight=0]; 1277[label="compare vwx23 vwx25 == GT",fontsize=16,color="magenta"];1277 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1278 -> 391[label="",style="dashed", color="red", weight=0]; 1278[label="compare vwx23 vwx25 == GT",fontsize=16,color="magenta"];1278 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1302[label="primCmpInt (Pos vwx220) vwx24",fontsize=16,color="burlywood",shape="box"];2567[label="vwx220/Succ vwx2200",fontsize=10,color="white",style="solid",shape="box"];1302 -> 2567[label="",style="solid", color="burlywood", weight=9]; 2567 -> 1387[label="",style="solid", color="burlywood", weight=3]; 2568[label="vwx220/Zero",fontsize=10,color="white",style="solid",shape="box"];1302 -> 2568[label="",style="solid", color="burlywood", weight=9]; 2568 -> 1388[label="",style="solid", color="burlywood", weight=3]; 1303[label="primCmpInt (Neg vwx220) vwx24",fontsize=16,color="burlywood",shape="box"];2569[label="vwx220/Succ vwx2200",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2569[label="",style="solid", color="burlywood", weight=9]; 2569 -> 1389[label="",style="solid", color="burlywood", weight=3]; 2570[label="vwx220/Zero",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2570[label="",style="solid", color="burlywood", weight=9]; 2570 -> 1390[label="",style="solid", color="burlywood", weight=3]; 1304 -> 1391[label="",style="dashed", color="red", weight=0]; 1304[label="compare2 vwx22 vwx24 (vwx22 == vwx24)",fontsize=16,color="magenta"];1304 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1393[label="",style="dashed", color="red", weight=0]; 1305[label="compare2 vwx22 vwx24 (vwx22 == vwx24)",fontsize=16,color="magenta"];1305 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1306[label="compare () ()",fontsize=16,color="black",shape="box"];1306 -> 1395[label="",style="solid", color="black", weight=3]; 1307[label="compare (Integer vwx220) (Integer vwx240)",fontsize=16,color="black",shape="box"];1307 -> 1396[label="",style="solid", color="black", weight=3]; 1308 -> 1397[label="",style="dashed", color="red", weight=0]; 1308[label="compare2 vwx22 vwx24 (vwx22 == vwx24)",fontsize=16,color="magenta"];1308 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1309[label="primCmpChar (Char vwx220) vwx24",fontsize=16,color="burlywood",shape="box"];2571[label="vwx24/Char vwx240",fontsize=10,color="white",style="solid",shape="box"];1309 -> 2571[label="",style="solid", color="burlywood", weight=9]; 2571 -> 1399[label="",style="solid", color="burlywood", weight=3]; 1310[label="compare (vwx220 :% vwx221) (vwx240 :% vwx241)",fontsize=16,color="black",shape="box"];1310 -> 1400[label="",style="solid", color="black", weight=3]; 1311 -> 1401[label="",style="dashed", color="red", weight=0]; 1311[label="compare2 vwx22 vwx24 (vwx22 == vwx24)",fontsize=16,color="magenta"];1311 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1312[label="compare (vwx220 : vwx221) (vwx240 : vwx241)",fontsize=16,color="black",shape="box"];1312 -> 1403[label="",style="solid", color="black", weight=3]; 1313[label="compare (vwx220 : vwx221) []",fontsize=16,color="black",shape="box"];1313 -> 1404[label="",style="solid", color="black", weight=3]; 1314[label="compare [] (vwx240 : vwx241)",fontsize=16,color="black",shape="box"];1314 -> 1405[label="",style="solid", color="black", weight=3]; 1315[label="compare [] []",fontsize=16,color="black",shape="box"];1315 -> 1406[label="",style="solid", color="black", weight=3]; 1316 -> 1407[label="",style="dashed", color="red", weight=0]; 1316[label="compare2 vwx22 vwx24 (vwx22 == vwx24)",fontsize=16,color="magenta"];1316 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1317[label="primCmpDouble (Double vwx220 vwx221) vwx24",fontsize=16,color="burlywood",shape="box"];2572[label="vwx221/Pos vwx2210",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2572[label="",style="solid", color="burlywood", weight=9]; 2572 -> 1409[label="",style="solid", color="burlywood", weight=3]; 2573[label="vwx221/Neg vwx2210",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2573[label="",style="solid", color="burlywood", weight=9]; 2573 -> 1410[label="",style="solid", color="burlywood", weight=3]; 1318[label="primCmpFloat (Float vwx220 vwx221) vwx24",fontsize=16,color="burlywood",shape="box"];2574[label="vwx221/Pos vwx2210",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2574[label="",style="solid", color="burlywood", weight=9]; 2574 -> 1411[label="",style="solid", color="burlywood", weight=3]; 2575[label="vwx221/Neg vwx2210",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2575[label="",style="solid", color="burlywood", weight=9]; 2575 -> 1412[label="",style="solid", color="burlywood", weight=3]; 1319[label="Pos (primMulNat vwx3100 vwx4110)",fontsize=16,color="green",shape="box"];1319 -> 1413[label="",style="dashed", color="green", weight=3]; 1320[label="Neg (primMulNat vwx3100 vwx4110)",fontsize=16,color="green",shape="box"];1320 -> 1414[label="",style="dashed", color="green", weight=3]; 1321[label="Neg (primMulNat vwx3100 vwx4110)",fontsize=16,color="green",shape="box"];1321 -> 1415[label="",style="dashed", color="green", weight=3]; 1322[label="Pos (primMulNat vwx3100 vwx4110)",fontsize=16,color="green",shape="box"];1322 -> 1416[label="",style="dashed", color="green", weight=3]; 1323 -> 1123[label="",style="dashed", color="red", weight=0]; 1323[label="compare vwx23 vwx25",fontsize=16,color="magenta"];1323 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1324[label="GT",fontsize=16,color="green",shape="box"];1325[label="not False",fontsize=16,color="black",shape="box"];1325 -> 1419[label="",style="solid", color="black", weight=3]; 1326[label="not True",fontsize=16,color="black",shape="box"];1326 -> 1420[label="",style="solid", color="black", weight=3]; 1341 -> 860[label="",style="dashed", color="red", weight=0]; 1341[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1341 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1342 -> 861[label="",style="dashed", color="red", weight=0]; 1342[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1342 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1343 -> 862[label="",style="dashed", color="red", weight=0]; 1343[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1343 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1344 -> 863[label="",style="dashed", color="red", weight=0]; 1344[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1344 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1345 -> 864[label="",style="dashed", color="red", weight=0]; 1345[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1345 -> 1429[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1430[label="",style="dashed", color="magenta", weight=3]; 1346 -> 865[label="",style="dashed", color="red", weight=0]; 1346[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1346 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1347 -> 866[label="",style="dashed", color="red", weight=0]; 1347[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1347 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1348 -> 867[label="",style="dashed", color="red", weight=0]; 1348[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1348 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1349 -> 868[label="",style="dashed", color="red", weight=0]; 1349[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1349 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1350 -> 869[label="",style="dashed", color="red", weight=0]; 1350[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1350 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1351 -> 870[label="",style="dashed", color="red", weight=0]; 1351[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1351 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1352 -> 871[label="",style="dashed", color="red", weight=0]; 1352[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1352 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1353 -> 872[label="",style="dashed", color="red", weight=0]; 1353[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1353 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1354 -> 873[label="",style="dashed", color="red", weight=0]; 1354[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1354 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1355 -> 860[label="",style="dashed", color="red", weight=0]; 1355[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1355 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1356 -> 861[label="",style="dashed", color="red", weight=0]; 1356[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1356 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1357 -> 862[label="",style="dashed", color="red", weight=0]; 1357[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1357 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1358 -> 863[label="",style="dashed", color="red", weight=0]; 1358[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1358 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1359 -> 864[label="",style="dashed", color="red", weight=0]; 1359[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1359 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1359 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1360 -> 865[label="",style="dashed", color="red", weight=0]; 1360[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1360 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1360 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1361 -> 866[label="",style="dashed", color="red", weight=0]; 1361[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1361 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1361 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1362 -> 867[label="",style="dashed", color="red", weight=0]; 1362[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1362 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1362 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1363 -> 868[label="",style="dashed", color="red", weight=0]; 1363[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1363 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1363 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1364 -> 869[label="",style="dashed", color="red", weight=0]; 1364[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1364 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1365 -> 870[label="",style="dashed", color="red", weight=0]; 1365[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1365 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1366 -> 871[label="",style="dashed", color="red", weight=0]; 1366[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1366 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1367 -> 872[label="",style="dashed", color="red", weight=0]; 1367[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1367 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1368 -> 873[label="",style="dashed", color="red", weight=0]; 1368[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1368 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1129[label="",style="dashed", color="red", weight=0]; 1327[label="compare vwx23 vwx25",fontsize=16,color="magenta"];1327 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1328[label="GT",fontsize=16,color="green",shape="box"];1329 -> 1131[label="",style="dashed", color="red", weight=0]; 1329[label="compare vwx23 vwx25",fontsize=16,color="magenta"];1329 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1330[label="GT",fontsize=16,color="green",shape="box"];1369 -> 381[label="",style="dashed", color="red", weight=0]; 1369[label="vwx230 == vwx250 && vwx231 <= vwx251",fontsize=16,color="magenta"];1369 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1370[label="vwx230 < vwx250",fontsize=16,color="blue",shape="box"];2576[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2576[label="",style="solid", color="blue", weight=9]; 2576 -> 1483[label="",style="solid", color="blue", weight=3]; 2577[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2577[label="",style="solid", color="blue", weight=9]; 2577 -> 1484[label="",style="solid", color="blue", weight=3]; 2578[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2578[label="",style="solid", color="blue", weight=9]; 2578 -> 1485[label="",style="solid", color="blue", weight=3]; 2579[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2579[label="",style="solid", color="blue", weight=9]; 2579 -> 1486[label="",style="solid", color="blue", weight=3]; 2580[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2580[label="",style="solid", color="blue", weight=9]; 2580 -> 1487[label="",style="solid", color="blue", weight=3]; 2581[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2581[label="",style="solid", color="blue", weight=9]; 2581 -> 1488[label="",style="solid", color="blue", weight=3]; 2582[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2582[label="",style="solid", color="blue", weight=9]; 2582 -> 1489[label="",style="solid", color="blue", weight=3]; 2583[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2583[label="",style="solid", color="blue", weight=9]; 2583 -> 1490[label="",style="solid", color="blue", weight=3]; 2584[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2584[label="",style="solid", color="blue", weight=9]; 2584 -> 1491[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"];1370 -> 2585[label="",style="solid", color="blue", weight=9]; 2585 -> 1492[label="",style="solid", color="blue", weight=3]; 2586[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2586[label="",style="solid", color="blue", weight=9]; 2586 -> 1493[label="",style="solid", color="blue", weight=3]; 2587[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2587[label="",style="solid", color="blue", weight=9]; 2587 -> 1494[label="",style="solid", color="blue", weight=3]; 2588[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2588[label="",style="solid", color="blue", weight=9]; 2588 -> 1495[label="",style="solid", color="blue", weight=3]; 2589[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2589[label="",style="solid", color="blue", weight=9]; 2589 -> 1496[label="",style="solid", color="blue", weight=3]; 1331 -> 1137[label="",style="dashed", color="red", weight=0]; 1331[label="compare vwx23 vwx25",fontsize=16,color="magenta"];1331 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1332[label="GT",fontsize=16,color="green",shape="box"];1333 -> 1139[label="",style="dashed", color="red", weight=0]; 1333[label="compare vwx23 vwx25",fontsize=16,color="magenta"];1333 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1334[label="GT",fontsize=16,color="green",shape="box"];1371 -> 381[label="",style="dashed", color="red", weight=0]; 1371[label="vwx230 == vwx250 && (vwx231 < vwx251 || vwx231 == vwx251 && vwx232 <= vwx252)",fontsize=16,color="magenta"];1371 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1372[label="vwx230 < vwx250",fontsize=16,color="blue",shape="box"];2590[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2590[label="",style="solid", color="blue", weight=9]; 2590 -> 1503[label="",style="solid", color="blue", weight=3]; 2591[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2591[label="",style="solid", color="blue", weight=9]; 2591 -> 1504[label="",style="solid", color="blue", weight=3]; 2592[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2592[label="",style="solid", color="blue", weight=9]; 2592 -> 1505[label="",style="solid", color="blue", weight=3]; 2593[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2593[label="",style="solid", color="blue", weight=9]; 2593 -> 1506[label="",style="solid", color="blue", weight=3]; 2594[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2594[label="",style="solid", color="blue", weight=9]; 2594 -> 1507[label="",style="solid", color="blue", weight=3]; 2595[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2595[label="",style="solid", color="blue", weight=9]; 2595 -> 1508[label="",style="solid", color="blue", weight=3]; 2596[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2596[label="",style="solid", color="blue", weight=9]; 2596 -> 1509[label="",style="solid", color="blue", weight=3]; 2597[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2597[label="",style="solid", color="blue", weight=9]; 2597 -> 1510[label="",style="solid", color="blue", weight=3]; 2598[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2598[label="",style="solid", color="blue", weight=9]; 2598 -> 1511[label="",style="solid", color="blue", weight=3]; 2599[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2599[label="",style="solid", color="blue", weight=9]; 2599 -> 1512[label="",style="solid", color="blue", weight=3]; 2600[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2600[label="",style="solid", color="blue", weight=9]; 2600 -> 1513[label="",style="solid", color="blue", weight=3]; 2601[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2601[label="",style="solid", color="blue", weight=9]; 2601 -> 1514[label="",style="solid", color="blue", weight=3]; 2602[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2602[label="",style="solid", color="blue", weight=9]; 2602 -> 1515[label="",style="solid", color="blue", weight=3]; 2603[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2603[label="",style="solid", color="blue", weight=9]; 2603 -> 1516[label="",style="solid", color="blue", weight=3]; 1335 -> 1143[label="",style="dashed", color="red", weight=0]; 1335[label="compare vwx23 vwx25",fontsize=16,color="magenta"];1335 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1336[label="GT",fontsize=16,color="green",shape="box"];1373 -> 860[label="",style="dashed", color="red", weight=0]; 1373[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1373 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1374 -> 861[label="",style="dashed", color="red", weight=0]; 1374[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1374 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1375 -> 862[label="",style="dashed", color="red", weight=0]; 1375[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1375 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1376 -> 863[label="",style="dashed", color="red", weight=0]; 1376[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1376 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1377 -> 864[label="",style="dashed", color="red", weight=0]; 1377[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1377 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1378 -> 865[label="",style="dashed", color="red", weight=0]; 1378[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1378 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1379 -> 866[label="",style="dashed", color="red", weight=0]; 1379[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1379 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1380 -> 867[label="",style="dashed", color="red", weight=0]; 1380[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1380 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1380 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1381 -> 868[label="",style="dashed", color="red", weight=0]; 1381[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1381 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1382 -> 869[label="",style="dashed", color="red", weight=0]; 1382[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1382 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1383 -> 870[label="",style="dashed", color="red", weight=0]; 1383[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1383 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1383 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1384 -> 871[label="",style="dashed", color="red", weight=0]; 1384[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1384 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1384 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1385 -> 872[label="",style="dashed", color="red", weight=0]; 1385[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1385 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1385 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1386 -> 873[label="",style="dashed", color="red", weight=0]; 1386[label="vwx230 <= vwx250",fontsize=16,color="magenta"];1386 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1147[label="",style="dashed", color="red", weight=0]; 1337[label="compare vwx23 vwx25",fontsize=16,color="magenta"];1337 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1338[label="GT",fontsize=16,color="green",shape="box"];1339 -> 1149[label="",style="dashed", color="red", weight=0]; 1339[label="compare vwx23 vwx25",fontsize=16,color="magenta"];1339 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1340[label="GT",fontsize=16,color="green",shape="box"];1387[label="primCmpInt (Pos (Succ vwx2200)) vwx24",fontsize=16,color="burlywood",shape="box"];2604[label="vwx24/Pos vwx240",fontsize=10,color="white",style="solid",shape="box"];1387 -> 2604[label="",style="solid", color="burlywood", weight=9]; 2604 -> 1551[label="",style="solid", color="burlywood", weight=3]; 2605[label="vwx24/Neg vwx240",fontsize=10,color="white",style="solid",shape="box"];1387 -> 2605[label="",style="solid", color="burlywood", weight=9]; 2605 -> 1552[label="",style="solid", color="burlywood", weight=3]; 1388[label="primCmpInt (Pos Zero) vwx24",fontsize=16,color="burlywood",shape="box"];2606[label="vwx24/Pos vwx240",fontsize=10,color="white",style="solid",shape="box"];1388 -> 2606[label="",style="solid", color="burlywood", weight=9]; 2606 -> 1553[label="",style="solid", color="burlywood", weight=3]; 2607[label="vwx24/Neg vwx240",fontsize=10,color="white",style="solid",shape="box"];1388 -> 2607[label="",style="solid", color="burlywood", weight=9]; 2607 -> 1554[label="",style="solid", color="burlywood", weight=3]; 1389[label="primCmpInt (Neg (Succ vwx2200)) vwx24",fontsize=16,color="burlywood",shape="box"];2608[label="vwx24/Pos vwx240",fontsize=10,color="white",style="solid",shape="box"];1389 -> 2608[label="",style="solid", color="burlywood", weight=9]; 2608 -> 1555[label="",style="solid", color="burlywood", weight=3]; 2609[label="vwx24/Neg vwx240",fontsize=10,color="white",style="solid",shape="box"];1389 -> 2609[label="",style="solid", color="burlywood", weight=9]; 2609 -> 1556[label="",style="solid", color="burlywood", weight=3]; 1390[label="primCmpInt (Neg Zero) vwx24",fontsize=16,color="burlywood",shape="box"];2610[label="vwx24/Pos vwx240",fontsize=10,color="white",style="solid",shape="box"];1390 -> 2610[label="",style="solid", color="burlywood", weight=9]; 2610 -> 1557[label="",style="solid", color="burlywood", weight=3]; 2611[label="vwx24/Neg vwx240",fontsize=10,color="white",style="solid",shape="box"];1390 -> 2611[label="",style="solid", color="burlywood", weight=9]; 2611 -> 1558[label="",style="solid", color="burlywood", weight=3]; 1392 -> 388[label="",style="dashed", color="red", weight=0]; 1392[label="vwx22 == vwx24",fontsize=16,color="magenta"];1392 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1391[label="compare2 vwx22 vwx24 vwx60",fontsize=16,color="burlywood",shape="triangle"];2612[label="vwx60/False",fontsize=10,color="white",style="solid",shape="box"];1391 -> 2612[label="",style="solid", color="burlywood", weight=9]; 2612 -> 1561[label="",style="solid", color="burlywood", weight=3]; 2613[label="vwx60/True",fontsize=10,color="white",style="solid",shape="box"];1391 -> 2613[label="",style="solid", color="burlywood", weight=9]; 2613 -> 1562[label="",style="solid", color="burlywood", weight=3]; 1394 -> 393[label="",style="dashed", color="red", weight=0]; 1394[label="vwx22 == vwx24",fontsize=16,color="magenta"];1394 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1393[label="compare2 vwx22 vwx24 vwx61",fontsize=16,color="burlywood",shape="triangle"];2614[label="vwx61/False",fontsize=10,color="white",style="solid",shape="box"];1393 -> 2614[label="",style="solid", color="burlywood", weight=9]; 2614 -> 1565[label="",style="solid", color="burlywood", weight=3]; 2615[label="vwx61/True",fontsize=10,color="white",style="solid",shape="box"];1393 -> 2615[label="",style="solid", color="burlywood", weight=9]; 2615 -> 1566[label="",style="solid", color="burlywood", weight=3]; 1395[label="EQ",fontsize=16,color="green",shape="box"];1396 -> 1248[label="",style="dashed", color="red", weight=0]; 1396[label="primCmpInt vwx220 vwx240",fontsize=16,color="magenta"];1396 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1398 -> 391[label="",style="dashed", color="red", weight=0]; 1398[label="vwx22 == vwx24",fontsize=16,color="magenta"];1398 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1397[label="compare2 vwx22 vwx24 vwx62",fontsize=16,color="burlywood",shape="triangle"];2616[label="vwx62/False",fontsize=10,color="white",style="solid",shape="box"];1397 -> 2616[label="",style="solid", color="burlywood", weight=9]; 2616 -> 1571[label="",style="solid", color="burlywood", weight=3]; 2617[label="vwx62/True",fontsize=10,color="white",style="solid",shape="box"];1397 -> 2617[label="",style="solid", color="burlywood", weight=9]; 2617 -> 1572[label="",style="solid", color="burlywood", weight=3]; 1399[label="primCmpChar (Char vwx220) (Char vwx240)",fontsize=16,color="black",shape="box"];1399 -> 1573[label="",style="solid", color="black", weight=3]; 1400[label="compare (vwx220 * vwx241) (vwx240 * vwx221)",fontsize=16,color="blue",shape="box"];2618[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2618[label="",style="solid", color="blue", weight=9]; 2618 -> 1574[label="",style="solid", color="blue", weight=3]; 2619[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2619[label="",style="solid", color="blue", weight=9]; 2619 -> 1575[label="",style="solid", color="blue", weight=3]; 1402 -> 397[label="",style="dashed", color="red", weight=0]; 1402[label="vwx22 == vwx24",fontsize=16,color="magenta"];1402 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1401[label="compare2 vwx22 vwx24 vwx63",fontsize=16,color="burlywood",shape="triangle"];2620[label="vwx63/False",fontsize=10,color="white",style="solid",shape="box"];1401 -> 2620[label="",style="solid", color="burlywood", weight=9]; 2620 -> 1578[label="",style="solid", color="burlywood", weight=3]; 2621[label="vwx63/True",fontsize=10,color="white",style="solid",shape="box"];1401 -> 2621[label="",style="solid", color="burlywood", weight=9]; 2621 -> 1579[label="",style="solid", color="burlywood", weight=3]; 1403 -> 1580[label="",style="dashed", color="red", weight=0]; 1403[label="primCompAux vwx220 vwx240 (compare vwx221 vwx241)",fontsize=16,color="magenta"];1403 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1404[label="GT",fontsize=16,color="green",shape="box"];1405[label="LT",fontsize=16,color="green",shape="box"];1406[label="EQ",fontsize=16,color="green",shape="box"];1408 -> 390[label="",style="dashed", color="red", weight=0]; 1408[label="vwx22 == vwx24",fontsize=16,color="magenta"];1408 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1407[label="compare2 vwx22 vwx24 vwx64",fontsize=16,color="burlywood",shape="triangle"];2622[label="vwx64/False",fontsize=10,color="white",style="solid",shape="box"];1407 -> 2622[label="",style="solid", color="burlywood", weight=9]; 2622 -> 1584[label="",style="solid", color="burlywood", weight=3]; 2623[label="vwx64/True",fontsize=10,color="white",style="solid",shape="box"];1407 -> 2623[label="",style="solid", color="burlywood", weight=9]; 2623 -> 1585[label="",style="solid", color="burlywood", weight=3]; 1409[label="primCmpDouble (Double vwx220 (Pos vwx2210)) vwx24",fontsize=16,color="burlywood",shape="box"];2624[label="vwx24/Double vwx240 vwx241",fontsize=10,color="white",style="solid",shape="box"];1409 -> 2624[label="",style="solid", color="burlywood", weight=9]; 2624 -> 1586[label="",style="solid", color="burlywood", weight=3]; 1410[label="primCmpDouble (Double vwx220 (Neg vwx2210)) vwx24",fontsize=16,color="burlywood",shape="box"];2625[label="vwx24/Double vwx240 vwx241",fontsize=10,color="white",style="solid",shape="box"];1410 -> 2625[label="",style="solid", color="burlywood", weight=9]; 2625 -> 1587[label="",style="solid", color="burlywood", weight=3]; 1411[label="primCmpFloat (Float vwx220 (Pos vwx2210)) vwx24",fontsize=16,color="burlywood",shape="box"];2626[label="vwx24/Float vwx240 vwx241",fontsize=10,color="white",style="solid",shape="box"];1411 -> 2626[label="",style="solid", color="burlywood", weight=9]; 2626 -> 1588[label="",style="solid", color="burlywood", weight=3]; 1412[label="primCmpFloat (Float vwx220 (Neg vwx2210)) vwx24",fontsize=16,color="burlywood",shape="box"];2627[label="vwx24/Float vwx240 vwx241",fontsize=10,color="white",style="solid",shape="box"];1412 -> 2627[label="",style="solid", color="burlywood", weight=9]; 2627 -> 1589[label="",style="solid", color="burlywood", weight=3]; 1413[label="primMulNat vwx3100 vwx4110",fontsize=16,color="burlywood",shape="triangle"];2628[label="vwx3100/Succ vwx31000",fontsize=10,color="white",style="solid",shape="box"];1413 -> 2628[label="",style="solid", color="burlywood", weight=9]; 2628 -> 1590[label="",style="solid", color="burlywood", weight=3]; 2629[label="vwx3100/Zero",fontsize=10,color="white",style="solid",shape="box"];1413 -> 2629[label="",style="solid", color="burlywood", weight=9]; 2629 -> 1591[label="",style="solid", color="burlywood", weight=3]; 1414 -> 1413[label="",style="dashed", color="red", weight=0]; 1414[label="primMulNat vwx3100 vwx4110",fontsize=16,color="magenta"];1414 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1413[label="",style="dashed", color="red", weight=0]; 1415[label="primMulNat vwx3100 vwx4110",fontsize=16,color="magenta"];1415 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1413[label="",style="dashed", color="red", weight=0]; 1416[label="primMulNat vwx3100 vwx4110",fontsize=16,color="magenta"];1416 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1417[label="vwx25",fontsize=16,color="green",shape="box"];1418[label="vwx23",fontsize=16,color="green",shape="box"];1419[label="True",fontsize=16,color="green",shape="box"];1420[label="False",fontsize=16,color="green",shape="box"];1421[label="vwx230",fontsize=16,color="green",shape="box"];1422[label="vwx250",fontsize=16,color="green",shape="box"];1423[label="vwx230",fontsize=16,color="green",shape="box"];1424[label="vwx250",fontsize=16,color="green",shape="box"];1425[label="vwx230",fontsize=16,color="green",shape="box"];1426[label="vwx250",fontsize=16,color="green",shape="box"];1427[label="vwx230",fontsize=16,color="green",shape="box"];1428[label="vwx250",fontsize=16,color="green",shape="box"];1429[label="vwx230",fontsize=16,color="green",shape="box"];1430[label="vwx250",fontsize=16,color="green",shape="box"];1431[label="vwx230",fontsize=16,color="green",shape="box"];1432[label="vwx250",fontsize=16,color="green",shape="box"];1433[label="vwx230",fontsize=16,color="green",shape="box"];1434[label="vwx250",fontsize=16,color="green",shape="box"];1435[label="vwx230",fontsize=16,color="green",shape="box"];1436[label="vwx250",fontsize=16,color="green",shape="box"];1437[label="vwx230",fontsize=16,color="green",shape="box"];1438[label="vwx250",fontsize=16,color="green",shape="box"];1439[label="vwx230",fontsize=16,color="green",shape="box"];1440[label="vwx250",fontsize=16,color="green",shape="box"];1441[label="vwx230",fontsize=16,color="green",shape="box"];1442[label="vwx250",fontsize=16,color="green",shape="box"];1443[label="vwx230",fontsize=16,color="green",shape="box"];1444[label="vwx250",fontsize=16,color="green",shape="box"];1445[label="vwx230",fontsize=16,color="green",shape="box"];1446[label="vwx250",fontsize=16,color="green",shape="box"];1447[label="vwx230",fontsize=16,color="green",shape="box"];1448[label="vwx250",fontsize=16,color="green",shape="box"];1449[label="vwx230",fontsize=16,color="green",shape="box"];1450[label="vwx250",fontsize=16,color="green",shape="box"];1451[label="vwx230",fontsize=16,color="green",shape="box"];1452[label="vwx250",fontsize=16,color="green",shape="box"];1453[label="vwx230",fontsize=16,color="green",shape="box"];1454[label="vwx250",fontsize=16,color="green",shape="box"];1455[label="vwx230",fontsize=16,color="green",shape="box"];1456[label="vwx250",fontsize=16,color="green",shape="box"];1457[label="vwx230",fontsize=16,color="green",shape="box"];1458[label="vwx250",fontsize=16,color="green",shape="box"];1459[label="vwx230",fontsize=16,color="green",shape="box"];1460[label="vwx250",fontsize=16,color="green",shape="box"];1461[label="vwx230",fontsize=16,color="green",shape="box"];1462[label="vwx250",fontsize=16,color="green",shape="box"];1463[label="vwx230",fontsize=16,color="green",shape="box"];1464[label="vwx250",fontsize=16,color="green",shape="box"];1465[label="vwx230",fontsize=16,color="green",shape="box"];1466[label="vwx250",fontsize=16,color="green",shape="box"];1467[label="vwx230",fontsize=16,color="green",shape="box"];1468[label="vwx250",fontsize=16,color="green",shape="box"];1469[label="vwx230",fontsize=16,color="green",shape="box"];1470[label="vwx250",fontsize=16,color="green",shape="box"];1471[label="vwx230",fontsize=16,color="green",shape="box"];1472[label="vwx250",fontsize=16,color="green",shape="box"];1473[label="vwx230",fontsize=16,color="green",shape="box"];1474[label="vwx250",fontsize=16,color="green",shape="box"];1475[label="vwx230",fontsize=16,color="green",shape="box"];1476[label="vwx250",fontsize=16,color="green",shape="box"];1477[label="vwx25",fontsize=16,color="green",shape="box"];1478[label="vwx23",fontsize=16,color="green",shape="box"];1479[label="vwx25",fontsize=16,color="green",shape="box"];1480[label="vwx23",fontsize=16,color="green",shape="box"];1481[label="vwx231 <= vwx251",fontsize=16,color="blue",shape="box"];2630[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2630[label="",style="solid", color="blue", weight=9]; 2630 -> 1596[label="",style="solid", color="blue", weight=3]; 2631[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2631[label="",style="solid", color="blue", weight=9]; 2631 -> 1597[label="",style="solid", color="blue", weight=3]; 2632[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2632[label="",style="solid", color="blue", weight=9]; 2632 -> 1598[label="",style="solid", color="blue", weight=3]; 2633[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2633[label="",style="solid", color="blue", weight=9]; 2633 -> 1599[label="",style="solid", color="blue", weight=3]; 2634[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2634[label="",style="solid", color="blue", weight=9]; 2634 -> 1600[label="",style="solid", color="blue", weight=3]; 2635[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2635[label="",style="solid", color="blue", weight=9]; 2635 -> 1601[label="",style="solid", color="blue", weight=3]; 2636[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2636[label="",style="solid", color="blue", weight=9]; 2636 -> 1602[label="",style="solid", color="blue", weight=3]; 2637[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2637[label="",style="solid", color="blue", weight=9]; 2637 -> 1603[label="",style="solid", color="blue", weight=3]; 2638[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2638[label="",style="solid", color="blue", weight=9]; 2638 -> 1604[label="",style="solid", color="blue", weight=3]; 2639[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2639[label="",style="solid", color="blue", weight=9]; 2639 -> 1605[label="",style="solid", color="blue", weight=3]; 2640[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2640[label="",style="solid", color="blue", weight=9]; 2640 -> 1606[label="",style="solid", color="blue", weight=3]; 2641[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2641[label="",style="solid", color="blue", weight=9]; 2641 -> 1607[label="",style="solid", color="blue", weight=3]; 2642[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2642[label="",style="solid", color="blue", weight=9]; 2642 -> 1608[label="",style="solid", color="blue", weight=3]; 2643[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2643[label="",style="solid", color="blue", weight=9]; 2643 -> 1609[label="",style="solid", color="blue", weight=3]; 1482[label="vwx230 == vwx250",fontsize=16,color="blue",shape="box"];2644[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2644[label="",style="solid", color="blue", weight=9]; 2644 -> 1610[label="",style="solid", color="blue", weight=3]; 2645[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2645[label="",style="solid", color="blue", weight=9]; 2645 -> 1611[label="",style="solid", color="blue", weight=3]; 2646[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2646[label="",style="solid", color="blue", weight=9]; 2646 -> 1612[label="",style="solid", color="blue", weight=3]; 2647[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2647[label="",style="solid", color="blue", weight=9]; 2647 -> 1613[label="",style="solid", color="blue", weight=3]; 2648[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2648[label="",style="solid", color="blue", weight=9]; 2648 -> 1614[label="",style="solid", color="blue", weight=3]; 2649[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2649[label="",style="solid", color="blue", weight=9]; 2649 -> 1615[label="",style="solid", color="blue", weight=3]; 2650[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2650[label="",style="solid", color="blue", weight=9]; 2650 -> 1616[label="",style="solid", color="blue", weight=3]; 2651[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2651[label="",style="solid", color="blue", weight=9]; 2651 -> 1617[label="",style="solid", color="blue", weight=3]; 2652[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2652[label="",style="solid", color="blue", weight=9]; 2652 -> 1618[label="",style="solid", color="blue", weight=3]; 2653[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2653[label="",style="solid", color="blue", weight=9]; 2653 -> 1619[label="",style="solid", color="blue", weight=3]; 2654[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2654[label="",style="solid", color="blue", weight=9]; 2654 -> 1620[label="",style="solid", color="blue", weight=3]; 2655[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2655[label="",style="solid", color="blue", weight=9]; 2655 -> 1621[label="",style="solid", color="blue", weight=3]; 2656[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2656[label="",style="solid", color="blue", weight=9]; 2656 -> 1622[label="",style="solid", color="blue", weight=3]; 2657[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2657[label="",style="solid", color="blue", weight=9]; 2657 -> 1623[label="",style="solid", color="blue", weight=3]; 1483 -> 675[label="",style="dashed", color="red", weight=0]; 1483[label="vwx230 < vwx250",fontsize=16,color="magenta"];1483 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1484 -> 676[label="",style="dashed", color="red", weight=0]; 1484[label="vwx230 < vwx250",fontsize=16,color="magenta"];1484 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1485 -> 677[label="",style="dashed", color="red", weight=0]; 1485[label="vwx230 < vwx250",fontsize=16,color="magenta"];1485 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1486 -> 678[label="",style="dashed", color="red", weight=0]; 1486[label="vwx230 < vwx250",fontsize=16,color="magenta"];1486 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1487 -> 679[label="",style="dashed", color="red", weight=0]; 1487[label="vwx230 < vwx250",fontsize=16,color="magenta"];1487 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1488 -> 680[label="",style="dashed", color="red", weight=0]; 1488[label="vwx230 < vwx250",fontsize=16,color="magenta"];1488 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1489 -> 681[label="",style="dashed", color="red", weight=0]; 1489[label="vwx230 < vwx250",fontsize=16,color="magenta"];1489 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1490 -> 682[label="",style="dashed", color="red", weight=0]; 1490[label="vwx230 < vwx250",fontsize=16,color="magenta"];1490 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1491 -> 683[label="",style="dashed", color="red", weight=0]; 1491[label="vwx230 < vwx250",fontsize=16,color="magenta"];1491 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1492 -> 684[label="",style="dashed", color="red", weight=0]; 1492[label="vwx230 < vwx250",fontsize=16,color="magenta"];1492 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1493 -> 685[label="",style="dashed", color="red", weight=0]; 1493[label="vwx230 < vwx250",fontsize=16,color="magenta"];1493 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1494 -> 686[label="",style="dashed", color="red", weight=0]; 1494[label="vwx230 < vwx250",fontsize=16,color="magenta"];1494 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1495 -> 687[label="",style="dashed", color="red", weight=0]; 1495[label="vwx230 < vwx250",fontsize=16,color="magenta"];1495 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1496 -> 688[label="",style="dashed", color="red", weight=0]; 1496[label="vwx230 < vwx250",fontsize=16,color="magenta"];1496 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1497[label="vwx25",fontsize=16,color="green",shape="box"];1498[label="vwx23",fontsize=16,color="green",shape="box"];1499[label="vwx25",fontsize=16,color="green",shape="box"];1500[label="vwx23",fontsize=16,color="green",shape="box"];1501 -> 668[label="",style="dashed", color="red", weight=0]; 1501[label="vwx231 < vwx251 || vwx231 == vwx251 && vwx232 <= vwx252",fontsize=16,color="magenta"];1501 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1502[label="vwx230 == vwx250",fontsize=16,color="blue",shape="box"];2658[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2658[label="",style="solid", color="blue", weight=9]; 2658 -> 1654[label="",style="solid", color="blue", weight=3]; 2659[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2659[label="",style="solid", color="blue", weight=9]; 2659 -> 1655[label="",style="solid", color="blue", weight=3]; 2660[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2660[label="",style="solid", color="blue", weight=9]; 2660 -> 1656[label="",style="solid", color="blue", weight=3]; 2661[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2661[label="",style="solid", color="blue", weight=9]; 2661 -> 1657[label="",style="solid", color="blue", weight=3]; 2662[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2662[label="",style="solid", color="blue", weight=9]; 2662 -> 1658[label="",style="solid", color="blue", weight=3]; 2663[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2663[label="",style="solid", color="blue", weight=9]; 2663 -> 1659[label="",style="solid", color="blue", weight=3]; 2664[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2664[label="",style="solid", color="blue", weight=9]; 2664 -> 1660[label="",style="solid", color="blue", weight=3]; 2665[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2665[label="",style="solid", color="blue", weight=9]; 2665 -> 1661[label="",style="solid", color="blue", weight=3]; 2666[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2666[label="",style="solid", color="blue", weight=9]; 2666 -> 1662[label="",style="solid", color="blue", weight=3]; 2667[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2667[label="",style="solid", color="blue", weight=9]; 2667 -> 1663[label="",style="solid", color="blue", weight=3]; 2668[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2668[label="",style="solid", color="blue", weight=9]; 2668 -> 1664[label="",style="solid", color="blue", weight=3]; 2669[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2669[label="",style="solid", color="blue", weight=9]; 2669 -> 1665[label="",style="solid", color="blue", weight=3]; 2670[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2670[label="",style="solid", color="blue", weight=9]; 2670 -> 1666[label="",style="solid", color="blue", weight=3]; 2671[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2671[label="",style="solid", color="blue", weight=9]; 2671 -> 1667[label="",style="solid", color="blue", weight=3]; 1503 -> 675[label="",style="dashed", color="red", weight=0]; 1503[label="vwx230 < vwx250",fontsize=16,color="magenta"];1503 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1504 -> 676[label="",style="dashed", color="red", weight=0]; 1504[label="vwx230 < vwx250",fontsize=16,color="magenta"];1504 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1505 -> 677[label="",style="dashed", color="red", weight=0]; 1505[label="vwx230 < vwx250",fontsize=16,color="magenta"];1505 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1506 -> 678[label="",style="dashed", color="red", weight=0]; 1506[label="vwx230 < vwx250",fontsize=16,color="magenta"];1506 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1507 -> 679[label="",style="dashed", color="red", weight=0]; 1507[label="vwx230 < vwx250",fontsize=16,color="magenta"];1507 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1507 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1508 -> 680[label="",style="dashed", color="red", weight=0]; 1508[label="vwx230 < vwx250",fontsize=16,color="magenta"];1508 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1509 -> 681[label="",style="dashed", color="red", weight=0]; 1509[label="vwx230 < vwx250",fontsize=16,color="magenta"];1509 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1510 -> 682[label="",style="dashed", color="red", weight=0]; 1510[label="vwx230 < vwx250",fontsize=16,color="magenta"];1510 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1511 -> 683[label="",style="dashed", color="red", weight=0]; 1511[label="vwx230 < vwx250",fontsize=16,color="magenta"];1511 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1512 -> 684[label="",style="dashed", color="red", weight=0]; 1512[label="vwx230 < vwx250",fontsize=16,color="magenta"];1512 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1513 -> 685[label="",style="dashed", color="red", weight=0]; 1513[label="vwx230 < vwx250",fontsize=16,color="magenta"];1513 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1514 -> 686[label="",style="dashed", color="red", weight=0]; 1514[label="vwx230 < vwx250",fontsize=16,color="magenta"];1514 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1515 -> 687[label="",style="dashed", color="red", weight=0]; 1515[label="vwx230 < vwx250",fontsize=16,color="magenta"];1515 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1516 -> 688[label="",style="dashed", color="red", weight=0]; 1516[label="vwx230 < vwx250",fontsize=16,color="magenta"];1516 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1517[label="vwx25",fontsize=16,color="green",shape="box"];1518[label="vwx23",fontsize=16,color="green",shape="box"];1519[label="vwx230",fontsize=16,color="green",shape="box"];1520[label="vwx250",fontsize=16,color="green",shape="box"];1521[label="vwx230",fontsize=16,color="green",shape="box"];1522[label="vwx250",fontsize=16,color="green",shape="box"];1523[label="vwx230",fontsize=16,color="green",shape="box"];1524[label="vwx250",fontsize=16,color="green",shape="box"];1525[label="vwx230",fontsize=16,color="green",shape="box"];1526[label="vwx250",fontsize=16,color="green",shape="box"];1527[label="vwx230",fontsize=16,color="green",shape="box"];1528[label="vwx250",fontsize=16,color="green",shape="box"];1529[label="vwx230",fontsize=16,color="green",shape="box"];1530[label="vwx250",fontsize=16,color="green",shape="box"];1531[label="vwx230",fontsize=16,color="green",shape="box"];1532[label="vwx250",fontsize=16,color="green",shape="box"];1533[label="vwx230",fontsize=16,color="green",shape="box"];1534[label="vwx250",fontsize=16,color="green",shape="box"];1535[label="vwx230",fontsize=16,color="green",shape="box"];1536[label="vwx250",fontsize=16,color="green",shape="box"];1537[label="vwx230",fontsize=16,color="green",shape="box"];1538[label="vwx250",fontsize=16,color="green",shape="box"];1539[label="vwx230",fontsize=16,color="green",shape="box"];1540[label="vwx250",fontsize=16,color="green",shape="box"];1541[label="vwx230",fontsize=16,color="green",shape="box"];1542[label="vwx250",fontsize=16,color="green",shape="box"];1543[label="vwx230",fontsize=16,color="green",shape="box"];1544[label="vwx250",fontsize=16,color="green",shape="box"];1545[label="vwx230",fontsize=16,color="green",shape="box"];1546[label="vwx250",fontsize=16,color="green",shape="box"];1547[label="vwx25",fontsize=16,color="green",shape="box"];1548[label="vwx23",fontsize=16,color="green",shape="box"];1549[label="vwx25",fontsize=16,color="green",shape="box"];1550[label="vwx23",fontsize=16,color="green",shape="box"];1551[label="primCmpInt (Pos (Succ vwx2200)) (Pos vwx240)",fontsize=16,color="black",shape="box"];1551 -> 1696[label="",style="solid", color="black", weight=3]; 1552[label="primCmpInt (Pos (Succ vwx2200)) (Neg vwx240)",fontsize=16,color="black",shape="box"];1552 -> 1697[label="",style="solid", color="black", weight=3]; 1553[label="primCmpInt (Pos Zero) (Pos vwx240)",fontsize=16,color="burlywood",shape="box"];2672[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];1553 -> 2672[label="",style="solid", color="burlywood", weight=9]; 2672 -> 1698[label="",style="solid", color="burlywood", weight=3]; 2673[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];1553 -> 2673[label="",style="solid", color="burlywood", weight=9]; 2673 -> 1699[label="",style="solid", color="burlywood", weight=3]; 1554[label="primCmpInt (Pos Zero) (Neg vwx240)",fontsize=16,color="burlywood",shape="box"];2674[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];1554 -> 2674[label="",style="solid", color="burlywood", weight=9]; 2674 -> 1700[label="",style="solid", color="burlywood", weight=3]; 2675[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];1554 -> 2675[label="",style="solid", color="burlywood", weight=9]; 2675 -> 1701[label="",style="solid", color="burlywood", weight=3]; 1555[label="primCmpInt (Neg (Succ vwx2200)) (Pos vwx240)",fontsize=16,color="black",shape="box"];1555 -> 1702[label="",style="solid", color="black", weight=3]; 1556[label="primCmpInt (Neg (Succ vwx2200)) (Neg vwx240)",fontsize=16,color="black",shape="box"];1556 -> 1703[label="",style="solid", color="black", weight=3]; 1557[label="primCmpInt (Neg Zero) (Pos vwx240)",fontsize=16,color="burlywood",shape="box"];2676[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];1557 -> 2676[label="",style="solid", color="burlywood", weight=9]; 2676 -> 1704[label="",style="solid", color="burlywood", weight=3]; 2677[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];1557 -> 2677[label="",style="solid", color="burlywood", weight=9]; 2677 -> 1705[label="",style="solid", color="burlywood", weight=3]; 1558[label="primCmpInt (Neg Zero) (Neg vwx240)",fontsize=16,color="burlywood",shape="box"];2678[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];1558 -> 2678[label="",style="solid", color="burlywood", weight=9]; 2678 -> 1706[label="",style="solid", color="burlywood", weight=3]; 2679[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];1558 -> 2679[label="",style="solid", color="burlywood", weight=9]; 2679 -> 1707[label="",style="solid", color="burlywood", weight=3]; 1559[label="vwx22",fontsize=16,color="green",shape="box"];1560[label="vwx24",fontsize=16,color="green",shape="box"];1561[label="compare2 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1561 -> 1708[label="",style="solid", color="black", weight=3]; 1562[label="compare2 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1562 -> 1709[label="",style="solid", color="black", weight=3]; 1563[label="vwx22",fontsize=16,color="green",shape="box"];1564[label="vwx24",fontsize=16,color="green",shape="box"];1565[label="compare2 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1565 -> 1710[label="",style="solid", color="black", weight=3]; 1566[label="compare2 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1566 -> 1711[label="",style="solid", color="black", weight=3]; 1567[label="vwx240",fontsize=16,color="green",shape="box"];1568[label="vwx220",fontsize=16,color="green",shape="box"];1569[label="vwx22",fontsize=16,color="green",shape="box"];1570[label="vwx24",fontsize=16,color="green",shape="box"];1571[label="compare2 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1571 -> 1712[label="",style="solid", color="black", weight=3]; 1572[label="compare2 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1572 -> 1713[label="",style="solid", color="black", weight=3]; 1573[label="primCmpNat vwx220 vwx240",fontsize=16,color="burlywood",shape="triangle"];2680[label="vwx220/Succ vwx2200",fontsize=10,color="white",style="solid",shape="box"];1573 -> 2680[label="",style="solid", color="burlywood", weight=9]; 2680 -> 1714[label="",style="solid", color="burlywood", weight=3]; 2681[label="vwx220/Zero",fontsize=10,color="white",style="solid",shape="box"];1573 -> 2681[label="",style="solid", color="burlywood", weight=9]; 2681 -> 1715[label="",style="solid", color="burlywood", weight=3]; 1574 -> 1123[label="",style="dashed", color="red", weight=0]; 1574[label="compare (vwx220 * vwx241) (vwx240 * vwx221)",fontsize=16,color="magenta"];1574 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1131[label="",style="dashed", color="red", weight=0]; 1575[label="compare (vwx220 * vwx241) (vwx240 * vwx221)",fontsize=16,color="magenta"];1575 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1576[label="vwx22",fontsize=16,color="green",shape="box"];1577[label="vwx24",fontsize=16,color="green",shape="box"];1578[label="compare2 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1578 -> 1720[label="",style="solid", color="black", weight=3]; 1579[label="compare2 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1579 -> 1721[label="",style="solid", color="black", weight=3]; 1581 -> 1143[label="",style="dashed", color="red", weight=0]; 1581[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1581 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1580[label="primCompAux vwx220 vwx240 vwx65",fontsize=16,color="black",shape="triangle"];1580 -> 1724[label="",style="solid", color="black", weight=3]; 1582[label="vwx22",fontsize=16,color="green",shape="box"];1583[label="vwx24",fontsize=16,color="green",shape="box"];1584[label="compare2 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1584 -> 1725[label="",style="solid", color="black", weight=3]; 1585[label="compare2 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1585 -> 1726[label="",style="solid", color="black", weight=3]; 1586[label="primCmpDouble (Double vwx220 (Pos vwx2210)) (Double vwx240 vwx241)",fontsize=16,color="burlywood",shape="box"];2682[label="vwx241/Pos vwx2410",fontsize=10,color="white",style="solid",shape="box"];1586 -> 2682[label="",style="solid", color="burlywood", weight=9]; 2682 -> 1727[label="",style="solid", color="burlywood", weight=3]; 2683[label="vwx241/Neg vwx2410",fontsize=10,color="white",style="solid",shape="box"];1586 -> 2683[label="",style="solid", color="burlywood", weight=9]; 2683 -> 1728[label="",style="solid", color="burlywood", weight=3]; 1587[label="primCmpDouble (Double vwx220 (Neg vwx2210)) (Double vwx240 vwx241)",fontsize=16,color="burlywood",shape="box"];2684[label="vwx241/Pos vwx2410",fontsize=10,color="white",style="solid",shape="box"];1587 -> 2684[label="",style="solid", color="burlywood", weight=9]; 2684 -> 1729[label="",style="solid", color="burlywood", weight=3]; 2685[label="vwx241/Neg vwx2410",fontsize=10,color="white",style="solid",shape="box"];1587 -> 2685[label="",style="solid", color="burlywood", weight=9]; 2685 -> 1730[label="",style="solid", color="burlywood", weight=3]; 1588[label="primCmpFloat (Float vwx220 (Pos vwx2210)) (Float vwx240 vwx241)",fontsize=16,color="burlywood",shape="box"];2686[label="vwx241/Pos vwx2410",fontsize=10,color="white",style="solid",shape="box"];1588 -> 2686[label="",style="solid", color="burlywood", weight=9]; 2686 -> 1731[label="",style="solid", color="burlywood", weight=3]; 2687[label="vwx241/Neg vwx2410",fontsize=10,color="white",style="solid",shape="box"];1588 -> 2687[label="",style="solid", color="burlywood", weight=9]; 2687 -> 1732[label="",style="solid", color="burlywood", weight=3]; 1589[label="primCmpFloat (Float vwx220 (Neg vwx2210)) (Float vwx240 vwx241)",fontsize=16,color="burlywood",shape="box"];2688[label="vwx241/Pos vwx2410",fontsize=10,color="white",style="solid",shape="box"];1589 -> 2688[label="",style="solid", color="burlywood", weight=9]; 2688 -> 1733[label="",style="solid", color="burlywood", weight=3]; 2689[label="vwx241/Neg vwx2410",fontsize=10,color="white",style="solid",shape="box"];1589 -> 2689[label="",style="solid", color="burlywood", weight=9]; 2689 -> 1734[label="",style="solid", color="burlywood", weight=3]; 1590[label="primMulNat (Succ vwx31000) vwx4110",fontsize=16,color="burlywood",shape="box"];2690[label="vwx4110/Succ vwx41100",fontsize=10,color="white",style="solid",shape="box"];1590 -> 2690[label="",style="solid", color="burlywood", weight=9]; 2690 -> 1735[label="",style="solid", color="burlywood", weight=3]; 2691[label="vwx4110/Zero",fontsize=10,color="white",style="solid",shape="box"];1590 -> 2691[label="",style="solid", color="burlywood", weight=9]; 2691 -> 1736[label="",style="solid", color="burlywood", weight=3]; 1591[label="primMulNat Zero vwx4110",fontsize=16,color="burlywood",shape="box"];2692[label="vwx4110/Succ vwx41100",fontsize=10,color="white",style="solid",shape="box"];1591 -> 2692[label="",style="solid", color="burlywood", weight=9]; 2692 -> 1737[label="",style="solid", color="burlywood", weight=3]; 2693[label="vwx4110/Zero",fontsize=10,color="white",style="solid",shape="box"];1591 -> 2693[label="",style="solid", color="burlywood", weight=9]; 2693 -> 1738[label="",style="solid", color="burlywood", weight=3]; 1592[label="vwx4110",fontsize=16,color="green",shape="box"];1593[label="vwx3100",fontsize=16,color="green",shape="box"];1594[label="vwx3100",fontsize=16,color="green",shape="box"];1595[label="vwx4110",fontsize=16,color="green",shape="box"];1596 -> 860[label="",style="dashed", color="red", weight=0]; 1596[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1596 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1597 -> 861[label="",style="dashed", color="red", weight=0]; 1597[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1597 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1598 -> 862[label="",style="dashed", color="red", weight=0]; 1598[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1598 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1599 -> 863[label="",style="dashed", color="red", weight=0]; 1599[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1599 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1600 -> 864[label="",style="dashed", color="red", weight=0]; 1600[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1600 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1601 -> 865[label="",style="dashed", color="red", weight=0]; 1601[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1601 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1602 -> 866[label="",style="dashed", color="red", weight=0]; 1602[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1602 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1603 -> 867[label="",style="dashed", color="red", weight=0]; 1603[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1603 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1604 -> 868[label="",style="dashed", color="red", weight=0]; 1604[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1604 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1605 -> 869[label="",style="dashed", color="red", weight=0]; 1605[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1605 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1606 -> 870[label="",style="dashed", color="red", weight=0]; 1606[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1606 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1607 -> 871[label="",style="dashed", color="red", weight=0]; 1607[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1607 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1608 -> 872[label="",style="dashed", color="red", weight=0]; 1608[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1608 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1609 -> 873[label="",style="dashed", color="red", weight=0]; 1609[label="vwx231 <= vwx251",fontsize=16,color="magenta"];1609 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1610 -> 386[label="",style="dashed", color="red", weight=0]; 1610[label="vwx230 == vwx250",fontsize=16,color="magenta"];1610 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1611 -> 388[label="",style="dashed", color="red", weight=0]; 1611[label="vwx230 == vwx250",fontsize=16,color="magenta"];1611 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1612 -> 393[label="",style="dashed", color="red", weight=0]; 1612[label="vwx230 == vwx250",fontsize=16,color="magenta"];1612 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1613 -> 395[label="",style="dashed", color="red", weight=0]; 1613[label="vwx230 == vwx250",fontsize=16,color="magenta"];1613 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1614 -> 399[label="",style="dashed", color="red", weight=0]; 1614[label="vwx230 == vwx250",fontsize=16,color="magenta"];1614 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1615 -> 394[label="",style="dashed", color="red", weight=0]; 1615[label="vwx230 == vwx250",fontsize=16,color="magenta"];1615 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1616 -> 391[label="",style="dashed", color="red", weight=0]; 1616[label="vwx230 == vwx250",fontsize=16,color="magenta"];1616 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1617 -> 398[label="",style="dashed", color="red", weight=0]; 1617[label="vwx230 == vwx250",fontsize=16,color="magenta"];1617 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1618 -> 392[label="",style="dashed", color="red", weight=0]; 1618[label="vwx230 == vwx250",fontsize=16,color="magenta"];1618 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1619 -> 397[label="",style="dashed", color="red", weight=0]; 1619[label="vwx230 == vwx250",fontsize=16,color="magenta"];1619 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1620 -> 389[label="",style="dashed", color="red", weight=0]; 1620[label="vwx230 == vwx250",fontsize=16,color="magenta"];1620 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1621 -> 390[label="",style="dashed", color="red", weight=0]; 1621[label="vwx230 == vwx250",fontsize=16,color="magenta"];1621 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1622 -> 396[label="",style="dashed", color="red", weight=0]; 1622[label="vwx230 == vwx250",fontsize=16,color="magenta"];1622 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1623 -> 387[label="",style="dashed", color="red", weight=0]; 1623[label="vwx230 == vwx250",fontsize=16,color="magenta"];1623 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1624[label="vwx250",fontsize=16,color="green",shape="box"];1625[label="vwx230",fontsize=16,color="green",shape="box"];1626[label="vwx250",fontsize=16,color="green",shape="box"];1627[label="vwx230",fontsize=16,color="green",shape="box"];1628[label="vwx250",fontsize=16,color="green",shape="box"];1629[label="vwx230",fontsize=16,color="green",shape="box"];1630[label="vwx250",fontsize=16,color="green",shape="box"];1631[label="vwx230",fontsize=16,color="green",shape="box"];1632[label="vwx250",fontsize=16,color="green",shape="box"];1633[label="vwx230",fontsize=16,color="green",shape="box"];1634[label="vwx250",fontsize=16,color="green",shape="box"];1635[label="vwx230",fontsize=16,color="green",shape="box"];1636[label="vwx250",fontsize=16,color="green",shape="box"];1637[label="vwx230",fontsize=16,color="green",shape="box"];1638[label="vwx250",fontsize=16,color="green",shape="box"];1639[label="vwx230",fontsize=16,color="green",shape="box"];1640[label="vwx250",fontsize=16,color="green",shape="box"];1641[label="vwx230",fontsize=16,color="green",shape="box"];1642[label="vwx250",fontsize=16,color="green",shape="box"];1643[label="vwx230",fontsize=16,color="green",shape="box"];1644[label="vwx250",fontsize=16,color="green",shape="box"];1645[label="vwx230",fontsize=16,color="green",shape="box"];1646[label="vwx250",fontsize=16,color="green",shape="box"];1647[label="vwx230",fontsize=16,color="green",shape="box"];1648[label="vwx250",fontsize=16,color="green",shape="box"];1649[label="vwx230",fontsize=16,color="green",shape="box"];1650[label="vwx250",fontsize=16,color="green",shape="box"];1651[label="vwx230",fontsize=16,color="green",shape="box"];1652 -> 381[label="",style="dashed", color="red", weight=0]; 1652[label="vwx231 == vwx251 && vwx232 <= vwx252",fontsize=16,color="magenta"];1652 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1653[label="vwx231 < vwx251",fontsize=16,color="blue",shape="box"];2694[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2694[label="",style="solid", color="blue", weight=9]; 2694 -> 1797[label="",style="solid", color="blue", weight=3]; 2695[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2695[label="",style="solid", color="blue", weight=9]; 2695 -> 1798[label="",style="solid", color="blue", weight=3]; 2696[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2696[label="",style="solid", color="blue", weight=9]; 2696 -> 1799[label="",style="solid", color="blue", weight=3]; 2697[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2697[label="",style="solid", color="blue", weight=9]; 2697 -> 1800[label="",style="solid", color="blue", weight=3]; 2698[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2698[label="",style="solid", color="blue", weight=9]; 2698 -> 1801[label="",style="solid", color="blue", weight=3]; 2699[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2699[label="",style="solid", color="blue", weight=9]; 2699 -> 1802[label="",style="solid", color="blue", weight=3]; 2700[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2700[label="",style="solid", color="blue", weight=9]; 2700 -> 1803[label="",style="solid", color="blue", weight=3]; 2701[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2701[label="",style="solid", color="blue", weight=9]; 2701 -> 1804[label="",style="solid", color="blue", weight=3]; 2702[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2702[label="",style="solid", color="blue", weight=9]; 2702 -> 1805[label="",style="solid", color="blue", weight=3]; 2703[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2703[label="",style="solid", color="blue", weight=9]; 2703 -> 1806[label="",style="solid", color="blue", weight=3]; 2704[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2704[label="",style="solid", color="blue", weight=9]; 2704 -> 1807[label="",style="solid", color="blue", weight=3]; 2705[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2705[label="",style="solid", color="blue", weight=9]; 2705 -> 1808[label="",style="solid", color="blue", weight=3]; 2706[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2706[label="",style="solid", color="blue", weight=9]; 2706 -> 1809[label="",style="solid", color="blue", weight=3]; 2707[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1653 -> 2707[label="",style="solid", color="blue", weight=9]; 2707 -> 1810[label="",style="solid", color="blue", weight=3]; 1654 -> 386[label="",style="dashed", color="red", weight=0]; 1654[label="vwx230 == vwx250",fontsize=16,color="magenta"];1654 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1655 -> 388[label="",style="dashed", color="red", weight=0]; 1655[label="vwx230 == vwx250",fontsize=16,color="magenta"];1655 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1656 -> 393[label="",style="dashed", color="red", weight=0]; 1656[label="vwx230 == vwx250",fontsize=16,color="magenta"];1656 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1657 -> 395[label="",style="dashed", color="red", weight=0]; 1657[label="vwx230 == vwx250",fontsize=16,color="magenta"];1657 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1658 -> 399[label="",style="dashed", color="red", weight=0]; 1658[label="vwx230 == vwx250",fontsize=16,color="magenta"];1658 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1659 -> 394[label="",style="dashed", color="red", weight=0]; 1659[label="vwx230 == vwx250",fontsize=16,color="magenta"];1659 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1660 -> 391[label="",style="dashed", color="red", weight=0]; 1660[label="vwx230 == vwx250",fontsize=16,color="magenta"];1660 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1661 -> 398[label="",style="dashed", color="red", weight=0]; 1661[label="vwx230 == vwx250",fontsize=16,color="magenta"];1661 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1662 -> 392[label="",style="dashed", color="red", weight=0]; 1662[label="vwx230 == vwx250",fontsize=16,color="magenta"];1662 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1663 -> 397[label="",style="dashed", color="red", weight=0]; 1663[label="vwx230 == vwx250",fontsize=16,color="magenta"];1663 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1664 -> 389[label="",style="dashed", color="red", weight=0]; 1664[label="vwx230 == vwx250",fontsize=16,color="magenta"];1664 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1665 -> 390[label="",style="dashed", color="red", weight=0]; 1665[label="vwx230 == vwx250",fontsize=16,color="magenta"];1665 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1665 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1666 -> 396[label="",style="dashed", color="red", weight=0]; 1666[label="vwx230 == vwx250",fontsize=16,color="magenta"];1666 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1666 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1667 -> 387[label="",style="dashed", color="red", weight=0]; 1667[label="vwx230 == vwx250",fontsize=16,color="magenta"];1667 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1668[label="vwx250",fontsize=16,color="green",shape="box"];1669[label="vwx230",fontsize=16,color="green",shape="box"];1670[label="vwx250",fontsize=16,color="green",shape="box"];1671[label="vwx230",fontsize=16,color="green",shape="box"];1672[label="vwx250",fontsize=16,color="green",shape="box"];1673[label="vwx230",fontsize=16,color="green",shape="box"];1674[label="vwx250",fontsize=16,color="green",shape="box"];1675[label="vwx230",fontsize=16,color="green",shape="box"];1676[label="vwx250",fontsize=16,color="green",shape="box"];1677[label="vwx230",fontsize=16,color="green",shape="box"];1678[label="vwx250",fontsize=16,color="green",shape="box"];1679[label="vwx230",fontsize=16,color="green",shape="box"];1680[label="vwx250",fontsize=16,color="green",shape="box"];1681[label="vwx230",fontsize=16,color="green",shape="box"];1682[label="vwx250",fontsize=16,color="green",shape="box"];1683[label="vwx230",fontsize=16,color="green",shape="box"];1684[label="vwx250",fontsize=16,color="green",shape="box"];1685[label="vwx230",fontsize=16,color="green",shape="box"];1686[label="vwx250",fontsize=16,color="green",shape="box"];1687[label="vwx230",fontsize=16,color="green",shape="box"];1688[label="vwx250",fontsize=16,color="green",shape="box"];1689[label="vwx230",fontsize=16,color="green",shape="box"];1690[label="vwx250",fontsize=16,color="green",shape="box"];1691[label="vwx230",fontsize=16,color="green",shape="box"];1692[label="vwx250",fontsize=16,color="green",shape="box"];1693[label="vwx230",fontsize=16,color="green",shape="box"];1694[label="vwx250",fontsize=16,color="green",shape="box"];1695[label="vwx230",fontsize=16,color="green",shape="box"];1696 -> 1573[label="",style="dashed", color="red", weight=0]; 1696[label="primCmpNat (Succ vwx2200) vwx240",fontsize=16,color="magenta"];1696 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1696 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1697[label="GT",fontsize=16,color="green",shape="box"];1698[label="primCmpInt (Pos Zero) (Pos (Succ vwx2400))",fontsize=16,color="black",shape="box"];1698 -> 1841[label="",style="solid", color="black", weight=3]; 1699[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1699 -> 1842[label="",style="solid", color="black", weight=3]; 1700[label="primCmpInt (Pos Zero) (Neg (Succ vwx2400))",fontsize=16,color="black",shape="box"];1700 -> 1843[label="",style="solid", color="black", weight=3]; 1701[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1701 -> 1844[label="",style="solid", color="black", weight=3]; 1702[label="LT",fontsize=16,color="green",shape="box"];1703 -> 1573[label="",style="dashed", color="red", weight=0]; 1703[label="primCmpNat vwx240 (Succ vwx2200)",fontsize=16,color="magenta"];1703 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1703 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1704[label="primCmpInt (Neg Zero) (Pos (Succ vwx2400))",fontsize=16,color="black",shape="box"];1704 -> 1847[label="",style="solid", color="black", weight=3]; 1705[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1705 -> 1848[label="",style="solid", color="black", weight=3]; 1706[label="primCmpInt (Neg Zero) (Neg (Succ vwx2400))",fontsize=16,color="black",shape="box"];1706 -> 1849[label="",style="solid", color="black", weight=3]; 1707[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1707 -> 1850[label="",style="solid", color="black", weight=3]; 1708 -> 1851[label="",style="dashed", color="red", weight=0]; 1708[label="compare1 vwx22 vwx24 (vwx22 <= vwx24)",fontsize=16,color="magenta"];1708 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1709[label="EQ",fontsize=16,color="green",shape="box"];1710 -> 1853[label="",style="dashed", color="red", weight=0]; 1710[label="compare1 vwx22 vwx24 (vwx22 <= vwx24)",fontsize=16,color="magenta"];1710 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1711[label="EQ",fontsize=16,color="green",shape="box"];1712 -> 1855[label="",style="dashed", color="red", weight=0]; 1712[label="compare1 vwx22 vwx24 (vwx22 <= vwx24)",fontsize=16,color="magenta"];1712 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1713[label="EQ",fontsize=16,color="green",shape="box"];1714[label="primCmpNat (Succ vwx2200) vwx240",fontsize=16,color="burlywood",shape="box"];2708[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];1714 -> 2708[label="",style="solid", color="burlywood", weight=9]; 2708 -> 1857[label="",style="solid", color="burlywood", weight=3]; 2709[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];1714 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 1858[label="",style="solid", color="burlywood", weight=3]; 1715[label="primCmpNat Zero vwx240",fontsize=16,color="burlywood",shape="box"];2710[label="vwx240/Succ vwx2400",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 1859[label="",style="solid", color="burlywood", weight=3]; 2711[label="vwx240/Zero",fontsize=10,color="white",style="solid",shape="box"];1715 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 1860[label="",style="solid", color="burlywood", weight=3]; 1716 -> 706[label="",style="dashed", color="red", weight=0]; 1716[label="vwx240 * vwx221",fontsize=16,color="magenta"];1716 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1716 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1717 -> 706[label="",style="dashed", color="red", weight=0]; 1717[label="vwx220 * vwx241",fontsize=16,color="magenta"];1717 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1717 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1718[label="vwx240 * vwx221",fontsize=16,color="burlywood",shape="triangle"];2712[label="vwx240/Integer vwx2400",fontsize=10,color="white",style="solid",shape="box"];1718 -> 2712[label="",style="solid", color="burlywood", weight=9]; 2712 -> 1865[label="",style="solid", color="burlywood", weight=3]; 1719 -> 1718[label="",style="dashed", color="red", weight=0]; 1719[label="vwx220 * vwx241",fontsize=16,color="magenta"];1719 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1868[label="",style="dashed", color="red", weight=0]; 1720[label="compare1 vwx22 vwx24 (vwx22 <= vwx24)",fontsize=16,color="magenta"];1720 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1721[label="EQ",fontsize=16,color="green",shape="box"];1722[label="vwx241",fontsize=16,color="green",shape="box"];1723[label="vwx221",fontsize=16,color="green",shape="box"];1724 -> 1870[label="",style="dashed", color="red", weight=0]; 1724[label="primCompAux0 vwx65 (compare vwx220 vwx240)",fontsize=16,color="magenta"];1724 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1873[label="",style="dashed", color="red", weight=0]; 1725[label="compare1 vwx22 vwx24 (vwx22 <= vwx24)",fontsize=16,color="magenta"];1725 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1726[label="EQ",fontsize=16,color="green",shape="box"];1727[label="primCmpDouble (Double vwx220 (Pos vwx2210)) (Double vwx240 (Pos vwx2410))",fontsize=16,color="black",shape="box"];1727 -> 1875[label="",style="solid", color="black", weight=3]; 1728[label="primCmpDouble (Double vwx220 (Pos vwx2210)) (Double vwx240 (Neg vwx2410))",fontsize=16,color="black",shape="box"];1728 -> 1876[label="",style="solid", color="black", weight=3]; 1729[label="primCmpDouble (Double vwx220 (Neg vwx2210)) (Double vwx240 (Pos vwx2410))",fontsize=16,color="black",shape="box"];1729 -> 1877[label="",style="solid", color="black", weight=3]; 1730[label="primCmpDouble (Double vwx220 (Neg vwx2210)) (Double vwx240 (Neg vwx2410))",fontsize=16,color="black",shape="box"];1730 -> 1878[label="",style="solid", color="black", weight=3]; 1731[label="primCmpFloat (Float vwx220 (Pos vwx2210)) (Float vwx240 (Pos vwx2410))",fontsize=16,color="black",shape="box"];1731 -> 1879[label="",style="solid", color="black", weight=3]; 1732[label="primCmpFloat (Float vwx220 (Pos vwx2210)) (Float vwx240 (Neg vwx2410))",fontsize=16,color="black",shape="box"];1732 -> 1880[label="",style="solid", color="black", weight=3]; 1733[label="primCmpFloat (Float vwx220 (Neg vwx2210)) (Float vwx240 (Pos vwx2410))",fontsize=16,color="black",shape="box"];1733 -> 1881[label="",style="solid", color="black", weight=3]; 1734[label="primCmpFloat (Float vwx220 (Neg vwx2210)) (Float vwx240 (Neg vwx2410))",fontsize=16,color="black",shape="box"];1734 -> 1882[label="",style="solid", color="black", weight=3]; 1735[label="primMulNat (Succ vwx31000) (Succ vwx41100)",fontsize=16,color="black",shape="box"];1735 -> 1883[label="",style="solid", color="black", weight=3]; 1736[label="primMulNat (Succ vwx31000) Zero",fontsize=16,color="black",shape="box"];1736 -> 1884[label="",style="solid", color="black", weight=3]; 1737[label="primMulNat Zero (Succ vwx41100)",fontsize=16,color="black",shape="box"];1737 -> 1885[label="",style="solid", color="black", weight=3]; 1738[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1738 -> 1886[label="",style="solid", color="black", weight=3]; 1739[label="vwx231",fontsize=16,color="green",shape="box"];1740[label="vwx251",fontsize=16,color="green",shape="box"];1741[label="vwx231",fontsize=16,color="green",shape="box"];1742[label="vwx251",fontsize=16,color="green",shape="box"];1743[label="vwx231",fontsize=16,color="green",shape="box"];1744[label="vwx251",fontsize=16,color="green",shape="box"];1745[label="vwx231",fontsize=16,color="green",shape="box"];1746[label="vwx251",fontsize=16,color="green",shape="box"];1747[label="vwx231",fontsize=16,color="green",shape="box"];1748[label="vwx251",fontsize=16,color="green",shape="box"];1749[label="vwx231",fontsize=16,color="green",shape="box"];1750[label="vwx251",fontsize=16,color="green",shape="box"];1751[label="vwx231",fontsize=16,color="green",shape="box"];1752[label="vwx251",fontsize=16,color="green",shape="box"];1753[label="vwx231",fontsize=16,color="green",shape="box"];1754[label="vwx251",fontsize=16,color="green",shape="box"];1755[label="vwx231",fontsize=16,color="green",shape="box"];1756[label="vwx251",fontsize=16,color="green",shape="box"];1757[label="vwx231",fontsize=16,color="green",shape="box"];1758[label="vwx251",fontsize=16,color="green",shape="box"];1759[label="vwx231",fontsize=16,color="green",shape="box"];1760[label="vwx251",fontsize=16,color="green",shape="box"];1761[label="vwx231",fontsize=16,color="green",shape="box"];1762[label="vwx251",fontsize=16,color="green",shape="box"];1763[label="vwx231",fontsize=16,color="green",shape="box"];1764[label="vwx251",fontsize=16,color="green",shape="box"];1765[label="vwx231",fontsize=16,color="green",shape="box"];1766[label="vwx251",fontsize=16,color="green",shape="box"];1767[label="vwx230",fontsize=16,color="green",shape="box"];1768[label="vwx250",fontsize=16,color="green",shape="box"];1769[label="vwx230",fontsize=16,color="green",shape="box"];1770[label="vwx250",fontsize=16,color="green",shape="box"];1771[label="vwx230",fontsize=16,color="green",shape="box"];1772[label="vwx250",fontsize=16,color="green",shape="box"];1773[label="vwx230",fontsize=16,color="green",shape="box"];1774[label="vwx250",fontsize=16,color="green",shape="box"];1775[label="vwx230",fontsize=16,color="green",shape="box"];1776[label="vwx250",fontsize=16,color="green",shape="box"];1777[label="vwx230",fontsize=16,color="green",shape="box"];1778[label="vwx250",fontsize=16,color="green",shape="box"];1779[label="vwx230",fontsize=16,color="green",shape="box"];1780[label="vwx250",fontsize=16,color="green",shape="box"];1781[label="vwx230",fontsize=16,color="green",shape="box"];1782[label="vwx250",fontsize=16,color="green",shape="box"];1783[label="vwx230",fontsize=16,color="green",shape="box"];1784[label="vwx250",fontsize=16,color="green",shape="box"];1785[label="vwx230",fontsize=16,color="green",shape="box"];1786[label="vwx250",fontsize=16,color="green",shape="box"];1787[label="vwx230",fontsize=16,color="green",shape="box"];1788[label="vwx250",fontsize=16,color="green",shape="box"];1789[label="vwx230",fontsize=16,color="green",shape="box"];1790[label="vwx250",fontsize=16,color="green",shape="box"];1791[label="vwx230",fontsize=16,color="green",shape="box"];1792[label="vwx250",fontsize=16,color="green",shape="box"];1793[label="vwx230",fontsize=16,color="green",shape="box"];1794[label="vwx250",fontsize=16,color="green",shape="box"];1795[label="vwx232 <= vwx252",fontsize=16,color="blue",shape="box"];2713[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2713[label="",style="solid", color="blue", weight=9]; 2713 -> 1887[label="",style="solid", color="blue", weight=3]; 2714[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2714[label="",style="solid", color="blue", weight=9]; 2714 -> 1888[label="",style="solid", color="blue", weight=3]; 2715[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2715[label="",style="solid", color="blue", weight=9]; 2715 -> 1889[label="",style="solid", color="blue", weight=3]; 2716[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2716[label="",style="solid", color="blue", weight=9]; 2716 -> 1890[label="",style="solid", color="blue", weight=3]; 2717[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2717[label="",style="solid", color="blue", weight=9]; 2717 -> 1891[label="",style="solid", color="blue", weight=3]; 2718[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2718[label="",style="solid", color="blue", weight=9]; 2718 -> 1892[label="",style="solid", color="blue", weight=3]; 2719[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2719[label="",style="solid", color="blue", weight=9]; 2719 -> 1893[label="",style="solid", color="blue", weight=3]; 2720[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2720[label="",style="solid", color="blue", weight=9]; 2720 -> 1894[label="",style="solid", color="blue", weight=3]; 2721[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2721[label="",style="solid", color="blue", weight=9]; 2721 -> 1895[label="",style="solid", color="blue", weight=3]; 2722[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2722[label="",style="solid", color="blue", weight=9]; 2722 -> 1896[label="",style="solid", color="blue", weight=3]; 2723[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2723[label="",style="solid", color="blue", weight=9]; 2723 -> 1897[label="",style="solid", color="blue", weight=3]; 2724[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2724[label="",style="solid", color="blue", weight=9]; 2724 -> 1898[label="",style="solid", color="blue", weight=3]; 2725[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2725[label="",style="solid", color="blue", weight=9]; 2725 -> 1899[label="",style="solid", color="blue", weight=3]; 2726[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2726[label="",style="solid", color="blue", weight=9]; 2726 -> 1900[label="",style="solid", color="blue", weight=3]; 1796[label="vwx231 == vwx251",fontsize=16,color="blue",shape="box"];2727[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2727[label="",style="solid", color="blue", weight=9]; 2727 -> 1901[label="",style="solid", color="blue", weight=3]; 2728[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2728[label="",style="solid", color="blue", weight=9]; 2728 -> 1902[label="",style="solid", color="blue", weight=3]; 2729[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2729[label="",style="solid", color="blue", weight=9]; 2729 -> 1903[label="",style="solid", color="blue", weight=3]; 2730[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2730[label="",style="solid", color="blue", weight=9]; 2730 -> 1904[label="",style="solid", color="blue", weight=3]; 2731[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2731[label="",style="solid", color="blue", weight=9]; 2731 -> 1905[label="",style="solid", color="blue", weight=3]; 2732[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2732[label="",style="solid", color="blue", weight=9]; 2732 -> 1906[label="",style="solid", color="blue", weight=3]; 2733[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2733[label="",style="solid", color="blue", weight=9]; 2733 -> 1907[label="",style="solid", color="blue", weight=3]; 2734[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2734[label="",style="solid", color="blue", weight=9]; 2734 -> 1908[label="",style="solid", color="blue", weight=3]; 2735[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2735[label="",style="solid", color="blue", weight=9]; 2735 -> 1909[label="",style="solid", color="blue", weight=3]; 2736[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2736[label="",style="solid", color="blue", weight=9]; 2736 -> 1910[label="",style="solid", color="blue", weight=3]; 2737[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2737[label="",style="solid", color="blue", weight=9]; 2737 -> 1911[label="",style="solid", color="blue", weight=3]; 2738[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2738[label="",style="solid", color="blue", weight=9]; 2738 -> 1912[label="",style="solid", color="blue", weight=3]; 2739[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2739[label="",style="solid", color="blue", weight=9]; 2739 -> 1913[label="",style="solid", color="blue", weight=3]; 2740[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2740[label="",style="solid", color="blue", weight=9]; 2740 -> 1914[label="",style="solid", color="blue", weight=3]; 1797 -> 675[label="",style="dashed", color="red", weight=0]; 1797[label="vwx231 < vwx251",fontsize=16,color="magenta"];1797 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1797 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1798 -> 676[label="",style="dashed", color="red", weight=0]; 1798[label="vwx231 < vwx251",fontsize=16,color="magenta"];1798 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1798 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1799 -> 677[label="",style="dashed", color="red", weight=0]; 1799[label="vwx231 < vwx251",fontsize=16,color="magenta"];1799 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1799 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1800 -> 678[label="",style="dashed", color="red", weight=0]; 1800[label="vwx231 < vwx251",fontsize=16,color="magenta"];1800 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1800 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1801 -> 679[label="",style="dashed", color="red", weight=0]; 1801[label="vwx231 < vwx251",fontsize=16,color="magenta"];1801 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1801 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1802 -> 680[label="",style="dashed", color="red", weight=0]; 1802[label="vwx231 < vwx251",fontsize=16,color="magenta"];1802 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1802 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1803 -> 681[label="",style="dashed", color="red", weight=0]; 1803[label="vwx231 < vwx251",fontsize=16,color="magenta"];1803 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1803 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1804 -> 682[label="",style="dashed", color="red", weight=0]; 1804[label="vwx231 < vwx251",fontsize=16,color="magenta"];1804 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1804 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1805 -> 683[label="",style="dashed", color="red", weight=0]; 1805[label="vwx231 < vwx251",fontsize=16,color="magenta"];1805 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1805 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1806 -> 684[label="",style="dashed", color="red", weight=0]; 1806[label="vwx231 < vwx251",fontsize=16,color="magenta"];1806 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1806 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1807 -> 685[label="",style="dashed", color="red", weight=0]; 1807[label="vwx231 < vwx251",fontsize=16,color="magenta"];1807 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1807 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1808 -> 686[label="",style="dashed", color="red", weight=0]; 1808[label="vwx231 < vwx251",fontsize=16,color="magenta"];1808 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1808 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1809 -> 687[label="",style="dashed", color="red", weight=0]; 1809[label="vwx231 < vwx251",fontsize=16,color="magenta"];1809 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1809 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1810 -> 688[label="",style="dashed", color="red", weight=0]; 1810[label="vwx231 < vwx251",fontsize=16,color="magenta"];1810 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1810 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1811[label="vwx230",fontsize=16,color="green",shape="box"];1812[label="vwx250",fontsize=16,color="green",shape="box"];1813[label="vwx230",fontsize=16,color="green",shape="box"];1814[label="vwx250",fontsize=16,color="green",shape="box"];1815[label="vwx230",fontsize=16,color="green",shape="box"];1816[label="vwx250",fontsize=16,color="green",shape="box"];1817[label="vwx230",fontsize=16,color="green",shape="box"];1818[label="vwx250",fontsize=16,color="green",shape="box"];1819[label="vwx230",fontsize=16,color="green",shape="box"];1820[label="vwx250",fontsize=16,color="green",shape="box"];1821[label="vwx230",fontsize=16,color="green",shape="box"];1822[label="vwx250",fontsize=16,color="green",shape="box"];1823[label="vwx230",fontsize=16,color="green",shape="box"];1824[label="vwx250",fontsize=16,color="green",shape="box"];1825[label="vwx230",fontsize=16,color="green",shape="box"];1826[label="vwx250",fontsize=16,color="green",shape="box"];1827[label="vwx230",fontsize=16,color="green",shape="box"];1828[label="vwx250",fontsize=16,color="green",shape="box"];1829[label="vwx230",fontsize=16,color="green",shape="box"];1830[label="vwx250",fontsize=16,color="green",shape="box"];1831[label="vwx230",fontsize=16,color="green",shape="box"];1832[label="vwx250",fontsize=16,color="green",shape="box"];1833[label="vwx230",fontsize=16,color="green",shape="box"];1834[label="vwx250",fontsize=16,color="green",shape="box"];1835[label="vwx230",fontsize=16,color="green",shape="box"];1836[label="vwx250",fontsize=16,color="green",shape="box"];1837[label="vwx230",fontsize=16,color="green",shape="box"];1838[label="vwx250",fontsize=16,color="green",shape="box"];1839[label="vwx240",fontsize=16,color="green",shape="box"];1840[label="Succ vwx2200",fontsize=16,color="green",shape="box"];1841 -> 1573[label="",style="dashed", color="red", weight=0]; 1841[label="primCmpNat Zero (Succ vwx2400)",fontsize=16,color="magenta"];1841 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1841 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1842[label="EQ",fontsize=16,color="green",shape="box"];1843[label="GT",fontsize=16,color="green",shape="box"];1844[label="EQ",fontsize=16,color="green",shape="box"];1845[label="Succ vwx2200",fontsize=16,color="green",shape="box"];1846[label="vwx240",fontsize=16,color="green",shape="box"];1847[label="LT",fontsize=16,color="green",shape="box"];1848[label="EQ",fontsize=16,color="green",shape="box"];1849 -> 1573[label="",style="dashed", color="red", weight=0]; 1849[label="primCmpNat (Succ vwx2400) Zero",fontsize=16,color="magenta"];1849 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1849 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1850[label="EQ",fontsize=16,color="green",shape="box"];1852 -> 861[label="",style="dashed", color="red", weight=0]; 1852[label="vwx22 <= vwx24",fontsize=16,color="magenta"];1852 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1852 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1851[label="compare1 vwx22 vwx24 vwx66",fontsize=16,color="burlywood",shape="triangle"];2741[label="vwx66/False",fontsize=10,color="white",style="solid",shape="box"];1851 -> 2741[label="",style="solid", color="burlywood", weight=9]; 2741 -> 1949[label="",style="solid", color="burlywood", weight=3]; 2742[label="vwx66/True",fontsize=10,color="white",style="solid",shape="box"];1851 -> 2742[label="",style="solid", color="burlywood", weight=9]; 2742 -> 1950[label="",style="solid", color="burlywood", weight=3]; 1854 -> 862[label="",style="dashed", color="red", weight=0]; 1854[label="vwx22 <= vwx24",fontsize=16,color="magenta"];1854 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1854 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1853[label="compare1 vwx22 vwx24 vwx67",fontsize=16,color="burlywood",shape="triangle"];2743[label="vwx67/False",fontsize=10,color="white",style="solid",shape="box"];1853 -> 2743[label="",style="solid", color="burlywood", weight=9]; 2743 -> 1953[label="",style="solid", color="burlywood", weight=3]; 2744[label="vwx67/True",fontsize=10,color="white",style="solid",shape="box"];1853 -> 2744[label="",style="solid", color="burlywood", weight=9]; 2744 -> 1954[label="",style="solid", color="burlywood", weight=3]; 1856 -> 866[label="",style="dashed", color="red", weight=0]; 1856[label="vwx22 <= vwx24",fontsize=16,color="magenta"];1856 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1856 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1855[label="compare1 vwx22 vwx24 vwx68",fontsize=16,color="burlywood",shape="triangle"];2745[label="vwx68/False",fontsize=10,color="white",style="solid",shape="box"];1855 -> 2745[label="",style="solid", color="burlywood", weight=9]; 2745 -> 1957[label="",style="solid", color="burlywood", weight=3]; 2746[label="vwx68/True",fontsize=10,color="white",style="solid",shape="box"];1855 -> 2746[label="",style="solid", color="burlywood", weight=9]; 2746 -> 1958[label="",style="solid", color="burlywood", weight=3]; 1857[label="primCmpNat (Succ vwx2200) (Succ vwx2400)",fontsize=16,color="black",shape="box"];1857 -> 1959[label="",style="solid", color="black", weight=3]; 1858[label="primCmpNat (Succ vwx2200) Zero",fontsize=16,color="black",shape="box"];1858 -> 1960[label="",style="solid", color="black", weight=3]; 1859[label="primCmpNat Zero (Succ vwx2400)",fontsize=16,color="black",shape="box"];1859 -> 1961[label="",style="solid", color="black", weight=3]; 1860[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1860 -> 1962[label="",style="solid", color="black", weight=3]; 1861[label="vwx221",fontsize=16,color="green",shape="box"];1862[label="vwx240",fontsize=16,color="green",shape="box"];1863[label="vwx241",fontsize=16,color="green",shape="box"];1864[label="vwx220",fontsize=16,color="green",shape="box"];1865[label="Integer vwx2400 * vwx221",fontsize=16,color="burlywood",shape="box"];2747[label="vwx221/Integer vwx2210",fontsize=10,color="white",style="solid",shape="box"];1865 -> 2747[label="",style="solid", color="burlywood", weight=9]; 2747 -> 1963[label="",style="solid", color="burlywood", weight=3]; 1866[label="vwx220",fontsize=16,color="green",shape="box"];1867[label="vwx241",fontsize=16,color="green",shape="box"];1869 -> 869[label="",style="dashed", color="red", weight=0]; 1869[label="vwx22 <= vwx24",fontsize=16,color="magenta"];1869 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1869 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1868[label="compare1 vwx22 vwx24 vwx69",fontsize=16,color="burlywood",shape="triangle"];2748[label="vwx69/False",fontsize=10,color="white",style="solid",shape="box"];1868 -> 2748[label="",style="solid", color="burlywood", weight=9]; 2748 -> 1966[label="",style="solid", color="burlywood", weight=3]; 2749[label="vwx69/True",fontsize=10,color="white",style="solid",shape="box"];1868 -> 2749[label="",style="solid", color="burlywood", weight=9]; 2749 -> 1967[label="",style="solid", color="burlywood", weight=3]; 1871[label="compare vwx220 vwx240",fontsize=16,color="blue",shape="box"];2750[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2750[label="",style="solid", color="blue", weight=9]; 2750 -> 1968[label="",style="solid", color="blue", weight=3]; 2751[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2751[label="",style="solid", color="blue", weight=9]; 2751 -> 1969[label="",style="solid", color="blue", weight=3]; 2752[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2752[label="",style="solid", color="blue", weight=9]; 2752 -> 1970[label="",style="solid", color="blue", weight=3]; 2753[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2753[label="",style="solid", color="blue", weight=9]; 2753 -> 1971[label="",style="solid", color="blue", weight=3]; 2754[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2754[label="",style="solid", color="blue", weight=9]; 2754 -> 1972[label="",style="solid", color="blue", weight=3]; 2755[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2755[label="",style="solid", color="blue", weight=9]; 2755 -> 1973[label="",style="solid", color="blue", weight=3]; 2756[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2756[label="",style="solid", color="blue", weight=9]; 2756 -> 1974[label="",style="solid", color="blue", weight=3]; 2757[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2757[label="",style="solid", color="blue", weight=9]; 2757 -> 1975[label="",style="solid", color="blue", weight=3]; 2758[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2758[label="",style="solid", color="blue", weight=9]; 2758 -> 1976[label="",style="solid", color="blue", weight=3]; 2759[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2759[label="",style="solid", color="blue", weight=9]; 2759 -> 1977[label="",style="solid", color="blue", weight=3]; 2760[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2760[label="",style="solid", color="blue", weight=9]; 2760 -> 1978[label="",style="solid", color="blue", weight=3]; 2761[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2761[label="",style="solid", color="blue", weight=9]; 2761 -> 1979[label="",style="solid", color="blue", weight=3]; 2762[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2762[label="",style="solid", color="blue", weight=9]; 2762 -> 1980[label="",style="solid", color="blue", weight=3]; 2763[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1871 -> 2763[label="",style="solid", color="blue", weight=9]; 2763 -> 1981[label="",style="solid", color="blue", weight=3]; 1872[label="vwx65",fontsize=16,color="green",shape="box"];1870[label="primCompAux0 vwx73 vwx74",fontsize=16,color="burlywood",shape="triangle"];2764[label="vwx74/LT",fontsize=10,color="white",style="solid",shape="box"];1870 -> 2764[label="",style="solid", color="burlywood", weight=9]; 2764 -> 1982[label="",style="solid", color="burlywood", weight=3]; 2765[label="vwx74/EQ",fontsize=10,color="white",style="solid",shape="box"];1870 -> 2765[label="",style="solid", color="burlywood", weight=9]; 2765 -> 1983[label="",style="solid", color="burlywood", weight=3]; 2766[label="vwx74/GT",fontsize=10,color="white",style="solid",shape="box"];1870 -> 2766[label="",style="solid", color="burlywood", weight=9]; 2766 -> 1984[label="",style="solid", color="burlywood", weight=3]; 1874 -> 871[label="",style="dashed", color="red", weight=0]; 1874[label="vwx22 <= vwx24",fontsize=16,color="magenta"];1874 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1873[label="compare1 vwx22 vwx24 vwx75",fontsize=16,color="burlywood",shape="triangle"];2767[label="vwx75/False",fontsize=10,color="white",style="solid",shape="box"];1873 -> 2767[label="",style="solid", color="burlywood", weight=9]; 2767 -> 1987[label="",style="solid", color="burlywood", weight=3]; 2768[label="vwx75/True",fontsize=10,color="white",style="solid",shape="box"];1873 -> 2768[label="",style="solid", color="burlywood", weight=9]; 2768 -> 1988[label="",style="solid", color="burlywood", weight=3]; 1875 -> 1123[label="",style="dashed", color="red", weight=0]; 1875[label="compare (vwx220 * Pos vwx2410) (Pos vwx2210 * vwx240)",fontsize=16,color="magenta"];1875 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1123[label="",style="dashed", color="red", weight=0]; 1876[label="compare (vwx220 * Pos vwx2410) (Neg vwx2210 * vwx240)",fontsize=16,color="magenta"];1876 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1123[label="",style="dashed", color="red", weight=0]; 1877[label="compare (vwx220 * Neg vwx2410) (Pos vwx2210 * vwx240)",fontsize=16,color="magenta"];1877 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1123[label="",style="dashed", color="red", weight=0]; 1878[label="compare (vwx220 * Neg vwx2410) (Neg vwx2210 * vwx240)",fontsize=16,color="magenta"];1878 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1123[label="",style="dashed", color="red", weight=0]; 1879[label="compare (vwx220 * Pos vwx2410) (Pos vwx2210 * vwx240)",fontsize=16,color="magenta"];1879 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1123[label="",style="dashed", color="red", weight=0]; 1880[label="compare (vwx220 * Pos vwx2410) (Neg vwx2210 * vwx240)",fontsize=16,color="magenta"];1880 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1123[label="",style="dashed", color="red", weight=0]; 1881[label="compare (vwx220 * Neg vwx2410) (Pos vwx2210 * vwx240)",fontsize=16,color="magenta"];1881 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1123[label="",style="dashed", color="red", weight=0]; 1882[label="compare (vwx220 * Neg vwx2410) (Neg vwx2210 * vwx240)",fontsize=16,color="magenta"];1882 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2005[label="",style="dashed", color="red", weight=0]; 1883[label="primPlusNat (primMulNat vwx31000 (Succ vwx41100)) (Succ vwx41100)",fontsize=16,color="magenta"];1883 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1884[label="Zero",fontsize=16,color="green",shape="box"];1885[label="Zero",fontsize=16,color="green",shape="box"];1886[label="Zero",fontsize=16,color="green",shape="box"];1887 -> 860[label="",style="dashed", color="red", weight=0]; 1887[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1887 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1888 -> 861[label="",style="dashed", color="red", weight=0]; 1888[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1888 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1889 -> 862[label="",style="dashed", color="red", weight=0]; 1889[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1889 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1890 -> 863[label="",style="dashed", color="red", weight=0]; 1890[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1890 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1891 -> 864[label="",style="dashed", color="red", weight=0]; 1891[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1891 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1892 -> 865[label="",style="dashed", color="red", weight=0]; 1892[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1892 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1893 -> 866[label="",style="dashed", color="red", weight=0]; 1893[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1893 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1894 -> 867[label="",style="dashed", color="red", weight=0]; 1894[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1894 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1895 -> 868[label="",style="dashed", color="red", weight=0]; 1895[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1895 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1896 -> 869[label="",style="dashed", color="red", weight=0]; 1896[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1896 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1897 -> 870[label="",style="dashed", color="red", weight=0]; 1897[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1897 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1898 -> 871[label="",style="dashed", color="red", weight=0]; 1898[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1898 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1899 -> 872[label="",style="dashed", color="red", weight=0]; 1899[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1899 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1900 -> 873[label="",style="dashed", color="red", weight=0]; 1900[label="vwx232 <= vwx252",fontsize=16,color="magenta"];1900 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1901 -> 386[label="",style="dashed", color="red", weight=0]; 1901[label="vwx231 == vwx251",fontsize=16,color="magenta"];1901 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1902 -> 388[label="",style="dashed", color="red", weight=0]; 1902[label="vwx231 == vwx251",fontsize=16,color="magenta"];1902 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1903 -> 393[label="",style="dashed", color="red", weight=0]; 1903[label="vwx231 == vwx251",fontsize=16,color="magenta"];1903 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1904 -> 395[label="",style="dashed", color="red", weight=0]; 1904[label="vwx231 == vwx251",fontsize=16,color="magenta"];1904 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1905 -> 399[label="",style="dashed", color="red", weight=0]; 1905[label="vwx231 == vwx251",fontsize=16,color="magenta"];1905 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1906 -> 394[label="",style="dashed", color="red", weight=0]; 1906[label="vwx231 == vwx251",fontsize=16,color="magenta"];1906 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1907 -> 391[label="",style="dashed", color="red", weight=0]; 1907[label="vwx231 == vwx251",fontsize=16,color="magenta"];1907 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1908 -> 398[label="",style="dashed", color="red", weight=0]; 1908[label="vwx231 == vwx251",fontsize=16,color="magenta"];1908 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1909 -> 392[label="",style="dashed", color="red", weight=0]; 1909[label="vwx231 == vwx251",fontsize=16,color="magenta"];1909 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1910 -> 397[label="",style="dashed", color="red", weight=0]; 1910[label="vwx231 == vwx251",fontsize=16,color="magenta"];1910 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1911 -> 389[label="",style="dashed", color="red", weight=0]; 1911[label="vwx231 == vwx251",fontsize=16,color="magenta"];1911 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1912 -> 390[label="",style="dashed", color="red", weight=0]; 1912[label="vwx231 == vwx251",fontsize=16,color="magenta"];1912 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1913 -> 396[label="",style="dashed", color="red", weight=0]; 1913[label="vwx231 == vwx251",fontsize=16,color="magenta"];1913 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1914 -> 387[label="",style="dashed", color="red", weight=0]; 1914[label="vwx231 == vwx251",fontsize=16,color="magenta"];1914 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1915[label="vwx251",fontsize=16,color="green",shape="box"];1916[label="vwx231",fontsize=16,color="green",shape="box"];1917[label="vwx251",fontsize=16,color="green",shape="box"];1918[label="vwx231",fontsize=16,color="green",shape="box"];1919[label="vwx251",fontsize=16,color="green",shape="box"];1920[label="vwx231",fontsize=16,color="green",shape="box"];1921[label="vwx251",fontsize=16,color="green",shape="box"];1922[label="vwx231",fontsize=16,color="green",shape="box"];1923[label="vwx251",fontsize=16,color="green",shape="box"];1924[label="vwx231",fontsize=16,color="green",shape="box"];1925[label="vwx251",fontsize=16,color="green",shape="box"];1926[label="vwx231",fontsize=16,color="green",shape="box"];1927[label="vwx251",fontsize=16,color="green",shape="box"];1928[label="vwx231",fontsize=16,color="green",shape="box"];1929[label="vwx251",fontsize=16,color="green",shape="box"];1930[label="vwx231",fontsize=16,color="green",shape="box"];1931[label="vwx251",fontsize=16,color="green",shape="box"];1932[label="vwx231",fontsize=16,color="green",shape="box"];1933[label="vwx251",fontsize=16,color="green",shape="box"];1934[label="vwx231",fontsize=16,color="green",shape="box"];1935[label="vwx251",fontsize=16,color="green",shape="box"];1936[label="vwx231",fontsize=16,color="green",shape="box"];1937[label="vwx251",fontsize=16,color="green",shape="box"];1938[label="vwx231",fontsize=16,color="green",shape="box"];1939[label="vwx251",fontsize=16,color="green",shape="box"];1940[label="vwx231",fontsize=16,color="green",shape="box"];1941[label="vwx251",fontsize=16,color="green",shape="box"];1942[label="vwx231",fontsize=16,color="green",shape="box"];1943[label="Succ vwx2400",fontsize=16,color="green",shape="box"];1944[label="Zero",fontsize=16,color="green",shape="box"];1945[label="Zero",fontsize=16,color="green",shape="box"];1946[label="Succ vwx2400",fontsize=16,color="green",shape="box"];1947[label="vwx22",fontsize=16,color="green",shape="box"];1948[label="vwx24",fontsize=16,color="green",shape="box"];1949[label="compare1 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1949 -> 2063[label="",style="solid", color="black", weight=3]; 1950[label="compare1 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1950 -> 2064[label="",style="solid", color="black", weight=3]; 1951[label="vwx22",fontsize=16,color="green",shape="box"];1952[label="vwx24",fontsize=16,color="green",shape="box"];1953[label="compare1 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1953 -> 2065[label="",style="solid", color="black", weight=3]; 1954[label="compare1 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1954 -> 2066[label="",style="solid", color="black", weight=3]; 1955[label="vwx22",fontsize=16,color="green",shape="box"];1956[label="vwx24",fontsize=16,color="green",shape="box"];1957[label="compare1 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1957 -> 2067[label="",style="solid", color="black", weight=3]; 1958[label="compare1 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1958 -> 2068[label="",style="solid", color="black", weight=3]; 1959 -> 1573[label="",style="dashed", color="red", weight=0]; 1959[label="primCmpNat vwx2200 vwx2400",fontsize=16,color="magenta"];1959 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1960[label="GT",fontsize=16,color="green",shape="box"];1961[label="LT",fontsize=16,color="green",shape="box"];1962[label="EQ",fontsize=16,color="green",shape="box"];1963[label="Integer vwx2400 * Integer vwx2210",fontsize=16,color="black",shape="box"];1963 -> 2071[label="",style="solid", color="black", weight=3]; 1964[label="vwx22",fontsize=16,color="green",shape="box"];1965[label="vwx24",fontsize=16,color="green",shape="box"];1966[label="compare1 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1966 -> 2072[label="",style="solid", color="black", weight=3]; 1967[label="compare1 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1967 -> 2073[label="",style="solid", color="black", weight=3]; 1968 -> 1123[label="",style="dashed", color="red", weight=0]; 1968[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1968 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1969 -> 1125[label="",style="dashed", color="red", weight=0]; 1969[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1969 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1127[label="",style="dashed", color="red", weight=0]; 1970[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1970 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1971 -> 1129[label="",style="dashed", color="red", weight=0]; 1971[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1971 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1131[label="",style="dashed", color="red", weight=0]; 1972[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1972 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1973 -> 4[label="",style="dashed", color="red", weight=0]; 1973[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1973 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1135[label="",style="dashed", color="red", weight=0]; 1974[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1974 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1137[label="",style="dashed", color="red", weight=0]; 1975[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1975 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1976 -> 1139[label="",style="dashed", color="red", weight=0]; 1976[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1976 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1977 -> 1141[label="",style="dashed", color="red", weight=0]; 1977[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1977 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1978 -> 1143[label="",style="dashed", color="red", weight=0]; 1978[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1978 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1145[label="",style="dashed", color="red", weight=0]; 1979[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1979 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1147[label="",style="dashed", color="red", weight=0]; 1980[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1980 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1149[label="",style="dashed", color="red", weight=0]; 1981[label="compare vwx220 vwx240",fontsize=16,color="magenta"];1981 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1982[label="primCompAux0 vwx73 LT",fontsize=16,color="black",shape="box"];1982 -> 2102[label="",style="solid", color="black", weight=3]; 1983[label="primCompAux0 vwx73 EQ",fontsize=16,color="black",shape="box"];1983 -> 2103[label="",style="solid", color="black", weight=3]; 1984[label="primCompAux0 vwx73 GT",fontsize=16,color="black",shape="box"];1984 -> 2104[label="",style="solid", color="black", weight=3]; 1985[label="vwx22",fontsize=16,color="green",shape="box"];1986[label="vwx24",fontsize=16,color="green",shape="box"];1987[label="compare1 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1987 -> 2105[label="",style="solid", color="black", weight=3]; 1988[label="compare1 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1988 -> 2106[label="",style="solid", color="black", weight=3]; 1989 -> 706[label="",style="dashed", color="red", weight=0]; 1989[label="Pos vwx2210 * vwx240",fontsize=16,color="magenta"];1989 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1990 -> 706[label="",style="dashed", color="red", weight=0]; 1990[label="vwx220 * Pos vwx2410",fontsize=16,color="magenta"];1990 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1991 -> 706[label="",style="dashed", color="red", weight=0]; 1991[label="Neg vwx2210 * vwx240",fontsize=16,color="magenta"];1991 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1992 -> 706[label="",style="dashed", color="red", weight=0]; 1992[label="vwx220 * Pos vwx2410",fontsize=16,color="magenta"];1992 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1993 -> 706[label="",style="dashed", color="red", weight=0]; 1993[label="Pos vwx2210 * vwx240",fontsize=16,color="magenta"];1993 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1994 -> 706[label="",style="dashed", color="red", weight=0]; 1994[label="vwx220 * Neg vwx2410",fontsize=16,color="magenta"];1994 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1995 -> 706[label="",style="dashed", color="red", weight=0]; 1995[label="Neg vwx2210 * vwx240",fontsize=16,color="magenta"];1995 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1996 -> 706[label="",style="dashed", color="red", weight=0]; 1996[label="vwx220 * Neg vwx2410",fontsize=16,color="magenta"];1996 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1997 -> 706[label="",style="dashed", color="red", weight=0]; 1997[label="Pos vwx2210 * vwx240",fontsize=16,color="magenta"];1997 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1998 -> 706[label="",style="dashed", color="red", weight=0]; 1998[label="vwx220 * Pos vwx2410",fontsize=16,color="magenta"];1998 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1999 -> 706[label="",style="dashed", color="red", weight=0]; 1999[label="Neg vwx2210 * vwx240",fontsize=16,color="magenta"];1999 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2000 -> 706[label="",style="dashed", color="red", weight=0]; 2000[label="vwx220 * Pos vwx2410",fontsize=16,color="magenta"];2000 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2001 -> 706[label="",style="dashed", color="red", weight=0]; 2001[label="Pos vwx2210 * vwx240",fontsize=16,color="magenta"];2001 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2002 -> 706[label="",style="dashed", color="red", weight=0]; 2002[label="vwx220 * Neg vwx2410",fontsize=16,color="magenta"];2002 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2003 -> 706[label="",style="dashed", color="red", weight=0]; 2003[label="Neg vwx2210 * vwx240",fontsize=16,color="magenta"];2003 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2004 -> 706[label="",style="dashed", color="red", weight=0]; 2004[label="vwx220 * Neg vwx2410",fontsize=16,color="magenta"];2004 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2006 -> 1413[label="",style="dashed", color="red", weight=0]; 2006[label="primMulNat vwx31000 (Succ vwx41100)",fontsize=16,color="magenta"];2006 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2005[label="primPlusNat vwx76 (Succ vwx41100)",fontsize=16,color="burlywood",shape="triangle"];2769[label="vwx76/Succ vwx760",fontsize=10,color="white",style="solid",shape="box"];2005 -> 2769[label="",style="solid", color="burlywood", weight=9]; 2769 -> 2141[label="",style="solid", color="burlywood", weight=3]; 2770[label="vwx76/Zero",fontsize=10,color="white",style="solid",shape="box"];2005 -> 2770[label="",style="solid", color="burlywood", weight=9]; 2770 -> 2142[label="",style="solid", color="burlywood", weight=3]; 2007[label="vwx232",fontsize=16,color="green",shape="box"];2008[label="vwx252",fontsize=16,color="green",shape="box"];2009[label="vwx232",fontsize=16,color="green",shape="box"];2010[label="vwx252",fontsize=16,color="green",shape="box"];2011[label="vwx232",fontsize=16,color="green",shape="box"];2012[label="vwx252",fontsize=16,color="green",shape="box"];2013[label="vwx232",fontsize=16,color="green",shape="box"];2014[label="vwx252",fontsize=16,color="green",shape="box"];2015[label="vwx232",fontsize=16,color="green",shape="box"];2016[label="vwx252",fontsize=16,color="green",shape="box"];2017[label="vwx232",fontsize=16,color="green",shape="box"];2018[label="vwx252",fontsize=16,color="green",shape="box"];2019[label="vwx232",fontsize=16,color="green",shape="box"];2020[label="vwx252",fontsize=16,color="green",shape="box"];2021[label="vwx232",fontsize=16,color="green",shape="box"];2022[label="vwx252",fontsize=16,color="green",shape="box"];2023[label="vwx232",fontsize=16,color="green",shape="box"];2024[label="vwx252",fontsize=16,color="green",shape="box"];2025[label="vwx232",fontsize=16,color="green",shape="box"];2026[label="vwx252",fontsize=16,color="green",shape="box"];2027[label="vwx232",fontsize=16,color="green",shape="box"];2028[label="vwx252",fontsize=16,color="green",shape="box"];2029[label="vwx232",fontsize=16,color="green",shape="box"];2030[label="vwx252",fontsize=16,color="green",shape="box"];2031[label="vwx232",fontsize=16,color="green",shape="box"];2032[label="vwx252",fontsize=16,color="green",shape="box"];2033[label="vwx232",fontsize=16,color="green",shape="box"];2034[label="vwx252",fontsize=16,color="green",shape="box"];2035[label="vwx231",fontsize=16,color="green",shape="box"];2036[label="vwx251",fontsize=16,color="green",shape="box"];2037[label="vwx231",fontsize=16,color="green",shape="box"];2038[label="vwx251",fontsize=16,color="green",shape="box"];2039[label="vwx231",fontsize=16,color="green",shape="box"];2040[label="vwx251",fontsize=16,color="green",shape="box"];2041[label="vwx231",fontsize=16,color="green",shape="box"];2042[label="vwx251",fontsize=16,color="green",shape="box"];2043[label="vwx231",fontsize=16,color="green",shape="box"];2044[label="vwx251",fontsize=16,color="green",shape="box"];2045[label="vwx231",fontsize=16,color="green",shape="box"];2046[label="vwx251",fontsize=16,color="green",shape="box"];2047[label="vwx231",fontsize=16,color="green",shape="box"];2048[label="vwx251",fontsize=16,color="green",shape="box"];2049[label="vwx231",fontsize=16,color="green",shape="box"];2050[label="vwx251",fontsize=16,color="green",shape="box"];2051[label="vwx231",fontsize=16,color="green",shape="box"];2052[label="vwx251",fontsize=16,color="green",shape="box"];2053[label="vwx231",fontsize=16,color="green",shape="box"];2054[label="vwx251",fontsize=16,color="green",shape="box"];2055[label="vwx231",fontsize=16,color="green",shape="box"];2056[label="vwx251",fontsize=16,color="green",shape="box"];2057[label="vwx231",fontsize=16,color="green",shape="box"];2058[label="vwx251",fontsize=16,color="green",shape="box"];2059[label="vwx231",fontsize=16,color="green",shape="box"];2060[label="vwx251",fontsize=16,color="green",shape="box"];2061[label="vwx231",fontsize=16,color="green",shape="box"];2062[label="vwx251",fontsize=16,color="green",shape="box"];2063[label="compare0 vwx22 vwx24 otherwise",fontsize=16,color="black",shape="box"];2063 -> 2143[label="",style="solid", color="black", weight=3]; 2064[label="LT",fontsize=16,color="green",shape="box"];2065[label="compare0 vwx22 vwx24 otherwise",fontsize=16,color="black",shape="box"];2065 -> 2144[label="",style="solid", color="black", weight=3]; 2066[label="LT",fontsize=16,color="green",shape="box"];2067[label="compare0 vwx22 vwx24 otherwise",fontsize=16,color="black",shape="box"];2067 -> 2145[label="",style="solid", color="black", weight=3]; 2068[label="LT",fontsize=16,color="green",shape="box"];2069[label="vwx2400",fontsize=16,color="green",shape="box"];2070[label="vwx2200",fontsize=16,color="green",shape="box"];2071[label="Integer (primMulInt vwx2400 vwx2210)",fontsize=16,color="green",shape="box"];2071 -> 2146[label="",style="dashed", color="green", weight=3]; 2072[label="compare0 vwx22 vwx24 otherwise",fontsize=16,color="black",shape="box"];2072 -> 2147[label="",style="solid", color="black", weight=3]; 2073[label="LT",fontsize=16,color="green",shape="box"];2074[label="vwx240",fontsize=16,color="green",shape="box"];2075[label="vwx220",fontsize=16,color="green",shape="box"];2076[label="vwx240",fontsize=16,color="green",shape="box"];2077[label="vwx220",fontsize=16,color="green",shape="box"];2078[label="vwx240",fontsize=16,color="green",shape="box"];2079[label="vwx220",fontsize=16,color="green",shape="box"];2080[label="vwx240",fontsize=16,color="green",shape="box"];2081[label="vwx220",fontsize=16,color="green",shape="box"];2082[label="vwx240",fontsize=16,color="green",shape="box"];2083[label="vwx220",fontsize=16,color="green",shape="box"];2084[label="vwx220",fontsize=16,color="green",shape="box"];2085[label="vwx240",fontsize=16,color="green",shape="box"];2086[label="vwx240",fontsize=16,color="green",shape="box"];2087[label="vwx220",fontsize=16,color="green",shape="box"];2088[label="vwx240",fontsize=16,color="green",shape="box"];2089[label="vwx220",fontsize=16,color="green",shape="box"];2090[label="vwx240",fontsize=16,color="green",shape="box"];2091[label="vwx220",fontsize=16,color="green",shape="box"];2092[label="vwx240",fontsize=16,color="green",shape="box"];2093[label="vwx220",fontsize=16,color="green",shape="box"];2094[label="vwx240",fontsize=16,color="green",shape="box"];2095[label="vwx220",fontsize=16,color="green",shape="box"];2096[label="vwx240",fontsize=16,color="green",shape="box"];2097[label="vwx220",fontsize=16,color="green",shape="box"];2098[label="vwx240",fontsize=16,color="green",shape="box"];2099[label="vwx220",fontsize=16,color="green",shape="box"];2100[label="vwx240",fontsize=16,color="green",shape="box"];2101[label="vwx220",fontsize=16,color="green",shape="box"];2102[label="LT",fontsize=16,color="green",shape="box"];2103[label="vwx73",fontsize=16,color="green",shape="box"];2104[label="GT",fontsize=16,color="green",shape="box"];2105[label="compare0 vwx22 vwx24 otherwise",fontsize=16,color="black",shape="box"];2105 -> 2148[label="",style="solid", color="black", weight=3]; 2106[label="LT",fontsize=16,color="green",shape="box"];2107[label="vwx240",fontsize=16,color="green",shape="box"];2108[label="Pos vwx2210",fontsize=16,color="green",shape="box"];2109[label="Pos vwx2410",fontsize=16,color="green",shape="box"];2110[label="vwx220",fontsize=16,color="green",shape="box"];2111[label="vwx240",fontsize=16,color="green",shape="box"];2112[label="Neg vwx2210",fontsize=16,color="green",shape="box"];2113[label="Pos vwx2410",fontsize=16,color="green",shape="box"];2114[label="vwx220",fontsize=16,color="green",shape="box"];2115[label="vwx240",fontsize=16,color="green",shape="box"];2116[label="Pos vwx2210",fontsize=16,color="green",shape="box"];2117[label="Neg vwx2410",fontsize=16,color="green",shape="box"];2118[label="vwx220",fontsize=16,color="green",shape="box"];2119[label="vwx240",fontsize=16,color="green",shape="box"];2120[label="Neg vwx2210",fontsize=16,color="green",shape="box"];2121[label="Neg vwx2410",fontsize=16,color="green",shape="box"];2122[label="vwx220",fontsize=16,color="green",shape="box"];2123[label="vwx240",fontsize=16,color="green",shape="box"];2124[label="Pos vwx2210",fontsize=16,color="green",shape="box"];2125[label="Pos vwx2410",fontsize=16,color="green",shape="box"];2126[label="vwx220",fontsize=16,color="green",shape="box"];2127[label="vwx240",fontsize=16,color="green",shape="box"];2128[label="Neg vwx2210",fontsize=16,color="green",shape="box"];2129[label="Pos vwx2410",fontsize=16,color="green",shape="box"];2130[label="vwx220",fontsize=16,color="green",shape="box"];2131[label="vwx240",fontsize=16,color="green",shape="box"];2132[label="Pos vwx2210",fontsize=16,color="green",shape="box"];2133[label="Neg vwx2410",fontsize=16,color="green",shape="box"];2134[label="vwx220",fontsize=16,color="green",shape="box"];2135[label="vwx240",fontsize=16,color="green",shape="box"];2136[label="Neg vwx2210",fontsize=16,color="green",shape="box"];2137[label="Neg vwx2410",fontsize=16,color="green",shape="box"];2138[label="vwx220",fontsize=16,color="green",shape="box"];2139[label="vwx31000",fontsize=16,color="green",shape="box"];2140[label="Succ vwx41100",fontsize=16,color="green",shape="box"];2141[label="primPlusNat (Succ vwx760) (Succ vwx41100)",fontsize=16,color="black",shape="box"];2141 -> 2149[label="",style="solid", color="black", weight=3]; 2142[label="primPlusNat Zero (Succ vwx41100)",fontsize=16,color="black",shape="box"];2142 -> 2150[label="",style="solid", color="black", weight=3]; 2143[label="compare0 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];2143 -> 2151[label="",style="solid", color="black", weight=3]; 2144[label="compare0 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];2144 -> 2152[label="",style="solid", color="black", weight=3]; 2145[label="compare0 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];2145 -> 2153[label="",style="solid", color="black", weight=3]; 2146 -> 917[label="",style="dashed", color="red", weight=0]; 2146[label="primMulInt vwx2400 vwx2210",fontsize=16,color="magenta"];2146 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2146 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2147[label="compare0 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];2147 -> 2156[label="",style="solid", color="black", weight=3]; 2148[label="compare0 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];2148 -> 2157[label="",style="solid", color="black", weight=3]; 2149[label="Succ (Succ (primPlusNat vwx760 vwx41100))",fontsize=16,color="green",shape="box"];2149 -> 2158[label="",style="dashed", color="green", weight=3]; 2150[label="Succ vwx41100",fontsize=16,color="green",shape="box"];2151[label="GT",fontsize=16,color="green",shape="box"];2152[label="GT",fontsize=16,color="green",shape="box"];2153[label="GT",fontsize=16,color="green",shape="box"];2154[label="vwx2210",fontsize=16,color="green",shape="box"];2155[label="vwx2400",fontsize=16,color="green",shape="box"];2156[label="GT",fontsize=16,color="green",shape="box"];2157[label="GT",fontsize=16,color="green",shape="box"];2158[label="primPlusNat vwx760 vwx41100",fontsize=16,color="burlywood",shape="triangle"];2771[label="vwx760/Succ vwx7600",fontsize=10,color="white",style="solid",shape="box"];2158 -> 2771[label="",style="solid", color="burlywood", weight=9]; 2771 -> 2159[label="",style="solid", color="burlywood", weight=3]; 2772[label="vwx760/Zero",fontsize=10,color="white",style="solid",shape="box"];2158 -> 2772[label="",style="solid", color="burlywood", weight=9]; 2772 -> 2160[label="",style="solid", color="burlywood", weight=3]; 2159[label="primPlusNat (Succ vwx7600) vwx41100",fontsize=16,color="burlywood",shape="box"];2773[label="vwx41100/Succ vwx411000",fontsize=10,color="white",style="solid",shape="box"];2159 -> 2773[label="",style="solid", color="burlywood", weight=9]; 2773 -> 2161[label="",style="solid", color="burlywood", weight=3]; 2774[label="vwx41100/Zero",fontsize=10,color="white",style="solid",shape="box"];2159 -> 2774[label="",style="solid", color="burlywood", weight=9]; 2774 -> 2162[label="",style="solid", color="burlywood", weight=3]; 2160[label="primPlusNat Zero vwx41100",fontsize=16,color="burlywood",shape="box"];2775[label="vwx41100/Succ vwx411000",fontsize=10,color="white",style="solid",shape="box"];2160 -> 2775[label="",style="solid", color="burlywood", weight=9]; 2775 -> 2163[label="",style="solid", color="burlywood", weight=3]; 2776[label="vwx41100/Zero",fontsize=10,color="white",style="solid",shape="box"];2160 -> 2776[label="",style="solid", color="burlywood", weight=9]; 2776 -> 2164[label="",style="solid", color="burlywood", weight=3]; 2161[label="primPlusNat (Succ vwx7600) (Succ vwx411000)",fontsize=16,color="black",shape="box"];2161 -> 2165[label="",style="solid", color="black", weight=3]; 2162[label="primPlusNat (Succ vwx7600) Zero",fontsize=16,color="black",shape="box"];2162 -> 2166[label="",style="solid", color="black", weight=3]; 2163[label="primPlusNat Zero (Succ vwx411000)",fontsize=16,color="black",shape="box"];2163 -> 2167[label="",style="solid", color="black", weight=3]; 2164[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2164 -> 2168[label="",style="solid", color="black", weight=3]; 2165[label="Succ (Succ (primPlusNat vwx7600 vwx411000))",fontsize=16,color="green",shape="box"];2165 -> 2169[label="",style="dashed", color="green", weight=3]; 2166[label="Succ vwx7600",fontsize=16,color="green",shape="box"];2167[label="Succ vwx411000",fontsize=16,color="green",shape="box"];2168[label="Zero",fontsize=16,color="green",shape="box"];2169 -> 2158[label="",style="dashed", color="red", weight=0]; 2169[label="primPlusNat vwx7600 vwx411000",fontsize=16,color="magenta"];2169 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2170[label="vwx411000",fontsize=16,color="green",shape="box"];2171[label="vwx7600",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(vwx2200), Succ(vwx2400)) -> new_primCmpNat(vwx2200, vwx2400) 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(vwx2200), Succ(vwx2400)) -> new_primCmpNat(vwx2200, vwx2400) 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_esEs0(Left(vwx310), Left(vwx410), app(ty_Maybe, cf), cd) -> new_esEs1(vwx310, vwx410, cf) new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(app(ty_@2, be), bf)) -> new_esEs2(vwx310, vwx410, be, bf) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(app(app(ty_@3, bab), bac), bad), he) -> new_esEs3(vwx310, vwx410, bab, bac, bad) new_esEs1(Just(vwx310), Just(vwx410), app(app(ty_Either, eg), eh)) -> new_esEs0(vwx310, vwx410, eg, eh) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs0(vwx310, vwx410, bdb, bdc) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs0(vwx311, vwx411, bbh, bca) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs0(vwx312, vwx412, bag, bah) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vwx310, vwx410, bdh, bea, beb) new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vwx310, vwx410, bg, bh, ca) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(app(ty_@2, gf), gg)) -> new_esEs2(vwx311, vwx411, gf, gg) new_esEs0(Left(vwx310), Left(vwx410), app(app(ty_@2, cg), da), cd) -> new_esEs2(vwx310, vwx410, cg, da) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(ty_[], gd)) -> new_esEs(vwx311, vwx411, gd) new_esEs0(Right(vwx310), Right(vwx410), de, app(app(ty_Either, df), dg)) -> new_esEs0(vwx310, vwx410, df, dg) new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), h) -> new_esEs(vwx311, vwx411, h) new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(ty_Maybe, bd)) -> new_esEs1(vwx310, vwx410, bd) new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(ty_[], bc)) -> new_esEs(vwx310, vwx410, bc) new_esEs0(Right(vwx310), Right(vwx410), de, app(ty_[], dh)) -> new_esEs(vwx310, vwx410, dh) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx312, vwx412, bbe, bbf, bbg) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(app(ty_@2, hh), baa), he) -> new_esEs2(vwx310, vwx410, hh, baa) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vwx311, vwx411, bce, bcf) new_esEs0(Left(vwx310), Left(vwx410), app(app(ty_Either, cb), cc), cd) -> new_esEs0(vwx310, vwx410, cb, cc) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(app(ty_Either, hc), hd), he) -> new_esEs0(vwx310, vwx410, hc, hd) new_esEs0(Left(vwx310), Left(vwx410), app(app(app(ty_@3, db), dc), dd), cd) -> new_esEs3(vwx310, vwx410, db, dc, dd) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vwx312, vwx412, bbc, bbd) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(app(ty_Either, gb), gc)) -> new_esEs0(vwx311, vwx411, gb, gc) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vwx311, vwx411, gh, ha, hb) new_esEs0(Right(vwx310), Right(vwx410), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx310, vwx410, ed, ee, ef) new_esEs1(Just(vwx310), Just(vwx410), app(app(ty_@2, fc), fd)) -> new_esEs2(vwx310, vwx410, fc, fd) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vwx311, vwx411, bcg, bch, bda) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(ty_[], bcc), bcb) -> new_esEs(vwx311, vwx411, bcc) new_esEs1(Just(vwx310), Just(vwx410), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx310, vwx410, ff, fg, fh) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(app(ty_@2, bdf), bdg), baf, bcb) -> new_esEs2(vwx310, vwx410, bdf, bdg) new_esEs0(Right(vwx310), Right(vwx410), de, app(ty_Maybe, ea)) -> new_esEs1(vwx310, vwx410, ea) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(ty_[], bba)) -> new_esEs(vwx312, vwx412, bba) new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(app(ty_Either, ba), bb)) -> new_esEs0(vwx310, vwx410, ba, bb) new_esEs1(Just(vwx310), Just(vwx410), app(ty_[], fa)) -> new_esEs(vwx310, vwx410, fa) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(ty_Maybe, bde), baf, bcb) -> new_esEs1(vwx310, vwx410, bde) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(ty_[], hf), he) -> new_esEs(vwx310, vwx410, hf) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(ty_Maybe, ge)) -> new_esEs1(vwx311, vwx411, ge) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(ty_Maybe, bcd), bcb) -> new_esEs1(vwx311, vwx411, bcd) new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(ty_Maybe, hg), he) -> new_esEs1(vwx310, vwx410, hg) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(ty_[], bdd), baf, bcb) -> new_esEs(vwx310, vwx410, bdd) new_esEs1(Just(vwx310), Just(vwx410), app(ty_Maybe, fb)) -> new_esEs1(vwx310, vwx410, fb) new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(ty_Maybe, bbb)) -> new_esEs1(vwx312, vwx412, bbb) new_esEs0(Left(vwx310), Left(vwx410), app(ty_[], ce), cd) -> new_esEs(vwx310, vwx410, ce) new_esEs0(Right(vwx310), Right(vwx410), de, app(app(ty_@2, eb), ec)) -> new_esEs2(vwx310, vwx410, eb, ec) R is empty. Q is empty. 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_esEs1(Just(vwx310), Just(vwx410), app(app(ty_Either, eg), eh)) -> new_esEs0(vwx310, vwx410, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx310), Just(vwx410), app(ty_[], fa)) -> new_esEs(vwx310, vwx410, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx310), Just(vwx410), app(app(ty_@2, fc), fd)) -> new_esEs2(vwx310, vwx410, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx310), Just(vwx410), app(ty_Maybe, fb)) -> new_esEs1(vwx310, vwx410, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx310), Just(vwx410), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx310, vwx410, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(app(ty_Either, ba), bb)) -> new_esEs0(vwx310, vwx410, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(app(ty_@2, be), bf)) -> new_esEs2(vwx310, vwx410, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(ty_Maybe, bd)) -> new_esEs1(vwx310, vwx410, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vwx310, vwx410, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(app(ty_Either, hc), hd), he) -> new_esEs0(vwx310, vwx410, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(app(ty_Either, gb), gc)) -> new_esEs0(vwx311, vwx411, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs0(vwx310, vwx410, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs0(vwx311, vwx411, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs0(vwx312, vwx412, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(vwx310), Right(vwx410), de, app(app(ty_Either, df), dg)) -> new_esEs0(vwx310, vwx410, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx310), Left(vwx410), app(app(ty_Either, cb), cc), cd) -> new_esEs0(vwx310, vwx410, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(ty_[], gd)) -> new_esEs(vwx311, vwx411, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(ty_[], hf), he) -> new_esEs(vwx310, vwx410, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(app(ty_@2, gf), gg)) -> new_esEs2(vwx311, vwx411, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(app(ty_@2, hh), baa), he) -> new_esEs2(vwx310, vwx410, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(ty_Maybe, ge)) -> new_esEs1(vwx311, vwx411, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(ty_Maybe, hg), he) -> new_esEs1(vwx310, vwx410, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), app(app(app(ty_@3, bab), bac), bad), he) -> new_esEs3(vwx310, vwx410, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx310, vwx311), @2(vwx410, vwx411), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vwx311, vwx411, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(ty_[], bcc), bcb) -> new_esEs(vwx311, vwx411, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(ty_[], bba)) -> new_esEs(vwx312, vwx412, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(ty_[], bdd), baf, bcb) -> new_esEs(vwx310, vwx410, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx310), Right(vwx410), de, app(ty_[], dh)) -> new_esEs(vwx310, vwx410, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx310), Left(vwx410), app(ty_[], ce), cd) -> new_esEs(vwx310, vwx410, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), h) -> new_esEs(vwx311, vwx411, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx310, vwx311), :(vwx410, vwx411), app(ty_[], bc)) -> new_esEs(vwx310, vwx410, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vwx311, vwx411, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vwx312, vwx412, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(app(ty_@2, bdf), bdg), baf, bcb) -> new_esEs2(vwx310, vwx410, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(ty_Maybe, bde), baf, bcb) -> new_esEs1(vwx310, vwx410, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(ty_Maybe, bcd), bcb) -> new_esEs1(vwx311, vwx411, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(ty_Maybe, bbb)) -> new_esEs1(vwx312, vwx412, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vwx310, vwx410, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx312, vwx412, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vwx311, vwx411, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Left(vwx310), Left(vwx410), app(app(ty_@2, cg), da), cd) -> new_esEs2(vwx310, vwx410, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(vwx310), Right(vwx410), de, app(app(ty_@2, eb), ec)) -> new_esEs2(vwx310, vwx410, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx310), Left(vwx410), app(ty_Maybe, cf), cd) -> new_esEs1(vwx310, vwx410, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx310), Right(vwx410), de, app(ty_Maybe, ea)) -> new_esEs1(vwx310, vwx410, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx310), Left(vwx410), app(app(app(ty_@3, db), dc), dd), cd) -> new_esEs3(vwx310, vwx410, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(vwx310), Right(vwx410), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx310, vwx410, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx31000), Succ(vwx41100)) -> new_primMulNat(vwx31000, Succ(vwx41100)) 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(vwx31000), Succ(vwx41100)) -> new_primMulNat(vwx31000, Succ(vwx41100)) 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_ltEs(Right(vwx230), Right(vwx250), cc, app(ty_Maybe, de)) -> new_ltEs3(vwx230, vwx250, de) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(app(ty_@2, baa), bab), hh) -> new_lt0(vwx231, vwx251, baa, bab) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(ty_Maybe, eg)) -> new_ltEs3(vwx231, vwx251, eg) new_compare2(:(vwx220, vwx221), vwx23, :(vwx240, vwx241), vwx25, False, app(ty_[], bec), bde) -> new_primCompAux(vwx220, vwx240, new_compare1(vwx221, vwx241, bec), bec) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(app(ty_Either, hf), hg)), hh)) -> new_lt(vwx231, vwx251, hf, hg) new_lt2(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_compare(vwx221, vwx241, bec) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(app(ty_Either, eh), fa)), fb)) -> new_lt(vwx230, vwx250, eh, fa) new_lt3(vwx22, vwx24, bed) -> new_compare22(vwx22, vwx24, new_esEs6(vwx22, vwx24, bed), bed) new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(ty_Maybe, de))) -> new_ltEs3(vwx230, vwx250, de) new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(app(app(ty_@3, da), db), dc))) -> new_ltEs1(vwx230, vwx250, da, db, dc) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(app(ty_Either, bah), bba), gd, hh) -> new_lt(vwx230, vwx250, bah, bba) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(app(ty_@2, ea), eb))) -> new_ltEs0(vwx231, vwx251, ea, eb) new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(app(ty_@2, bcd), bce))) -> new_ltEs0(vwx230, vwx250, bcd, bce) new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bc)) -> new_ltEs1(vwx230, vwx250, bf, bg, bh) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(app(ty_@2, ea), eb)) -> new_ltEs0(vwx231, vwx251, ea, eb) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(app(app(ty_@3, bac), bad), bae), hh) -> new_lt1(vwx231, vwx251, bac, bad, bae) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(app(ty_Either, dg), dh)) -> new_ltEs(vwx231, vwx251, dg, dh) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(app(app(ty_@3, ff), fg), fh), fb) -> new_lt1(vwx230, vwx250, ff, fg, fh) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(app(app(ty_@3, ec), ed), ee))) -> new_ltEs1(vwx231, vwx251, ec, ed, ee) new_ltEs3(Just(vwx230), Just(vwx250), app(ty_[], bda)) -> new_ltEs2(vwx230, vwx250, bda) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs1(vwx231, vwx251, ec, ed, ee) new_primCompAux(vwx220, vwx240, vwx65, app(app(ty_@2, beg), beh)) -> new_compare0(vwx220, vwx240, beg, beh) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(ty_Maybe, gb), fb) -> new_lt3(vwx230, vwx250, gb) new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(ty_Maybe, cb)), bc)) -> new_ltEs3(vwx230, vwx250, cb) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(ty_[], baf), hh) -> new_lt2(vwx231, vwx251, baf) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(ty_Maybe, gb)), fb)) -> new_lt3(vwx230, vwx250, gb) new_compare2(vwx22, vwx23, vwx24, vwx25, False, app(app(app(ty_@3, bdh), bea), beb), bde) -> new_compare21(vwx22, vwx24, new_esEs5(vwx22, vwx24, bdh, bea, beb), bdh, bea, beb) new_ltEs(Left(vwx230), Left(vwx250), app(ty_Maybe, cb), bc) -> new_ltEs3(vwx230, vwx250, cb) new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(ty_[], dd))) -> new_ltEs2(vwx230, vwx250, dd) new_ltEs3(Just(vwx230), Just(vwx250), app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx230, vwx250, bcb, bcc) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(ty_Maybe, he))) -> new_ltEs3(vwx232, vwx252, he) new_ltEs3(Just(vwx230), Just(vwx250), app(app(ty_@2, bcd), bce)) -> new_ltEs0(vwx230, vwx250, bcd, bce) new_compare2(:(vwx220, vwx221), vwx23, :(vwx240, vwx241), vwx25, False, app(ty_[], bec), bde) -> new_compare(vwx221, vwx241, bec) new_compare2(vwx22, vwx23, vwx24, vwx25, False, app(app(ty_Either, bdc), bdd), bde) -> new_compare20(vwx22, vwx24, new_esEs4(vwx22, vwx24, bdc, bdd), bdc, bdd) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(ty_Maybe, eg))) -> new_ltEs3(vwx231, vwx251, eg) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(ty_[], ef))) -> new_ltEs2(vwx231, vwx251, ef) new_ltEs(Left(vwx230), Left(vwx250), app(app(ty_@2, bd), be), bc) -> new_ltEs0(vwx230, vwx250, bd, be) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(ty_[], hd)) -> new_ltEs2(vwx232, vwx252, hd) new_lt1(vwx22, vwx24, bdh, bea, beb) -> new_compare21(vwx22, vwx24, new_esEs5(vwx22, vwx24, bdh, bea, beb), bdh, bea, beb) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(ty_Maybe, bag)), hh)) -> new_lt3(vwx231, vwx251, bag) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(ty_Maybe, bbh), gd, hh) -> new_lt3(vwx230, vwx250, bbh) new_ltEs(Left(vwx230), Left(vwx250), app(app(ty_Either, ba), bb), bc) -> new_ltEs(vwx230, vwx250, ba, bb) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(app(ty_Either, dg), dh))) -> new_ltEs(vwx231, vwx251, dg, dh) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(ty_Maybe, bbh)), gd), hh)) -> new_lt3(vwx230, vwx250, bbh) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(ty_[], hd))) -> new_ltEs2(vwx232, vwx252, hd) new_compare2(vwx22, vwx23, vwx24, vwx25, False, app(ty_Maybe, bed), bde) -> new_compare22(vwx22, vwx24, new_esEs6(vwx22, vwx24, bed), bed) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(app(ty_@2, fc), fd), fb) -> new_lt0(vwx230, vwx250, fc, fd) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(app(app(ty_@3, bbd), bbe), bbf)), gd), hh)) -> new_lt1(vwx230, vwx250, bbd, bbe, bbf) new_compare5(vwx22, vwx24, bed) -> new_compare22(vwx22, vwx24, new_esEs6(vwx22, vwx24, bed), bed) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(app(app(ty_@3, bbd), bbe), bbf), gd, hh) -> new_lt1(vwx230, vwx250, bbd, bbe, bbf) new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(app(ty_Either, bcb), bcc))) -> new_ltEs(vwx230, vwx250, bcb, bcc) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(ty_[], ga)), fb)) -> new_lt2(vwx230, vwx250, ga) new_compare20(vwx22, vwx24, False, bdc, bdd) -> new_ltEs(vwx22, vwx24, bdc, bdd) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(app(ty_Either, bah), bba)), gd), hh)) -> new_lt(vwx230, vwx250, bah, bba) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(app(ty_@2, fc), fd)), fb)) -> new_lt0(vwx230, vwx250, fc, fd) new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(ty_Maybe, bdb))) -> new_ltEs3(vwx230, vwx250, bdb) new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(vwx230, vwx250, bcf, bcg, bch) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(app(ty_@2, gg), gh)) -> new_ltEs0(vwx232, vwx252, gg, gh) new_compare4(vwx22, vwx24, bdh, bea, beb) -> new_compare21(vwx22, vwx24, new_esEs5(vwx22, vwx24, bdh, bea, beb), bdh, bea, beb) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs1(vwx232, vwx252, ha, hb, hc) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(ty_[], ef)) -> new_ltEs2(vwx231, vwx251, ef) new_primCompAux(vwx220, vwx240, vwx65, app(ty_Maybe, bfe)) -> new_compare5(vwx220, vwx240, bfe) new_ltEs(Left(vwx230), Left(vwx250), app(ty_[], ca), bc) -> new_ltEs2(vwx230, vwx250, ca) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(ty_[], ga), fb) -> new_lt2(vwx230, vwx250, ga) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(ty_[], baf)), hh)) -> new_lt2(vwx231, vwx251, baf) new_ltEs(Right(vwx230), Right(vwx250), cc, app(ty_[], dd)) -> new_ltEs2(vwx230, vwx250, dd) new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(app(ty_Either, ba), bb)), bc)) -> new_ltEs(vwx230, vwx250, ba, bb) new_ltEs(Left(vwx230), Left(vwx250), app(app(app(ty_@3, bf), bg), bh), bc) -> new_ltEs1(vwx230, vwx250, bf, bg, bh) new_ltEs(Right(vwx230), Right(vwx250), cc, app(app(ty_Either, cd), ce)) -> new_ltEs(vwx230, vwx250, cd, ce) new_ltEs3(Just(vwx230), Just(vwx250), app(ty_Maybe, bdb)) -> new_ltEs3(vwx230, vwx250, bdb) new_primCompAux(vwx220, vwx240, vwx65, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare4(vwx220, vwx240, bfa, bfb, bfc) new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(app(ty_Either, eh), fa), fb) -> new_lt(vwx230, vwx250, eh, fa) new_compare21(vwx22, vwx24, False, bdh, bea, beb) -> new_ltEs1(vwx22, vwx24, bdh, bea, beb) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(app(app(ty_@3, bac), bad), bae)), hh)) -> new_lt1(vwx231, vwx251, bac, bad, bae) new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(ty_[], ca)), bc)) -> new_ltEs2(vwx230, vwx250, ca) new_compare3(vwx22, vwx24, bdc, bdd) -> new_compare20(vwx22, vwx24, new_esEs4(vwx22, vwx24, bdc, bdd), bdc, bdd) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(app(ty_@2, gg), gh))) -> new_ltEs0(vwx232, vwx252, gg, gh) new_ltEs(Right(vwx230), Right(vwx250), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(vwx230, vwx250, da, db, dc) new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(app(app(ty_@3, ff), fg), fh)), fb)) -> new_lt1(vwx230, vwx250, ff, fg, fh) new_compare(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_primCompAux(vwx220, vwx240, new_compare1(vwx221, vwx241, bec), bec) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(app(ty_Either, ge), gf))) -> new_ltEs(vwx232, vwx252, ge, gf) new_lt(vwx22, vwx24, bdc, bdd) -> new_compare20(vwx22, vwx24, new_esEs4(vwx22, vwx24, bdc, bdd), bdc, bdd) new_ltEs3(Just(vwx230), Just(vwx250), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx230, vwx250, bcf, bcg, bch) new_primCompAux(vwx220, vwx240, vwx65, app(ty_[], bfd)) -> new_compare(vwx220, vwx240, bfd) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(app(ty_@2, bbb), bbc), gd, hh) -> new_lt0(vwx230, vwx250, bbb, bbc) new_compare2(vwx22, vwx23, vwx24, vwx25, False, app(app(ty_@2, bdf), bdg), bde) -> new_compare0(vwx22, vwx24, bdf, bdg) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(app(ty_Either, ge), gf)) -> new_ltEs(vwx232, vwx252, ge, gf) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(ty_Maybe, bag), hh) -> new_lt3(vwx231, vwx251, bag) new_lt2(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_primCompAux(vwx220, vwx240, new_compare1(vwx221, vwx241, bec), bec) new_ltEs2(vwx23, vwx25, bca) -> new_compare(vwx23, vwx25, bca) new_compare2(vwx22, vwx23, vwx24, vwx25, False, h, app(ty_[], bca)) -> new_compare(vwx23, vwx25, bca) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(app(ty_Either, hf), hg), hh) -> new_lt(vwx231, vwx251, hf, hg) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs1(vwx232, vwx252, ha, hb, hc) new_compare0(@2(vwx30, vwx31), @2(vwx40, vwx41), bff, bfg) -> new_compare2(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs8(vwx30, vwx40, bff), new_esEs7(vwx31, vwx41, bfg)), bff, bfg) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(ty_[], bbg)), gd), hh)) -> new_lt2(vwx230, vwx250, bbg) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(ty_Maybe, he)) -> new_ltEs3(vwx232, vwx252, he) new_compare(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_compare(vwx221, vwx241, bec) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(app(ty_@2, baa), bab)), hh)) -> new_lt0(vwx231, vwx251, baa, bab) new_primCompAux(vwx220, vwx240, vwx65, app(app(ty_Either, bee), bef)) -> new_compare3(vwx220, vwx240, bee, bef) new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(app(ty_@2, cf), cg))) -> new_ltEs0(vwx230, vwx250, cf, cg) new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(app(ty_@2, bd), be)), bc)) -> new_ltEs0(vwx230, vwx250, bd, be) new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(ty_[], bbg), gd, hh) -> new_lt2(vwx230, vwx250, bbg) new_compare22(vwx22, vwx24, False, bed) -> new_ltEs3(vwx22, vwx24, bed) new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(app(ty_Either, cd), ce))) -> new_ltEs(vwx230, vwx250, cd, ce) new_ltEs(Right(vwx230), Right(vwx250), cc, app(app(ty_@2, cf), cg)) -> new_ltEs0(vwx230, vwx250, cf, cg) new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(app(ty_@2, bbb), bbc)), gd), hh)) -> new_lt0(vwx230, vwx250, bbb, bbc) new_lt0(vwx22, vwx24, bdf, bdg) -> new_compare0(vwx22, vwx24, bdf, bdg) new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(ty_[], bda))) -> new_ltEs2(vwx230, vwx250, bda) The TRS R consists of the following rules: new_esEs5(@3(vwx310, vwx311, vwx312), @3(vwx410, vwx411, vwx412), cdb, cdc, cdd) -> new_asAs(new_esEs29(vwx310, vwx410, cdb), new_asAs(new_esEs28(vwx311, vwx411, cdc), new_esEs27(vwx312, vwx412, cdd))) new_ltEs7(vwx23, vwx25, app(app(ty_@2, df), fb)) -> new_ltEs11(vwx23, vwx25, df, fb) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vwx2200)), Pos(vwx240)) -> LT new_ltEs4(Left(vwx230), Left(vwx250), app(ty_[], ca), bc) -> new_ltEs15(vwx230, vwx250, ca) new_primPlusNat0(Zero, Zero) -> Zero new_lt21(vwx230, vwx250, app(app(ty_Either, bah), bba)) -> new_lt8(vwx230, vwx250, bah, bba) new_lt21(vwx230, vwx250, app(ty_[], bbg)) -> new_lt15(vwx230, vwx250, bbg) new_pePe(True, vwx57) -> True new_esEs23(vwx310, vwx410, app(ty_Maybe, cbg)) -> new_esEs6(vwx310, vwx410, cbg) new_ltEs16(Just(vwx230), Just(vwx250), ty_Int) -> new_ltEs8(vwx230, vwx250) new_ltEs19(vwx231, vwx251, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs6(vwx231, vwx251, ec, ed, ee) new_compare32(vwx220, vwx240, ty_@0) -> new_compare13(vwx220, vwx240) new_esEs4(Right(vwx310), Right(vwx410), ccg, ty_Float) -> new_esEs15(vwx310, vwx410) new_esEs12(vwx311, vwx411, app(ty_[], bgf)) -> new_esEs16(vwx311, vwx411, bgf) new_esEs29(vwx310, vwx410, ty_Integer) -> new_esEs21(vwx310, vwx410) new_ltEs12(LT, LT) -> True new_esEs7(vwx31, vwx41, ty_@0) -> new_esEs18(vwx31, vwx41) new_ltEs20(vwx232, vwx252, app(app(ty_@2, gg), gh)) -> new_ltEs11(vwx232, vwx252, gg, gh) new_esEs4(Left(vwx310), Right(vwx410), ccg, cch) -> False new_esEs4(Right(vwx310), Left(vwx410), ccg, cch) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vwx312, vwx412, app(ty_[], dbc)) -> new_esEs16(vwx312, vwx412, dbc) new_ltEs4(Right(vwx230), Right(vwx250), cc, app(app(ty_@2, cf), cg)) -> new_ltEs11(vwx230, vwx250, cf, cg) new_primCmpInt(Pos(Zero), Neg(Succ(vwx2400))) -> GT new_esEs29(vwx310, vwx410, app(app(app(ty_@3, ded), dee), def)) -> new_esEs5(vwx310, vwx410, ded, dee, def) new_ltEs16(Nothing, Nothing, cba) -> True new_esEs26(vwx230, vwx250, ty_Bool) -> new_esEs9(vwx230, vwx250) new_ltEs4(Left(vwx230), Left(vwx250), ty_@0, bc) -> new_ltEs10(vwx230, vwx250) new_ltEs19(vwx231, vwx251, ty_Integer) -> new_ltEs5(vwx231, vwx251) new_ltEs16(Just(vwx230), Nothing, cba) -> False new_esEs18(@0, @0) -> True new_ltEs4(Right(vwx230), Right(vwx250), cc, app(ty_[], dd)) -> new_ltEs15(vwx230, vwx250, dd) new_esEs22(vwx22, vwx24, app(app(ty_Either, bdc), bdd)) -> new_esEs4(vwx22, vwx24, bdc, bdd) new_esEs7(vwx31, vwx41, ty_Char) -> new_esEs20(vwx31, vwx41) new_primCmpInt(Neg(Succ(vwx2200)), Neg(vwx240)) -> new_primCmpNat0(vwx240, Succ(vwx2200)) new_lt12(vwx22, vwx24) -> new_esEs10(new_compare30(vwx22, vwx24), LT) new_esEs28(vwx311, vwx411, ty_Char) -> new_esEs20(vwx311, vwx411) new_esEs20(Char(vwx310), Char(vwx410)) -> new_primEqNat0(vwx310, vwx410) new_lt21(vwx230, vwx250, ty_Char) -> new_lt4(vwx230, vwx250) new_esEs9(False, False) -> True new_primMulNat0(Succ(vwx31000), Succ(vwx41100)) -> new_primPlusNat1(new_primMulNat0(vwx31000, Succ(vwx41100)), vwx41100) new_ltEs19(vwx231, vwx251, app(ty_Maybe, eg)) -> new_ltEs16(vwx231, vwx251, eg) new_ltEs7(vwx23, vwx25, ty_Double) -> new_ltEs17(vwx23, vwx25) new_ltEs4(Left(vwx230), Left(vwx250), ty_Double, bc) -> new_ltEs17(vwx230, vwx250) new_esEs7(vwx31, vwx41, app(app(ty_@2, bgb), bgc)) -> new_esEs11(vwx31, vwx41, bgb, bgc) new_esEs4(Right(vwx310), Right(vwx410), ccg, ty_Double) -> new_esEs19(vwx310, vwx410) new_lt6(vwx22, vwx24, ty_Bool) -> new_lt9(vwx22, vwx24) new_primCompAux0(vwx73, GT) -> GT new_compare29(vwx22, vwx24, bdc, bdd) -> new_compare23(vwx22, vwx24, new_esEs4(vwx22, vwx24, bdc, bdd), bdc, bdd) new_ltEs4(Right(vwx230), Right(vwx250), cc, ty_Char) -> new_ltEs13(vwx230, vwx250) new_primEqInt(Pos(Succ(vwx3100)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4100))) -> False new_esEs8(vwx30, vwx40, ty_Double) -> new_esEs19(vwx30, vwx40) new_ltEs9(False, True) -> True new_esEs28(vwx311, vwx411, ty_@0) -> new_esEs18(vwx311, vwx411) new_esEs29(vwx310, vwx410, ty_Double) -> new_esEs19(vwx310, vwx410) new_compare18(vwx22, vwx24, False, bed) -> GT new_esEs31(vwx230, vwx250, app(ty_Ratio, dfb)) -> new_esEs17(vwx230, vwx250, dfb) new_esEs28(vwx311, vwx411, app(app(ty_@2, dch), dda)) -> new_esEs11(vwx311, vwx411, dch, dda) new_lt6(vwx22, vwx24, app(app(ty_@2, bdf), bdg)) -> new_lt11(vwx22, vwx24, bdf, bdg) new_ltEs4(Right(vwx230), Right(vwx250), cc, ty_Bool) -> new_ltEs9(vwx230, vwx250) new_compare1(:(vwx220, vwx221), [], bec) -> GT new_ltEs7(vwx23, vwx25, ty_@0) -> new_ltEs10(vwx23, vwx25) new_compare12(vwx22, vwx24, False) -> GT new_primEqNat0(Succ(vwx3100), Succ(vwx4100)) -> new_primEqNat0(vwx3100, vwx4100) new_lt15(vwx22, vwx24, bec) -> new_esEs10(new_compare1(vwx22, vwx24, bec), LT) new_lt6(vwx22, vwx24, ty_Integer) -> new_lt10(vwx22, vwx24) new_esEs10(GT, GT) -> True new_primCompAux0(vwx73, LT) -> LT new_esEs31(vwx230, vwx250, ty_Float) -> new_esEs15(vwx230, vwx250) new_ltEs19(vwx231, vwx251, app(app(ty_@2, ea), eb)) -> new_ltEs11(vwx231, vwx251, ea, eb) new_not(True) -> False new_ltEs12(LT, GT) -> True new_esEs29(vwx310, vwx410, app(app(ty_@2, deb), dec)) -> new_esEs11(vwx310, vwx410, deb, dec) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(vwx232, vwx252, ty_Integer) -> new_ltEs5(vwx232, vwx252) new_esEs13(vwx310, vwx410, app(app(ty_@2, cac), cad)) -> new_esEs11(vwx310, vwx410, cac, cad) new_lt19(vwx230, vwx250, app(app(ty_Either, eh), fa)) -> new_lt8(vwx230, vwx250, eh, fa) new_lt6(vwx22, vwx24, ty_Int) -> new_lt7(vwx22, vwx24) new_lt19(vwx230, vwx250, app(ty_[], ga)) -> new_lt15(vwx230, vwx250, ga) new_compare32(vwx220, vwx240, ty_Ordering) -> new_compare30(vwx220, vwx240) new_esEs25(vwx310, vwx410, ty_Integer) -> new_esEs21(vwx310, vwx410) new_esEs31(vwx230, vwx250, ty_Integer) -> new_esEs21(vwx230, vwx250) new_compare14(vwx22, vwx24, True, bdh, bea, beb) -> LT new_esEs7(vwx31, vwx41, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(vwx31, vwx41, cdb, cdc, cdd) new_lt14(vwx22, vwx24, bdh, bea, beb) -> new_esEs10(new_compare17(vwx22, vwx24, bdh, bea, beb), LT) new_ltEs19(vwx231, vwx251, ty_Double) -> new_ltEs17(vwx231, vwx251) new_compare27(@2(vwx30, vwx31), @2(vwx40, vwx41), bff, bfg) -> new_compare26(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs8(vwx30, vwx40, bff), new_esEs7(vwx31, vwx41, bfg)), bff, bfg) new_esEs13(vwx310, vwx410, ty_@0) -> new_esEs18(vwx310, vwx410) new_ltEs20(vwx232, vwx252, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs6(vwx232, vwx252, ha, hb, hc) new_primEqNat0(Succ(vwx3100), Zero) -> False new_primEqNat0(Zero, Succ(vwx4100)) -> False new_lt6(vwx22, vwx24, app(ty_Maybe, bed)) -> new_lt16(vwx22, vwx24, bed) new_esEs31(vwx230, vwx250, ty_Ordering) -> new_esEs10(vwx230, vwx250) new_esEs26(vwx230, vwx250, ty_Ordering) -> new_esEs10(vwx230, vwx250) new_lt13(vwx22, vwx24, cbb) -> new_esEs10(new_compare15(vwx22, vwx24, cbb), LT) new_esEs23(vwx310, vwx410, ty_@0) -> new_esEs18(vwx310, vwx410) new_esEs25(vwx310, vwx410, ty_Int) -> new_esEs14(vwx310, vwx410) new_esEs4(Left(vwx310), Left(vwx410), ty_@0, cch) -> new_esEs18(vwx310, vwx410) new_esEs31(vwx230, vwx250, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs5(vwx230, vwx250, bbd, bbe, bbf) new_esEs13(vwx310, vwx410, app(ty_Maybe, caa)) -> new_esEs6(vwx310, vwx410, caa) new_compare10(vwx22, vwx24, True, bdc, bdd) -> LT new_esEs30(vwx231, vwx251, ty_Char) -> new_esEs20(vwx231, vwx251) new_ltEs16(Just(vwx230), Just(vwx250), app(ty_[], bda)) -> new_ltEs15(vwx230, vwx250, bda) new_esEs30(vwx231, vwx251, ty_Double) -> new_esEs19(vwx231, vwx251) new_esEs4(Right(vwx310), Right(vwx410), ccg, app(app(ty_@2, chh), daa)) -> new_esEs11(vwx310, vwx410, chh, daa) new_esEs31(vwx230, vwx250, ty_Int) -> new_esEs14(vwx230, vwx250) new_esEs10(EQ, EQ) -> True new_esEs7(vwx31, vwx41, ty_Integer) -> new_esEs21(vwx31, vwx41) new_compare110(vwx22, vwx24, True) -> LT new_compare32(vwx220, vwx240, ty_Int) -> new_compare7(vwx220, vwx240) new_esEs31(vwx230, vwx250, ty_Double) -> new_esEs19(vwx230, vwx250) new_esEs19(Double(vwx310, vwx311), Double(vwx410, vwx411)) -> new_esEs14(new_sr(vwx310, vwx411), new_sr(vwx311, vwx410)) new_esEs12(vwx311, vwx411, app(app(ty_Either, bgd), bge)) -> new_esEs4(vwx311, vwx411, bgd, bge) new_lt19(vwx230, vwx250, app(app(app(ty_@3, ff), fg), fh)) -> new_lt14(vwx230, vwx250, ff, fg, fh) new_ltEs7(vwx23, vwx25, app(ty_Ratio, cah)) -> new_ltEs14(vwx23, vwx25, cah) new_esEs13(vwx310, vwx410, ty_Char) -> new_esEs20(vwx310, vwx410) new_esEs8(vwx30, vwx40, ty_Integer) -> new_esEs21(vwx30, vwx40) new_primCmpInt(Pos(Succ(vwx2200)), Neg(vwx240)) -> GT new_esEs22(vwx22, vwx24, ty_Bool) -> new_esEs9(vwx22, vwx24) new_ltEs20(vwx232, vwx252, ty_@0) -> new_ltEs10(vwx232, vwx252) new_compare16(Double(vwx220, Pos(vwx2210)), Double(vwx240, Neg(vwx2410))) -> new_compare7(new_sr(vwx220, Pos(vwx2410)), new_sr(Neg(vwx2210), vwx240)) new_compare16(Double(vwx220, Neg(vwx2210)), Double(vwx240, Pos(vwx2410))) -> new_compare7(new_sr(vwx220, Neg(vwx2410)), new_sr(Pos(vwx2210), vwx240)) new_esEs26(vwx230, vwx250, ty_Int) -> new_esEs14(vwx230, vwx250) new_esEs30(vwx231, vwx251, ty_@0) -> new_esEs18(vwx231, vwx251) new_esEs30(vwx231, vwx251, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(vwx231, vwx251, bac, bad, bae) new_ltEs16(Just(vwx230), Just(vwx250), ty_Bool) -> new_ltEs9(vwx230, vwx250) new_compare11(vwx40, vwx41, vwx42, vwx43, True, bfh, bga) -> LT new_esEs8(vwx30, vwx40, app(ty_Ratio, cea)) -> new_esEs17(vwx30, vwx40, cea) new_ltEs15(vwx23, vwx25, bca) -> new_not(new_esEs10(new_compare1(vwx23, vwx25, bca), GT)) new_esEs29(vwx310, vwx410, ty_Float) -> new_esEs15(vwx310, vwx410) new_esEs7(vwx31, vwx41, app(ty_Maybe, cda)) -> new_esEs6(vwx31, vwx41, cda) new_lt20(vwx231, vwx251, app(app(ty_Either, hf), hg)) -> new_lt8(vwx231, vwx251, hf, hg) new_compare1(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_primCompAux1(vwx220, vwx240, new_compare1(vwx221, vwx241, bec), bec) new_esEs13(vwx310, vwx410, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs5(vwx310, vwx410, cae, caf, cag) new_ltEs16(Just(vwx230), Just(vwx250), ty_Char) -> new_ltEs13(vwx230, vwx250) new_esEs10(LT, EQ) -> False new_esEs10(EQ, LT) -> False new_primCmpNat0(Zero, Succ(vwx2400)) -> LT new_lt20(vwx231, vwx251, app(app(app(ty_@3, bac), bad), bae)) -> new_lt14(vwx231, vwx251, bac, bad, bae) new_ltEs19(vwx231, vwx251, ty_@0) -> new_ltEs10(vwx231, vwx251) new_esEs29(vwx310, vwx410, ty_@0) -> new_esEs18(vwx310, vwx410) new_lt20(vwx231, vwx251, app(ty_[], baf)) -> new_lt15(vwx231, vwx251, baf) new_esEs27(vwx312, vwx412, ty_Bool) -> new_esEs9(vwx312, vwx412) new_lt18(vwx22, vwx24) -> new_esEs10(new_compare19(vwx22, vwx24), LT) new_ltEs20(vwx232, vwx252, ty_Double) -> new_ltEs17(vwx232, vwx252) new_lt16(vwx22, vwx24, bed) -> new_esEs10(new_compare31(vwx22, vwx24, bed), LT) new_esEs30(vwx231, vwx251, app(app(ty_@2, baa), bab)) -> new_esEs11(vwx231, vwx251, baa, bab) new_lt9(vwx22, vwx24) -> new_esEs10(new_compare6(vwx22, vwx24), LT) new_esEs6(Just(vwx310), Just(vwx410), ty_Bool) -> new_esEs9(vwx310, vwx410) new_ltEs5(vwx23, vwx25) -> new_not(new_esEs10(new_compare9(vwx23, vwx25), GT)) new_esEs28(vwx311, vwx411, app(ty_[], dce)) -> new_esEs16(vwx311, vwx411, dce) new_primCmpNat0(Succ(vwx2200), Zero) -> GT new_esEs30(vwx231, vwx251, ty_Float) -> new_esEs15(vwx231, vwx251) new_pePe(False, vwx57) -> vwx57 new_compare19(Float(vwx220, Pos(vwx2210)), Float(vwx240, Pos(vwx2410))) -> new_compare7(new_sr(vwx220, Pos(vwx2410)), new_sr(Pos(vwx2210), vwx240)) new_ltEs12(GT, GT) -> True new_compare210(vwx22, vwx24, True, bed) -> EQ new_ltEs9(True, True) -> True new_ltEs4(Left(vwx230), Left(vwx250), app(app(app(ty_@3, bf), bg), bh), bc) -> new_ltEs6(vwx230, vwx250, bf, bg, bh) new_esEs27(vwx312, vwx412, ty_Char) -> new_esEs20(vwx312, vwx412) new_ltEs13(vwx23, vwx25) -> new_not(new_esEs10(new_compare8(vwx23, vwx25), GT)) new_esEs4(Right(vwx310), Right(vwx410), ccg, app(ty_Ratio, chg)) -> new_esEs17(vwx310, vwx410, chg) new_ltEs12(GT, EQ) -> False new_ltEs20(vwx232, vwx252, ty_Char) -> new_ltEs13(vwx232, vwx252) new_esEs22(vwx22, vwx24, ty_Float) -> new_esEs15(vwx22, vwx24) new_compare16(Double(vwx220, Pos(vwx2210)), Double(vwx240, Pos(vwx2410))) -> new_compare7(new_sr(vwx220, Pos(vwx2410)), new_sr(Pos(vwx2210), vwx240)) new_compare23(vwx22, vwx24, False, bdc, bdd) -> new_compare10(vwx22, vwx24, new_ltEs4(vwx22, vwx24, bdc, bdd), bdc, bdd) new_ltEs14(vwx23, vwx25, cah) -> new_not(new_esEs10(new_compare15(vwx23, vwx25, cah), GT)) new_esEs22(vwx22, vwx24, ty_Ordering) -> new_esEs10(vwx22, vwx24) new_compare23(vwx22, vwx24, True, bdc, bdd) -> EQ new_esEs6(Just(vwx310), Just(vwx410), ty_@0) -> new_esEs18(vwx310, vwx410) new_compare17(vwx22, vwx24, bdh, bea, beb) -> new_compare25(vwx22, vwx24, new_esEs5(vwx22, vwx24, bdh, bea, beb), bdh, bea, beb) new_lt21(vwx230, vwx250, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt14(vwx230, vwx250, bbd, bbe, bbf) new_esEs12(vwx311, vwx411, ty_Int) -> new_esEs14(vwx311, vwx411) new_esEs22(vwx22, vwx24, app(ty_Maybe, bed)) -> new_esEs6(vwx22, vwx24, bed) new_compare13(@0, @0) -> EQ new_primEqInt(Pos(Zero), Neg(Succ(vwx4100))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4100))) -> False new_esEs7(vwx31, vwx41, ty_Double) -> new_esEs19(vwx31, vwx41) new_lt19(vwx230, vwx250, ty_Ordering) -> new_lt12(vwx230, vwx250) new_lt6(vwx22, vwx24, ty_Float) -> new_lt18(vwx22, vwx24) new_esEs28(vwx311, vwx411, ty_Integer) -> new_esEs21(vwx311, vwx411) new_compare26(vwx22, vwx23, vwx24, vwx25, False, h, bde) -> new_compare11(vwx22, vwx23, vwx24, vwx25, new_pePe(new_lt6(vwx22, vwx24, h), new_asAs(new_esEs22(vwx22, vwx24, h), new_ltEs7(vwx23, vwx25, bde))), h, bde) new_esEs26(vwx230, vwx250, app(ty_Ratio, daf)) -> new_esEs17(vwx230, vwx250, daf) new_esEs12(vwx311, vwx411, ty_Ordering) -> new_esEs10(vwx311, vwx411) new_esEs8(vwx30, vwx40, ty_Int) -> new_esEs14(vwx30, vwx40) new_lt21(vwx230, vwx250, ty_Int) -> new_lt7(vwx230, vwx250) new_esEs22(vwx22, vwx24, ty_Int) -> new_esEs14(vwx22, vwx24) new_esEs31(vwx230, vwx250, app(app(ty_Either, bah), bba)) -> new_esEs4(vwx230, vwx250, bah, bba) new_esEs26(vwx230, vwx250, app(ty_[], ga)) -> new_esEs16(vwx230, vwx250, ga) new_ltEs19(vwx231, vwx251, ty_Char) -> new_ltEs13(vwx231, vwx251) new_esEs8(vwx30, vwx40, ty_Ordering) -> new_esEs10(vwx30, vwx40) new_primEqInt(Neg(Succ(vwx3100)), Neg(Succ(vwx4100))) -> new_primEqNat0(vwx3100, vwx4100) new_esEs11(@2(vwx310, vwx311), @2(vwx410, vwx411), bgb, bgc) -> new_asAs(new_esEs13(vwx310, vwx410, bgb), new_esEs12(vwx311, vwx411, bgc)) new_ltEs4(Left(vwx230), Left(vwx250), ty_Float, bc) -> new_ltEs18(vwx230, vwx250) new_compare25(vwx22, vwx24, True, bdh, bea, beb) -> EQ new_primCmpInt(Neg(Zero), Pos(Succ(vwx2400))) -> LT new_esEs29(vwx310, vwx410, ty_Char) -> new_esEs20(vwx310, vwx410) new_primMulInt(Pos(vwx3100), Pos(vwx4110)) -> Pos(new_primMulNat0(vwx3100, vwx4110)) new_esEs23(vwx310, vwx410, app(app(ty_Either, cbd), cbe)) -> new_esEs4(vwx310, vwx410, cbd, cbe) new_lt21(vwx230, vwx250, ty_Float) -> new_lt18(vwx230, vwx250) new_esEs6(Just(vwx310), Just(vwx410), app(app(ty_Either, ceg), ceh)) -> new_esEs4(vwx310, vwx410, ceg, ceh) new_lt6(vwx22, vwx24, app(app(app(ty_@3, bdh), bea), beb)) -> new_lt14(vwx22, vwx24, bdh, bea, beb) new_esEs4(Right(vwx310), Right(vwx410), ccg, ty_Char) -> new_esEs20(vwx310, vwx410) new_esEs7(vwx31, vwx41, ty_Float) -> new_esEs15(vwx31, vwx41) new_primMulNat0(Succ(vwx31000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx41100)) -> Zero new_esEs6(Just(vwx310), Just(vwx410), app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(vwx310, vwx410, cff, cfg, cfh) new_esEs4(Left(vwx310), Left(vwx410), ty_Bool, cch) -> new_esEs9(vwx310, vwx410) new_esEs23(vwx310, vwx410, ty_Bool) -> new_esEs9(vwx310, vwx410) new_esEs7(vwx31, vwx41, app(app(ty_Either, ccg), cch)) -> new_esEs4(vwx31, vwx41, ccg, cch) new_esEs23(vwx310, vwx410, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs5(vwx310, vwx410, ccc, ccd, cce) new_ltEs19(vwx231, vwx251, ty_Bool) -> new_ltEs9(vwx231, vwx251) new_primPlusNat1(Succ(vwx760), vwx41100) -> Succ(Succ(new_primPlusNat0(vwx760, vwx41100))) new_esEs31(vwx230, vwx250, ty_@0) -> new_esEs18(vwx230, vwx250) new_lt10(vwx22, vwx24) -> new_esEs10(new_compare9(vwx22, vwx24), LT) new_ltEs7(vwx23, vwx25, app(ty_Maybe, cba)) -> new_ltEs16(vwx23, vwx25, cba) new_esEs8(vwx30, vwx40, ty_Float) -> new_esEs15(vwx30, vwx40) new_primPlusNat0(Succ(vwx7600), Zero) -> Succ(vwx7600) new_primPlusNat0(Zero, Succ(vwx411000)) -> Succ(vwx411000) new_esEs13(vwx310, vwx410, ty_Bool) -> new_esEs9(vwx310, vwx410) new_primPlusNat1(Zero, vwx41100) -> Succ(vwx41100) new_esEs12(vwx311, vwx411, app(ty_Maybe, bgg)) -> new_esEs6(vwx311, vwx411, bgg) new_compare32(vwx220, vwx240, ty_Bool) -> new_compare6(vwx220, vwx240) new_compare7(vwx22, vwx24) -> new_primCmpInt(vwx22, vwx24) new_esEs22(vwx22, vwx24, ty_@0) -> new_esEs18(vwx22, vwx24) new_esEs4(Left(vwx310), Left(vwx410), ty_Double, cch) -> new_esEs19(vwx310, vwx410) new_compare1([], [], bec) -> EQ new_ltEs20(vwx232, vwx252, app(ty_Maybe, he)) -> new_ltEs16(vwx232, vwx252, he) new_esEs24(vwx311, vwx411, ty_Int) -> new_esEs14(vwx311, vwx411) new_lt6(vwx22, vwx24, ty_Ordering) -> new_lt12(vwx22, vwx24) new_esEs12(vwx311, vwx411, ty_Bool) -> new_esEs9(vwx311, vwx411) new_esEs23(vwx310, vwx410, app(ty_Ratio, cbh)) -> new_esEs17(vwx310, vwx410, cbh) new_esEs13(vwx310, vwx410, app(ty_Ratio, cab)) -> new_esEs17(vwx310, vwx410, cab) new_esEs4(Right(vwx310), Right(vwx410), ccg, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(vwx310, vwx410, dab, dac, dad) new_esEs8(vwx30, vwx40, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs5(vwx30, vwx40, ced, cee, cef) new_lt20(vwx231, vwx251, ty_Float) -> new_lt18(vwx231, vwx251) new_lt21(vwx230, vwx250, ty_Ordering) -> new_lt12(vwx230, vwx250) new_esEs30(vwx231, vwx251, ty_Integer) -> new_esEs21(vwx231, vwx251) new_esEs4(Left(vwx310), Left(vwx410), ty_Int, cch) -> new_esEs14(vwx310, vwx410) new_esEs4(Left(vwx310), Left(vwx410), app(ty_[], cgc), cch) -> new_esEs16(vwx310, vwx410, cgc) new_esEs16([], [], cbc) -> True new_esEs12(vwx311, vwx411, app(ty_Ratio, bgh)) -> new_esEs17(vwx311, vwx411, bgh) new_ltEs16(Just(vwx230), Just(vwx250), app(ty_Maybe, bdb)) -> new_ltEs16(vwx230, vwx250, bdb) new_esEs23(vwx310, vwx410, ty_Ordering) -> new_esEs10(vwx310, vwx410) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_compare24(vwx22, vwx24, False) -> new_compare110(vwx22, vwx24, new_ltEs9(vwx22, vwx24)) new_primMulInt(Neg(vwx3100), Neg(vwx4110)) -> Pos(new_primMulNat0(vwx3100, vwx4110)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx2400))) -> new_primCmpNat0(Zero, Succ(vwx2400)) new_esEs8(vwx30, vwx40, app(app(ty_Either, cde), cdf)) -> new_esEs4(vwx30, vwx40, cde, cdf) new_lt19(vwx230, vwx250, ty_Integer) -> new_lt10(vwx230, vwx250) new_ltEs4(Right(vwx230), Right(vwx250), cc, app(ty_Ratio, dah)) -> new_ltEs14(vwx230, vwx250, dah) new_compare11(vwx40, vwx41, vwx42, vwx43, False, bfh, bga) -> GT new_lt20(vwx231, vwx251, ty_Ordering) -> new_lt12(vwx231, vwx251) new_esEs27(vwx312, vwx412, app(app(ty_@2, dbf), dbg)) -> new_esEs11(vwx312, vwx412, dbf, dbg) new_esEs6(Just(vwx310), Just(vwx410), app(ty_Maybe, cfb)) -> new_esEs6(vwx310, vwx410, cfb) new_lt19(vwx230, vwx250, ty_Float) -> new_lt18(vwx230, vwx250) new_compare9(Integer(vwx220), Integer(vwx240)) -> new_primCmpInt(vwx220, vwx240) new_esEs6(Nothing, Just(vwx410), cda) -> False new_esEs6(Just(vwx310), Nothing, cda) -> False new_esEs4(Right(vwx310), Right(vwx410), ccg, ty_Integer) -> new_esEs21(vwx310, vwx410) new_lt20(vwx231, vwx251, ty_Integer) -> new_lt10(vwx231, vwx251) new_esEs4(Right(vwx310), Right(vwx410), ccg, app(ty_Maybe, chf)) -> new_esEs6(vwx310, vwx410, chf) new_esEs6(Nothing, Nothing, cda) -> True new_esEs4(Left(vwx310), Left(vwx410), ty_Ordering, cch) -> new_esEs10(vwx310, vwx410) new_esEs10(LT, LT) -> True new_ltEs6(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, hh) -> new_pePe(new_lt21(vwx230, vwx250, gc), new_asAs(new_esEs31(vwx230, vwx250, gc), new_pePe(new_lt20(vwx231, vwx251, gd), new_asAs(new_esEs30(vwx231, vwx251, gd), new_ltEs20(vwx232, vwx252, hh))))) new_esEs6(Just(vwx310), Just(vwx410), ty_Int) -> new_esEs14(vwx310, vwx410) new_esEs22(vwx22, vwx24, ty_Double) -> new_esEs19(vwx22, vwx24) new_esEs8(vwx30, vwx40, ty_@0) -> new_esEs18(vwx30, vwx40) new_lt4(vwx22, vwx24) -> new_esEs10(new_compare8(vwx22, vwx24), LT) new_esEs23(vwx310, vwx410, ty_Int) -> new_esEs14(vwx310, vwx410) new_esEs6(Just(vwx310), Just(vwx410), ty_Ordering) -> new_esEs10(vwx310, vwx410) new_esEs26(vwx230, vwx250, ty_@0) -> new_esEs18(vwx230, vwx250) new_compare32(vwx220, vwx240, app(app(ty_@2, beg), beh)) -> new_compare27(vwx220, vwx240, beg, beh) new_lt8(vwx22, vwx24, bdc, bdd) -> new_esEs10(new_compare29(vwx22, vwx24, bdc, bdd), LT) new_ltEs16(Just(vwx230), Just(vwx250), ty_Double) -> new_ltEs17(vwx230, vwx250) new_compare32(vwx220, vwx240, ty_Float) -> new_compare19(vwx220, vwx240) new_primMulInt(Pos(vwx3100), Neg(vwx4110)) -> Neg(new_primMulNat0(vwx3100, vwx4110)) new_primMulInt(Neg(vwx3100), Pos(vwx4110)) -> Neg(new_primMulNat0(vwx3100, vwx4110)) new_esEs13(vwx310, vwx410, ty_Int) -> new_esEs14(vwx310, vwx410) new_esEs27(vwx312, vwx412, app(ty_Ratio, dbe)) -> new_esEs17(vwx312, vwx412, dbe) new_lt21(vwx230, vwx250, app(app(ty_@2, bbb), bbc)) -> new_lt11(vwx230, vwx250, bbb, bbc) new_esEs17(:%(vwx310, vwx311), :%(vwx410, vwx411), ccf) -> new_asAs(new_esEs25(vwx310, vwx410, ccf), new_esEs24(vwx311, vwx411, ccf)) new_compare28(vwx22, vwx24, True) -> EQ new_ltEs4(Right(vwx230), Right(vwx250), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs6(vwx230, vwx250, da, db, dc) new_ltEs4(Right(vwx230), Right(vwx250), cc, app(app(ty_Either, cd), ce)) -> new_ltEs4(vwx230, vwx250, cd, ce) new_esEs31(vwx230, vwx250, app(ty_Maybe, bbh)) -> new_esEs6(vwx230, vwx250, bbh) new_esEs27(vwx312, vwx412, ty_Double) -> new_esEs19(vwx312, vwx412) new_esEs13(vwx310, vwx410, ty_Ordering) -> new_esEs10(vwx310, vwx410) new_esEs28(vwx311, vwx411, ty_Int) -> new_esEs14(vwx311, vwx411) new_compare32(vwx220, vwx240, ty_Double) -> new_compare16(vwx220, vwx240) new_ltEs16(Just(vwx230), Just(vwx250), ty_@0) -> new_ltEs10(vwx230, vwx250) new_lt6(vwx22, vwx24, ty_Char) -> new_lt4(vwx22, vwx24) new_esEs4(Left(vwx310), Left(vwx410), ty_Float, cch) -> new_esEs15(vwx310, vwx410) new_esEs6(Just(vwx310), Just(vwx410), ty_Double) -> new_esEs19(vwx310, vwx410) new_ltEs19(vwx231, vwx251, ty_Ordering) -> new_ltEs12(vwx231, vwx251) new_esEs22(vwx22, vwx24, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs5(vwx22, vwx24, bdh, bea, beb) new_compare19(Float(vwx220, Neg(vwx2210)), Float(vwx240, Neg(vwx2410))) -> new_compare7(new_sr(vwx220, Neg(vwx2410)), new_sr(Neg(vwx2210), vwx240)) new_sr0(Integer(vwx2400), Integer(vwx2210)) -> Integer(new_primMulInt(vwx2400, vwx2210)) new_ltEs4(Left(vwx230), Left(vwx250), ty_Bool, bc) -> new_ltEs9(vwx230, vwx250) new_ltEs11(@2(vwx230, vwx231), @2(vwx250, vwx251), df, fb) -> new_pePe(new_lt19(vwx230, vwx250, df), new_asAs(new_esEs26(vwx230, vwx250, df), new_ltEs19(vwx231, vwx251, fb))) new_ltEs4(Left(vwx230), Left(vwx250), ty_Int, bc) -> new_ltEs8(vwx230, vwx250) new_ltEs20(vwx232, vwx252, app(app(ty_Either, ge), gf)) -> new_ltEs4(vwx232, vwx252, ge, gf) new_esEs23(vwx310, vwx410, ty_Float) -> new_esEs15(vwx310, vwx410) new_esEs26(vwx230, vwx250, app(app(ty_@2, fc), fd)) -> new_esEs11(vwx230, vwx250, fc, fd) new_lt21(vwx230, vwx250, ty_Integer) -> new_lt10(vwx230, vwx250) new_esEs12(vwx311, vwx411, ty_Double) -> new_esEs19(vwx311, vwx411) new_esEs22(vwx22, vwx24, app(app(ty_@2, bdf), bdg)) -> new_esEs11(vwx22, vwx24, bdf, bdg) new_ltEs19(vwx231, vwx251, app(ty_[], ef)) -> new_ltEs15(vwx231, vwx251, ef) new_lt6(vwx22, vwx24, app(ty_[], bec)) -> new_lt15(vwx22, vwx24, bec) new_ltEs8(vwx23, vwx25) -> new_not(new_esEs10(new_compare7(vwx23, vwx25), GT)) new_asAs(True, vwx50) -> vwx50 new_esEs12(vwx311, vwx411, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs5(vwx311, vwx411, bhc, bhd, bhe) new_compare10(vwx22, vwx24, False, bdc, bdd) -> GT new_lt19(vwx230, vwx250, ty_Double) -> new_lt17(vwx230, vwx250) new_esEs7(vwx31, vwx41, ty_Bool) -> new_esEs9(vwx31, vwx41) new_esEs6(Just(vwx310), Just(vwx410), ty_Float) -> new_esEs15(vwx310, vwx410) new_ltEs7(vwx23, vwx25, ty_Int) -> new_ltEs8(vwx23, vwx25) new_esEs28(vwx311, vwx411, ty_Bool) -> new_esEs9(vwx311, vwx411) new_compare18(vwx22, vwx24, True, bed) -> LT new_esEs27(vwx312, vwx412, ty_Integer) -> new_esEs21(vwx312, vwx412) new_esEs4(Left(vwx310), Left(vwx410), app(app(ty_Either, cga), cgb), cch) -> new_esEs4(vwx310, vwx410, cga, cgb) new_esEs21(Integer(vwx310), Integer(vwx410)) -> new_primEqInt(vwx310, vwx410) new_esEs26(vwx230, vwx250, ty_Char) -> new_esEs20(vwx230, vwx250) new_esEs6(Just(vwx310), Just(vwx410), app(ty_Ratio, cfc)) -> new_esEs17(vwx310, vwx410, cfc) new_esEs29(vwx310, vwx410, app(ty_[], ddg)) -> new_esEs16(vwx310, vwx410, ddg) new_compare26(vwx22, vwx23, vwx24, vwx25, True, h, bde) -> EQ new_esEs23(vwx310, vwx410, ty_Double) -> new_esEs19(vwx310, vwx410) new_lt6(vwx22, vwx24, app(app(ty_Either, bdc), bdd)) -> new_lt8(vwx22, vwx24, bdc, bdd) new_compare32(vwx220, vwx240, app(ty_[], bfd)) -> new_compare1(vwx220, vwx240, bfd) new_esEs8(vwx30, vwx40, app(ty_[], cdg)) -> new_esEs16(vwx30, vwx40, cdg) new_primCmpInt(Pos(Succ(vwx2200)), Pos(vwx240)) -> new_primCmpNat0(Succ(vwx2200), vwx240) new_compare32(vwx220, vwx240, ty_Integer) -> new_compare9(vwx220, vwx240) new_esEs22(vwx22, vwx24, ty_Integer) -> new_esEs21(vwx22, vwx24) new_compare110(vwx22, vwx24, False) -> GT new_ltEs20(vwx232, vwx252, app(ty_[], hd)) -> new_ltEs15(vwx232, vwx252, hd) new_compare8(Char(vwx220), Char(vwx240)) -> new_primCmpNat0(vwx220, vwx240) new_sr(vwx310, vwx411) -> new_primMulInt(vwx310, vwx411) new_lt19(vwx230, vwx250, app(app(ty_@2, fc), fd)) -> new_lt11(vwx230, vwx250, fc, fd) new_ltEs4(Right(vwx230), Right(vwx250), cc, app(ty_Maybe, de)) -> new_ltEs16(vwx230, vwx250, de) new_esEs9(True, True) -> True new_esEs8(vwx30, vwx40, app(ty_Maybe, cdh)) -> new_esEs6(vwx30, vwx40, cdh) new_esEs28(vwx311, vwx411, ty_Float) -> new_esEs15(vwx311, vwx411) new_lt21(vwx230, vwx250, ty_Bool) -> new_lt9(vwx230, vwx250) new_esEs22(vwx22, vwx24, app(ty_Ratio, cbb)) -> new_esEs17(vwx22, vwx24, cbb) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(vwx232, vwx252, ty_Ordering) -> new_ltEs12(vwx232, vwx252) new_compare32(vwx220, vwx240, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare17(vwx220, vwx240, bfa, bfb, bfc) new_lt21(vwx230, vwx250, app(ty_Maybe, bbh)) -> new_lt16(vwx230, vwx250, bbh) new_esEs30(vwx231, vwx251, app(ty_[], baf)) -> new_esEs16(vwx231, vwx251, baf) new_ltEs7(vwx23, vwx25, ty_Bool) -> new_ltEs9(vwx23, vwx25) new_ltEs20(vwx232, vwx252, ty_Bool) -> new_ltEs9(vwx232, vwx252) new_esEs12(vwx311, vwx411, ty_Float) -> new_esEs15(vwx311, vwx411) new_compare14(vwx22, vwx24, False, bdh, bea, beb) -> GT new_esEs31(vwx230, vwx250, ty_Char) -> new_esEs20(vwx230, vwx250) new_ltEs4(Left(vwx230), Left(vwx250), app(ty_Maybe, cb), bc) -> new_ltEs16(vwx230, vwx250, cb) new_ltEs4(Right(vwx230), Right(vwx250), cc, ty_Double) -> new_ltEs17(vwx230, vwx250) new_esEs26(vwx230, vwx250, app(ty_Maybe, gb)) -> new_esEs6(vwx230, vwx250, gb) new_esEs12(vwx311, vwx411, app(app(ty_@2, bha), bhb)) -> new_esEs11(vwx311, vwx411, bha, bhb) new_esEs13(vwx310, vwx410, ty_Float) -> new_esEs15(vwx310, vwx410) new_lt20(vwx231, vwx251, app(ty_Ratio, dfa)) -> new_lt13(vwx231, vwx251, dfa) new_esEs4(Right(vwx310), Right(vwx410), ccg, app(app(ty_Either, chc), chd)) -> new_esEs4(vwx310, vwx410, chc, chd) new_compare25(vwx22, vwx24, False, bdh, bea, beb) -> new_compare14(vwx22, vwx24, new_ltEs6(vwx22, vwx24, bdh, bea, beb), bdh, bea, beb) new_ltEs12(GT, LT) -> False new_esEs8(vwx30, vwx40, ty_Bool) -> new_esEs9(vwx30, vwx40) new_ltEs16(Just(vwx230), Just(vwx250), app(ty_Ratio, dfc)) -> new_ltEs14(vwx230, vwx250, dfc) new_compare31(vwx22, vwx24, bed) -> new_compare210(vwx22, vwx24, new_esEs6(vwx22, vwx24, bed), bed) new_esEs4(Right(vwx310), Right(vwx410), ccg, ty_@0) -> new_esEs18(vwx310, vwx410) new_ltEs9(True, False) -> False new_primCompAux0(vwx73, EQ) -> vwx73 new_ltEs16(Just(vwx230), Just(vwx250), app(app(ty_@2, bcd), bce)) -> new_ltEs11(vwx230, vwx250, bcd, bce) new_esEs12(vwx311, vwx411, ty_@0) -> new_esEs18(vwx311, vwx411) new_lt19(vwx230, vwx250, ty_Int) -> new_lt7(vwx230, vwx250) new_lt19(vwx230, vwx250, app(ty_Ratio, daf)) -> new_lt13(vwx230, vwx250, daf) new_esEs29(vwx310, vwx410, app(app(ty_Either, dde), ddf)) -> new_esEs4(vwx310, vwx410, dde, ddf) new_primEqInt(Neg(Succ(vwx3100)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4100))) -> False new_esEs14(vwx31, vwx41) -> new_primEqInt(vwx31, vwx41) new_ltEs4(Right(vwx230), Right(vwx250), cc, ty_@0) -> new_ltEs10(vwx230, vwx250) new_primEqInt(Pos(Succ(vwx3100)), Pos(Succ(vwx4100))) -> new_primEqNat0(vwx3100, vwx4100) new_esEs7(vwx31, vwx41, ty_Int) -> new_esEs14(vwx31, vwx41) new_compare24(vwx22, vwx24, True) -> EQ new_ltEs4(Left(vwx230), Left(vwx250), app(app(ty_Either, ba), bb), bc) -> new_ltEs4(vwx230, vwx250, ba, bb) new_lt5(vwx22, vwx24) -> new_esEs10(new_compare13(vwx22, vwx24), LT) new_lt20(vwx231, vwx251, ty_Bool) -> new_lt9(vwx231, vwx251) new_esEs7(vwx31, vwx41, app(ty_[], cbc)) -> new_esEs16(vwx31, vwx41, cbc) new_ltEs16(Nothing, Just(vwx250), cba) -> True new_esEs15(Float(vwx310, vwx311), Float(vwx410, vwx411)) -> new_esEs14(new_sr(vwx310, vwx411), new_sr(vwx311, vwx410)) new_esEs13(vwx310, vwx410, ty_Double) -> new_esEs19(vwx310, vwx410) new_lt20(vwx231, vwx251, ty_Int) -> new_lt7(vwx231, vwx251) new_compare16(Double(vwx220, Neg(vwx2210)), Double(vwx240, Neg(vwx2410))) -> new_compare7(new_sr(vwx220, Neg(vwx2410)), new_sr(Neg(vwx2210), vwx240)) new_esEs7(vwx31, vwx41, ty_Ordering) -> new_esEs10(vwx31, vwx41) new_primEqInt(Pos(Succ(vwx3100)), Neg(vwx410)) -> False new_primEqInt(Neg(Succ(vwx3100)), Pos(vwx410)) -> False new_compare32(vwx220, vwx240, ty_Char) -> new_compare8(vwx220, vwx240) new_lt20(vwx231, vwx251, app(app(ty_@2, baa), bab)) -> new_lt11(vwx231, vwx251, baa, bab) new_ltEs7(vwx23, vwx25, app(ty_[], bca)) -> new_ltEs15(vwx23, vwx25, bca) new_compare32(vwx220, vwx240, app(app(ty_Either, bee), bef)) -> new_compare29(vwx220, vwx240, bee, bef) new_ltEs17(vwx23, vwx25) -> new_not(new_esEs10(new_compare16(vwx23, vwx25), GT)) new_lt19(vwx230, vwx250, ty_Bool) -> new_lt9(vwx230, vwx250) new_primCmpInt(Neg(Zero), Neg(Succ(vwx2400))) -> new_primCmpNat0(Succ(vwx2400), Zero) new_esEs31(vwx230, vwx250, app(ty_[], bbg)) -> new_esEs16(vwx230, vwx250, bbg) new_esEs16(:(vwx310, vwx311), :(vwx410, vwx411), cbc) -> new_asAs(new_esEs23(vwx310, vwx410, cbc), new_esEs16(vwx311, vwx411, cbc)) new_esEs30(vwx231, vwx251, app(app(ty_Either, hf), hg)) -> new_esEs4(vwx231, vwx251, hf, hg) new_ltEs12(EQ, GT) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs26(vwx230, vwx250, ty_Integer) -> new_esEs21(vwx230, vwx250) new_ltEs4(Left(vwx230), Left(vwx250), ty_Ordering, bc) -> new_ltEs12(vwx230, vwx250) new_lt19(vwx230, vwx250, ty_@0) -> new_lt5(vwx230, vwx250) new_esEs13(vwx310, vwx410, ty_Integer) -> new_esEs21(vwx310, vwx410) new_compare30(vwx22, vwx24) -> new_compare28(vwx22, vwx24, new_esEs10(vwx22, vwx24)) new_esEs29(vwx310, vwx410, ty_Int) -> new_esEs14(vwx310, vwx410) new_ltEs4(Left(vwx230), Left(vwx250), ty_Integer, bc) -> new_ltEs5(vwx230, vwx250) new_esEs26(vwx230, vwx250, ty_Double) -> new_esEs19(vwx230, vwx250) new_compare210(vwx22, vwx24, False, bed) -> new_compare18(vwx22, vwx24, new_ltEs16(vwx22, vwx24, bed), bed) new_ltEs12(EQ, EQ) -> True new_esEs30(vwx231, vwx251, app(ty_Maybe, bag)) -> new_esEs6(vwx231, vwx251, bag) new_esEs10(LT, GT) -> False new_esEs10(GT, LT) -> False new_lt17(vwx22, vwx24) -> new_esEs10(new_compare16(vwx22, vwx24), LT) new_lt19(vwx230, vwx250, app(ty_Maybe, gb)) -> new_lt16(vwx230, vwx250, gb) new_esEs6(Just(vwx310), Just(vwx410), app(app(ty_@2, cfd), cfe)) -> new_esEs11(vwx310, vwx410, cfd, cfe) new_esEs31(vwx230, vwx250, app(app(ty_@2, bbb), bbc)) -> new_esEs11(vwx230, vwx250, bbb, bbc) new_esEs8(vwx30, vwx40, ty_Char) -> new_esEs20(vwx30, vwx40) new_ltEs4(Right(vwx230), Right(vwx250), cc, ty_Ordering) -> new_ltEs12(vwx230, vwx250) new_esEs31(vwx230, vwx250, ty_Bool) -> new_esEs9(vwx230, vwx250) new_esEs13(vwx310, vwx410, app(app(ty_Either, bhf), bhg)) -> new_esEs4(vwx310, vwx410, bhf, bhg) new_esEs13(vwx310, vwx410, app(ty_[], bhh)) -> new_esEs16(vwx310, vwx410, bhh) new_ltEs7(vwx23, vwx25, ty_Char) -> new_ltEs13(vwx23, vwx25) new_esEs4(Right(vwx310), Right(vwx410), ccg, ty_Bool) -> new_esEs9(vwx310, vwx410) new_not(False) -> True new_esEs29(vwx310, vwx410, ty_Ordering) -> new_esEs10(vwx310, vwx410) new_lt7(vwx22, vwx24) -> new_esEs10(new_compare7(vwx22, vwx24), LT) new_compare1([], :(vwx240, vwx241), bec) -> LT new_ltEs4(Right(vwx230), Right(vwx250), cc, ty_Integer) -> new_ltEs5(vwx230, vwx250) new_compare32(vwx220, vwx240, app(ty_Maybe, bfe)) -> new_compare31(vwx220, vwx240, bfe) new_lt11(vwx22, vwx24, bdf, bdg) -> new_esEs10(new_compare27(vwx22, vwx24, bdf, bdg), LT) new_esEs28(vwx311, vwx411, ty_Double) -> new_esEs19(vwx311, vwx411) new_primPlusNat0(Succ(vwx7600), Succ(vwx411000)) -> Succ(Succ(new_primPlusNat0(vwx7600, vwx411000))) new_compare28(vwx22, vwx24, False) -> new_compare12(vwx22, vwx24, new_ltEs12(vwx22, vwx24)) new_esEs27(vwx312, vwx412, ty_@0) -> new_esEs18(vwx312, vwx412) new_lt6(vwx22, vwx24, app(ty_Ratio, cbb)) -> new_lt13(vwx22, vwx24, cbb) new_esEs6(Just(vwx310), Just(vwx410), ty_Char) -> new_esEs20(vwx310, vwx410) new_esEs28(vwx311, vwx411, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs5(vwx311, vwx411, ddb, ddc, ddd) new_ltEs16(Just(vwx230), Just(vwx250), ty_Integer) -> new_ltEs5(vwx230, vwx250) new_ltEs16(Just(vwx230), Just(vwx250), ty_Ordering) -> new_ltEs12(vwx230, vwx250) new_ltEs20(vwx232, vwx252, app(ty_Ratio, deh)) -> new_ltEs14(vwx232, vwx252, deh) new_ltEs4(Left(vwx230), Right(vwx250), cc, bc) -> True new_esEs27(vwx312, vwx412, ty_Ordering) -> new_esEs10(vwx312, vwx412) new_esEs30(vwx231, vwx251, ty_Ordering) -> new_esEs10(vwx231, vwx251) new_lt20(vwx231, vwx251, ty_Char) -> new_lt4(vwx231, vwx251) new_esEs23(vwx310, vwx410, app(app(ty_@2, cca), ccb)) -> new_esEs11(vwx310, vwx410, cca, ccb) new_esEs30(vwx231, vwx251, ty_Int) -> new_esEs14(vwx231, vwx251) new_esEs12(vwx311, vwx411, ty_Char) -> new_esEs20(vwx311, vwx411) new_esEs29(vwx310, vwx410, app(ty_Maybe, ddh)) -> new_esEs6(vwx310, vwx410, ddh) new_ltEs16(Just(vwx230), Just(vwx250), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs6(vwx230, vwx250, bcf, bcg, bch) new_ltEs19(vwx231, vwx251, app(ty_Ratio, dae)) -> new_ltEs14(vwx231, vwx251, dae) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(vwx231, vwx251, ty_Double) -> new_lt17(vwx231, vwx251) new_ltEs4(Right(vwx230), Right(vwx250), cc, ty_Float) -> new_ltEs18(vwx230, vwx250) new_compare19(Float(vwx220, Pos(vwx2210)), Float(vwx240, Neg(vwx2410))) -> new_compare7(new_sr(vwx220, Pos(vwx2410)), new_sr(Neg(vwx2210), vwx240)) new_compare19(Float(vwx220, Neg(vwx2210)), Float(vwx240, Pos(vwx2410))) -> new_compare7(new_sr(vwx220, Neg(vwx2410)), new_sr(Pos(vwx2210), vwx240)) new_esEs4(Left(vwx310), Left(vwx410), app(ty_Ratio, cge), cch) -> new_esEs17(vwx310, vwx410, cge) new_esEs28(vwx311, vwx411, app(app(ty_Either, dcc), dcd)) -> new_esEs4(vwx311, vwx411, dcc, dcd) new_esEs7(vwx31, vwx41, app(ty_Ratio, ccf)) -> new_esEs17(vwx31, vwx41, ccf) new_compare15(:%(vwx220, vwx221), :%(vwx240, vwx241), ty_Int) -> new_compare7(new_sr(vwx220, vwx241), new_sr(vwx240, vwx221)) new_lt20(vwx231, vwx251, ty_@0) -> new_lt5(vwx231, vwx251) new_esEs27(vwx312, vwx412, ty_Int) -> new_esEs14(vwx312, vwx412) new_esEs28(vwx311, vwx411, app(ty_Ratio, dcg)) -> new_esEs17(vwx311, vwx411, dcg) new_esEs10(EQ, GT) -> False new_esEs10(GT, EQ) -> False new_ltEs19(vwx231, vwx251, app(app(ty_Either, dg), dh)) -> new_ltEs4(vwx231, vwx251, dg, dh) new_esEs26(vwx230, vwx250, app(app(ty_Either, eh), fa)) -> new_esEs4(vwx230, vwx250, eh, fa) new_esEs28(vwx311, vwx411, app(ty_Maybe, dcf)) -> new_esEs6(vwx311, vwx411, dcf) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs23(vwx310, vwx410, ty_Char) -> new_esEs20(vwx310, vwx410) new_esEs6(Just(vwx310), Just(vwx410), ty_Integer) -> new_esEs21(vwx310, vwx410) new_primCompAux1(vwx220, vwx240, vwx65, bec) -> new_primCompAux0(vwx65, new_compare32(vwx220, vwx240, bec)) new_compare32(vwx220, vwx240, app(ty_Ratio, deg)) -> new_compare15(vwx220, vwx240, deg) new_esEs4(Left(vwx310), Left(vwx410), app(app(ty_@2, cgf), cgg), cch) -> new_esEs11(vwx310, vwx410, cgf, cgg) new_ltEs12(EQ, LT) -> False new_esEs4(Left(vwx310), Left(vwx410), ty_Char, cch) -> new_esEs20(vwx310, vwx410) new_ltEs4(Left(vwx230), Left(vwx250), ty_Char, bc) -> new_ltEs13(vwx230, vwx250) new_primCmpNat0(Succ(vwx2200), Succ(vwx2400)) -> new_primCmpNat0(vwx2200, vwx2400) new_compare15(:%(vwx220, vwx221), :%(vwx240, vwx241), ty_Integer) -> new_compare9(new_sr0(vwx220, vwx241), new_sr0(vwx240, vwx221)) new_ltEs7(vwx23, vwx25, ty_Integer) -> new_ltEs5(vwx23, vwx25) new_ltEs7(vwx23, vwx25, ty_Ordering) -> new_ltEs12(vwx23, vwx25) new_esEs26(vwx230, vwx250, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs5(vwx230, vwx250, ff, fg, fh) new_lt21(vwx230, vwx250, ty_@0) -> new_lt5(vwx230, vwx250) new_ltEs7(vwx23, vwx25, app(app(app(ty_@3, gc), gd), hh)) -> new_ltEs6(vwx23, vwx25, gc, gd, hh) new_lt19(vwx230, vwx250, ty_Char) -> new_lt4(vwx230, vwx250) new_lt21(vwx230, vwx250, app(ty_Ratio, dfb)) -> new_lt13(vwx230, vwx250, dfb) new_esEs27(vwx312, vwx412, app(ty_Maybe, dbd)) -> new_esEs6(vwx312, vwx412, dbd) new_compare12(vwx22, vwx24, True) -> LT new_esEs6(Just(vwx310), Just(vwx410), app(ty_[], cfa)) -> new_esEs16(vwx310, vwx410, cfa) new_lt20(vwx231, vwx251, app(ty_Maybe, bag)) -> new_lt16(vwx231, vwx251, bag) new_ltEs19(vwx231, vwx251, ty_Float) -> new_ltEs18(vwx231, vwx251) new_ltEs7(vwx23, vwx25, ty_Float) -> new_ltEs18(vwx23, vwx25) new_esEs16(:(vwx310, vwx311), [], cbc) -> False new_esEs16([], :(vwx410, vwx411), cbc) -> False new_esEs29(vwx310, vwx410, ty_Bool) -> new_esEs9(vwx310, vwx410) new_compare6(vwx22, vwx24) -> new_compare24(vwx22, vwx24, new_esEs9(vwx22, vwx24)) new_esEs4(Right(vwx310), Right(vwx410), ccg, ty_Int) -> new_esEs14(vwx310, vwx410) new_esEs23(vwx310, vwx410, app(ty_[], cbf)) -> new_esEs16(vwx310, vwx410, cbf) new_ltEs20(vwx232, vwx252, ty_Int) -> new_ltEs8(vwx232, vwx252) new_esEs4(Left(vwx310), Left(vwx410), app(app(app(ty_@3, cgh), cha), chb), cch) -> new_esEs5(vwx310, vwx410, cgh, cha, chb) new_esEs27(vwx312, vwx412, ty_Float) -> new_esEs15(vwx312, vwx412) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs18(vwx23, vwx25) -> new_not(new_esEs10(new_compare19(vwx23, vwx25), GT)) new_ltEs12(LT, EQ) -> True new_esEs4(Right(vwx310), Right(vwx410), ccg, ty_Ordering) -> new_esEs10(vwx310, vwx410) new_esEs24(vwx311, vwx411, ty_Integer) -> new_esEs21(vwx311, vwx411) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(vwx310), Left(vwx410), app(ty_Maybe, cgd), cch) -> new_esEs6(vwx310, vwx410, cgd) new_ltEs20(vwx232, vwx252, ty_Float) -> new_ltEs18(vwx232, vwx252) new_esEs28(vwx311, vwx411, ty_Ordering) -> new_esEs10(vwx311, vwx411) new_lt21(vwx230, vwx250, ty_Double) -> new_lt17(vwx230, vwx250) new_ltEs7(vwx23, vwx25, app(app(ty_Either, cc), bc)) -> new_ltEs4(vwx23, vwx25, cc, bc) new_esEs23(vwx310, vwx410, ty_Integer) -> new_esEs21(vwx310, vwx410) new_esEs26(vwx230, vwx250, ty_Float) -> new_esEs15(vwx230, vwx250) new_esEs30(vwx231, vwx251, ty_Bool) -> new_esEs9(vwx231, vwx251) new_esEs29(vwx310, vwx410, app(ty_Ratio, dea)) -> new_esEs17(vwx310, vwx410, dea) new_esEs8(vwx30, vwx40, app(app(ty_@2, ceb), cec)) -> new_esEs11(vwx30, vwx40, ceb, cec) new_esEs22(vwx22, vwx24, app(ty_[], bec)) -> new_esEs16(vwx22, vwx24, bec) new_asAs(False, vwx50) -> False new_esEs4(Left(vwx310), Left(vwx410), ty_Integer, cch) -> new_esEs21(vwx310, vwx410) new_esEs30(vwx231, vwx251, app(ty_Ratio, dfa)) -> new_esEs17(vwx231, vwx251, dfa) new_ltEs4(Left(vwx230), Left(vwx250), app(ty_Ratio, dag), bc) -> new_ltEs14(vwx230, vwx250, dag) new_lt6(vwx22, vwx24, ty_@0) -> new_lt5(vwx22, vwx24) new_ltEs19(vwx231, vwx251, ty_Int) -> new_ltEs8(vwx231, vwx251) new_ltEs4(Right(vwx230), Right(vwx250), cc, ty_Int) -> new_ltEs8(vwx230, vwx250) new_esEs27(vwx312, vwx412, app(app(ty_Either, dba), dbb)) -> new_esEs4(vwx312, vwx412, dba, dbb) new_ltEs10(vwx23, vwx25) -> new_not(new_esEs10(new_compare13(vwx23, vwx25), GT)) new_lt6(vwx22, vwx24, ty_Double) -> new_lt17(vwx22, vwx24) new_esEs4(Right(vwx310), Right(vwx410), ccg, app(ty_[], che)) -> new_esEs16(vwx310, vwx410, che) new_ltEs16(Just(vwx230), Just(vwx250), app(app(ty_Either, bcb), bcc)) -> new_ltEs4(vwx230, vwx250, bcb, bcc) new_ltEs4(Right(vwx230), Left(vwx250), cc, bc) -> False new_esEs12(vwx311, vwx411, ty_Integer) -> new_esEs21(vwx311, vwx411) new_ltEs4(Left(vwx230), Left(vwx250), app(app(ty_@2, bd), be), bc) -> new_ltEs11(vwx230, vwx250, bd, be) new_esEs22(vwx22, vwx24, ty_Char) -> new_esEs20(vwx22, vwx24) new_ltEs16(Just(vwx230), Just(vwx250), ty_Float) -> new_ltEs18(vwx230, vwx250) new_esEs27(vwx312, vwx412, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs5(vwx312, vwx412, dbh, dca, dcb) The set Q consists of the following terms: new_esEs22(x0, x1, ty_Bool) new_pePe(True, x0) new_compare18(x0, x1, True, x2) new_compare10(x0, x1, False, x2, x3) new_compare13(@0, @0) new_compare17(x0, x1, x2, x3, x4) new_esEs26(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Zero) new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs16(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_@0) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_primCompAux0(x0, EQ) new_esEs20(Char(x0), Char(x1)) new_lt20(x0, x1, ty_Bool) new_compare7(x0, x1) new_compare32(x0, x1, ty_Double) new_asAs(True, x0) new_esEs23(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, ty_Float) new_lt20(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_esEs16([], :(x0, x1), x2) new_ltEs5(x0, x1) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs10(EQ, EQ) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Integer) new_ltEs17(x0, x1) new_esEs15(Float(x0, x1), Float(x2, x3)) new_compare1(:(x0, x1), [], x2) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1) new_ltEs20(x0, x1, ty_Int) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Float) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_compare32(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs30(x0, x1, ty_Ordering) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Just(x0), Nothing, x1) new_ltEs9(True, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_compare32(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Char) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs12(x0, x1, ty_Float) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs31(x0, x1, ty_Int) new_esEs9(False, False) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs12(GT, EQ) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(EQ, GT) new_compare110(x0, x1, True) new_esEs31(x0, x1, ty_Double) new_primEqNat0(Succ(x0), Zero) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs16(Nothing, Nothing, x0) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Int) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt6(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_lt21(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Float) new_lt19(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt19(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Double(x0, x1), Double(x2, x3)) new_lt14(x0, x1, x2, x3, x4) new_lt21(x0, x1, ty_@0) new_lt19(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, ty_Int) new_lt21(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt21(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Char) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Succ(x0), x1) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs29(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt12(x0, x1) new_pePe(False, x0) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs7(x0, x1, ty_Double) new_lt6(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_Ordering) new_compare8(Char(x0), Char(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_esEs13(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, ty_Bool) new_ltEs7(x0, x1, app(ty_[], x2)) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare32(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare28(x0, x1, False) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt11(x0, x1, x2, x3) new_compare14(x0, x1, False, x2, x3, x4) new_ltEs7(x0, x1, ty_Ordering) new_esEs12(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Double) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs20(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs12(GT, GT) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_ltEs9(False, True) new_ltEs9(True, False) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(:(x0, x1), [], x2) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt19(x0, x1, ty_Ordering) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs7(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_esEs10(LT, GT) new_esEs10(GT, LT) new_compare24(x0, x1, True) new_esEs30(x0, x1, ty_Char) new_lt19(x0, x1, ty_Integer) new_primCompAux0(x0, LT) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Ordering) new_ltEs12(LT, LT) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs13(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_Integer) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs9(True, True) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(x0, x1, x2) new_esEs10(EQ, GT) new_esEs10(GT, EQ) new_esEs26(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare210(x0, x1, True, x2) new_lt7(x0, x1) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_lt13(x0, x1, x2) new_esEs30(x0, x1, ty_Float) new_ltEs7(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs13(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_ltEs10(x0, x1) new_lt6(x0, x1, ty_Ordering) new_esEs21(Integer(x0), Integer(x1)) new_ltEs15(x0, x1, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs8(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Char) new_primPlusNat0(Zero, Succ(x0)) new_esEs23(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulNat0(Zero, Zero) new_compare25(x0, x1, True, x2, x3, x4) new_compare32(x0, x1, ty_Float) new_ltEs8(x0, x1) new_esEs8(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare31(x0, x1, x2) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_compare12(x0, x1, True) new_ltEs16(Just(x0), Just(x1), ty_Char) new_esEs8(x0, x1, ty_Ordering) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs12(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_compare6(x0, x1) new_ltEs16(Just(x0), Just(x1), ty_Double) new_esEs12(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs7(x0, x1, ty_Bool) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt6(x0, x1, ty_Char) new_compare26(x0, x1, x2, x3, True, x4, x5) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs12(x0, x1, ty_Int) new_lt6(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_esEs14(x0, x1) new_ltEs7(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Int) new_esEs12(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Bool) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_esEs10(LT, LT) new_not(True) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Int) new_compare23(x0, x1, False, x2, x3) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs13(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_@0) new_ltEs7(x0, x1, ty_Int) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_compare11(x0, x1, x2, x3, True, x4, x5) new_lt19(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Double) new_compare30(x0, x1) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Float) new_primMulNat0(Zero, Succ(x0)) new_esEs7(x0, x1, ty_Char) new_lt18(x0, x1) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Double) new_lt19(x0, x1, ty_Bool) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1, x2) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_ltEs12(EQ, EQ) new_ltEs19(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs13(x0, x1, ty_Double) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_@0) new_lt15(x0, x1, x2) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, x2, x3, False, x4, x5) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs19(x0, x1, ty_@0) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_esEs31(x0, x1, ty_Float) new_lt8(x0, x1, x2, x3) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Just(x0), Just(x1), ty_@0) new_compare28(x0, x1, True) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs7(x0, x1, ty_@0) new_ltEs7(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare32(x0, x1, ty_@0) new_esEs10(GT, GT) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs22(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs22(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1, False) new_esEs6(Just(x0), Just(x1), ty_Float) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_lt9(x0, x1) new_esEs10(LT, EQ) new_esEs10(EQ, LT) new_esEs6(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare1([], [], x0) new_lt20(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3) new_lt10(x0, x1) new_compare25(x0, x1, False, x2, x3, x4) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, False, x2) new_esEs7(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, True, x2, x3) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs22(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs23(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_lt17(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_lt20(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Double) new_compare210(x0, x1, False, x2) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs9(False, True) new_esEs9(True, False) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_compare24(x0, x1, False) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Int) new_esEs6(Nothing, Just(x0), x1) new_lt5(x0, x1) new_sr(x0, x1) new_lt6(x0, x1, ty_@0) new_ltEs7(x0, x1, ty_Float) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs18(@0, @0) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_compare32(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Ordering) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_ltEs9(False, False) new_not(False) new_esEs23(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Integer) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare23(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs16(:(x0, x1), :(x2, x3), x4) new_lt20(x0, x1, ty_Integer) new_ltEs12(LT, GT) new_esEs12(x0, x1, ty_Bool) new_ltEs12(GT, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs12(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_compare29(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_primMulInt(Neg(x0), Neg(x1)) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, ty_Integer) new_esEs11(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs12(x0, x1, ty_Integer) new_esEs16([], [], x0) new_lt4(x0, x1) new_esEs27(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Zero) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs20(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_primCmpNat0(Zero, Zero) new_sr0(Integer(x0), Integer(x1)) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs22(x0, x1, app(ty_Maybe, x2)) 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_ltEs3(Just(vwx230), Just(vwx250), app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx230, vwx250, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Just(vwx230), Just(vwx250), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx230, vwx250, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(vwx22, vwx24, bdf, bdg) -> new_compare0(vwx22, vwx24, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_ltEs3(Just(vwx230), Just(vwx250), app(app(ty_@2, bcd), bce)) -> new_ltEs0(vwx230, vwx250, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare0(@2(vwx30, vwx31), @2(vwx40, vwx41), bff, bfg) -> new_compare2(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs8(vwx30, vwx40, bff), new_esEs7(vwx31, vwx41, bfg)), bff, bfg) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_lt(vwx22, vwx24, bdc, bdd) -> new_compare20(vwx22, vwx24, new_esEs4(vwx22, vwx24, bdc, bdd), bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare22(vwx22, vwx24, False, bed) -> new_ltEs3(vwx22, vwx24, bed) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(app(ty_Either, ge), gf)) -> new_ltEs(vwx232, vwx252, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs1(vwx232, vwx252, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(app(ty_@2, gg), gh)) -> new_ltEs0(vwx232, vwx252, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(app(ty_Either, dg), dh)) -> new_ltEs(vwx231, vwx251, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs1(vwx231, vwx251, ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(app(ty_@2, ea), eb)) -> new_ltEs0(vwx231, vwx251, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(ty_[], ga), fb) -> new_lt2(vwx230, vwx250, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(ty_Maybe, gb), fb) -> new_lt3(vwx230, vwx250, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt1(vwx22, vwx24, bdh, bea, beb) -> new_compare21(vwx22, vwx24, new_esEs5(vwx22, vwx24, bdh, bea, beb), bdh, bea, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs3(Just(vwx230), Just(vwx250), app(ty_Maybe, bdb)) -> new_ltEs3(vwx230, vwx250, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vwx230), Just(vwx250), app(ty_[], bda)) -> new_ltEs2(vwx230, vwx250, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(ty_Maybe, he)) -> new_ltEs3(vwx232, vwx252, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(ty_Maybe, eg)) -> new_ltEs3(vwx231, vwx251, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(vwx23, vwx25, bca) -> new_compare(vwx23, vwx25, bca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_primCompAux(vwx220, vwx240, new_compare1(vwx221, vwx241, bec), bec) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_compare(vwx221, vwx241, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt3(vwx22, vwx24, bed) -> new_compare22(vwx22, vwx24, new_esEs6(vwx22, vwx24, bed), bed) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_lt2(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_primCompAux(vwx220, vwx240, new_compare1(vwx221, vwx241, bec), bec) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare2(:(vwx220, vwx221), vwx23, :(vwx240, vwx241), vwx25, False, app(ty_[], bec), bde) -> new_primCompAux(vwx220, vwx240, new_compare1(vwx221, vwx241, bec), bec) The graph contains the following edges 1 > 1, 3 > 2, 6 > 4 *new_lt2(:(vwx220, vwx221), :(vwx240, vwx241), bec) -> new_compare(vwx221, vwx241, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare21(vwx22, vwx24, False, bdh, bea, beb) -> new_ltEs1(vwx22, vwx24, bdh, bea, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_compare20(vwx22, vwx24, False, bdc, bdd) -> new_ltEs(vwx22, vwx24, bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(app(app(ty_@3, ff), fg), fh), fb) -> new_lt1(vwx230, vwx250, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_primCompAux(vwx220, vwx240, vwx65, app(ty_Maybe, bfe)) -> new_compare5(vwx220, vwx240, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx220, vwx240, vwx65, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare4(vwx220, vwx240, bfa, bfb, bfc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare5(vwx22, vwx24, bed) -> new_compare22(vwx22, vwx24, new_esEs6(vwx22, vwx24, bed), bed) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare4(vwx22, vwx24, bdh, bea, beb) -> new_compare21(vwx22, vwx24, new_esEs5(vwx22, vwx24, bdh, bea, beb), bdh, bea, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare2(vwx22, vwx23, vwx24, vwx25, False, app(app(app(ty_@3, bdh), bea), beb), bde) -> new_compare21(vwx22, vwx24, new_esEs5(vwx22, vwx24, bdh, bea, beb), bdh, bea, beb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 4, 6 > 5, 6 > 6 *new_primCompAux(vwx220, vwx240, vwx65, app(app(ty_Either, bee), bef)) -> new_compare3(vwx220, vwx240, bee, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vwx220, vwx240, vwx65, app(ty_[], bfd)) -> new_compare(vwx220, vwx240, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx220, vwx240, vwx65, app(app(ty_@2, beg), beh)) -> new_compare0(vwx220, vwx240, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(app(ty_Either, eh), fa), fb) -> new_lt(vwx230, vwx250, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, gd, app(ty_[], hd)) -> new_ltEs2(vwx232, vwx252, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), df, app(ty_[], ef)) -> new_ltEs2(vwx231, vwx251, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(vwx230, vwx231), @2(vwx250, vwx251), app(app(ty_@2, fc), fd), fb) -> new_lt0(vwx230, vwx250, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(vwx22, vwx23, vwx24, vwx25, False, app(app(ty_Either, bdc), bdd), bde) -> new_compare20(vwx22, vwx24, new_esEs4(vwx22, vwx24, bdc, bdd), bdc, bdd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 4, 6 > 5 *new_compare3(vwx22, vwx24, bdc, bdd) -> new_compare20(vwx22, vwx24, new_esEs4(vwx22, vwx24, bdc, bdd), bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare2(vwx22, vwx23, vwx24, vwx25, False, app(app(ty_@2, bdf), bdg), bde) -> new_compare0(vwx22, vwx24, bdf, bdg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare2(vwx22, vwx23, vwx24, vwx25, False, app(ty_Maybe, bed), bde) -> new_compare22(vwx22, vwx24, new_esEs6(vwx22, vwx24, bed), bed) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 4 *new_ltEs(Left(vwx230), Left(vwx250), app(app(ty_Either, ba), bb), bc) -> new_ltEs(vwx230, vwx250, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx230), Right(vwx250), cc, app(app(ty_Either, cd), ce)) -> new_ltEs(vwx230, vwx250, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(app(ty_Either, dg), dh))) -> new_ltEs(vwx231, vwx251, dg, dh) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(app(ty_Either, bcb), bcc))) -> new_ltEs(vwx230, vwx250, bcb, bcc) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(app(ty_Either, ba), bb)), bc)) -> new_ltEs(vwx230, vwx250, ba, bb) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(app(ty_Either, ge), gf))) -> new_ltEs(vwx232, vwx252, ge, gf) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(app(ty_Either, cd), ce))) -> new_ltEs(vwx230, vwx250, cd, ce) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_ltEs(Left(vwx230), Left(vwx250), app(app(app(ty_@3, bf), bg), bh), bc) -> new_ltEs1(vwx230, vwx250, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vwx230), Right(vwx250), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(vwx230, vwx250, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(app(app(ty_@3, da), db), dc))) -> new_ltEs1(vwx230, vwx250, da, db, dc) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bc)) -> new_ltEs1(vwx230, vwx250, bf, bg, bh) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(app(app(ty_@3, ec), ed), ee))) -> new_ltEs1(vwx231, vwx251, ec, ed, ee) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(vwx230, vwx250, bcf, bcg, bch) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs1(vwx232, vwx252, ha, hb, hc) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4, 7 > 5 *new_ltEs(Left(vwx230), Left(vwx250), app(app(ty_@2, bd), be), bc) -> new_ltEs0(vwx230, vwx250, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx230), Right(vwx250), cc, app(app(ty_@2, cf), cg)) -> new_ltEs0(vwx230, vwx250, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(app(ty_@2, ea), eb))) -> new_ltEs0(vwx231, vwx251, ea, eb) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(app(ty_@2, bcd), bce))) -> new_ltEs0(vwx230, vwx250, bcd, bce) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(app(ty_@2, gg), gh))) -> new_ltEs0(vwx232, vwx252, gg, gh) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(app(ty_@2, cf), cg))) -> new_ltEs0(vwx230, vwx250, cf, cg) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(app(ty_@2, bd), be)), bc)) -> new_ltEs0(vwx230, vwx250, bd, be) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(ty_[], baf), hh) -> new_lt2(vwx231, vwx251, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(ty_[], bbg), gd, hh) -> new_lt2(vwx230, vwx250, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(ty_[], ga)), fb)) -> new_lt2(vwx230, vwx250, ga) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(ty_[], baf)), hh)) -> new_lt2(vwx231, vwx251, baf) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(ty_[], bbg)), gd), hh)) -> new_lt2(vwx230, vwx250, bbg) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(ty_Maybe, bbh), gd, hh) -> new_lt3(vwx230, vwx250, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(ty_Maybe, bag), hh) -> new_lt3(vwx231, vwx251, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(ty_Maybe, gb)), fb)) -> new_lt3(vwx230, vwx250, gb) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(ty_Maybe, bag)), hh)) -> new_lt3(vwx231, vwx251, bag) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(ty_Maybe, bbh)), gd), hh)) -> new_lt3(vwx230, vwx250, bbh) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(app(app(ty_@3, bac), bad), bae), hh) -> new_lt1(vwx231, vwx251, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(app(app(ty_@3, bbd), bbe), bbf), gd, hh) -> new_lt1(vwx230, vwx250, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(app(ty_Either, bah), bba), gd, hh) -> new_lt(vwx230, vwx250, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(app(ty_Either, hf), hg), hh) -> new_lt(vwx231, vwx251, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), gc, app(app(ty_@2, baa), bab), hh) -> new_lt0(vwx231, vwx251, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx230, vwx231, vwx232), @3(vwx250, vwx251, vwx252), app(app(ty_@2, bbb), bbc), gd, hh) -> new_lt0(vwx230, vwx250, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx230), Right(vwx250), cc, app(ty_Maybe, de)) -> new_ltEs3(vwx230, vwx250, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx230), Left(vwx250), app(ty_Maybe, cb), bc) -> new_ltEs3(vwx230, vwx250, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Left(vwx230), Left(vwx250), app(ty_[], ca), bc) -> new_ltEs2(vwx230, vwx250, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vwx230), Right(vwx250), cc, app(ty_[], dd)) -> new_ltEs2(vwx230, vwx250, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(ty_Maybe, de))) -> new_ltEs3(vwx230, vwx250, de) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(ty_Maybe, cb)), bc)) -> new_ltEs3(vwx230, vwx250, cb) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(ty_Maybe, he))) -> new_ltEs3(vwx232, vwx252, he) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(ty_Maybe, eg))) -> new_ltEs3(vwx231, vwx251, eg) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(ty_Maybe, bdb))) -> new_ltEs3(vwx230, vwx250, bdb) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(app(app(ty_@3, bbd), bbe), bbf)), gd), hh)) -> new_lt1(vwx230, vwx250, bbd, bbe, bbf) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(app(app(ty_@3, bac), bad), bae)), hh)) -> new_lt1(vwx231, vwx251, bac, bad, bae) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(app(app(ty_@3, ff), fg), fh)), fb)) -> new_lt1(vwx230, vwx250, ff, fg, fh) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(:(vwx220, vwx221), vwx23, :(vwx240, vwx241), vwx25, False, app(ty_[], bec), bde) -> new_compare(vwx221, vwx241, bec) The graph contains the following edges 1 > 1, 3 > 2, 6 > 3 *new_compare2(vwx22, vwx23, vwx24, vwx25, False, h, app(ty_[], bca)) -> new_compare(vwx23, vwx25, bca) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(app(ty_Either, hf), hg)), hh)) -> new_lt(vwx231, vwx251, hf, hg) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(app(ty_Either, eh), fa)), fb)) -> new_lt(vwx230, vwx250, eh, fa) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(app(ty_Either, bah), bba)), gd), hh)) -> new_lt(vwx230, vwx250, bah, bba) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, Right(vwx230), vwx24, Right(vwx250), False, h, app(app(ty_Either, cc), app(ty_[], dd))) -> new_ltEs2(vwx230, vwx250, dd) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, df), app(ty_[], ef))) -> new_ltEs2(vwx231, vwx251, ef) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), gd), app(ty_[], hd))) -> new_ltEs2(vwx232, vwx252, hd) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, Left(vwx230), vwx24, Left(vwx250), False, h, app(app(ty_Either, app(ty_[], ca)), bc)) -> new_ltEs2(vwx230, vwx250, ca) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, Just(vwx230), vwx24, Just(vwx250), False, h, app(ty_Maybe, app(ty_[], bda))) -> new_ltEs2(vwx230, vwx250, bda) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3 *new_compare2(vwx22, @2(vwx230, vwx231), vwx24, @2(vwx250, vwx251), False, h, app(app(ty_@2, app(app(ty_@2, fc), fd)), fb)) -> new_lt0(vwx230, vwx250, fc, fd) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, gc), app(app(ty_@2, baa), bab)), hh)) -> new_lt0(vwx231, vwx251, baa, bab) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 *new_compare2(vwx22, @3(vwx230, vwx231, vwx232), vwx24, @3(vwx250, vwx251, vwx252), False, h, app(app(app(ty_@3, app(app(ty_@2, bbb), bbc)), gd), hh)) -> new_lt0(vwx230, vwx250, bbb, bbc) The graph contains the following edges 2 > 1, 4 > 2, 7 > 3, 7 > 4 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx3100), Succ(vwx4100)) -> new_primEqNat(vwx3100, vwx4100) 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(vwx3100), Succ(vwx4100)) -> new_primEqNat(vwx3100, vwx4100) 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(vwx7600), Succ(vwx411000)) -> new_primPlusNat(vwx7600, vwx411000) 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(vwx7600), Succ(vwx411000)) -> new_primPlusNat(vwx7600, vwx411000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES