/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, 7 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 170 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; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module 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'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " "reduce2D vwv vww = gcd vwv vww; " "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="(>=)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="(>=) vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="(>=) vwx3 vwx4",fontsize=16,color="blue",shape="box"];5090[label=">= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5090[label="",style="solid", color="blue", weight=9]; 5090 -> 5[label="",style="solid", color="blue", weight=3]; 5091[label=">= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5091[label="",style="solid", color="blue", weight=9]; 5091 -> 6[label="",style="solid", color="blue", weight=3]; 5092[label=">= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5092[label="",style="solid", color="blue", weight=9]; 5092 -> 7[label="",style="solid", color="blue", weight=3]; 5093[label=">= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5093[label="",style="solid", color="blue", weight=9]; 5093 -> 8[label="",style="solid", color="blue", weight=3]; 5094[label=">= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5094[label="",style="solid", color="blue", weight=9]; 5094 -> 9[label="",style="solid", color="blue", weight=3]; 5095[label=">= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5095[label="",style="solid", color="blue", weight=9]; 5095 -> 10[label="",style="solid", color="blue", weight=3]; 5096[label=">= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5096[label="",style="solid", color="blue", weight=9]; 5096 -> 11[label="",style="solid", color="blue", weight=3]; 5097[label=">= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5097[label="",style="solid", color="blue", weight=9]; 5097 -> 12[label="",style="solid", color="blue", weight=3]; 5098[label=">= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5098[label="",style="solid", color="blue", weight=9]; 5098 -> 13[label="",style="solid", color="blue", weight=3]; 5099[label=">= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5099[label="",style="solid", color="blue", weight=9]; 5099 -> 14[label="",style="solid", color="blue", weight=3]; 5100[label=">= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5100[label="",style="solid", color="blue", weight=9]; 5100 -> 15[label="",style="solid", color="blue", weight=3]; 5101[label=">= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5101[label="",style="solid", color="blue", weight=9]; 5101 -> 16[label="",style="solid", color="blue", weight=3]; 5102[label=">= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5102[label="",style="solid", color="blue", weight=9]; 5102 -> 17[label="",style="solid", color="blue", weight=3]; 5103[label=">= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 5103[label="",style="solid", color="blue", weight=9]; 5103 -> 18[label="",style="solid", color="blue", weight=3]; 5[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];5 -> 19[label="",style="solid", color="black", weight=3]; 6[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];6 -> 20[label="",style="solid", color="black", weight=3]; 7[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];7 -> 21[label="",style="solid", color="black", weight=3]; 8[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];8 -> 22[label="",style="solid", color="black", weight=3]; 9[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];9 -> 23[label="",style="solid", color="black", weight=3]; 10[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];10 -> 24[label="",style="solid", color="black", weight=3]; 11[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];11 -> 25[label="",style="solid", color="black", weight=3]; 12[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];12 -> 26[label="",style="solid", color="black", weight=3]; 13[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];13 -> 27[label="",style="solid", color="black", weight=3]; 14[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];14 -> 28[label="",style="solid", color="black", weight=3]; 15[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];15 -> 29[label="",style="solid", color="black", weight=3]; 16[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];16 -> 30[label="",style="solid", color="black", weight=3]; 17[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];17 -> 31[label="",style="solid", color="black", weight=3]; 18[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="box"];18 -> 32[label="",style="solid", color="black", weight=3]; 19[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];19 -> 33[label="",style="solid", color="black", weight=3]; 20[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];20 -> 34[label="",style="solid", color="black", weight=3]; 21[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];21 -> 35[label="",style="solid", color="black", weight=3]; 22[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];22 -> 36[label="",style="solid", color="black", weight=3]; 23[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];23 -> 37[label="",style="solid", color="black", weight=3]; 24[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];24 -> 38[label="",style="solid", color="black", weight=3]; 25[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];25 -> 39[label="",style="solid", color="black", weight=3]; 26[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];26 -> 40[label="",style="solid", color="black", weight=3]; 27[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];27 -> 41[label="",style="solid", color="black", weight=3]; 28[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];28 -> 42[label="",style="solid", color="black", weight=3]; 29[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];29 -> 43[label="",style="solid", color="black", weight=3]; 30[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];30 -> 44[label="",style="solid", color="black", weight=3]; 31[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];31 -> 45[label="",style="solid", color="black", weight=3]; 32[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];32 -> 46[label="",style="solid", color="black", weight=3]; 33 -> 2279[label="",style="dashed", color="red", weight=0]; 33[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];33 -> 2280[label="",style="dashed", color="magenta", weight=3]; 34 -> 2279[label="",style="dashed", color="red", weight=0]; 34[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];34 -> 2281[label="",style="dashed", color="magenta", weight=3]; 35 -> 2279[label="",style="dashed", color="red", weight=0]; 35[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];35 -> 2282[label="",style="dashed", color="magenta", weight=3]; 36 -> 2279[label="",style="dashed", color="red", weight=0]; 36[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];36 -> 2283[label="",style="dashed", color="magenta", weight=3]; 37 -> 2279[label="",style="dashed", color="red", weight=0]; 37[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];37 -> 2284[label="",style="dashed", color="magenta", weight=3]; 38 -> 2279[label="",style="dashed", color="red", weight=0]; 38[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];38 -> 2285[label="",style="dashed", color="magenta", weight=3]; 39 -> 2279[label="",style="dashed", color="red", weight=0]; 39[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];39 -> 2286[label="",style="dashed", color="magenta", weight=3]; 40 -> 2279[label="",style="dashed", color="red", weight=0]; 40[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];40 -> 2287[label="",style="dashed", color="magenta", weight=3]; 41 -> 2279[label="",style="dashed", color="red", weight=0]; 41[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];41 -> 2288[label="",style="dashed", color="magenta", weight=3]; 42 -> 2279[label="",style="dashed", color="red", weight=0]; 42[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];42 -> 2289[label="",style="dashed", color="magenta", weight=3]; 43 -> 2279[label="",style="dashed", color="red", weight=0]; 43[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];43 -> 2290[label="",style="dashed", color="magenta", weight=3]; 44 -> 2279[label="",style="dashed", color="red", weight=0]; 44[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];44 -> 2291[label="",style="dashed", color="magenta", weight=3]; 45 -> 2279[label="",style="dashed", color="red", weight=0]; 45[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];45 -> 2292[label="",style="dashed", color="magenta", weight=3]; 46 -> 2279[label="",style="dashed", color="red", weight=0]; 46[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];46 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2379[label="",style="dashed", color="red", weight=0]; 2280[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2280 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2279[label="not vwx148",fontsize=16,color="burlywood",shape="triangle"];5104[label="vwx148/False",fontsize=10,color="white",style="solid",shape="box"];2279 -> 5104[label="",style="solid", color="burlywood", weight=9]; 5104 -> 2300[label="",style="solid", color="burlywood", weight=3]; 5105[label="vwx148/True",fontsize=10,color="white",style="solid",shape="box"];2279 -> 5105[label="",style="solid", color="burlywood", weight=9]; 5105 -> 2301[label="",style="solid", color="burlywood", weight=3]; 2281 -> 2379[label="",style="dashed", color="red", weight=0]; 2281[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2281 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2379[label="",style="dashed", color="red", weight=0]; 2282[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2282 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2379[label="",style="dashed", color="red", weight=0]; 2283[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2283 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2379[label="",style="dashed", color="red", weight=0]; 2284[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2284 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2379[label="",style="dashed", color="red", weight=0]; 2285[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2285 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2379[label="",style="dashed", color="red", weight=0]; 2286[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2286 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2379[label="",style="dashed", color="red", weight=0]; 2287[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2287 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2379[label="",style="dashed", color="red", weight=0]; 2288[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2288 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2379[label="",style="dashed", color="red", weight=0]; 2289[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2289 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2379[label="",style="dashed", color="red", weight=0]; 2290[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2290 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2379[label="",style="dashed", color="red", weight=0]; 2291[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2291 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2379[label="",style="dashed", color="red", weight=0]; 2292[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2292 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2379[label="",style="dashed", color="red", weight=0]; 2293[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2293 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2380[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2380 -> 2417[label="",style="solid", color="black", weight=3]; 2379[label="vwx151 == LT",fontsize=16,color="burlywood",shape="triangle"];5106[label="vwx151/LT",fontsize=10,color="white",style="solid",shape="box"];2379 -> 5106[label="",style="solid", color="burlywood", weight=9]; 5106 -> 2418[label="",style="solid", color="burlywood", weight=3]; 5107[label="vwx151/EQ",fontsize=10,color="white",style="solid",shape="box"];2379 -> 5107[label="",style="solid", color="burlywood", weight=9]; 5107 -> 2419[label="",style="solid", color="burlywood", weight=3]; 5108[label="vwx151/GT",fontsize=10,color="white",style="solid",shape="box"];2379 -> 5108[label="",style="solid", color="burlywood", weight=9]; 5108 -> 2420[label="",style="solid", color="burlywood", weight=3]; 2300[label="not False",fontsize=16,color="black",shape="box"];2300 -> 2318[label="",style="solid", color="black", weight=3]; 2301[label="not True",fontsize=16,color="black",shape="box"];2301 -> 2319[label="",style="solid", color="black", weight=3]; 2381[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2381 -> 2421[label="",style="solid", color="black", weight=3]; 2382[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];5109[label="vwx3/Integer vwx30",fontsize=10,color="white",style="solid",shape="box"];2382 -> 5109[label="",style="solid", color="burlywood", weight=9]; 5109 -> 2422[label="",style="solid", color="burlywood", weight=3]; 2383[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2383 -> 2423[label="",style="solid", color="black", weight=3]; 2384[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];5110[label="vwx3/vwx30 :% vwx31",fontsize=10,color="white",style="solid",shape="box"];2384 -> 5110[label="",style="solid", color="burlywood", weight=9]; 5110 -> 2424[label="",style="solid", color="burlywood", weight=3]; 2385[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2385 -> 2425[label="",style="solid", color="black", weight=3]; 2386[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2386 -> 2426[label="",style="solid", color="black", weight=3]; 2387[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2387 -> 2427[label="",style="solid", color="black", weight=3]; 2388[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2388 -> 2428[label="",style="solid", color="black", weight=3]; 2389[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];5111[label="vwx3/()",fontsize=10,color="white",style="solid",shape="box"];2389 -> 5111[label="",style="solid", color="burlywood", weight=9]; 5111 -> 2429[label="",style="solid", color="burlywood", weight=3]; 2390[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];5112[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];2390 -> 5112[label="",style="solid", color="burlywood", weight=9]; 5112 -> 2430[label="",style="solid", color="burlywood", weight=3]; 5113[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];2390 -> 5113[label="",style="solid", color="burlywood", weight=9]; 5113 -> 2431[label="",style="solid", color="burlywood", weight=3]; 2391[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2391 -> 2432[label="",style="solid", color="black", weight=3]; 2392[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2392 -> 2433[label="",style="solid", color="black", weight=3]; 2393[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];2393 -> 2434[label="",style="solid", color="black", weight=3]; 2417[label="primCmpInt vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];5114[label="vwx3/Pos vwx30",fontsize=10,color="white",style="solid",shape="box"];2417 -> 5114[label="",style="solid", color="burlywood", weight=9]; 5114 -> 2435[label="",style="solid", color="burlywood", weight=3]; 5115[label="vwx3/Neg vwx30",fontsize=10,color="white",style="solid",shape="box"];2417 -> 5115[label="",style="solid", color="burlywood", weight=9]; 5115 -> 2436[label="",style="solid", color="burlywood", weight=3]; 2418[label="LT == LT",fontsize=16,color="black",shape="box"];2418 -> 2437[label="",style="solid", color="black", weight=3]; 2419[label="EQ == LT",fontsize=16,color="black",shape="box"];2419 -> 2438[label="",style="solid", color="black", weight=3]; 2420[label="GT == LT",fontsize=16,color="black",shape="box"];2420 -> 2439[label="",style="solid", color="black", weight=3]; 2318[label="True",fontsize=16,color="green",shape="box"];2319[label="False",fontsize=16,color="green",shape="box"];2421[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];2421 -> 2440[label="",style="solid", color="black", weight=3]; 2422[label="compare (Integer vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];5116[label="vwx4/Integer vwx40",fontsize=10,color="white",style="solid",shape="box"];2422 -> 5116[label="",style="solid", color="burlywood", weight=9]; 5116 -> 2441[label="",style="solid", color="burlywood", weight=3]; 2423[label="primCmpDouble vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];5117[label="vwx3/Double vwx30 vwx31",fontsize=10,color="white",style="solid",shape="box"];2423 -> 5117[label="",style="solid", color="burlywood", weight=9]; 5117 -> 2442[label="",style="solid", color="burlywood", weight=3]; 2424[label="compare (vwx30 :% vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];5118[label="vwx4/vwx40 :% vwx41",fontsize=10,color="white",style="solid",shape="box"];2424 -> 5118[label="",style="solid", color="burlywood", weight=9]; 5118 -> 2443[label="",style="solid", color="burlywood", weight=3]; 2425[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];2425 -> 2444[label="",style="solid", color="black", weight=3]; 2426[label="primCmpChar vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];5119[label="vwx3/Char vwx30",fontsize=10,color="white",style="solid",shape="box"];2426 -> 5119[label="",style="solid", color="burlywood", weight=9]; 5119 -> 2445[label="",style="solid", color="burlywood", weight=3]; 2427[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];2427 -> 2446[label="",style="solid", color="black", weight=3]; 2428[label="primCmpFloat vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];5120[label="vwx3/Float vwx30 vwx31",fontsize=10,color="white",style="solid",shape="box"];2428 -> 5120[label="",style="solid", color="burlywood", weight=9]; 5120 -> 2447[label="",style="solid", color="burlywood", weight=3]; 2429[label="compare () vwx4",fontsize=16,color="burlywood",shape="box"];5121[label="vwx4/()",fontsize=10,color="white",style="solid",shape="box"];2429 -> 5121[label="",style="solid", color="burlywood", weight=9]; 5121 -> 2448[label="",style="solid", color="burlywood", weight=3]; 2430[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];5122[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];2430 -> 5122[label="",style="solid", color="burlywood", weight=9]; 5122 -> 2449[label="",style="solid", color="burlywood", weight=3]; 5123[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];2430 -> 5123[label="",style="solid", color="burlywood", weight=9]; 5123 -> 2450[label="",style="solid", color="burlywood", weight=3]; 2431[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];5124[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];2431 -> 5124[label="",style="solid", color="burlywood", weight=9]; 5124 -> 2451[label="",style="solid", color="burlywood", weight=3]; 5125[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];2431 -> 5125[label="",style="solid", color="burlywood", weight=9]; 5125 -> 2452[label="",style="solid", color="burlywood", weight=3]; 2432[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];2432 -> 2453[label="",style="solid", color="black", weight=3]; 2433[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];2433 -> 2454[label="",style="solid", color="black", weight=3]; 2434[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];2434 -> 2455[label="",style="solid", color="black", weight=3]; 2435[label="primCmpInt (Pos vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];5126[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];2435 -> 5126[label="",style="solid", color="burlywood", weight=9]; 5126 -> 2456[label="",style="solid", color="burlywood", weight=3]; 5127[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];2435 -> 5127[label="",style="solid", color="burlywood", weight=9]; 5127 -> 2457[label="",style="solid", color="burlywood", weight=3]; 2436[label="primCmpInt (Neg vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];5128[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];2436 -> 5128[label="",style="solid", color="burlywood", weight=9]; 5128 -> 2458[label="",style="solid", color="burlywood", weight=3]; 5129[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];2436 -> 5129[label="",style="solid", color="burlywood", weight=9]; 5129 -> 2459[label="",style="solid", color="burlywood", weight=3]; 2437[label="True",fontsize=16,color="green",shape="box"];2438[label="False",fontsize=16,color="green",shape="box"];2439[label="False",fontsize=16,color="green",shape="box"];2440[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];5130[label="vwx3/Nothing",fontsize=10,color="white",style="solid",shape="box"];2440 -> 5130[label="",style="solid", color="burlywood", weight=9]; 5130 -> 2460[label="",style="solid", color="burlywood", weight=3]; 5131[label="vwx3/Just vwx30",fontsize=10,color="white",style="solid",shape="box"];2440 -> 5131[label="",style="solid", color="burlywood", weight=9]; 5131 -> 2461[label="",style="solid", color="burlywood", weight=3]; 2441[label="compare (Integer vwx30) (Integer vwx40)",fontsize=16,color="black",shape="box"];2441 -> 2462[label="",style="solid", color="black", weight=3]; 2442[label="primCmpDouble (Double vwx30 vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];5132[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];2442 -> 5132[label="",style="solid", color="burlywood", weight=9]; 5132 -> 2463[label="",style="solid", color="burlywood", weight=3]; 5133[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];2442 -> 5133[label="",style="solid", color="burlywood", weight=9]; 5133 -> 2464[label="",style="solid", color="burlywood", weight=3]; 2443[label="compare (vwx30 :% vwx31) (vwx40 :% vwx41)",fontsize=16,color="black",shape="box"];2443 -> 2465[label="",style="solid", color="black", weight=3]; 2444[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];5134[label="vwx3/False",fontsize=10,color="white",style="solid",shape="box"];2444 -> 5134[label="",style="solid", color="burlywood", weight=9]; 5134 -> 2466[label="",style="solid", color="burlywood", weight=3]; 5135[label="vwx3/True",fontsize=10,color="white",style="solid",shape="box"];2444 -> 5135[label="",style="solid", color="burlywood", weight=9]; 5135 -> 2467[label="",style="solid", color="burlywood", weight=3]; 2445[label="primCmpChar (Char vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];5136[label="vwx4/Char vwx40",fontsize=10,color="white",style="solid",shape="box"];2445 -> 5136[label="",style="solid", color="burlywood", weight=9]; 5136 -> 2468[label="",style="solid", color="burlywood", weight=3]; 2446[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];5137[label="vwx3/LT",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5137[label="",style="solid", color="burlywood", weight=9]; 5137 -> 2469[label="",style="solid", color="burlywood", weight=3]; 5138[label="vwx3/EQ",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5138[label="",style="solid", color="burlywood", weight=9]; 5138 -> 2470[label="",style="solid", color="burlywood", weight=3]; 5139[label="vwx3/GT",fontsize=10,color="white",style="solid",shape="box"];2446 -> 5139[label="",style="solid", color="burlywood", weight=9]; 5139 -> 2471[label="",style="solid", color="burlywood", weight=3]; 2447[label="primCmpFloat (Float vwx30 vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];5140[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];2447 -> 5140[label="",style="solid", color="burlywood", weight=9]; 5140 -> 2472[label="",style="solid", color="burlywood", weight=3]; 5141[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];2447 -> 5141[label="",style="solid", color="burlywood", weight=9]; 5141 -> 2473[label="",style="solid", color="burlywood", weight=3]; 2448[label="compare () ()",fontsize=16,color="black",shape="box"];2448 -> 2474[label="",style="solid", color="black", weight=3]; 2449[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];2449 -> 2475[label="",style="solid", color="black", weight=3]; 2450[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];2450 -> 2476[label="",style="solid", color="black", weight=3]; 2451[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];2451 -> 2477[label="",style="solid", color="black", weight=3]; 2452[label="compare [] []",fontsize=16,color="black",shape="box"];2452 -> 2478[label="",style="solid", color="black", weight=3]; 2453[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];5142[label="vwx3/Left vwx30",fontsize=10,color="white",style="solid",shape="box"];2453 -> 5142[label="",style="solid", color="burlywood", weight=9]; 5142 -> 2479[label="",style="solid", color="burlywood", weight=3]; 5143[label="vwx3/Right vwx30",fontsize=10,color="white",style="solid",shape="box"];2453 -> 5143[label="",style="solid", color="burlywood", weight=9]; 5143 -> 2480[label="",style="solid", color="burlywood", weight=3]; 2454[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];5144[label="vwx3/(vwx30,vwx31)",fontsize=10,color="white",style="solid",shape="box"];2454 -> 5144[label="",style="solid", color="burlywood", weight=9]; 5144 -> 2481[label="",style="solid", color="burlywood", weight=3]; 2455[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];5145[label="vwx3/(vwx30,vwx31,vwx32)",fontsize=10,color="white",style="solid",shape="box"];2455 -> 5145[label="",style="solid", color="burlywood", weight=9]; 5145 -> 2482[label="",style="solid", color="burlywood", weight=3]; 2456[label="primCmpInt (Pos (Succ vwx300)) vwx4",fontsize=16,color="burlywood",shape="box"];5146[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];2456 -> 5146[label="",style="solid", color="burlywood", weight=9]; 5146 -> 2483[label="",style="solid", color="burlywood", weight=3]; 5147[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];2456 -> 5147[label="",style="solid", color="burlywood", weight=9]; 5147 -> 2484[label="",style="solid", color="burlywood", weight=3]; 2457[label="primCmpInt (Pos Zero) vwx4",fontsize=16,color="burlywood",shape="box"];5148[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];2457 -> 5148[label="",style="solid", color="burlywood", weight=9]; 5148 -> 2485[label="",style="solid", color="burlywood", weight=3]; 5149[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];2457 -> 5149[label="",style="solid", color="burlywood", weight=9]; 5149 -> 2486[label="",style="solid", color="burlywood", weight=3]; 2458[label="primCmpInt (Neg (Succ vwx300)) vwx4",fontsize=16,color="burlywood",shape="box"];5150[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];2458 -> 5150[label="",style="solid", color="burlywood", weight=9]; 5150 -> 2487[label="",style="solid", color="burlywood", weight=3]; 5151[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];2458 -> 5151[label="",style="solid", color="burlywood", weight=9]; 5151 -> 2488[label="",style="solid", color="burlywood", weight=3]; 2459[label="primCmpInt (Neg Zero) vwx4",fontsize=16,color="burlywood",shape="box"];5152[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];2459 -> 5152[label="",style="solid", color="burlywood", weight=9]; 5152 -> 2489[label="",style="solid", color="burlywood", weight=3]; 5153[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];2459 -> 5153[label="",style="solid", color="burlywood", weight=9]; 5153 -> 2490[label="",style="solid", color="burlywood", weight=3]; 2460[label="compare2 Nothing vwx4 (Nothing == vwx4)",fontsize=16,color="burlywood",shape="box"];5154[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];2460 -> 5154[label="",style="solid", color="burlywood", weight=9]; 5154 -> 2491[label="",style="solid", color="burlywood", weight=3]; 5155[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];2460 -> 5155[label="",style="solid", color="burlywood", weight=9]; 5155 -> 2492[label="",style="solid", color="burlywood", weight=3]; 2461[label="compare2 (Just vwx30) vwx4 (Just vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];5156[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];2461 -> 5156[label="",style="solid", color="burlywood", weight=9]; 5156 -> 2493[label="",style="solid", color="burlywood", weight=3]; 5157[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];2461 -> 5157[label="",style="solid", color="burlywood", weight=9]; 5157 -> 2494[label="",style="solid", color="burlywood", weight=3]; 2462 -> 2417[label="",style="dashed", color="red", weight=0]; 2462[label="primCmpInt vwx30 vwx40",fontsize=16,color="magenta"];2462 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2463[label="primCmpDouble (Double vwx30 (Pos vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];5158[label="vwx4/Double vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];2463 -> 5158[label="",style="solid", color="burlywood", weight=9]; 5158 -> 2497[label="",style="solid", color="burlywood", weight=3]; 2464[label="primCmpDouble (Double vwx30 (Neg vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];5159[label="vwx4/Double vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];2464 -> 5159[label="",style="solid", color="burlywood", weight=9]; 5159 -> 2498[label="",style="solid", color="burlywood", weight=3]; 2465[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="blue",shape="box"];5160[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5160[label="",style="solid", color="blue", weight=9]; 5160 -> 2499[label="",style="solid", color="blue", weight=3]; 5161[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5161[label="",style="solid", color="blue", weight=9]; 5161 -> 2500[label="",style="solid", color="blue", weight=3]; 2466[label="compare2 False vwx4 (False == vwx4)",fontsize=16,color="burlywood",shape="box"];5162[label="vwx4/False",fontsize=10,color="white",style="solid",shape="box"];2466 -> 5162[label="",style="solid", color="burlywood", weight=9]; 5162 -> 2501[label="",style="solid", color="burlywood", weight=3]; 5163[label="vwx4/True",fontsize=10,color="white",style="solid",shape="box"];2466 -> 5163[label="",style="solid", color="burlywood", weight=9]; 5163 -> 2502[label="",style="solid", color="burlywood", weight=3]; 2467[label="compare2 True vwx4 (True == vwx4)",fontsize=16,color="burlywood",shape="box"];5164[label="vwx4/False",fontsize=10,color="white",style="solid",shape="box"];2467 -> 5164[label="",style="solid", color="burlywood", weight=9]; 5164 -> 2503[label="",style="solid", color="burlywood", weight=3]; 5165[label="vwx4/True",fontsize=10,color="white",style="solid",shape="box"];2467 -> 5165[label="",style="solid", color="burlywood", weight=9]; 5165 -> 2504[label="",style="solid", color="burlywood", weight=3]; 2468[label="primCmpChar (Char vwx30) (Char vwx40)",fontsize=16,color="black",shape="box"];2468 -> 2505[label="",style="solid", color="black", weight=3]; 2469[label="compare2 LT vwx4 (LT == vwx4)",fontsize=16,color="burlywood",shape="box"];5166[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];2469 -> 5166[label="",style="solid", color="burlywood", weight=9]; 5166 -> 2506[label="",style="solid", color="burlywood", weight=3]; 5167[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];2469 -> 5167[label="",style="solid", color="burlywood", weight=9]; 5167 -> 2507[label="",style="solid", color="burlywood", weight=3]; 5168[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];2469 -> 5168[label="",style="solid", color="burlywood", weight=9]; 5168 -> 2508[label="",style="solid", color="burlywood", weight=3]; 2470[label="compare2 EQ vwx4 (EQ == vwx4)",fontsize=16,color="burlywood",shape="box"];5169[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];2470 -> 5169[label="",style="solid", color="burlywood", weight=9]; 5169 -> 2509[label="",style="solid", color="burlywood", weight=3]; 5170[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];2470 -> 5170[label="",style="solid", color="burlywood", weight=9]; 5170 -> 2510[label="",style="solid", color="burlywood", weight=3]; 5171[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];2470 -> 5171[label="",style="solid", color="burlywood", weight=9]; 5171 -> 2511[label="",style="solid", color="burlywood", weight=3]; 2471[label="compare2 GT vwx4 (GT == vwx4)",fontsize=16,color="burlywood",shape="box"];5172[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];2471 -> 5172[label="",style="solid", color="burlywood", weight=9]; 5172 -> 2512[label="",style="solid", color="burlywood", weight=3]; 5173[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];2471 -> 5173[label="",style="solid", color="burlywood", weight=9]; 5173 -> 2513[label="",style="solid", color="burlywood", weight=3]; 5174[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];2471 -> 5174[label="",style="solid", color="burlywood", weight=9]; 5174 -> 2514[label="",style="solid", color="burlywood", weight=3]; 2472[label="primCmpFloat (Float vwx30 (Pos vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];5175[label="vwx4/Float vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];2472 -> 5175[label="",style="solid", color="burlywood", weight=9]; 5175 -> 2515[label="",style="solid", color="burlywood", weight=3]; 2473[label="primCmpFloat (Float vwx30 (Neg vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];5176[label="vwx4/Float vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];2473 -> 5176[label="",style="solid", color="burlywood", weight=9]; 5176 -> 2516[label="",style="solid", color="burlywood", weight=3]; 2474[label="EQ",fontsize=16,color="green",shape="box"];2475 -> 2517[label="",style="dashed", color="red", weight=0]; 2475[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];2475 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2476[label="GT",fontsize=16,color="green",shape="box"];2477[label="LT",fontsize=16,color="green",shape="box"];2478[label="EQ",fontsize=16,color="green",shape="box"];2479[label="compare2 (Left vwx30) vwx4 (Left vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];5177[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5177[label="",style="solid", color="burlywood", weight=9]; 5177 -> 2519[label="",style="solid", color="burlywood", weight=3]; 5178[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5178[label="",style="solid", color="burlywood", weight=9]; 5178 -> 2520[label="",style="solid", color="burlywood", weight=3]; 2480[label="compare2 (Right vwx30) vwx4 (Right vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];5179[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];2480 -> 5179[label="",style="solid", color="burlywood", weight=9]; 5179 -> 2521[label="",style="solid", color="burlywood", weight=3]; 5180[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];2480 -> 5180[label="",style="solid", color="burlywood", weight=9]; 5180 -> 2522[label="",style="solid", color="burlywood", weight=3]; 2481[label="compare2 (vwx30,vwx31) vwx4 ((vwx30,vwx31) == vwx4)",fontsize=16,color="burlywood",shape="box"];5181[label="vwx4/(vwx40,vwx41)",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5181[label="",style="solid", color="burlywood", weight=9]; 5181 -> 2523[label="",style="solid", color="burlywood", weight=3]; 2482[label="compare2 (vwx30,vwx31,vwx32) vwx4 ((vwx30,vwx31,vwx32) == vwx4)",fontsize=16,color="burlywood",shape="box"];5182[label="vwx4/(vwx40,vwx41,vwx42)",fontsize=10,color="white",style="solid",shape="box"];2482 -> 5182[label="",style="solid", color="burlywood", weight=9]; 5182 -> 2524[label="",style="solid", color="burlywood", weight=3]; 2483[label="primCmpInt (Pos (Succ vwx300)) (Pos vwx40)",fontsize=16,color="black",shape="box"];2483 -> 2525[label="",style="solid", color="black", weight=3]; 2484[label="primCmpInt (Pos (Succ vwx300)) (Neg vwx40)",fontsize=16,color="black",shape="box"];2484 -> 2526[label="",style="solid", color="black", weight=3]; 2485[label="primCmpInt (Pos Zero) (Pos vwx40)",fontsize=16,color="burlywood",shape="box"];5183[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];2485 -> 5183[label="",style="solid", color="burlywood", weight=9]; 5183 -> 2527[label="",style="solid", color="burlywood", weight=3]; 5184[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];2485 -> 5184[label="",style="solid", color="burlywood", weight=9]; 5184 -> 2528[label="",style="solid", color="burlywood", weight=3]; 2486[label="primCmpInt (Pos Zero) (Neg vwx40)",fontsize=16,color="burlywood",shape="box"];5185[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];2486 -> 5185[label="",style="solid", color="burlywood", weight=9]; 5185 -> 2529[label="",style="solid", color="burlywood", weight=3]; 5186[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];2486 -> 5186[label="",style="solid", color="burlywood", weight=9]; 5186 -> 2530[label="",style="solid", color="burlywood", weight=3]; 2487[label="primCmpInt (Neg (Succ vwx300)) (Pos vwx40)",fontsize=16,color="black",shape="box"];2487 -> 2531[label="",style="solid", color="black", weight=3]; 2488[label="primCmpInt (Neg (Succ vwx300)) (Neg vwx40)",fontsize=16,color="black",shape="box"];2488 -> 2532[label="",style="solid", color="black", weight=3]; 2489[label="primCmpInt (Neg Zero) (Pos vwx40)",fontsize=16,color="burlywood",shape="box"];5187[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];2489 -> 5187[label="",style="solid", color="burlywood", weight=9]; 5187 -> 2533[label="",style="solid", color="burlywood", weight=3]; 5188[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];2489 -> 5188[label="",style="solid", color="burlywood", weight=9]; 5188 -> 2534[label="",style="solid", color="burlywood", weight=3]; 2490[label="primCmpInt (Neg Zero) (Neg vwx40)",fontsize=16,color="burlywood",shape="box"];5189[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];2490 -> 5189[label="",style="solid", color="burlywood", weight=9]; 5189 -> 2535[label="",style="solid", color="burlywood", weight=3]; 5190[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];2490 -> 5190[label="",style="solid", color="burlywood", weight=9]; 5190 -> 2536[label="",style="solid", color="burlywood", weight=3]; 2491[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];2491 -> 2537[label="",style="solid", color="black", weight=3]; 2492[label="compare2 Nothing (Just vwx40) (Nothing == Just vwx40)",fontsize=16,color="black",shape="box"];2492 -> 2538[label="",style="solid", color="black", weight=3]; 2493[label="compare2 (Just vwx30) Nothing (Just vwx30 == Nothing)",fontsize=16,color="black",shape="box"];2493 -> 2539[label="",style="solid", color="black", weight=3]; 2494[label="compare2 (Just vwx30) (Just vwx40) (Just vwx30 == Just vwx40)",fontsize=16,color="black",shape="box"];2494 -> 2540[label="",style="solid", color="black", weight=3]; 2495[label="vwx40",fontsize=16,color="green",shape="box"];2496[label="vwx30",fontsize=16,color="green",shape="box"];2497[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];5191[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];2497 -> 5191[label="",style="solid", color="burlywood", weight=9]; 5191 -> 2541[label="",style="solid", color="burlywood", weight=3]; 5192[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];2497 -> 5192[label="",style="solid", color="burlywood", weight=9]; 5192 -> 2542[label="",style="solid", color="burlywood", weight=3]; 2498[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];5193[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];2498 -> 5193[label="",style="solid", color="burlywood", weight=9]; 5193 -> 2543[label="",style="solid", color="burlywood", weight=3]; 5194[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];2498 -> 5194[label="",style="solid", color="burlywood", weight=9]; 5194 -> 2544[label="",style="solid", color="burlywood", weight=3]; 2499 -> 2380[label="",style="dashed", color="red", weight=0]; 2499[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="magenta"];2499 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2382[label="",style="dashed", color="red", weight=0]; 2500[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="magenta"];2500 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2501[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];2501 -> 2549[label="",style="solid", color="black", weight=3]; 2502[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];2502 -> 2550[label="",style="solid", color="black", weight=3]; 2503[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];2503 -> 2551[label="",style="solid", color="black", weight=3]; 2504[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];2504 -> 2552[label="",style="solid", color="black", weight=3]; 2505[label="primCmpNat vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];5195[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];2505 -> 5195[label="",style="solid", color="burlywood", weight=9]; 5195 -> 2553[label="",style="solid", color="burlywood", weight=3]; 5196[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];2505 -> 5196[label="",style="solid", color="burlywood", weight=9]; 5196 -> 2554[label="",style="solid", color="burlywood", weight=3]; 2506[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];2506 -> 2555[label="",style="solid", color="black", weight=3]; 2507[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];2507 -> 2556[label="",style="solid", color="black", weight=3]; 2508[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];2508 -> 2557[label="",style="solid", color="black", weight=3]; 2509[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];2509 -> 2558[label="",style="solid", color="black", weight=3]; 2510[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];2510 -> 2559[label="",style="solid", color="black", weight=3]; 2511[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];2511 -> 2560[label="",style="solid", color="black", weight=3]; 2512[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];2512 -> 2561[label="",style="solid", color="black", weight=3]; 2513[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];2513 -> 2562[label="",style="solid", color="black", weight=3]; 2514[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];2514 -> 2563[label="",style="solid", color="black", weight=3]; 2515[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];5197[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];2515 -> 5197[label="",style="solid", color="burlywood", weight=9]; 5197 -> 2564[label="",style="solid", color="burlywood", weight=3]; 5198[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];2515 -> 5198[label="",style="solid", color="burlywood", weight=9]; 5198 -> 2565[label="",style="solid", color="burlywood", weight=3]; 2516[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];5199[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];2516 -> 5199[label="",style="solid", color="burlywood", weight=9]; 5199 -> 2566[label="",style="solid", color="burlywood", weight=3]; 5200[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];2516 -> 5200[label="",style="solid", color="burlywood", weight=9]; 5200 -> 2567[label="",style="solid", color="burlywood", weight=3]; 2518 -> 2390[label="",style="dashed", color="red", weight=0]; 2518[label="compare vwx31 vwx41",fontsize=16,color="magenta"];2518 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2517[label="primCompAux vwx30 vwx40 vwx152",fontsize=16,color="black",shape="triangle"];2517 -> 2570[label="",style="solid", color="black", weight=3]; 2519[label="compare2 (Left vwx30) (Left vwx40) (Left vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];2519 -> 2571[label="",style="solid", color="black", weight=3]; 2520[label="compare2 (Left vwx30) (Right vwx40) (Left vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];2520 -> 2572[label="",style="solid", color="black", weight=3]; 2521[label="compare2 (Right vwx30) (Left vwx40) (Right vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];2521 -> 2573[label="",style="solid", color="black", weight=3]; 2522[label="compare2 (Right vwx30) (Right vwx40) (Right vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];2522 -> 2574[label="",style="solid", color="black", weight=3]; 2523[label="compare2 (vwx30,vwx31) (vwx40,vwx41) ((vwx30,vwx31) == (vwx40,vwx41))",fontsize=16,color="black",shape="box"];2523 -> 2575[label="",style="solid", color="black", weight=3]; 2524[label="compare2 (vwx30,vwx31,vwx32) (vwx40,vwx41,vwx42) ((vwx30,vwx31,vwx32) == (vwx40,vwx41,vwx42))",fontsize=16,color="black",shape="box"];2524 -> 2576[label="",style="solid", color="black", weight=3]; 2525 -> 2505[label="",style="dashed", color="red", weight=0]; 2525[label="primCmpNat (Succ vwx300) vwx40",fontsize=16,color="magenta"];2525 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2526[label="GT",fontsize=16,color="green",shape="box"];2527[label="primCmpInt (Pos Zero) (Pos (Succ vwx400))",fontsize=16,color="black",shape="box"];2527 -> 2579[label="",style="solid", color="black", weight=3]; 2528[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2528 -> 2580[label="",style="solid", color="black", weight=3]; 2529[label="primCmpInt (Pos Zero) (Neg (Succ vwx400))",fontsize=16,color="black",shape="box"];2529 -> 2581[label="",style="solid", color="black", weight=3]; 2530[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2530 -> 2582[label="",style="solid", color="black", weight=3]; 2531[label="LT",fontsize=16,color="green",shape="box"];2532 -> 2505[label="",style="dashed", color="red", weight=0]; 2532[label="primCmpNat vwx40 (Succ vwx300)",fontsize=16,color="magenta"];2532 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2533[label="primCmpInt (Neg Zero) (Pos (Succ vwx400))",fontsize=16,color="black",shape="box"];2533 -> 2585[label="",style="solid", color="black", weight=3]; 2534[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2534 -> 2586[label="",style="solid", color="black", weight=3]; 2535[label="primCmpInt (Neg Zero) (Neg (Succ vwx400))",fontsize=16,color="black",shape="box"];2535 -> 2587[label="",style="solid", color="black", weight=3]; 2536[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2536 -> 2588[label="",style="solid", color="black", weight=3]; 2537[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];2537 -> 2589[label="",style="solid", color="black", weight=3]; 2538[label="compare2 Nothing (Just vwx40) False",fontsize=16,color="black",shape="box"];2538 -> 2590[label="",style="solid", color="black", weight=3]; 2539[label="compare2 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];2539 -> 2591[label="",style="solid", color="black", weight=3]; 2540 -> 2592[label="",style="dashed", color="red", weight=0]; 2540[label="compare2 (Just vwx30) (Just vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];2540 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2541[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];2541 -> 2596[label="",style="solid", color="black", weight=3]; 2542[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];2542 -> 2597[label="",style="solid", color="black", weight=3]; 2543[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];2543 -> 2598[label="",style="solid", color="black", weight=3]; 2544[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];2544 -> 2599[label="",style="solid", color="black", weight=3]; 2545[label="vwx40 * vwx31",fontsize=16,color="black",shape="triangle"];2545 -> 2600[label="",style="solid", color="black", weight=3]; 2546 -> 2545[label="",style="dashed", color="red", weight=0]; 2546[label="vwx30 * vwx41",fontsize=16,color="magenta"];2546 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2547[label="vwx40 * vwx31",fontsize=16,color="burlywood",shape="triangle"];5201[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];2547 -> 5201[label="",style="solid", color="burlywood", weight=9]; 5201 -> 2603[label="",style="solid", color="burlywood", weight=3]; 2548 -> 2547[label="",style="dashed", color="red", weight=0]; 2548[label="vwx30 * vwx41",fontsize=16,color="magenta"];2548 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2548 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2549[label="compare2 False False True",fontsize=16,color="black",shape="box"];2549 -> 2606[label="",style="solid", color="black", weight=3]; 2550[label="compare2 False True False",fontsize=16,color="black",shape="box"];2550 -> 2607[label="",style="solid", color="black", weight=3]; 2551[label="compare2 True False False",fontsize=16,color="black",shape="box"];2551 -> 2608[label="",style="solid", color="black", weight=3]; 2552[label="compare2 True True True",fontsize=16,color="black",shape="box"];2552 -> 2609[label="",style="solid", color="black", weight=3]; 2553[label="primCmpNat (Succ vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];5202[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];2553 -> 5202[label="",style="solid", color="burlywood", weight=9]; 5202 -> 2610[label="",style="solid", color="burlywood", weight=3]; 5203[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];2553 -> 5203[label="",style="solid", color="burlywood", weight=9]; 5203 -> 2611[label="",style="solid", color="burlywood", weight=3]; 2554[label="primCmpNat Zero vwx40",fontsize=16,color="burlywood",shape="box"];5204[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];2554 -> 5204[label="",style="solid", color="burlywood", weight=9]; 5204 -> 2612[label="",style="solid", color="burlywood", weight=3]; 5205[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];2554 -> 5205[label="",style="solid", color="burlywood", weight=9]; 5205 -> 2613[label="",style="solid", color="burlywood", weight=3]; 2555[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];2555 -> 2614[label="",style="solid", color="black", weight=3]; 2556[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];2556 -> 2615[label="",style="solid", color="black", weight=3]; 2557[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];2557 -> 2616[label="",style="solid", color="black", weight=3]; 2558[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];2558 -> 2617[label="",style="solid", color="black", weight=3]; 2559[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];2559 -> 2618[label="",style="solid", color="black", weight=3]; 2560[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];2560 -> 2619[label="",style="solid", color="black", weight=3]; 2561[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];2561 -> 2620[label="",style="solid", color="black", weight=3]; 2562[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];2562 -> 2621[label="",style="solid", color="black", weight=3]; 2563[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];2563 -> 2622[label="",style="solid", color="black", weight=3]; 2564[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];2564 -> 2623[label="",style="solid", color="black", weight=3]; 2565[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];2565 -> 2624[label="",style="solid", color="black", weight=3]; 2566[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];2566 -> 2625[label="",style="solid", color="black", weight=3]; 2567[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];2567 -> 2626[label="",style="solid", color="black", weight=3]; 2568[label="vwx41",fontsize=16,color="green",shape="box"];2569[label="vwx31",fontsize=16,color="green",shape="box"];2570 -> 2627[label="",style="dashed", color="red", weight=0]; 2570[label="primCompAux0 vwx152 (compare vwx30 vwx40)",fontsize=16,color="magenta"];2570 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2630[label="",style="dashed", color="red", weight=0]; 2571[label="compare2 (Left vwx30) (Left vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];2571 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2572[label="compare2 (Left vwx30) (Right vwx40) False",fontsize=16,color="black",shape="box"];2572 -> 2634[label="",style="solid", color="black", weight=3]; 2573[label="compare2 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];2573 -> 2635[label="",style="solid", color="black", weight=3]; 2574 -> 2636[label="",style="dashed", color="red", weight=0]; 2574[label="compare2 (Right vwx30) (Right vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];2574 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2575 -> 3064[label="",style="dashed", color="red", weight=0]; 2575[label="compare2 (vwx30,vwx31) (vwx40,vwx41) (vwx30 == vwx40 && vwx31 == vwx41)",fontsize=16,color="magenta"];2575 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2575 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2575 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2575 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2575 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2576 -> 3108[label="",style="dashed", color="red", weight=0]; 2576[label="compare2 (vwx30,vwx31,vwx32) (vwx40,vwx41,vwx42) (vwx30 == vwx40 && vwx31 == vwx41 && vwx32 == vwx42)",fontsize=16,color="magenta"];2576 -> 3109[label="",style="dashed", color="magenta", weight=3]; 2576 -> 3110[label="",style="dashed", color="magenta", weight=3]; 2576 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2576 -> 3112[label="",style="dashed", color="magenta", weight=3]; 2576 -> 3113[label="",style="dashed", color="magenta", weight=3]; 2576 -> 3114[label="",style="dashed", color="magenta", weight=3]; 2576 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2577[label="Succ vwx300",fontsize=16,color="green",shape="box"];2578[label="vwx40",fontsize=16,color="green",shape="box"];2579 -> 2505[label="",style="dashed", color="red", weight=0]; 2579[label="primCmpNat Zero (Succ vwx400)",fontsize=16,color="magenta"];2579 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2580[label="EQ",fontsize=16,color="green",shape="box"];2581[label="GT",fontsize=16,color="green",shape="box"];2582[label="EQ",fontsize=16,color="green",shape="box"];2583[label="vwx40",fontsize=16,color="green",shape="box"];2584[label="Succ vwx300",fontsize=16,color="green",shape="box"];2585[label="LT",fontsize=16,color="green",shape="box"];2586[label="EQ",fontsize=16,color="green",shape="box"];2587 -> 2505[label="",style="dashed", color="red", weight=0]; 2587[label="primCmpNat (Succ vwx400) Zero",fontsize=16,color="magenta"];2587 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2588[label="EQ",fontsize=16,color="green",shape="box"];2589[label="EQ",fontsize=16,color="green",shape="box"];2590[label="compare1 Nothing (Just vwx40) (Nothing <= Just vwx40)",fontsize=16,color="black",shape="box"];2590 -> 2658[label="",style="solid", color="black", weight=3]; 2591[label="compare1 (Just vwx30) Nothing (Just vwx30 <= Nothing)",fontsize=16,color="black",shape="box"];2591 -> 2659[label="",style="solid", color="black", weight=3]; 2593[label="vwx40",fontsize=16,color="green",shape="box"];2594[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];5206[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5206[label="",style="solid", color="blue", weight=9]; 5206 -> 2660[label="",style="solid", color="blue", weight=3]; 5207[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5207[label="",style="solid", color="blue", weight=9]; 5207 -> 2661[label="",style="solid", color="blue", weight=3]; 5208[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5208[label="",style="solid", color="blue", weight=9]; 5208 -> 2662[label="",style="solid", color="blue", weight=3]; 5209[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5209[label="",style="solid", color="blue", weight=9]; 5209 -> 2663[label="",style="solid", color="blue", weight=3]; 5210[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5210[label="",style="solid", color="blue", weight=9]; 5210 -> 2664[label="",style="solid", color="blue", weight=3]; 5211[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5211[label="",style="solid", color="blue", weight=9]; 5211 -> 2665[label="",style="solid", color="blue", weight=3]; 5212[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5212[label="",style="solid", color="blue", weight=9]; 5212 -> 2666[label="",style="solid", color="blue", weight=3]; 5213[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5213[label="",style="solid", color="blue", weight=9]; 5213 -> 2667[label="",style="solid", color="blue", weight=3]; 5214[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5214[label="",style="solid", color="blue", weight=9]; 5214 -> 2668[label="",style="solid", color="blue", weight=3]; 5215[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5215[label="",style="solid", color="blue", weight=9]; 5215 -> 2669[label="",style="solid", color="blue", weight=3]; 5216[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5216[label="",style="solid", color="blue", weight=9]; 5216 -> 2670[label="",style="solid", color="blue", weight=3]; 5217[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5217[label="",style="solid", color="blue", weight=9]; 5217 -> 2671[label="",style="solid", color="blue", weight=3]; 5218[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5218[label="",style="solid", color="blue", weight=9]; 5218 -> 2672[label="",style="solid", color="blue", weight=3]; 5219[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2594 -> 5219[label="",style="solid", color="blue", weight=9]; 5219 -> 2673[label="",style="solid", color="blue", weight=3]; 2595[label="vwx30",fontsize=16,color="green",shape="box"];2592[label="compare2 (Just vwx157) (Just vwx158) vwx159",fontsize=16,color="burlywood",shape="triangle"];5220[label="vwx159/False",fontsize=10,color="white",style="solid",shape="box"];2592 -> 5220[label="",style="solid", color="burlywood", weight=9]; 5220 -> 2674[label="",style="solid", color="burlywood", weight=3]; 5221[label="vwx159/True",fontsize=10,color="white",style="solid",shape="box"];2592 -> 5221[label="",style="solid", color="burlywood", weight=9]; 5221 -> 2675[label="",style="solid", color="burlywood", weight=3]; 2596 -> 2380[label="",style="dashed", color="red", weight=0]; 2596[label="compare (vwx30 * Pos vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];2596 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2380[label="",style="dashed", color="red", weight=0]; 2597[label="compare (vwx30 * Pos vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];2597 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2380[label="",style="dashed", color="red", weight=0]; 2598[label="compare (vwx30 * Neg vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];2598 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2380[label="",style="dashed", color="red", weight=0]; 2599[label="compare (vwx30 * Neg vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];2599 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2600[label="primMulInt vwx40 vwx31",fontsize=16,color="burlywood",shape="triangle"];5222[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];2600 -> 5222[label="",style="solid", color="burlywood", weight=9]; 5222 -> 2684[label="",style="solid", color="burlywood", weight=3]; 5223[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];2600 -> 5223[label="",style="solid", color="burlywood", weight=9]; 5223 -> 2685[label="",style="solid", color="burlywood", weight=3]; 2601[label="vwx41",fontsize=16,color="green",shape="box"];2602[label="vwx30",fontsize=16,color="green",shape="box"];2603[label="Integer vwx400 * vwx31",fontsize=16,color="burlywood",shape="box"];5224[label="vwx31/Integer vwx310",fontsize=10,color="white",style="solid",shape="box"];2603 -> 5224[label="",style="solid", color="burlywood", weight=9]; 5224 -> 2686[label="",style="solid", color="burlywood", weight=3]; 2604[label="vwx41",fontsize=16,color="green",shape="box"];2605[label="vwx30",fontsize=16,color="green",shape="box"];2606[label="EQ",fontsize=16,color="green",shape="box"];2607[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];2607 -> 2687[label="",style="solid", color="black", weight=3]; 2608[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];2608 -> 2688[label="",style="solid", color="black", weight=3]; 2609[label="EQ",fontsize=16,color="green",shape="box"];2610[label="primCmpNat (Succ vwx300) (Succ vwx400)",fontsize=16,color="black",shape="box"];2610 -> 2689[label="",style="solid", color="black", weight=3]; 2611[label="primCmpNat (Succ vwx300) Zero",fontsize=16,color="black",shape="box"];2611 -> 2690[label="",style="solid", color="black", weight=3]; 2612[label="primCmpNat Zero (Succ vwx400)",fontsize=16,color="black",shape="box"];2612 -> 2691[label="",style="solid", color="black", weight=3]; 2613[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2613 -> 2692[label="",style="solid", color="black", weight=3]; 2614[label="EQ",fontsize=16,color="green",shape="box"];2615[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];2615 -> 2693[label="",style="solid", color="black", weight=3]; 2616[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];2616 -> 2694[label="",style="solid", color="black", weight=3]; 2617[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];2617 -> 2695[label="",style="solid", color="black", weight=3]; 2618[label="EQ",fontsize=16,color="green",shape="box"];2619[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];2619 -> 2696[label="",style="solid", color="black", weight=3]; 2620[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];2620 -> 2697[label="",style="solid", color="black", weight=3]; 2621[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];2621 -> 2698[label="",style="solid", color="black", weight=3]; 2622[label="EQ",fontsize=16,color="green",shape="box"];2623 -> 2380[label="",style="dashed", color="red", weight=0]; 2623[label="compare (vwx30 * Pos vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];2623 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2380[label="",style="dashed", color="red", weight=0]; 2624[label="compare (vwx30 * Pos vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];2624 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2380[label="",style="dashed", color="red", weight=0]; 2625[label="compare (vwx30 * Neg vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];2625 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2380[label="",style="dashed", color="red", weight=0]; 2626[label="compare (vwx30 * Neg vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];2626 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2628[label="vwx152",fontsize=16,color="green",shape="box"];2629[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];5225[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5225[label="",style="solid", color="blue", weight=9]; 5225 -> 2707[label="",style="solid", color="blue", weight=3]; 5226[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5226[label="",style="solid", color="blue", weight=9]; 5226 -> 2708[label="",style="solid", color="blue", weight=3]; 5227[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5227[label="",style="solid", color="blue", weight=9]; 5227 -> 2709[label="",style="solid", color="blue", weight=3]; 5228[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5228[label="",style="solid", color="blue", weight=9]; 5228 -> 2710[label="",style="solid", color="blue", weight=3]; 5229[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5229[label="",style="solid", color="blue", weight=9]; 5229 -> 2711[label="",style="solid", color="blue", weight=3]; 5230[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5230[label="",style="solid", color="blue", weight=9]; 5230 -> 2712[label="",style="solid", color="blue", weight=3]; 5231[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5231[label="",style="solid", color="blue", weight=9]; 5231 -> 2713[label="",style="solid", color="blue", weight=3]; 5232[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5232[label="",style="solid", color="blue", weight=9]; 5232 -> 2714[label="",style="solid", color="blue", weight=3]; 5233[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5233[label="",style="solid", color="blue", weight=9]; 5233 -> 2715[label="",style="solid", color="blue", weight=3]; 5234[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5234[label="",style="solid", color="blue", weight=9]; 5234 -> 2716[label="",style="solid", color="blue", weight=3]; 5235[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5235[label="",style="solid", color="blue", weight=9]; 5235 -> 2717[label="",style="solid", color="blue", weight=3]; 5236[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5236[label="",style="solid", color="blue", weight=9]; 5236 -> 2718[label="",style="solid", color="blue", weight=3]; 5237[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5237[label="",style="solid", color="blue", weight=9]; 5237 -> 2719[label="",style="solid", color="blue", weight=3]; 5238[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5238[label="",style="solid", color="blue", weight=9]; 5238 -> 2720[label="",style="solid", color="blue", weight=3]; 2627[label="primCompAux0 vwx163 vwx164",fontsize=16,color="burlywood",shape="triangle"];5239[label="vwx164/LT",fontsize=10,color="white",style="solid",shape="box"];2627 -> 5239[label="",style="solid", color="burlywood", weight=9]; 5239 -> 2721[label="",style="solid", color="burlywood", weight=3]; 5240[label="vwx164/EQ",fontsize=10,color="white",style="solid",shape="box"];2627 -> 5240[label="",style="solid", color="burlywood", weight=9]; 5240 -> 2722[label="",style="solid", color="burlywood", weight=3]; 5241[label="vwx164/GT",fontsize=10,color="white",style="solid",shape="box"];2627 -> 5241[label="",style="solid", color="burlywood", weight=9]; 5241 -> 2723[label="",style="solid", color="burlywood", weight=3]; 2631[label="vwx40",fontsize=16,color="green",shape="box"];2632[label="vwx30",fontsize=16,color="green",shape="box"];2633[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];5242[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5242[label="",style="solid", color="blue", weight=9]; 5242 -> 2724[label="",style="solid", color="blue", weight=3]; 5243[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5243[label="",style="solid", color="blue", weight=9]; 5243 -> 2725[label="",style="solid", color="blue", weight=3]; 5244[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5244[label="",style="solid", color="blue", weight=9]; 5244 -> 2726[label="",style="solid", color="blue", weight=3]; 5245[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5245[label="",style="solid", color="blue", weight=9]; 5245 -> 2727[label="",style="solid", color="blue", weight=3]; 5246[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5246[label="",style="solid", color="blue", weight=9]; 5246 -> 2728[label="",style="solid", color="blue", weight=3]; 5247[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5247[label="",style="solid", color="blue", weight=9]; 5247 -> 2729[label="",style="solid", color="blue", weight=3]; 5248[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5248[label="",style="solid", color="blue", weight=9]; 5248 -> 2730[label="",style="solid", color="blue", weight=3]; 5249[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5249[label="",style="solid", color="blue", weight=9]; 5249 -> 2731[label="",style="solid", color="blue", weight=3]; 5250[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5250[label="",style="solid", color="blue", weight=9]; 5250 -> 2732[label="",style="solid", color="blue", weight=3]; 5251[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5251[label="",style="solid", color="blue", weight=9]; 5251 -> 2733[label="",style="solid", color="blue", weight=3]; 5252[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5252[label="",style="solid", color="blue", weight=9]; 5252 -> 2734[label="",style="solid", color="blue", weight=3]; 5253[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5253[label="",style="solid", color="blue", weight=9]; 5253 -> 2735[label="",style="solid", color="blue", weight=3]; 5254[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5254[label="",style="solid", color="blue", weight=9]; 5254 -> 2736[label="",style="solid", color="blue", weight=3]; 5255[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5255[label="",style="solid", color="blue", weight=9]; 5255 -> 2737[label="",style="solid", color="blue", weight=3]; 2630[label="compare2 (Left vwx169) (Left vwx170) vwx171",fontsize=16,color="burlywood",shape="triangle"];5256[label="vwx171/False",fontsize=10,color="white",style="solid",shape="box"];2630 -> 5256[label="",style="solid", color="burlywood", weight=9]; 5256 -> 2738[label="",style="solid", color="burlywood", weight=3]; 5257[label="vwx171/True",fontsize=10,color="white",style="solid",shape="box"];2630 -> 5257[label="",style="solid", color="burlywood", weight=9]; 5257 -> 2739[label="",style="solid", color="burlywood", weight=3]; 2634[label="compare1 (Left vwx30) (Right vwx40) (Left vwx30 <= Right vwx40)",fontsize=16,color="black",shape="box"];2634 -> 2740[label="",style="solid", color="black", weight=3]; 2635[label="compare1 (Right vwx30) (Left vwx40) (Right vwx30 <= Left vwx40)",fontsize=16,color="black",shape="box"];2635 -> 2741[label="",style="solid", color="black", weight=3]; 2637[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];5258[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5258[label="",style="solid", color="blue", weight=9]; 5258 -> 2742[label="",style="solid", color="blue", weight=3]; 5259[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5259[label="",style="solid", color="blue", weight=9]; 5259 -> 2743[label="",style="solid", color="blue", weight=3]; 5260[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5260[label="",style="solid", color="blue", weight=9]; 5260 -> 2744[label="",style="solid", color="blue", weight=3]; 5261[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5261[label="",style="solid", color="blue", weight=9]; 5261 -> 2745[label="",style="solid", color="blue", weight=3]; 5262[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5262[label="",style="solid", color="blue", weight=9]; 5262 -> 2746[label="",style="solid", color="blue", weight=3]; 5263[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5263[label="",style="solid", color="blue", weight=9]; 5263 -> 2747[label="",style="solid", color="blue", weight=3]; 5264[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5264[label="",style="solid", color="blue", weight=9]; 5264 -> 2748[label="",style="solid", color="blue", weight=3]; 5265[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5265[label="",style="solid", color="blue", weight=9]; 5265 -> 2749[label="",style="solid", color="blue", weight=3]; 5266[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5266[label="",style="solid", color="blue", weight=9]; 5266 -> 2750[label="",style="solid", color="blue", weight=3]; 5267[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5267[label="",style="solid", color="blue", weight=9]; 5267 -> 2751[label="",style="solid", color="blue", weight=3]; 5268[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5268[label="",style="solid", color="blue", weight=9]; 5268 -> 2752[label="",style="solid", color="blue", weight=3]; 5269[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5269[label="",style="solid", color="blue", weight=9]; 5269 -> 2753[label="",style="solid", color="blue", weight=3]; 5270[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5270[label="",style="solid", color="blue", weight=9]; 5270 -> 2754[label="",style="solid", color="blue", weight=3]; 5271[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2637 -> 5271[label="",style="solid", color="blue", weight=9]; 5271 -> 2755[label="",style="solid", color="blue", weight=3]; 2638[label="vwx40",fontsize=16,color="green",shape="box"];2639[label="vwx30",fontsize=16,color="green",shape="box"];2636[label="compare2 (Right vwx176) (Right vwx177) vwx178",fontsize=16,color="burlywood",shape="triangle"];5272[label="vwx178/False",fontsize=10,color="white",style="solid",shape="box"];2636 -> 5272[label="",style="solid", color="burlywood", weight=9]; 5272 -> 2756[label="",style="solid", color="burlywood", weight=3]; 5273[label="vwx178/True",fontsize=10,color="white",style="solid",shape="box"];2636 -> 5273[label="",style="solid", color="burlywood", weight=9]; 5273 -> 2757[label="",style="solid", color="burlywood", weight=3]; 3065[label="vwx41",fontsize=16,color="green",shape="box"];3066[label="vwx40",fontsize=16,color="green",shape="box"];3067[label="vwx31",fontsize=16,color="green",shape="box"];3068 -> 3140[label="",style="dashed", color="red", weight=0]; 3068[label="vwx30 == vwx40 && vwx31 == vwx41",fontsize=16,color="magenta"];3068 -> 3141[label="",style="dashed", color="magenta", weight=3]; 3068 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3069[label="vwx30",fontsize=16,color="green",shape="box"];3064[label="compare2 (vwx211,vwx212) (vwx213,vwx214) vwx215",fontsize=16,color="burlywood",shape="triangle"];5274[label="vwx215/False",fontsize=10,color="white",style="solid",shape="box"];3064 -> 5274[label="",style="solid", color="burlywood", weight=9]; 5274 -> 3089[label="",style="solid", color="burlywood", weight=3]; 5275[label="vwx215/True",fontsize=10,color="white",style="solid",shape="box"];3064 -> 5275[label="",style="solid", color="burlywood", weight=9]; 5275 -> 3090[label="",style="solid", color="burlywood", weight=3]; 3109[label="vwx30",fontsize=16,color="green",shape="box"];3110 -> 3140[label="",style="dashed", color="red", weight=0]; 3110[label="vwx30 == vwx40 && vwx31 == vwx41 && vwx32 == vwx42",fontsize=16,color="magenta"];3110 -> 3143[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3111[label="vwx41",fontsize=16,color="green",shape="box"];3112[label="vwx32",fontsize=16,color="green",shape="box"];3113[label="vwx40",fontsize=16,color="green",shape="box"];3114[label="vwx31",fontsize=16,color="green",shape="box"];3115[label="vwx42",fontsize=16,color="green",shape="box"];3108[label="compare2 (vwx198,vwx199,vwx200) (vwx201,vwx202,vwx203) vwx223",fontsize=16,color="burlywood",shape="triangle"];5276[label="vwx223/False",fontsize=10,color="white",style="solid",shape="box"];3108 -> 5276[label="",style="solid", color="burlywood", weight=9]; 5276 -> 3124[label="",style="solid", color="burlywood", weight=3]; 5277[label="vwx223/True",fontsize=10,color="white",style="solid",shape="box"];3108 -> 5277[label="",style="solid", color="burlywood", weight=9]; 5277 -> 3125[label="",style="solid", color="burlywood", weight=3]; 2654[label="Zero",fontsize=16,color="green",shape="box"];2655[label="Succ vwx400",fontsize=16,color="green",shape="box"];2656[label="Succ vwx400",fontsize=16,color="green",shape="box"];2657[label="Zero",fontsize=16,color="green",shape="box"];2658[label="compare1 Nothing (Just vwx40) True",fontsize=16,color="black",shape="box"];2658 -> 2790[label="",style="solid", color="black", weight=3]; 2659[label="compare1 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];2659 -> 2791[label="",style="solid", color="black", weight=3]; 2660[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];2660 -> 2792[label="",style="solid", color="black", weight=3]; 2661[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5278[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];2661 -> 5278[label="",style="solid", color="burlywood", weight=9]; 5278 -> 2793[label="",style="solid", color="burlywood", weight=3]; 5279[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];2661 -> 5279[label="",style="solid", color="burlywood", weight=9]; 5279 -> 2794[label="",style="solid", color="burlywood", weight=3]; 2662[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5280[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];2662 -> 5280[label="",style="solid", color="burlywood", weight=9]; 5280 -> 2795[label="",style="solid", color="burlywood", weight=3]; 2663[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];2663 -> 2796[label="",style="solid", color="black", weight=3]; 2664[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5281[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];2664 -> 5281[label="",style="solid", color="burlywood", weight=9]; 5281 -> 2797[label="",style="solid", color="burlywood", weight=3]; 5282[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];2664 -> 5282[label="",style="solid", color="burlywood", weight=9]; 5282 -> 2798[label="",style="solid", color="burlywood", weight=3]; 2665[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5283[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];2665 -> 5283[label="",style="solid", color="burlywood", weight=9]; 5283 -> 2799[label="",style="solid", color="burlywood", weight=3]; 5284[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];2665 -> 5284[label="",style="solid", color="burlywood", weight=9]; 5284 -> 2800[label="",style="solid", color="burlywood", weight=3]; 5285[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];2665 -> 5285[label="",style="solid", color="burlywood", weight=9]; 5285 -> 2801[label="",style="solid", color="burlywood", weight=3]; 2666[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5286[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];2666 -> 5286[label="",style="solid", color="burlywood", weight=9]; 5286 -> 2802[label="",style="solid", color="burlywood", weight=3]; 5287[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];2666 -> 5287[label="",style="solid", color="burlywood", weight=9]; 5287 -> 2803[label="",style="solid", color="burlywood", weight=3]; 2667[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5288[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5288[label="",style="solid", color="burlywood", weight=9]; 5288 -> 2804[label="",style="solid", color="burlywood", weight=3]; 2668[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5289[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];2668 -> 5289[label="",style="solid", color="burlywood", weight=9]; 5289 -> 2805[label="",style="solid", color="burlywood", weight=3]; 5290[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];2668 -> 5290[label="",style="solid", color="burlywood", weight=9]; 5290 -> 2806[label="",style="solid", color="burlywood", weight=3]; 2669[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5291[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];2669 -> 5291[label="",style="solid", color="burlywood", weight=9]; 5291 -> 2807[label="",style="solid", color="burlywood", weight=3]; 2670[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5292[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];2670 -> 5292[label="",style="solid", color="burlywood", weight=9]; 5292 -> 2808[label="",style="solid", color="burlywood", weight=3]; 2671[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];2671 -> 2809[label="",style="solid", color="black", weight=3]; 2672[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];2672 -> 2810[label="",style="solid", color="black", weight=3]; 2673[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];5293[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];2673 -> 5293[label="",style="solid", color="burlywood", weight=9]; 5293 -> 2811[label="",style="solid", color="burlywood", weight=3]; 2674[label="compare2 (Just vwx157) (Just vwx158) False",fontsize=16,color="black",shape="box"];2674 -> 2812[label="",style="solid", color="black", weight=3]; 2675[label="compare2 (Just vwx157) (Just vwx158) True",fontsize=16,color="black",shape="box"];2675 -> 2813[label="",style="solid", color="black", weight=3]; 2676 -> 2545[label="",style="dashed", color="red", weight=0]; 2676[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];2676 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2545[label="",style="dashed", color="red", weight=0]; 2677[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];2677 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2545[label="",style="dashed", color="red", weight=0]; 2678[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];2678 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2545[label="",style="dashed", color="red", weight=0]; 2679[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];2679 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2545[label="",style="dashed", color="red", weight=0]; 2680[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];2680 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2545[label="",style="dashed", color="red", weight=0]; 2681[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];2681 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2545[label="",style="dashed", color="red", weight=0]; 2682[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];2682 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2545[label="",style="dashed", color="red", weight=0]; 2683[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];2683 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2684[label="primMulInt (Pos vwx400) vwx31",fontsize=16,color="burlywood",shape="box"];5294[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];2684 -> 5294[label="",style="solid", color="burlywood", weight=9]; 5294 -> 2830[label="",style="solid", color="burlywood", weight=3]; 5295[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];2684 -> 5295[label="",style="solid", color="burlywood", weight=9]; 5295 -> 2831[label="",style="solid", color="burlywood", weight=3]; 2685[label="primMulInt (Neg vwx400) vwx31",fontsize=16,color="burlywood",shape="box"];5296[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];2685 -> 5296[label="",style="solid", color="burlywood", weight=9]; 5296 -> 2832[label="",style="solid", color="burlywood", weight=3]; 5297[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];2685 -> 5297[label="",style="solid", color="burlywood", weight=9]; 5297 -> 2833[label="",style="solid", color="burlywood", weight=3]; 2686[label="Integer vwx400 * Integer vwx310",fontsize=16,color="black",shape="box"];2686 -> 2834[label="",style="solid", color="black", weight=3]; 2687[label="compare1 False True True",fontsize=16,color="black",shape="box"];2687 -> 2835[label="",style="solid", color="black", weight=3]; 2688[label="compare1 True False False",fontsize=16,color="black",shape="box"];2688 -> 2836[label="",style="solid", color="black", weight=3]; 2689 -> 2505[label="",style="dashed", color="red", weight=0]; 2689[label="primCmpNat vwx300 vwx400",fontsize=16,color="magenta"];2689 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2690[label="GT",fontsize=16,color="green",shape="box"];2691[label="LT",fontsize=16,color="green",shape="box"];2692[label="EQ",fontsize=16,color="green",shape="box"];2693[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];2693 -> 2839[label="",style="solid", color="black", weight=3]; 2694[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];2694 -> 2840[label="",style="solid", color="black", weight=3]; 2695[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];2695 -> 2841[label="",style="solid", color="black", weight=3]; 2696[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];2696 -> 2842[label="",style="solid", color="black", weight=3]; 2697[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];2697 -> 2843[label="",style="solid", color="black", weight=3]; 2698[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];2698 -> 2844[label="",style="solid", color="black", weight=3]; 2699 -> 2545[label="",style="dashed", color="red", weight=0]; 2699[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];2699 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2545[label="",style="dashed", color="red", weight=0]; 2700[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];2700 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2545[label="",style="dashed", color="red", weight=0]; 2701[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];2701 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2545[label="",style="dashed", color="red", weight=0]; 2702[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];2702 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2545[label="",style="dashed", color="red", weight=0]; 2703[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];2703 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2545[label="",style="dashed", color="red", weight=0]; 2704[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];2704 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2545[label="",style="dashed", color="red", weight=0]; 2705[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];2705 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2545[label="",style="dashed", color="red", weight=0]; 2706[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];2706 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2380[label="",style="dashed", color="red", weight=0]; 2707[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2707 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2381[label="",style="dashed", color="red", weight=0]; 2708[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2708 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2382[label="",style="dashed", color="red", weight=0]; 2709[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2709 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2383[label="",style="dashed", color="red", weight=0]; 2710[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2710 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2384[label="",style="dashed", color="red", weight=0]; 2711[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2711 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2385[label="",style="dashed", color="red", weight=0]; 2712[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2712 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2386[label="",style="dashed", color="red", weight=0]; 2713[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2713 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2387[label="",style="dashed", color="red", weight=0]; 2714[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2714 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2388[label="",style="dashed", color="red", weight=0]; 2715[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2715 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2389[label="",style="dashed", color="red", weight=0]; 2716[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2716 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2390[label="",style="dashed", color="red", weight=0]; 2717[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2717 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2391[label="",style="dashed", color="red", weight=0]; 2718[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2718 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2392[label="",style="dashed", color="red", weight=0]; 2719[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2719 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2393[label="",style="dashed", color="red", weight=0]; 2720[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2720 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2721[label="primCompAux0 vwx163 LT",fontsize=16,color="black",shape="box"];2721 -> 2889[label="",style="solid", color="black", weight=3]; 2722[label="primCompAux0 vwx163 EQ",fontsize=16,color="black",shape="box"];2722 -> 2890[label="",style="solid", color="black", weight=3]; 2723[label="primCompAux0 vwx163 GT",fontsize=16,color="black",shape="box"];2723 -> 2891[label="",style="solid", color="black", weight=3]; 2724 -> 2660[label="",style="dashed", color="red", weight=0]; 2724[label="vwx30 == vwx40",fontsize=16,color="magenta"];2724 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2661[label="",style="dashed", color="red", weight=0]; 2725[label="vwx30 == vwx40",fontsize=16,color="magenta"];2725 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2662[label="",style="dashed", color="red", weight=0]; 2726[label="vwx30 == vwx40",fontsize=16,color="magenta"];2726 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2663[label="",style="dashed", color="red", weight=0]; 2727[label="vwx30 == vwx40",fontsize=16,color="magenta"];2727 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2664[label="",style="dashed", color="red", weight=0]; 2728[label="vwx30 == vwx40",fontsize=16,color="magenta"];2728 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2665[label="",style="dashed", color="red", weight=0]; 2729[label="vwx30 == vwx40",fontsize=16,color="magenta"];2729 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2666[label="",style="dashed", color="red", weight=0]; 2730[label="vwx30 == vwx40",fontsize=16,color="magenta"];2730 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2667[label="",style="dashed", color="red", weight=0]; 2731[label="vwx30 == vwx40",fontsize=16,color="magenta"];2731 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2668[label="",style="dashed", color="red", weight=0]; 2732[label="vwx30 == vwx40",fontsize=16,color="magenta"];2732 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2669[label="",style="dashed", color="red", weight=0]; 2733[label="vwx30 == vwx40",fontsize=16,color="magenta"];2733 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2670[label="",style="dashed", color="red", weight=0]; 2734[label="vwx30 == vwx40",fontsize=16,color="magenta"];2734 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2671[label="",style="dashed", color="red", weight=0]; 2735[label="vwx30 == vwx40",fontsize=16,color="magenta"];2735 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2672[label="",style="dashed", color="red", weight=0]; 2736[label="vwx30 == vwx40",fontsize=16,color="magenta"];2736 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2673[label="",style="dashed", color="red", weight=0]; 2737[label="vwx30 == vwx40",fontsize=16,color="magenta"];2737 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2738[label="compare2 (Left vwx169) (Left vwx170) False",fontsize=16,color="black",shape="box"];2738 -> 2920[label="",style="solid", color="black", weight=3]; 2739[label="compare2 (Left vwx169) (Left vwx170) True",fontsize=16,color="black",shape="box"];2739 -> 2921[label="",style="solid", color="black", weight=3]; 2740[label="compare1 (Left vwx30) (Right vwx40) True",fontsize=16,color="black",shape="box"];2740 -> 2922[label="",style="solid", color="black", weight=3]; 2741[label="compare1 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];2741 -> 2923[label="",style="solid", color="black", weight=3]; 2742 -> 2660[label="",style="dashed", color="red", weight=0]; 2742[label="vwx30 == vwx40",fontsize=16,color="magenta"];2742 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2661[label="",style="dashed", color="red", weight=0]; 2743[label="vwx30 == vwx40",fontsize=16,color="magenta"];2743 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2662[label="",style="dashed", color="red", weight=0]; 2744[label="vwx30 == vwx40",fontsize=16,color="magenta"];2744 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2663[label="",style="dashed", color="red", weight=0]; 2745[label="vwx30 == vwx40",fontsize=16,color="magenta"];2745 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2664[label="",style="dashed", color="red", weight=0]; 2746[label="vwx30 == vwx40",fontsize=16,color="magenta"];2746 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2665[label="",style="dashed", color="red", weight=0]; 2747[label="vwx30 == vwx40",fontsize=16,color="magenta"];2747 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2666[label="",style="dashed", color="red", weight=0]; 2748[label="vwx30 == vwx40",fontsize=16,color="magenta"];2748 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2667[label="",style="dashed", color="red", weight=0]; 2749[label="vwx30 == vwx40",fontsize=16,color="magenta"];2749 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2668[label="",style="dashed", color="red", weight=0]; 2750[label="vwx30 == vwx40",fontsize=16,color="magenta"];2750 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2669[label="",style="dashed", color="red", weight=0]; 2751[label="vwx30 == vwx40",fontsize=16,color="magenta"];2751 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2670[label="",style="dashed", color="red", weight=0]; 2752[label="vwx30 == vwx40",fontsize=16,color="magenta"];2752 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2671[label="",style="dashed", color="red", weight=0]; 2753[label="vwx30 == vwx40",fontsize=16,color="magenta"];2753 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2672[label="",style="dashed", color="red", weight=0]; 2754[label="vwx30 == vwx40",fontsize=16,color="magenta"];2754 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2673[label="",style="dashed", color="red", weight=0]; 2755[label="vwx30 == vwx40",fontsize=16,color="magenta"];2755 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2756[label="compare2 (Right vwx176) (Right vwx177) False",fontsize=16,color="black",shape="box"];2756 -> 2952[label="",style="solid", color="black", weight=3]; 2757[label="compare2 (Right vwx176) (Right vwx177) True",fontsize=16,color="black",shape="box"];2757 -> 2953[label="",style="solid", color="black", weight=3]; 3141[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];5298[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5298[label="",style="solid", color="blue", weight=9]; 5298 -> 3149[label="",style="solid", color="blue", weight=3]; 5299[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5299[label="",style="solid", color="blue", weight=9]; 5299 -> 3150[label="",style="solid", color="blue", weight=3]; 5300[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5300[label="",style="solid", color="blue", weight=9]; 5300 -> 3151[label="",style="solid", color="blue", weight=3]; 5301[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5301[label="",style="solid", color="blue", weight=9]; 5301 -> 3152[label="",style="solid", color="blue", weight=3]; 5302[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5302[label="",style="solid", color="blue", weight=9]; 5302 -> 3153[label="",style="solid", color="blue", weight=3]; 5303[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5303[label="",style="solid", color="blue", weight=9]; 5303 -> 3154[label="",style="solid", color="blue", weight=3]; 5304[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5304[label="",style="solid", color="blue", weight=9]; 5304 -> 3155[label="",style="solid", color="blue", weight=3]; 5305[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5305[label="",style="solid", color="blue", weight=9]; 5305 -> 3156[label="",style="solid", color="blue", weight=3]; 5306[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5306[label="",style="solid", color="blue", weight=9]; 5306 -> 3157[label="",style="solid", color="blue", weight=3]; 5307[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5307[label="",style="solid", color="blue", weight=9]; 5307 -> 3158[label="",style="solid", color="blue", weight=3]; 5308[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5308[label="",style="solid", color="blue", weight=9]; 5308 -> 3159[label="",style="solid", color="blue", weight=3]; 5309[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5309[label="",style="solid", color="blue", weight=9]; 5309 -> 3160[label="",style="solid", color="blue", weight=3]; 5310[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5310[label="",style="solid", color="blue", weight=9]; 5310 -> 3161[label="",style="solid", color="blue", weight=3]; 5311[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3141 -> 5311[label="",style="solid", color="blue", weight=9]; 5311 -> 3162[label="",style="solid", color="blue", weight=3]; 3142[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];5312[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5312[label="",style="solid", color="blue", weight=9]; 5312 -> 3163[label="",style="solid", color="blue", weight=3]; 5313[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5313[label="",style="solid", color="blue", weight=9]; 5313 -> 3164[label="",style="solid", color="blue", weight=3]; 5314[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5314[label="",style="solid", color="blue", weight=9]; 5314 -> 3165[label="",style="solid", color="blue", weight=3]; 5315[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5315[label="",style="solid", color="blue", weight=9]; 5315 -> 3166[label="",style="solid", color="blue", weight=3]; 5316[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5316[label="",style="solid", color="blue", weight=9]; 5316 -> 3167[label="",style="solid", color="blue", weight=3]; 5317[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5317[label="",style="solid", color="blue", weight=9]; 5317 -> 3168[label="",style="solid", color="blue", weight=3]; 5318[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5318[label="",style="solid", color="blue", weight=9]; 5318 -> 3169[label="",style="solid", color="blue", weight=3]; 5319[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5319[label="",style="solid", color="blue", weight=9]; 5319 -> 3170[label="",style="solid", color="blue", weight=3]; 5320[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5320[label="",style="solid", color="blue", weight=9]; 5320 -> 3171[label="",style="solid", color="blue", weight=3]; 5321[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5321[label="",style="solid", color="blue", weight=9]; 5321 -> 3172[label="",style="solid", color="blue", weight=3]; 5322[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5322[label="",style="solid", color="blue", weight=9]; 5322 -> 3173[label="",style="solid", color="blue", weight=3]; 5323[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5323[label="",style="solid", color="blue", weight=9]; 5323 -> 3174[label="",style="solid", color="blue", weight=3]; 5324[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5324[label="",style="solid", color="blue", weight=9]; 5324 -> 3175[label="",style="solid", color="blue", weight=3]; 5325[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5325[label="",style="solid", color="blue", weight=9]; 5325 -> 3176[label="",style="solid", color="blue", weight=3]; 3140[label="vwx228 && vwx229",fontsize=16,color="burlywood",shape="triangle"];5326[label="vwx228/False",fontsize=10,color="white",style="solid",shape="box"];3140 -> 5326[label="",style="solid", color="burlywood", weight=9]; 5326 -> 3177[label="",style="solid", color="burlywood", weight=3]; 5327[label="vwx228/True",fontsize=10,color="white",style="solid",shape="box"];3140 -> 5327[label="",style="solid", color="burlywood", weight=9]; 5327 -> 3178[label="",style="solid", color="burlywood", weight=3]; 3089[label="compare2 (vwx211,vwx212) (vwx213,vwx214) False",fontsize=16,color="black",shape="box"];3089 -> 3179[label="",style="solid", color="black", weight=3]; 3090[label="compare2 (vwx211,vwx212) (vwx213,vwx214) True",fontsize=16,color="black",shape="box"];3090 -> 3180[label="",style="solid", color="black", weight=3]; 3143 -> 3140[label="",style="dashed", color="red", weight=0]; 3143[label="vwx31 == vwx41 && vwx32 == vwx42",fontsize=16,color="magenta"];3143 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3143 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3144[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];5328[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5328[label="",style="solid", color="blue", weight=9]; 5328 -> 3183[label="",style="solid", color="blue", weight=3]; 5329[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5329[label="",style="solid", color="blue", weight=9]; 5329 -> 3184[label="",style="solid", color="blue", weight=3]; 5330[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5330[label="",style="solid", color="blue", weight=9]; 5330 -> 3185[label="",style="solid", color="blue", weight=3]; 5331[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5331[label="",style="solid", color="blue", weight=9]; 5331 -> 3186[label="",style="solid", color="blue", weight=3]; 5332[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5332[label="",style="solid", color="blue", weight=9]; 5332 -> 3187[label="",style="solid", color="blue", weight=3]; 5333[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5333[label="",style="solid", color="blue", weight=9]; 5333 -> 3188[label="",style="solid", color="blue", weight=3]; 5334[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5334[label="",style="solid", color="blue", weight=9]; 5334 -> 3189[label="",style="solid", color="blue", weight=3]; 5335[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5335[label="",style="solid", color="blue", weight=9]; 5335 -> 3190[label="",style="solid", color="blue", weight=3]; 5336[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5336[label="",style="solid", color="blue", weight=9]; 5336 -> 3191[label="",style="solid", color="blue", weight=3]; 5337[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5337[label="",style="solid", color="blue", weight=9]; 5337 -> 3192[label="",style="solid", color="blue", weight=3]; 5338[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5338[label="",style="solid", color="blue", weight=9]; 5338 -> 3193[label="",style="solid", color="blue", weight=3]; 5339[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5339[label="",style="solid", color="blue", weight=9]; 5339 -> 3194[label="",style="solid", color="blue", weight=3]; 5340[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5340[label="",style="solid", color="blue", weight=9]; 5340 -> 3195[label="",style="solid", color="blue", weight=3]; 5341[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3144 -> 5341[label="",style="solid", color="blue", weight=9]; 5341 -> 3196[label="",style="solid", color="blue", weight=3]; 3124[label="compare2 (vwx198,vwx199,vwx200) (vwx201,vwx202,vwx203) False",fontsize=16,color="black",shape="box"];3124 -> 3197[label="",style="solid", color="black", weight=3]; 3125[label="compare2 (vwx198,vwx199,vwx200) (vwx201,vwx202,vwx203) True",fontsize=16,color="black",shape="box"];3125 -> 3198[label="",style="solid", color="black", weight=3]; 2790[label="LT",fontsize=16,color="green",shape="box"];2791[label="compare0 (Just vwx30) Nothing otherwise",fontsize=16,color="black",shape="box"];2791 -> 3014[label="",style="solid", color="black", weight=3]; 2792[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];5342[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];2792 -> 5342[label="",style="solid", color="burlywood", weight=9]; 5342 -> 3015[label="",style="solid", color="burlywood", weight=3]; 2793[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];5343[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5343[label="",style="solid", color="burlywood", weight=9]; 5343 -> 3016[label="",style="solid", color="burlywood", weight=3]; 5344[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5344[label="",style="solid", color="burlywood", weight=9]; 5344 -> 3017[label="",style="solid", color="burlywood", weight=3]; 2794[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];5345[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5345[label="",style="solid", color="burlywood", weight=9]; 5345 -> 3018[label="",style="solid", color="burlywood", weight=3]; 5346[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5346[label="",style="solid", color="burlywood", weight=9]; 5346 -> 3019[label="",style="solid", color="burlywood", weight=3]; 2795[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];5347[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];2795 -> 5347[label="",style="solid", color="burlywood", weight=9]; 5347 -> 3020[label="",style="solid", color="burlywood", weight=3]; 2796[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];5348[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];2796 -> 5348[label="",style="solid", color="burlywood", weight=9]; 5348 -> 3021[label="",style="solid", color="burlywood", weight=3]; 2797[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];5349[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];2797 -> 5349[label="",style="solid", color="burlywood", weight=9]; 5349 -> 3022[label="",style="solid", color="burlywood", weight=3]; 5350[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];2797 -> 5350[label="",style="solid", color="burlywood", weight=9]; 5350 -> 3023[label="",style="solid", color="burlywood", weight=3]; 2798[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];5351[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];2798 -> 5351[label="",style="solid", color="burlywood", weight=9]; 5351 -> 3024[label="",style="solid", color="burlywood", weight=3]; 5352[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];2798 -> 5352[label="",style="solid", color="burlywood", weight=9]; 5352 -> 3025[label="",style="solid", color="burlywood", weight=3]; 2799[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];5353[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];2799 -> 5353[label="",style="solid", color="burlywood", weight=9]; 5353 -> 3026[label="",style="solid", color="burlywood", weight=3]; 5354[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];2799 -> 5354[label="",style="solid", color="burlywood", weight=9]; 5354 -> 3027[label="",style="solid", color="burlywood", weight=3]; 5355[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];2799 -> 5355[label="",style="solid", color="burlywood", weight=9]; 5355 -> 3028[label="",style="solid", color="burlywood", weight=3]; 2800[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];5356[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];2800 -> 5356[label="",style="solid", color="burlywood", weight=9]; 5356 -> 3029[label="",style="solid", color="burlywood", weight=3]; 5357[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];2800 -> 5357[label="",style="solid", color="burlywood", weight=9]; 5357 -> 3030[label="",style="solid", color="burlywood", weight=3]; 5358[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];2800 -> 5358[label="",style="solid", color="burlywood", weight=9]; 5358 -> 3031[label="",style="solid", color="burlywood", weight=3]; 2801[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];5359[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];2801 -> 5359[label="",style="solid", color="burlywood", weight=9]; 5359 -> 3032[label="",style="solid", color="burlywood", weight=3]; 5360[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];2801 -> 5360[label="",style="solid", color="burlywood", weight=9]; 5360 -> 3033[label="",style="solid", color="burlywood", weight=3]; 5361[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];2801 -> 5361[label="",style="solid", color="burlywood", weight=9]; 5361 -> 3034[label="",style="solid", color="burlywood", weight=3]; 2802[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];5362[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5362[label="",style="solid", color="burlywood", weight=9]; 5362 -> 3035[label="",style="solid", color="burlywood", weight=3]; 5363[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5363[label="",style="solid", color="burlywood", weight=9]; 5363 -> 3036[label="",style="solid", color="burlywood", weight=3]; 2803[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];5364[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5364[label="",style="solid", color="burlywood", weight=9]; 5364 -> 3037[label="",style="solid", color="burlywood", weight=3]; 5365[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5365[label="",style="solid", color="burlywood", weight=9]; 5365 -> 3038[label="",style="solid", color="burlywood", weight=3]; 2804[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];5366[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];2804 -> 5366[label="",style="solid", color="burlywood", weight=9]; 5366 -> 3039[label="",style="solid", color="burlywood", weight=3]; 2805[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];5367[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];2805 -> 5367[label="",style="solid", color="burlywood", weight=9]; 5367 -> 3040[label="",style="solid", color="burlywood", weight=3]; 5368[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];2805 -> 5368[label="",style="solid", color="burlywood", weight=9]; 5368 -> 3041[label="",style="solid", color="burlywood", weight=3]; 2806[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];5369[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];2806 -> 5369[label="",style="solid", color="burlywood", weight=9]; 5369 -> 3042[label="",style="solid", color="burlywood", weight=3]; 5370[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];2806 -> 5370[label="",style="solid", color="burlywood", weight=9]; 5370 -> 3043[label="",style="solid", color="burlywood", weight=3]; 2807[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];5371[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];2807 -> 5371[label="",style="solid", color="burlywood", weight=9]; 5371 -> 3044[label="",style="solid", color="burlywood", weight=3]; 2808[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];5372[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];2808 -> 5372[label="",style="solid", color="burlywood", weight=9]; 5372 -> 3045[label="",style="solid", color="burlywood", weight=3]; 2809[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];5373[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];2809 -> 5373[label="",style="solid", color="burlywood", weight=9]; 5373 -> 3046[label="",style="solid", color="burlywood", weight=3]; 5374[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];2809 -> 5374[label="",style="solid", color="burlywood", weight=9]; 5374 -> 3047[label="",style="solid", color="burlywood", weight=3]; 2810[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];5375[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];2810 -> 5375[label="",style="solid", color="burlywood", weight=9]; 5375 -> 3048[label="",style="solid", color="burlywood", weight=3]; 2811[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];5376[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];2811 -> 5376[label="",style="solid", color="burlywood", weight=9]; 5376 -> 3049[label="",style="solid", color="burlywood", weight=3]; 2812 -> 3237[label="",style="dashed", color="red", weight=0]; 2812[label="compare1 (Just vwx157) (Just vwx158) (Just vwx157 <= Just vwx158)",fontsize=16,color="magenta"];2812 -> 3238[label="",style="dashed", color="magenta", weight=3]; 2812 -> 3239[label="",style="dashed", color="magenta", weight=3]; 2812 -> 3240[label="",style="dashed", color="magenta", weight=3]; 2813[label="EQ",fontsize=16,color="green",shape="box"];2814[label="vwx40",fontsize=16,color="green",shape="box"];2815[label="Pos vwx310",fontsize=16,color="green",shape="box"];2816[label="Pos vwx410",fontsize=16,color="green",shape="box"];2817[label="vwx30",fontsize=16,color="green",shape="box"];2818[label="vwx40",fontsize=16,color="green",shape="box"];2819[label="Neg vwx310",fontsize=16,color="green",shape="box"];2820[label="Pos vwx410",fontsize=16,color="green",shape="box"];2821[label="vwx30",fontsize=16,color="green",shape="box"];2822[label="vwx40",fontsize=16,color="green",shape="box"];2823[label="Pos vwx310",fontsize=16,color="green",shape="box"];2824[label="Neg vwx410",fontsize=16,color="green",shape="box"];2825[label="vwx30",fontsize=16,color="green",shape="box"];2826[label="vwx40",fontsize=16,color="green",shape="box"];2827[label="Neg vwx310",fontsize=16,color="green",shape="box"];2828[label="Neg vwx410",fontsize=16,color="green",shape="box"];2829[label="vwx30",fontsize=16,color="green",shape="box"];2830[label="primMulInt (Pos vwx400) (Pos vwx310)",fontsize=16,color="black",shape="box"];2830 -> 3051[label="",style="solid", color="black", weight=3]; 2831[label="primMulInt (Pos vwx400) (Neg vwx310)",fontsize=16,color="black",shape="box"];2831 -> 3052[label="",style="solid", color="black", weight=3]; 2832[label="primMulInt (Neg vwx400) (Pos vwx310)",fontsize=16,color="black",shape="box"];2832 -> 3053[label="",style="solid", color="black", weight=3]; 2833[label="primMulInt (Neg vwx400) (Neg vwx310)",fontsize=16,color="black",shape="box"];2833 -> 3054[label="",style="solid", color="black", weight=3]; 2834[label="Integer (primMulInt vwx400 vwx310)",fontsize=16,color="green",shape="box"];2834 -> 3055[label="",style="dashed", color="green", weight=3]; 2835[label="LT",fontsize=16,color="green",shape="box"];2836[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];2836 -> 3056[label="",style="solid", color="black", weight=3]; 2837[label="vwx300",fontsize=16,color="green",shape="box"];2838[label="vwx400",fontsize=16,color="green",shape="box"];2839[label="LT",fontsize=16,color="green",shape="box"];2840[label="LT",fontsize=16,color="green",shape="box"];2841[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];2841 -> 3057[label="",style="solid", color="black", weight=3]; 2842[label="LT",fontsize=16,color="green",shape="box"];2843[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];2843 -> 3058[label="",style="solid", color="black", weight=3]; 2844[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];2844 -> 3059[label="",style="solid", color="black", weight=3]; 2845[label="vwx40",fontsize=16,color="green",shape="box"];2846[label="Pos vwx310",fontsize=16,color="green",shape="box"];2847[label="Pos vwx410",fontsize=16,color="green",shape="box"];2848[label="vwx30",fontsize=16,color="green",shape="box"];2849[label="vwx40",fontsize=16,color="green",shape="box"];2850[label="Neg vwx310",fontsize=16,color="green",shape="box"];2851[label="Pos vwx410",fontsize=16,color="green",shape="box"];2852[label="vwx30",fontsize=16,color="green",shape="box"];2853[label="vwx40",fontsize=16,color="green",shape="box"];2854[label="Pos vwx310",fontsize=16,color="green",shape="box"];2855[label="Neg vwx410",fontsize=16,color="green",shape="box"];2856[label="vwx30",fontsize=16,color="green",shape="box"];2857[label="vwx40",fontsize=16,color="green",shape="box"];2858[label="Neg vwx310",fontsize=16,color="green",shape="box"];2859[label="Neg vwx410",fontsize=16,color="green",shape="box"];2860[label="vwx30",fontsize=16,color="green",shape="box"];2861[label="vwx40",fontsize=16,color="green",shape="box"];2862[label="vwx30",fontsize=16,color="green",shape="box"];2863[label="vwx40",fontsize=16,color="green",shape="box"];2864[label="vwx30",fontsize=16,color="green",shape="box"];2865[label="vwx40",fontsize=16,color="green",shape="box"];2866[label="vwx30",fontsize=16,color="green",shape="box"];2867[label="vwx40",fontsize=16,color="green",shape="box"];2868[label="vwx30",fontsize=16,color="green",shape="box"];2869[label="vwx40",fontsize=16,color="green",shape="box"];2870[label="vwx30",fontsize=16,color="green",shape="box"];2871[label="vwx40",fontsize=16,color="green",shape="box"];2872[label="vwx30",fontsize=16,color="green",shape="box"];2873[label="vwx40",fontsize=16,color="green",shape="box"];2874[label="vwx30",fontsize=16,color="green",shape="box"];2875[label="vwx40",fontsize=16,color="green",shape="box"];2876[label="vwx30",fontsize=16,color="green",shape="box"];2877[label="vwx40",fontsize=16,color="green",shape="box"];2878[label="vwx30",fontsize=16,color="green",shape="box"];2879[label="vwx40",fontsize=16,color="green",shape="box"];2880[label="vwx30",fontsize=16,color="green",shape="box"];2881[label="vwx40",fontsize=16,color="green",shape="box"];2882[label="vwx30",fontsize=16,color="green",shape="box"];2883[label="vwx40",fontsize=16,color="green",shape="box"];2884[label="vwx30",fontsize=16,color="green",shape="box"];2885[label="vwx40",fontsize=16,color="green",shape="box"];2886[label="vwx30",fontsize=16,color="green",shape="box"];2887[label="vwx40",fontsize=16,color="green",shape="box"];2888[label="vwx30",fontsize=16,color="green",shape="box"];2889[label="LT",fontsize=16,color="green",shape="box"];2890[label="vwx163",fontsize=16,color="green",shape="box"];2891[label="GT",fontsize=16,color="green",shape="box"];2892[label="vwx40",fontsize=16,color="green",shape="box"];2893[label="vwx30",fontsize=16,color="green",shape="box"];2894[label="vwx40",fontsize=16,color="green",shape="box"];2895[label="vwx30",fontsize=16,color="green",shape="box"];2896[label="vwx40",fontsize=16,color="green",shape="box"];2897[label="vwx30",fontsize=16,color="green",shape="box"];2898[label="vwx40",fontsize=16,color="green",shape="box"];2899[label="vwx30",fontsize=16,color="green",shape="box"];2900[label="vwx40",fontsize=16,color="green",shape="box"];2901[label="vwx30",fontsize=16,color="green",shape="box"];2902[label="vwx40",fontsize=16,color="green",shape="box"];2903[label="vwx30",fontsize=16,color="green",shape="box"];2904[label="vwx40",fontsize=16,color="green",shape="box"];2905[label="vwx30",fontsize=16,color="green",shape="box"];2906[label="vwx40",fontsize=16,color="green",shape="box"];2907[label="vwx30",fontsize=16,color="green",shape="box"];2908[label="vwx40",fontsize=16,color="green",shape="box"];2909[label="vwx30",fontsize=16,color="green",shape="box"];2910[label="vwx40",fontsize=16,color="green",shape="box"];2911[label="vwx30",fontsize=16,color="green",shape="box"];2912[label="vwx40",fontsize=16,color="green",shape="box"];2913[label="vwx30",fontsize=16,color="green",shape="box"];2914[label="vwx40",fontsize=16,color="green",shape="box"];2915[label="vwx30",fontsize=16,color="green",shape="box"];2916[label="vwx40",fontsize=16,color="green",shape="box"];2917[label="vwx30",fontsize=16,color="green",shape="box"];2918[label="vwx40",fontsize=16,color="green",shape="box"];2919[label="vwx30",fontsize=16,color="green",shape="box"];2920 -> 3373[label="",style="dashed", color="red", weight=0]; 2920[label="compare1 (Left vwx169) (Left vwx170) (Left vwx169 <= Left vwx170)",fontsize=16,color="magenta"];2920 -> 3374[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3375[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3376[label="",style="dashed", color="magenta", weight=3]; 2921[label="EQ",fontsize=16,color="green",shape="box"];2922[label="LT",fontsize=16,color="green",shape="box"];2923[label="compare0 (Right vwx30) (Left vwx40) otherwise",fontsize=16,color="black",shape="box"];2923 -> 3061[label="",style="solid", color="black", weight=3]; 2924[label="vwx40",fontsize=16,color="green",shape="box"];2925[label="vwx30",fontsize=16,color="green",shape="box"];2926[label="vwx40",fontsize=16,color="green",shape="box"];2927[label="vwx30",fontsize=16,color="green",shape="box"];2928[label="vwx40",fontsize=16,color="green",shape="box"];2929[label="vwx30",fontsize=16,color="green",shape="box"];2930[label="vwx40",fontsize=16,color="green",shape="box"];2931[label="vwx30",fontsize=16,color="green",shape="box"];2932[label="vwx40",fontsize=16,color="green",shape="box"];2933[label="vwx30",fontsize=16,color="green",shape="box"];2934[label="vwx40",fontsize=16,color="green",shape="box"];2935[label="vwx30",fontsize=16,color="green",shape="box"];2936[label="vwx40",fontsize=16,color="green",shape="box"];2937[label="vwx30",fontsize=16,color="green",shape="box"];2938[label="vwx40",fontsize=16,color="green",shape="box"];2939[label="vwx30",fontsize=16,color="green",shape="box"];2940[label="vwx40",fontsize=16,color="green",shape="box"];2941[label="vwx30",fontsize=16,color="green",shape="box"];2942[label="vwx40",fontsize=16,color="green",shape="box"];2943[label="vwx30",fontsize=16,color="green",shape="box"];2944[label="vwx40",fontsize=16,color="green",shape="box"];2945[label="vwx30",fontsize=16,color="green",shape="box"];2946[label="vwx40",fontsize=16,color="green",shape="box"];2947[label="vwx30",fontsize=16,color="green",shape="box"];2948[label="vwx40",fontsize=16,color="green",shape="box"];2949[label="vwx30",fontsize=16,color="green",shape="box"];2950[label="vwx40",fontsize=16,color="green",shape="box"];2951[label="vwx30",fontsize=16,color="green",shape="box"];2952 -> 3384[label="",style="dashed", color="red", weight=0]; 2952[label="compare1 (Right vwx176) (Right vwx177) (Right vwx176 <= Right vwx177)",fontsize=16,color="magenta"];2952 -> 3385[label="",style="dashed", color="magenta", weight=3]; 2952 -> 3386[label="",style="dashed", color="magenta", weight=3]; 2952 -> 3387[label="",style="dashed", color="magenta", weight=3]; 2953[label="EQ",fontsize=16,color="green",shape="box"];3149 -> 2660[label="",style="dashed", color="red", weight=0]; 3149[label="vwx31 == vwx41",fontsize=16,color="magenta"];3149 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3149 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3150 -> 2661[label="",style="dashed", color="red", weight=0]; 3150[label="vwx31 == vwx41",fontsize=16,color="magenta"];3150 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3150 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3151 -> 2662[label="",style="dashed", color="red", weight=0]; 3151[label="vwx31 == vwx41",fontsize=16,color="magenta"];3151 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3152 -> 2663[label="",style="dashed", color="red", weight=0]; 3152[label="vwx31 == vwx41",fontsize=16,color="magenta"];3152 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3152 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3153 -> 2664[label="",style="dashed", color="red", weight=0]; 3153[label="vwx31 == vwx41",fontsize=16,color="magenta"];3153 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3154 -> 2665[label="",style="dashed", color="red", weight=0]; 3154[label="vwx31 == vwx41",fontsize=16,color="magenta"];3154 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3155 -> 2666[label="",style="dashed", color="red", weight=0]; 3155[label="vwx31 == vwx41",fontsize=16,color="magenta"];3155 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3156 -> 2667[label="",style="dashed", color="red", weight=0]; 3156[label="vwx31 == vwx41",fontsize=16,color="magenta"];3156 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3157 -> 2668[label="",style="dashed", color="red", weight=0]; 3157[label="vwx31 == vwx41",fontsize=16,color="magenta"];3157 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3158 -> 2669[label="",style="dashed", color="red", weight=0]; 3158[label="vwx31 == vwx41",fontsize=16,color="magenta"];3158 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3159 -> 2670[label="",style="dashed", color="red", weight=0]; 3159[label="vwx31 == vwx41",fontsize=16,color="magenta"];3159 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3160 -> 2671[label="",style="dashed", color="red", weight=0]; 3160[label="vwx31 == vwx41",fontsize=16,color="magenta"];3160 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3160 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3161 -> 2672[label="",style="dashed", color="red", weight=0]; 3161[label="vwx31 == vwx41",fontsize=16,color="magenta"];3161 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3162 -> 2673[label="",style="dashed", color="red", weight=0]; 3162[label="vwx31 == vwx41",fontsize=16,color="magenta"];3162 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3163 -> 2660[label="",style="dashed", color="red", weight=0]; 3163[label="vwx30 == vwx40",fontsize=16,color="magenta"];3163 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3163 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3164 -> 2661[label="",style="dashed", color="red", weight=0]; 3164[label="vwx30 == vwx40",fontsize=16,color="magenta"];3164 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3164 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3165 -> 2662[label="",style="dashed", color="red", weight=0]; 3165[label="vwx30 == vwx40",fontsize=16,color="magenta"];3165 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3165 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3166 -> 2663[label="",style="dashed", color="red", weight=0]; 3166[label="vwx30 == vwx40",fontsize=16,color="magenta"];3166 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3167 -> 2664[label="",style="dashed", color="red", weight=0]; 3167[label="vwx30 == vwx40",fontsize=16,color="magenta"];3167 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3167 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3168 -> 2665[label="",style="dashed", color="red", weight=0]; 3168[label="vwx30 == vwx40",fontsize=16,color="magenta"];3168 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3168 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3169 -> 2666[label="",style="dashed", color="red", weight=0]; 3169[label="vwx30 == vwx40",fontsize=16,color="magenta"];3169 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3169 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3170 -> 2667[label="",style="dashed", color="red", weight=0]; 3170[label="vwx30 == vwx40",fontsize=16,color="magenta"];3170 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3170 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3171 -> 2668[label="",style="dashed", color="red", weight=0]; 3171[label="vwx30 == vwx40",fontsize=16,color="magenta"];3171 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3171 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3172 -> 2669[label="",style="dashed", color="red", weight=0]; 3172[label="vwx30 == vwx40",fontsize=16,color="magenta"];3172 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3172 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3173 -> 2670[label="",style="dashed", color="red", weight=0]; 3173[label="vwx30 == vwx40",fontsize=16,color="magenta"];3173 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3173 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3174 -> 2671[label="",style="dashed", color="red", weight=0]; 3174[label="vwx30 == vwx40",fontsize=16,color="magenta"];3174 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3174 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3175 -> 2672[label="",style="dashed", color="red", weight=0]; 3175[label="vwx30 == vwx40",fontsize=16,color="magenta"];3175 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3175 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3176 -> 2673[label="",style="dashed", color="red", weight=0]; 3176[label="vwx30 == vwx40",fontsize=16,color="magenta"];3176 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3176 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3177[label="False && vwx229",fontsize=16,color="black",shape="box"];3177 -> 3300[label="",style="solid", color="black", weight=3]; 3178[label="True && vwx229",fontsize=16,color="black",shape="box"];3178 -> 3301[label="",style="solid", color="black", weight=3]; 3179[label="compare1 (vwx211,vwx212) (vwx213,vwx214) ((vwx211,vwx212) <= (vwx213,vwx214))",fontsize=16,color="black",shape="box"];3179 -> 3302[label="",style="solid", color="black", weight=3]; 3180[label="EQ",fontsize=16,color="green",shape="box"];3181[label="vwx32 == vwx42",fontsize=16,color="blue",shape="box"];5377[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5377[label="",style="solid", color="blue", weight=9]; 5377 -> 3303[label="",style="solid", color="blue", weight=3]; 5378[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5378[label="",style="solid", color="blue", weight=9]; 5378 -> 3304[label="",style="solid", color="blue", weight=3]; 5379[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5379[label="",style="solid", color="blue", weight=9]; 5379 -> 3305[label="",style="solid", color="blue", weight=3]; 5380[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5380[label="",style="solid", color="blue", weight=9]; 5380 -> 3306[label="",style="solid", color="blue", weight=3]; 5381[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5381[label="",style="solid", color="blue", weight=9]; 5381 -> 3307[label="",style="solid", color="blue", weight=3]; 5382[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5382[label="",style="solid", color="blue", weight=9]; 5382 -> 3308[label="",style="solid", color="blue", weight=3]; 5383[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5383[label="",style="solid", color="blue", weight=9]; 5383 -> 3309[label="",style="solid", color="blue", weight=3]; 5384[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5384[label="",style="solid", color="blue", weight=9]; 5384 -> 3310[label="",style="solid", color="blue", weight=3]; 5385[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5385[label="",style="solid", color="blue", weight=9]; 5385 -> 3311[label="",style="solid", color="blue", weight=3]; 5386[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5386[label="",style="solid", color="blue", weight=9]; 5386 -> 3312[label="",style="solid", color="blue", weight=3]; 5387[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5387[label="",style="solid", color="blue", weight=9]; 5387 -> 3313[label="",style="solid", color="blue", weight=3]; 5388[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5388[label="",style="solid", color="blue", weight=9]; 5388 -> 3314[label="",style="solid", color="blue", weight=3]; 5389[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5389[label="",style="solid", color="blue", weight=9]; 5389 -> 3315[label="",style="solid", color="blue", weight=3]; 5390[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3181 -> 5390[label="",style="solid", color="blue", weight=9]; 5390 -> 3316[label="",style="solid", color="blue", weight=3]; 3182[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];5391[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5391[label="",style="solid", color="blue", weight=9]; 5391 -> 3317[label="",style="solid", color="blue", weight=3]; 5392[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5392[label="",style="solid", color="blue", weight=9]; 5392 -> 3318[label="",style="solid", color="blue", weight=3]; 5393[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5393[label="",style="solid", color="blue", weight=9]; 5393 -> 3319[label="",style="solid", color="blue", weight=3]; 5394[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5394[label="",style="solid", color="blue", weight=9]; 5394 -> 3320[label="",style="solid", color="blue", weight=3]; 5395[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5395[label="",style="solid", color="blue", weight=9]; 5395 -> 3321[label="",style="solid", color="blue", weight=3]; 5396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5396[label="",style="solid", color="blue", weight=9]; 5396 -> 3322[label="",style="solid", color="blue", weight=3]; 5397[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5397[label="",style="solid", color="blue", weight=9]; 5397 -> 3323[label="",style="solid", color="blue", weight=3]; 5398[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5398[label="",style="solid", color="blue", weight=9]; 5398 -> 3324[label="",style="solid", color="blue", weight=3]; 5399[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5399[label="",style="solid", color="blue", weight=9]; 5399 -> 3325[label="",style="solid", color="blue", weight=3]; 5400[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5400[label="",style="solid", color="blue", weight=9]; 5400 -> 3326[label="",style="solid", color="blue", weight=3]; 5401[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5401[label="",style="solid", color="blue", weight=9]; 5401 -> 3327[label="",style="solid", color="blue", weight=3]; 5402[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5402[label="",style="solid", color="blue", weight=9]; 5402 -> 3328[label="",style="solid", color="blue", weight=3]; 5403[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5403[label="",style="solid", color="blue", weight=9]; 5403 -> 3329[label="",style="solid", color="blue", weight=3]; 5404[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 5404[label="",style="solid", color="blue", weight=9]; 5404 -> 3330[label="",style="solid", color="blue", weight=3]; 3183 -> 2660[label="",style="dashed", color="red", weight=0]; 3183[label="vwx30 == vwx40",fontsize=16,color="magenta"];3183 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3184 -> 2661[label="",style="dashed", color="red", weight=0]; 3184[label="vwx30 == vwx40",fontsize=16,color="magenta"];3184 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3184 -> 3334[label="",style="dashed", color="magenta", weight=3]; 3185 -> 2662[label="",style="dashed", color="red", weight=0]; 3185[label="vwx30 == vwx40",fontsize=16,color="magenta"];3185 -> 3335[label="",style="dashed", color="magenta", weight=3]; 3185 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3186 -> 2663[label="",style="dashed", color="red", weight=0]; 3186[label="vwx30 == vwx40",fontsize=16,color="magenta"];3186 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3186 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3187 -> 2664[label="",style="dashed", color="red", weight=0]; 3187[label="vwx30 == vwx40",fontsize=16,color="magenta"];3187 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3187 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3188 -> 2665[label="",style="dashed", color="red", weight=0]; 3188[label="vwx30 == vwx40",fontsize=16,color="magenta"];3188 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3188 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3189 -> 2666[label="",style="dashed", color="red", weight=0]; 3189[label="vwx30 == vwx40",fontsize=16,color="magenta"];3189 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3189 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3190 -> 2667[label="",style="dashed", color="red", weight=0]; 3190[label="vwx30 == vwx40",fontsize=16,color="magenta"];3190 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3190 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3191 -> 2668[label="",style="dashed", color="red", weight=0]; 3191[label="vwx30 == vwx40",fontsize=16,color="magenta"];3191 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3191 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3192 -> 2669[label="",style="dashed", color="red", weight=0]; 3192[label="vwx30 == vwx40",fontsize=16,color="magenta"];3192 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3193 -> 2670[label="",style="dashed", color="red", weight=0]; 3193[label="vwx30 == vwx40",fontsize=16,color="magenta"];3193 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3193 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3194 -> 2671[label="",style="dashed", color="red", weight=0]; 3194[label="vwx30 == vwx40",fontsize=16,color="magenta"];3194 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3194 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3195 -> 2672[label="",style="dashed", color="red", weight=0]; 3195[label="vwx30 == vwx40",fontsize=16,color="magenta"];3195 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3195 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3196 -> 2673[label="",style="dashed", color="red", weight=0]; 3196[label="vwx30 == vwx40",fontsize=16,color="magenta"];3196 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3196 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3197[label="compare1 (vwx198,vwx199,vwx200) (vwx201,vwx202,vwx203) ((vwx198,vwx199,vwx200) <= (vwx201,vwx202,vwx203))",fontsize=16,color="black",shape="box"];3197 -> 3359[label="",style="solid", color="black", weight=3]; 3198[label="EQ",fontsize=16,color="green",shape="box"];3014[label="compare0 (Just vwx30) Nothing True",fontsize=16,color="black",shape="box"];3014 -> 3199[label="",style="solid", color="black", weight=3]; 3015[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];5405[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5405[label="",style="solid", color="burlywood", weight=9]; 5405 -> 3200[label="",style="solid", color="burlywood", weight=3]; 3016[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];3016 -> 3201[label="",style="solid", color="black", weight=3]; 3017[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];3017 -> 3202[label="",style="solid", color="black", weight=3]; 3018[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];3018 -> 3203[label="",style="solid", color="black", weight=3]; 3019[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];3019 -> 3204[label="",style="solid", color="black", weight=3]; 3020[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];3020 -> 3205[label="",style="solid", color="black", weight=3]; 3021[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];5406[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];3021 -> 5406[label="",style="solid", color="burlywood", weight=9]; 5406 -> 3206[label="",style="solid", color="burlywood", weight=3]; 3022[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];3022 -> 3207[label="",style="solid", color="black", weight=3]; 3023[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];3023 -> 3208[label="",style="solid", color="black", weight=3]; 3024[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];3024 -> 3209[label="",style="solid", color="black", weight=3]; 3025[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];3025 -> 3210[label="",style="solid", color="black", weight=3]; 3026[label="LT == LT",fontsize=16,color="black",shape="box"];3026 -> 3211[label="",style="solid", color="black", weight=3]; 3027[label="LT == EQ",fontsize=16,color="black",shape="box"];3027 -> 3212[label="",style="solid", color="black", weight=3]; 3028[label="LT == GT",fontsize=16,color="black",shape="box"];3028 -> 3213[label="",style="solid", color="black", weight=3]; 3029[label="EQ == LT",fontsize=16,color="black",shape="box"];3029 -> 3214[label="",style="solid", color="black", weight=3]; 3030[label="EQ == EQ",fontsize=16,color="black",shape="box"];3030 -> 3215[label="",style="solid", color="black", weight=3]; 3031[label="EQ == GT",fontsize=16,color="black",shape="box"];3031 -> 3216[label="",style="solid", color="black", weight=3]; 3032[label="GT == LT",fontsize=16,color="black",shape="box"];3032 -> 3217[label="",style="solid", color="black", weight=3]; 3033[label="GT == EQ",fontsize=16,color="black",shape="box"];3033 -> 3218[label="",style="solid", color="black", weight=3]; 3034[label="GT == GT",fontsize=16,color="black",shape="box"];3034 -> 3219[label="",style="solid", color="black", weight=3]; 3035[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];3035 -> 3220[label="",style="solid", color="black", weight=3]; 3036[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];3036 -> 3221[label="",style="solid", color="black", weight=3]; 3037[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];3037 -> 3222[label="",style="solid", color="black", weight=3]; 3038[label="[] == []",fontsize=16,color="black",shape="box"];3038 -> 3223[label="",style="solid", color="black", weight=3]; 3039[label="() == ()",fontsize=16,color="black",shape="box"];3039 -> 3224[label="",style="solid", color="black", weight=3]; 3040[label="False == False",fontsize=16,color="black",shape="box"];3040 -> 3225[label="",style="solid", color="black", weight=3]; 3041[label="False == True",fontsize=16,color="black",shape="box"];3041 -> 3226[label="",style="solid", color="black", weight=3]; 3042[label="True == False",fontsize=16,color="black",shape="box"];3042 -> 3227[label="",style="solid", color="black", weight=3]; 3043[label="True == True",fontsize=16,color="black",shape="box"];3043 -> 3228[label="",style="solid", color="black", weight=3]; 3044[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];3044 -> 3229[label="",style="solid", color="black", weight=3]; 3045[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];3045 -> 3230[label="",style="solid", color="black", weight=3]; 3046[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];5407[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];3046 -> 5407[label="",style="solid", color="burlywood", weight=9]; 5407 -> 3231[label="",style="solid", color="burlywood", weight=3]; 5408[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];3046 -> 5408[label="",style="solid", color="burlywood", weight=9]; 5408 -> 3232[label="",style="solid", color="burlywood", weight=3]; 3047[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];5409[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];3047 -> 5409[label="",style="solid", color="burlywood", weight=9]; 5409 -> 3233[label="",style="solid", color="burlywood", weight=3]; 5410[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];3047 -> 5410[label="",style="solid", color="burlywood", weight=9]; 5410 -> 3234[label="",style="solid", color="burlywood", weight=3]; 3048[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];5411[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];3048 -> 5411[label="",style="solid", color="burlywood", weight=9]; 5411 -> 3235[label="",style="solid", color="burlywood", weight=3]; 3049[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];3049 -> 3236[label="",style="solid", color="black", weight=3]; 3238[label="vwx158",fontsize=16,color="green",shape="box"];3239[label="Just vwx157 <= Just vwx158",fontsize=16,color="black",shape="box"];3239 -> 3360[label="",style="solid", color="black", weight=3]; 3240[label="vwx157",fontsize=16,color="green",shape="box"];3237[label="compare1 (Just vwx234) (Just vwx235) vwx236",fontsize=16,color="burlywood",shape="triangle"];5412[label="vwx236/False",fontsize=10,color="white",style="solid",shape="box"];3237 -> 5412[label="",style="solid", color="burlywood", weight=9]; 5412 -> 3361[label="",style="solid", color="burlywood", weight=3]; 5413[label="vwx236/True",fontsize=10,color="white",style="solid",shape="box"];3237 -> 5413[label="",style="solid", color="burlywood", weight=9]; 5413 -> 3362[label="",style="solid", color="burlywood", weight=3]; 3051[label="Pos (primMulNat vwx400 vwx310)",fontsize=16,color="green",shape="box"];3051 -> 3363[label="",style="dashed", color="green", weight=3]; 3052[label="Neg (primMulNat vwx400 vwx310)",fontsize=16,color="green",shape="box"];3052 -> 3364[label="",style="dashed", color="green", weight=3]; 3053[label="Neg (primMulNat vwx400 vwx310)",fontsize=16,color="green",shape="box"];3053 -> 3365[label="",style="dashed", color="green", weight=3]; 3054[label="Pos (primMulNat vwx400 vwx310)",fontsize=16,color="green",shape="box"];3054 -> 3366[label="",style="dashed", color="green", weight=3]; 3055 -> 2600[label="",style="dashed", color="red", weight=0]; 3055[label="primMulInt vwx400 vwx310",fontsize=16,color="magenta"];3055 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3056[label="compare0 True False True",fontsize=16,color="black",shape="box"];3056 -> 3369[label="",style="solid", color="black", weight=3]; 3057[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];3057 -> 3370[label="",style="solid", color="black", weight=3]; 3058[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];3058 -> 3371[label="",style="solid", color="black", weight=3]; 3059[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];3059 -> 3372[label="",style="solid", color="black", weight=3]; 3374[label="Left vwx169 <= Left vwx170",fontsize=16,color="black",shape="box"];3374 -> 3380[label="",style="solid", color="black", weight=3]; 3375[label="vwx170",fontsize=16,color="green",shape="box"];3376[label="vwx169",fontsize=16,color="green",shape="box"];3373[label="compare1 (Left vwx241) (Left vwx242) vwx243",fontsize=16,color="burlywood",shape="triangle"];5414[label="vwx243/False",fontsize=10,color="white",style="solid",shape="box"];3373 -> 5414[label="",style="solid", color="burlywood", weight=9]; 5414 -> 3381[label="",style="solid", color="burlywood", weight=3]; 5415[label="vwx243/True",fontsize=10,color="white",style="solid",shape="box"];3373 -> 5415[label="",style="solid", color="burlywood", weight=9]; 5415 -> 3382[label="",style="solid", color="burlywood", weight=3]; 3061[label="compare0 (Right vwx30) (Left vwx40) True",fontsize=16,color="black",shape="box"];3061 -> 3383[label="",style="solid", color="black", weight=3]; 3385[label="Right vwx176 <= Right vwx177",fontsize=16,color="black",shape="box"];3385 -> 3391[label="",style="solid", color="black", weight=3]; 3386[label="vwx177",fontsize=16,color="green",shape="box"];3387[label="vwx176",fontsize=16,color="green",shape="box"];3384[label="compare1 (Right vwx248) (Right vwx249) vwx250",fontsize=16,color="burlywood",shape="triangle"];5416[label="vwx250/False",fontsize=10,color="white",style="solid",shape="box"];3384 -> 5416[label="",style="solid", color="burlywood", weight=9]; 5416 -> 3392[label="",style="solid", color="burlywood", weight=3]; 5417[label="vwx250/True",fontsize=10,color="white",style="solid",shape="box"];3384 -> 5417[label="",style="solid", color="burlywood", weight=9]; 5417 -> 3393[label="",style="solid", color="burlywood", weight=3]; 3244[label="vwx41",fontsize=16,color="green",shape="box"];3245[label="vwx31",fontsize=16,color="green",shape="box"];3246[label="vwx41",fontsize=16,color="green",shape="box"];3247[label="vwx31",fontsize=16,color="green",shape="box"];3248[label="vwx41",fontsize=16,color="green",shape="box"];3249[label="vwx31",fontsize=16,color="green",shape="box"];3250[label="vwx41",fontsize=16,color="green",shape="box"];3251[label="vwx31",fontsize=16,color="green",shape="box"];3252[label="vwx41",fontsize=16,color="green",shape="box"];3253[label="vwx31",fontsize=16,color="green",shape="box"];3254[label="vwx41",fontsize=16,color="green",shape="box"];3255[label="vwx31",fontsize=16,color="green",shape="box"];3256[label="vwx41",fontsize=16,color="green",shape="box"];3257[label="vwx31",fontsize=16,color="green",shape="box"];3258[label="vwx41",fontsize=16,color="green",shape="box"];3259[label="vwx31",fontsize=16,color="green",shape="box"];3260[label="vwx41",fontsize=16,color="green",shape="box"];3261[label="vwx31",fontsize=16,color="green",shape="box"];3262[label="vwx41",fontsize=16,color="green",shape="box"];3263[label="vwx31",fontsize=16,color="green",shape="box"];3264[label="vwx41",fontsize=16,color="green",shape="box"];3265[label="vwx31",fontsize=16,color="green",shape="box"];3266[label="vwx41",fontsize=16,color="green",shape="box"];3267[label="vwx31",fontsize=16,color="green",shape="box"];3268[label="vwx41",fontsize=16,color="green",shape="box"];3269[label="vwx31",fontsize=16,color="green",shape="box"];3270[label="vwx41",fontsize=16,color="green",shape="box"];3271[label="vwx31",fontsize=16,color="green",shape="box"];3272[label="vwx40",fontsize=16,color="green",shape="box"];3273[label="vwx30",fontsize=16,color="green",shape="box"];3274[label="vwx40",fontsize=16,color="green",shape="box"];3275[label="vwx30",fontsize=16,color="green",shape="box"];3276[label="vwx40",fontsize=16,color="green",shape="box"];3277[label="vwx30",fontsize=16,color="green",shape="box"];3278[label="vwx40",fontsize=16,color="green",shape="box"];3279[label="vwx30",fontsize=16,color="green",shape="box"];3280[label="vwx40",fontsize=16,color="green",shape="box"];3281[label="vwx30",fontsize=16,color="green",shape="box"];3282[label="vwx40",fontsize=16,color="green",shape="box"];3283[label="vwx30",fontsize=16,color="green",shape="box"];3284[label="vwx40",fontsize=16,color="green",shape="box"];3285[label="vwx30",fontsize=16,color="green",shape="box"];3286[label="vwx40",fontsize=16,color="green",shape="box"];3287[label="vwx30",fontsize=16,color="green",shape="box"];3288[label="vwx40",fontsize=16,color="green",shape="box"];3289[label="vwx30",fontsize=16,color="green",shape="box"];3290[label="vwx40",fontsize=16,color="green",shape="box"];3291[label="vwx30",fontsize=16,color="green",shape="box"];3292[label="vwx40",fontsize=16,color="green",shape="box"];3293[label="vwx30",fontsize=16,color="green",shape="box"];3294[label="vwx40",fontsize=16,color="green",shape="box"];3295[label="vwx30",fontsize=16,color="green",shape="box"];3296[label="vwx40",fontsize=16,color="green",shape="box"];3297[label="vwx30",fontsize=16,color="green",shape="box"];3298[label="vwx40",fontsize=16,color="green",shape="box"];3299[label="vwx30",fontsize=16,color="green",shape="box"];3300[label="False",fontsize=16,color="green",shape="box"];3301[label="vwx229",fontsize=16,color="green",shape="box"];3302 -> 3573[label="",style="dashed", color="red", weight=0]; 3302[label="compare1 (vwx211,vwx212) (vwx213,vwx214) (vwx211 < vwx213 || vwx211 == vwx213 && vwx212 <= vwx214)",fontsize=16,color="magenta"];3302 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3302 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3302 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3302 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3302 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3302 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3303 -> 2660[label="",style="dashed", color="red", weight=0]; 3303[label="vwx32 == vwx42",fontsize=16,color="magenta"];3303 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3303 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3304 -> 2661[label="",style="dashed", color="red", weight=0]; 3304[label="vwx32 == vwx42",fontsize=16,color="magenta"];3304 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3304 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3305 -> 2662[label="",style="dashed", color="red", weight=0]; 3305[label="vwx32 == vwx42",fontsize=16,color="magenta"];3305 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3305 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3306 -> 2663[label="",style="dashed", color="red", weight=0]; 3306[label="vwx32 == vwx42",fontsize=16,color="magenta"];3306 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3306 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3307 -> 2664[label="",style="dashed", color="red", weight=0]; 3307[label="vwx32 == vwx42",fontsize=16,color="magenta"];3307 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3307 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3308 -> 2665[label="",style="dashed", color="red", weight=0]; 3308[label="vwx32 == vwx42",fontsize=16,color="magenta"];3308 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3308 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3309 -> 2666[label="",style="dashed", color="red", weight=0]; 3309[label="vwx32 == vwx42",fontsize=16,color="magenta"];3309 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3309 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3310 -> 2667[label="",style="dashed", color="red", weight=0]; 3310[label="vwx32 == vwx42",fontsize=16,color="magenta"];3310 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3310 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3311 -> 2668[label="",style="dashed", color="red", weight=0]; 3311[label="vwx32 == vwx42",fontsize=16,color="magenta"];3311 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3311 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3312 -> 2669[label="",style="dashed", color="red", weight=0]; 3312[label="vwx32 == vwx42",fontsize=16,color="magenta"];3312 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3313 -> 2670[label="",style="dashed", color="red", weight=0]; 3313[label="vwx32 == vwx42",fontsize=16,color="magenta"];3313 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3314 -> 2671[label="",style="dashed", color="red", weight=0]; 3314[label="vwx32 == vwx42",fontsize=16,color="magenta"];3314 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3314 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3315 -> 2672[label="",style="dashed", color="red", weight=0]; 3315[label="vwx32 == vwx42",fontsize=16,color="magenta"];3315 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3315 -> 3421[label="",style="dashed", color="magenta", weight=3]; 3316 -> 2673[label="",style="dashed", color="red", weight=0]; 3316[label="vwx32 == vwx42",fontsize=16,color="magenta"];3316 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3316 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3317 -> 2660[label="",style="dashed", color="red", weight=0]; 3317[label="vwx31 == vwx41",fontsize=16,color="magenta"];3317 -> 3424[label="",style="dashed", color="magenta", weight=3]; 3317 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3318 -> 2661[label="",style="dashed", color="red", weight=0]; 3318[label="vwx31 == vwx41",fontsize=16,color="magenta"];3318 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3319 -> 2662[label="",style="dashed", color="red", weight=0]; 3319[label="vwx31 == vwx41",fontsize=16,color="magenta"];3319 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3319 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3320 -> 2663[label="",style="dashed", color="red", weight=0]; 3320[label="vwx31 == vwx41",fontsize=16,color="magenta"];3320 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3320 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3321 -> 2664[label="",style="dashed", color="red", weight=0]; 3321[label="vwx31 == vwx41",fontsize=16,color="magenta"];3321 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3322 -> 2665[label="",style="dashed", color="red", weight=0]; 3322[label="vwx31 == vwx41",fontsize=16,color="magenta"];3322 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3322 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3323 -> 2666[label="",style="dashed", color="red", weight=0]; 3323[label="vwx31 == vwx41",fontsize=16,color="magenta"];3323 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3324 -> 2667[label="",style="dashed", color="red", weight=0]; 3324[label="vwx31 == vwx41",fontsize=16,color="magenta"];3324 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3325 -> 2668[label="",style="dashed", color="red", weight=0]; 3325[label="vwx31 == vwx41",fontsize=16,color="magenta"];3325 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3325 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3326 -> 2669[label="",style="dashed", color="red", weight=0]; 3326[label="vwx31 == vwx41",fontsize=16,color="magenta"];3326 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3326 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3327 -> 2670[label="",style="dashed", color="red", weight=0]; 3327[label="vwx31 == vwx41",fontsize=16,color="magenta"];3327 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3327 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3328 -> 2671[label="",style="dashed", color="red", weight=0]; 3328[label="vwx31 == vwx41",fontsize=16,color="magenta"];3328 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3328 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3329 -> 2672[label="",style="dashed", color="red", weight=0]; 3329[label="vwx31 == vwx41",fontsize=16,color="magenta"];3329 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3329 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3330 -> 2673[label="",style="dashed", color="red", weight=0]; 3330[label="vwx31 == vwx41",fontsize=16,color="magenta"];3330 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3331[label="vwx40",fontsize=16,color="green",shape="box"];3332[label="vwx30",fontsize=16,color="green",shape="box"];3333[label="vwx40",fontsize=16,color="green",shape="box"];3334[label="vwx30",fontsize=16,color="green",shape="box"];3335[label="vwx40",fontsize=16,color="green",shape="box"];3336[label="vwx30",fontsize=16,color="green",shape="box"];3337[label="vwx40",fontsize=16,color="green",shape="box"];3338[label="vwx30",fontsize=16,color="green",shape="box"];3339[label="vwx40",fontsize=16,color="green",shape="box"];3340[label="vwx30",fontsize=16,color="green",shape="box"];3341[label="vwx40",fontsize=16,color="green",shape="box"];3342[label="vwx30",fontsize=16,color="green",shape="box"];3343[label="vwx40",fontsize=16,color="green",shape="box"];3344[label="vwx30",fontsize=16,color="green",shape="box"];3345[label="vwx40",fontsize=16,color="green",shape="box"];3346[label="vwx30",fontsize=16,color="green",shape="box"];3347[label="vwx40",fontsize=16,color="green",shape="box"];3348[label="vwx30",fontsize=16,color="green",shape="box"];3349[label="vwx40",fontsize=16,color="green",shape="box"];3350[label="vwx30",fontsize=16,color="green",shape="box"];3351[label="vwx40",fontsize=16,color="green",shape="box"];3352[label="vwx30",fontsize=16,color="green",shape="box"];3353[label="vwx40",fontsize=16,color="green",shape="box"];3354[label="vwx30",fontsize=16,color="green",shape="box"];3355[label="vwx40",fontsize=16,color="green",shape="box"];3356[label="vwx30",fontsize=16,color="green",shape="box"];3357[label="vwx40",fontsize=16,color="green",shape="box"];3358[label="vwx30",fontsize=16,color="green",shape="box"];3359 -> 3606[label="",style="dashed", color="red", weight=0]; 3359[label="compare1 (vwx198,vwx199,vwx200) (vwx201,vwx202,vwx203) (vwx198 < vwx201 || vwx198 == vwx201 && (vwx199 < vwx202 || vwx199 == vwx202 && vwx200 <= vwx203))",fontsize=16,color="magenta"];3359 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3199[label="GT",fontsize=16,color="green",shape="box"];3200[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];3200 -> 3454[label="",style="solid", color="black", weight=3]; 3201[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5418[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5418[label="",style="solid", color="blue", weight=9]; 5418 -> 3455[label="",style="solid", color="blue", weight=3]; 5419[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5419[label="",style="solid", color="blue", weight=9]; 5419 -> 3456[label="",style="solid", color="blue", weight=3]; 5420[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5420[label="",style="solid", color="blue", weight=9]; 5420 -> 3457[label="",style="solid", color="blue", weight=3]; 5421[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5421[label="",style="solid", color="blue", weight=9]; 5421 -> 3458[label="",style="solid", color="blue", weight=3]; 5422[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5422[label="",style="solid", color="blue", weight=9]; 5422 -> 3459[label="",style="solid", color="blue", weight=3]; 5423[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5423[label="",style="solid", color="blue", weight=9]; 5423 -> 3460[label="",style="solid", color="blue", weight=3]; 5424[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5424[label="",style="solid", color="blue", weight=9]; 5424 -> 3461[label="",style="solid", color="blue", weight=3]; 5425[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5425[label="",style="solid", color="blue", weight=9]; 5425 -> 3462[label="",style="solid", color="blue", weight=3]; 5426[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5426[label="",style="solid", color="blue", weight=9]; 5426 -> 3463[label="",style="solid", color="blue", weight=3]; 5427[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5427[label="",style="solid", color="blue", weight=9]; 5427 -> 3464[label="",style="solid", color="blue", weight=3]; 5428[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5428[label="",style="solid", color="blue", weight=9]; 5428 -> 3465[label="",style="solid", color="blue", weight=3]; 5429[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5429[label="",style="solid", color="blue", weight=9]; 5429 -> 3466[label="",style="solid", color="blue", weight=3]; 5430[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5430[label="",style="solid", color="blue", weight=9]; 5430 -> 3467[label="",style="solid", color="blue", weight=3]; 5431[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5431[label="",style="solid", color="blue", weight=9]; 5431 -> 3468[label="",style="solid", color="blue", weight=3]; 3202[label="False",fontsize=16,color="green",shape="box"];3203[label="False",fontsize=16,color="green",shape="box"];3204[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5432[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5432[label="",style="solid", color="blue", weight=9]; 5432 -> 3469[label="",style="solid", color="blue", weight=3]; 5433[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5433[label="",style="solid", color="blue", weight=9]; 5433 -> 3470[label="",style="solid", color="blue", weight=3]; 5434[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5434[label="",style="solid", color="blue", weight=9]; 5434 -> 3471[label="",style="solid", color="blue", weight=3]; 5435[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5435[label="",style="solid", color="blue", weight=9]; 5435 -> 3472[label="",style="solid", color="blue", weight=3]; 5436[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5436[label="",style="solid", color="blue", weight=9]; 5436 -> 3473[label="",style="solid", color="blue", weight=3]; 5437[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5437[label="",style="solid", color="blue", weight=9]; 5437 -> 3474[label="",style="solid", color="blue", weight=3]; 5438[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5438[label="",style="solid", color="blue", weight=9]; 5438 -> 3475[label="",style="solid", color="blue", weight=3]; 5439[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5439[label="",style="solid", color="blue", weight=9]; 5439 -> 3476[label="",style="solid", color="blue", weight=3]; 5440[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5440[label="",style="solid", color="blue", weight=9]; 5440 -> 3477[label="",style="solid", color="blue", weight=3]; 5441[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5441[label="",style="solid", color="blue", weight=9]; 5441 -> 3478[label="",style="solid", color="blue", weight=3]; 5442[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5442[label="",style="solid", color="blue", weight=9]; 5442 -> 3479[label="",style="solid", color="blue", weight=3]; 5443[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5443[label="",style="solid", color="blue", weight=9]; 5443 -> 3480[label="",style="solid", color="blue", weight=3]; 5444[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5444[label="",style="solid", color="blue", weight=9]; 5444 -> 3481[label="",style="solid", color="blue", weight=3]; 5445[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5445[label="",style="solid", color="blue", weight=9]; 5445 -> 3482[label="",style="solid", color="blue", weight=3]; 3205 -> 3140[label="",style="dashed", color="red", weight=0]; 3205[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];3205 -> 3483[label="",style="dashed", color="magenta", weight=3]; 3205 -> 3484[label="",style="dashed", color="magenta", weight=3]; 3206[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];3206 -> 3485[label="",style="solid", color="black", weight=3]; 3207[label="True",fontsize=16,color="green",shape="box"];3208[label="False",fontsize=16,color="green",shape="box"];3209[label="False",fontsize=16,color="green",shape="box"];3210[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5446[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5446[label="",style="solid", color="blue", weight=9]; 5446 -> 3486[label="",style="solid", color="blue", weight=3]; 5447[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5447[label="",style="solid", color="blue", weight=9]; 5447 -> 3487[label="",style="solid", color="blue", weight=3]; 5448[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5448[label="",style="solid", color="blue", weight=9]; 5448 -> 3488[label="",style="solid", color="blue", weight=3]; 5449[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5449[label="",style="solid", color="blue", weight=9]; 5449 -> 3489[label="",style="solid", color="blue", weight=3]; 5450[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5450[label="",style="solid", color="blue", weight=9]; 5450 -> 3490[label="",style="solid", color="blue", weight=3]; 5451[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5451[label="",style="solid", color="blue", weight=9]; 5451 -> 3491[label="",style="solid", color="blue", weight=3]; 5452[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5452[label="",style="solid", color="blue", weight=9]; 5452 -> 3492[label="",style="solid", color="blue", weight=3]; 5453[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5453[label="",style="solid", color="blue", weight=9]; 5453 -> 3493[label="",style="solid", color="blue", weight=3]; 5454[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5454[label="",style="solid", color="blue", weight=9]; 5454 -> 3494[label="",style="solid", color="blue", weight=3]; 5455[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5455[label="",style="solid", color="blue", weight=9]; 5455 -> 3495[label="",style="solid", color="blue", weight=3]; 5456[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5456[label="",style="solid", color="blue", weight=9]; 5456 -> 3496[label="",style="solid", color="blue", weight=3]; 5457[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5457[label="",style="solid", color="blue", weight=9]; 5457 -> 3497[label="",style="solid", color="blue", weight=3]; 5458[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5458[label="",style="solid", color="blue", weight=9]; 5458 -> 3498[label="",style="solid", color="blue", weight=3]; 5459[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5459[label="",style="solid", color="blue", weight=9]; 5459 -> 3499[label="",style="solid", color="blue", weight=3]; 3211[label="True",fontsize=16,color="green",shape="box"];3212[label="False",fontsize=16,color="green",shape="box"];3213[label="False",fontsize=16,color="green",shape="box"];3214[label="False",fontsize=16,color="green",shape="box"];3215[label="True",fontsize=16,color="green",shape="box"];3216[label="False",fontsize=16,color="green",shape="box"];3217[label="False",fontsize=16,color="green",shape="box"];3218[label="False",fontsize=16,color="green",shape="box"];3219[label="True",fontsize=16,color="green",shape="box"];3220 -> 3140[label="",style="dashed", color="red", weight=0]; 3220[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];3220 -> 3500[label="",style="dashed", color="magenta", weight=3]; 3220 -> 3501[label="",style="dashed", color="magenta", weight=3]; 3221[label="False",fontsize=16,color="green",shape="box"];3222[label="False",fontsize=16,color="green",shape="box"];3223[label="True",fontsize=16,color="green",shape="box"];3224[label="True",fontsize=16,color="green",shape="box"];3225[label="True",fontsize=16,color="green",shape="box"];3226[label="False",fontsize=16,color="green",shape="box"];3227[label="False",fontsize=16,color="green",shape="box"];3228[label="True",fontsize=16,color="green",shape="box"];3229 -> 2809[label="",style="dashed", color="red", weight=0]; 3229[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];3229 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3140[label="",style="dashed", color="red", weight=0]; 3230[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];3230 -> 3504[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3505[label="",style="dashed", color="magenta", weight=3]; 3231[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];5460[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5460[label="",style="solid", color="burlywood", weight=9]; 5460 -> 3506[label="",style="solid", color="burlywood", weight=3]; 5461[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5461[label="",style="solid", color="burlywood", weight=9]; 5461 -> 3507[label="",style="solid", color="burlywood", weight=3]; 3232[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];5462[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];3232 -> 5462[label="",style="solid", color="burlywood", weight=9]; 5462 -> 3508[label="",style="solid", color="burlywood", weight=3]; 5463[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];3232 -> 5463[label="",style="solid", color="burlywood", weight=9]; 5463 -> 3509[label="",style="solid", color="burlywood", weight=3]; 3233[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];5464[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];3233 -> 5464[label="",style="solid", color="burlywood", weight=9]; 5464 -> 3510[label="",style="solid", color="burlywood", weight=3]; 5465[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];3233 -> 5465[label="",style="solid", color="burlywood", weight=9]; 5465 -> 3511[label="",style="solid", color="burlywood", weight=3]; 3234[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];5466[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5466[label="",style="solid", color="burlywood", weight=9]; 5466 -> 3512[label="",style="solid", color="burlywood", weight=3]; 5467[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];3234 -> 5467[label="",style="solid", color="burlywood", weight=9]; 5467 -> 3513[label="",style="solid", color="burlywood", weight=3]; 3235[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];3235 -> 3514[label="",style="solid", color="black", weight=3]; 3236 -> 3140[label="",style="dashed", color="red", weight=0]; 3236[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];3236 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3360[label="vwx157 <= vwx158",fontsize=16,color="blue",shape="box"];5468[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5468[label="",style="solid", color="blue", weight=9]; 5468 -> 3517[label="",style="solid", color="blue", weight=3]; 5469[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5469[label="",style="solid", color="blue", weight=9]; 5469 -> 3518[label="",style="solid", color="blue", weight=3]; 5470[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5470[label="",style="solid", color="blue", weight=9]; 5470 -> 3519[label="",style="solid", color="blue", weight=3]; 5471[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5471[label="",style="solid", color="blue", weight=9]; 5471 -> 3520[label="",style="solid", color="blue", weight=3]; 5472[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5472[label="",style="solid", color="blue", weight=9]; 5472 -> 3521[label="",style="solid", color="blue", weight=3]; 5473[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5473[label="",style="solid", color="blue", weight=9]; 5473 -> 3522[label="",style="solid", color="blue", weight=3]; 5474[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5474[label="",style="solid", color="blue", weight=9]; 5474 -> 3523[label="",style="solid", color="blue", weight=3]; 5475[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5475[label="",style="solid", color="blue", weight=9]; 5475 -> 3524[label="",style="solid", color="blue", weight=3]; 5476[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5476[label="",style="solid", color="blue", weight=9]; 5476 -> 3525[label="",style="solid", color="blue", weight=3]; 5477[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5477[label="",style="solid", color="blue", weight=9]; 5477 -> 3526[label="",style="solid", color="blue", weight=3]; 5478[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5478[label="",style="solid", color="blue", weight=9]; 5478 -> 3527[label="",style="solid", color="blue", weight=3]; 5479[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5479[label="",style="solid", color="blue", weight=9]; 5479 -> 3528[label="",style="solid", color="blue", weight=3]; 5480[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5480[label="",style="solid", color="blue", weight=9]; 5480 -> 3529[label="",style="solid", color="blue", weight=3]; 5481[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3360 -> 5481[label="",style="solid", color="blue", weight=9]; 5481 -> 3530[label="",style="solid", color="blue", weight=3]; 3361[label="compare1 (Just vwx234) (Just vwx235) False",fontsize=16,color="black",shape="box"];3361 -> 3531[label="",style="solid", color="black", weight=3]; 3362[label="compare1 (Just vwx234) (Just vwx235) True",fontsize=16,color="black",shape="box"];3362 -> 3532[label="",style="solid", color="black", weight=3]; 3363[label="primMulNat vwx400 vwx310",fontsize=16,color="burlywood",shape="triangle"];5482[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3363 -> 5482[label="",style="solid", color="burlywood", weight=9]; 5482 -> 3533[label="",style="solid", color="burlywood", weight=3]; 5483[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3363 -> 5483[label="",style="solid", color="burlywood", weight=9]; 5483 -> 3534[label="",style="solid", color="burlywood", weight=3]; 3364 -> 3363[label="",style="dashed", color="red", weight=0]; 3364[label="primMulNat vwx400 vwx310",fontsize=16,color="magenta"];3364 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3365 -> 3363[label="",style="dashed", color="red", weight=0]; 3365[label="primMulNat vwx400 vwx310",fontsize=16,color="magenta"];3365 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3366 -> 3363[label="",style="dashed", color="red", weight=0]; 3366[label="primMulNat vwx400 vwx310",fontsize=16,color="magenta"];3366 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3366 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3367[label="vwx310",fontsize=16,color="green",shape="box"];3368[label="vwx400",fontsize=16,color="green",shape="box"];3369[label="GT",fontsize=16,color="green",shape="box"];3370[label="GT",fontsize=16,color="green",shape="box"];3371[label="GT",fontsize=16,color="green",shape="box"];3372[label="GT",fontsize=16,color="green",shape="box"];3380[label="vwx169 <= vwx170",fontsize=16,color="blue",shape="box"];5484[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5484[label="",style="solid", color="blue", weight=9]; 5484 -> 3539[label="",style="solid", color="blue", weight=3]; 5485[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5485[label="",style="solid", color="blue", weight=9]; 5485 -> 3540[label="",style="solid", color="blue", weight=3]; 5486[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5486[label="",style="solid", color="blue", weight=9]; 5486 -> 3541[label="",style="solid", color="blue", weight=3]; 5487[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5487[label="",style="solid", color="blue", weight=9]; 5487 -> 3542[label="",style="solid", color="blue", weight=3]; 5488[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5488[label="",style="solid", color="blue", weight=9]; 5488 -> 3543[label="",style="solid", color="blue", weight=3]; 5489[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5489[label="",style="solid", color="blue", weight=9]; 5489 -> 3544[label="",style="solid", color="blue", weight=3]; 5490[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5490[label="",style="solid", color="blue", weight=9]; 5490 -> 3545[label="",style="solid", color="blue", weight=3]; 5491[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5491[label="",style="solid", color="blue", weight=9]; 5491 -> 3546[label="",style="solid", color="blue", weight=3]; 5492[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5492[label="",style="solid", color="blue", weight=9]; 5492 -> 3547[label="",style="solid", color="blue", weight=3]; 5493[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5493[label="",style="solid", color="blue", weight=9]; 5493 -> 3548[label="",style="solid", color="blue", weight=3]; 5494[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5494[label="",style="solid", color="blue", weight=9]; 5494 -> 3549[label="",style="solid", color="blue", weight=3]; 5495[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5495[label="",style="solid", color="blue", weight=9]; 5495 -> 3550[label="",style="solid", color="blue", weight=3]; 5496[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5496[label="",style="solid", color="blue", weight=9]; 5496 -> 3551[label="",style="solid", color="blue", weight=3]; 5497[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3380 -> 5497[label="",style="solid", color="blue", weight=9]; 5497 -> 3552[label="",style="solid", color="blue", weight=3]; 3381[label="compare1 (Left vwx241) (Left vwx242) False",fontsize=16,color="black",shape="box"];3381 -> 3553[label="",style="solid", color="black", weight=3]; 3382[label="compare1 (Left vwx241) (Left vwx242) True",fontsize=16,color="black",shape="box"];3382 -> 3554[label="",style="solid", color="black", weight=3]; 3383[label="GT",fontsize=16,color="green",shape="box"];3391[label="vwx176 <= vwx177",fontsize=16,color="blue",shape="box"];5498[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5498[label="",style="solid", color="blue", weight=9]; 5498 -> 3555[label="",style="solid", color="blue", weight=3]; 5499[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5499[label="",style="solid", color="blue", weight=9]; 5499 -> 3556[label="",style="solid", color="blue", weight=3]; 5500[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5500[label="",style="solid", color="blue", weight=9]; 5500 -> 3557[label="",style="solid", color="blue", weight=3]; 5501[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5501[label="",style="solid", color="blue", weight=9]; 5501 -> 3558[label="",style="solid", color="blue", weight=3]; 5502[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5502[label="",style="solid", color="blue", weight=9]; 5502 -> 3559[label="",style="solid", color="blue", weight=3]; 5503[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5503[label="",style="solid", color="blue", weight=9]; 5503 -> 3560[label="",style="solid", color="blue", weight=3]; 5504[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5504[label="",style="solid", color="blue", weight=9]; 5504 -> 3561[label="",style="solid", color="blue", weight=3]; 5505[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5505[label="",style="solid", color="blue", weight=9]; 5505 -> 3562[label="",style="solid", color="blue", weight=3]; 5506[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5506[label="",style="solid", color="blue", weight=9]; 5506 -> 3563[label="",style="solid", color="blue", weight=3]; 5507[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5507[label="",style="solid", color="blue", weight=9]; 5507 -> 3564[label="",style="solid", color="blue", weight=3]; 5508[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5508[label="",style="solid", color="blue", weight=9]; 5508 -> 3565[label="",style="solid", color="blue", weight=3]; 5509[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5509[label="",style="solid", color="blue", weight=9]; 5509 -> 3566[label="",style="solid", color="blue", weight=3]; 5510[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5510[label="",style="solid", color="blue", weight=9]; 5510 -> 3567[label="",style="solid", color="blue", weight=3]; 5511[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5511[label="",style="solid", color="blue", weight=9]; 5511 -> 3568[label="",style="solid", color="blue", weight=3]; 3392[label="compare1 (Right vwx248) (Right vwx249) False",fontsize=16,color="black",shape="box"];3392 -> 3569[label="",style="solid", color="black", weight=3]; 3393[label="compare1 (Right vwx248) (Right vwx249) True",fontsize=16,color="black",shape="box"];3393 -> 3570[label="",style="solid", color="black", weight=3]; 3574[label="vwx214",fontsize=16,color="green",shape="box"];3575[label="vwx213",fontsize=16,color="green",shape="box"];3576[label="vwx211",fontsize=16,color="green",shape="box"];3577[label="vwx212",fontsize=16,color="green",shape="box"];3578[label="vwx211 < vwx213",fontsize=16,color="blue",shape="box"];5512[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5512[label="",style="solid", color="blue", weight=9]; 5512 -> 3586[label="",style="solid", color="blue", weight=3]; 5513[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5513[label="",style="solid", color="blue", weight=9]; 5513 -> 3587[label="",style="solid", color="blue", weight=3]; 5514[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5514[label="",style="solid", color="blue", weight=9]; 5514 -> 3588[label="",style="solid", color="blue", weight=3]; 5515[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5515[label="",style="solid", color="blue", weight=9]; 5515 -> 3589[label="",style="solid", color="blue", weight=3]; 5516[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5516[label="",style="solid", color="blue", weight=9]; 5516 -> 3590[label="",style="solid", color="blue", weight=3]; 5517[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5517[label="",style="solid", color="blue", weight=9]; 5517 -> 3591[label="",style="solid", color="blue", weight=3]; 5518[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5518[label="",style="solid", color="blue", weight=9]; 5518 -> 3592[label="",style="solid", color="blue", weight=3]; 5519[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5519[label="",style="solid", color="blue", weight=9]; 5519 -> 3593[label="",style="solid", color="blue", weight=3]; 5520[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5520[label="",style="solid", color="blue", weight=9]; 5520 -> 3594[label="",style="solid", color="blue", weight=3]; 5521[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5521[label="",style="solid", color="blue", weight=9]; 5521 -> 3595[label="",style="solid", color="blue", weight=3]; 5522[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5522[label="",style="solid", color="blue", weight=9]; 5522 -> 3596[label="",style="solid", color="blue", weight=3]; 5523[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5523[label="",style="solid", color="blue", weight=9]; 5523 -> 3597[label="",style="solid", color="blue", weight=3]; 5524[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5524[label="",style="solid", color="blue", weight=9]; 5524 -> 3598[label="",style="solid", color="blue", weight=3]; 5525[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3578 -> 5525[label="",style="solid", color="blue", weight=9]; 5525 -> 3599[label="",style="solid", color="blue", weight=3]; 3579 -> 3140[label="",style="dashed", color="red", weight=0]; 3579[label="vwx211 == vwx213 && vwx212 <= vwx214",fontsize=16,color="magenta"];3579 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3579 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3573[label="compare1 (vwx261,vwx262) (vwx263,vwx264) (vwx265 || vwx266)",fontsize=16,color="burlywood",shape="triangle"];5526[label="vwx265/False",fontsize=10,color="white",style="solid",shape="box"];3573 -> 5526[label="",style="solid", color="burlywood", weight=9]; 5526 -> 3602[label="",style="solid", color="burlywood", weight=3]; 5527[label="vwx265/True",fontsize=10,color="white",style="solid",shape="box"];3573 -> 5527[label="",style="solid", color="burlywood", weight=9]; 5527 -> 3603[label="",style="solid", color="burlywood", weight=3]; 3396[label="vwx42",fontsize=16,color="green",shape="box"];3397[label="vwx32",fontsize=16,color="green",shape="box"];3398[label="vwx42",fontsize=16,color="green",shape="box"];3399[label="vwx32",fontsize=16,color="green",shape="box"];3400[label="vwx42",fontsize=16,color="green",shape="box"];3401[label="vwx32",fontsize=16,color="green",shape="box"];3402[label="vwx42",fontsize=16,color="green",shape="box"];3403[label="vwx32",fontsize=16,color="green",shape="box"];3404[label="vwx42",fontsize=16,color="green",shape="box"];3405[label="vwx32",fontsize=16,color="green",shape="box"];3406[label="vwx42",fontsize=16,color="green",shape="box"];3407[label="vwx32",fontsize=16,color="green",shape="box"];3408[label="vwx42",fontsize=16,color="green",shape="box"];3409[label="vwx32",fontsize=16,color="green",shape="box"];3410[label="vwx42",fontsize=16,color="green",shape="box"];3411[label="vwx32",fontsize=16,color="green",shape="box"];3412[label="vwx42",fontsize=16,color="green",shape="box"];3413[label="vwx32",fontsize=16,color="green",shape="box"];3414[label="vwx42",fontsize=16,color="green",shape="box"];3415[label="vwx32",fontsize=16,color="green",shape="box"];3416[label="vwx42",fontsize=16,color="green",shape="box"];3417[label="vwx32",fontsize=16,color="green",shape="box"];3418[label="vwx42",fontsize=16,color="green",shape="box"];3419[label="vwx32",fontsize=16,color="green",shape="box"];3420[label="vwx42",fontsize=16,color="green",shape="box"];3421[label="vwx32",fontsize=16,color="green",shape="box"];3422[label="vwx42",fontsize=16,color="green",shape="box"];3423[label="vwx32",fontsize=16,color="green",shape="box"];3424[label="vwx41",fontsize=16,color="green",shape="box"];3425[label="vwx31",fontsize=16,color="green",shape="box"];3426[label="vwx41",fontsize=16,color="green",shape="box"];3427[label="vwx31",fontsize=16,color="green",shape="box"];3428[label="vwx41",fontsize=16,color="green",shape="box"];3429[label="vwx31",fontsize=16,color="green",shape="box"];3430[label="vwx41",fontsize=16,color="green",shape="box"];3431[label="vwx31",fontsize=16,color="green",shape="box"];3432[label="vwx41",fontsize=16,color="green",shape="box"];3433[label="vwx31",fontsize=16,color="green",shape="box"];3434[label="vwx41",fontsize=16,color="green",shape="box"];3435[label="vwx31",fontsize=16,color="green",shape="box"];3436[label="vwx41",fontsize=16,color="green",shape="box"];3437[label="vwx31",fontsize=16,color="green",shape="box"];3438[label="vwx41",fontsize=16,color="green",shape="box"];3439[label="vwx31",fontsize=16,color="green",shape="box"];3440[label="vwx41",fontsize=16,color="green",shape="box"];3441[label="vwx31",fontsize=16,color="green",shape="box"];3442[label="vwx41",fontsize=16,color="green",shape="box"];3443[label="vwx31",fontsize=16,color="green",shape="box"];3444[label="vwx41",fontsize=16,color="green",shape="box"];3445[label="vwx31",fontsize=16,color="green",shape="box"];3446[label="vwx41",fontsize=16,color="green",shape="box"];3447[label="vwx31",fontsize=16,color="green",shape="box"];3448[label="vwx41",fontsize=16,color="green",shape="box"];3449[label="vwx31",fontsize=16,color="green",shape="box"];3450[label="vwx41",fontsize=16,color="green",shape="box"];3451[label="vwx31",fontsize=16,color="green",shape="box"];3607[label="vwx201",fontsize=16,color="green",shape="box"];3608[label="vwx198 < vwx201",fontsize=16,color="blue",shape="box"];5528[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5528[label="",style="solid", color="blue", weight=9]; 5528 -> 3623[label="",style="solid", color="blue", weight=3]; 5529[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5529[label="",style="solid", color="blue", weight=9]; 5529 -> 3624[label="",style="solid", color="blue", weight=3]; 5530[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5530[label="",style="solid", color="blue", weight=9]; 5530 -> 3625[label="",style="solid", color="blue", weight=3]; 5531[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5531[label="",style="solid", color="blue", weight=9]; 5531 -> 3626[label="",style="solid", color="blue", weight=3]; 5532[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5532[label="",style="solid", color="blue", weight=9]; 5532 -> 3627[label="",style="solid", color="blue", weight=3]; 5533[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5533[label="",style="solid", color="blue", weight=9]; 5533 -> 3628[label="",style="solid", color="blue", weight=3]; 5534[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5534[label="",style="solid", color="blue", weight=9]; 5534 -> 3629[label="",style="solid", color="blue", weight=3]; 5535[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5535[label="",style="solid", color="blue", weight=9]; 5535 -> 3630[label="",style="solid", color="blue", weight=3]; 5536[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5536[label="",style="solid", color="blue", weight=9]; 5536 -> 3631[label="",style="solid", color="blue", weight=3]; 5537[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5537[label="",style="solid", color="blue", weight=9]; 5537 -> 3632[label="",style="solid", color="blue", weight=3]; 5538[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5538[label="",style="solid", color="blue", weight=9]; 5538 -> 3633[label="",style="solid", color="blue", weight=3]; 5539[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5539[label="",style="solid", color="blue", weight=9]; 5539 -> 3634[label="",style="solid", color="blue", weight=3]; 5540[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5540[label="",style="solid", color="blue", weight=9]; 5540 -> 3635[label="",style="solid", color="blue", weight=3]; 5541[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3608 -> 5541[label="",style="solid", color="blue", weight=9]; 5541 -> 3636[label="",style="solid", color="blue", weight=3]; 3609[label="vwx199",fontsize=16,color="green",shape="box"];3610[label="vwx200",fontsize=16,color="green",shape="box"];3611[label="vwx203",fontsize=16,color="green",shape="box"];3612 -> 3140[label="",style="dashed", color="red", weight=0]; 3612[label="vwx198 == vwx201 && (vwx199 < vwx202 || vwx199 == vwx202 && vwx200 <= vwx203)",fontsize=16,color="magenta"];3612 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3612 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3613[label="vwx198",fontsize=16,color="green",shape="box"];3614[label="vwx202",fontsize=16,color="green",shape="box"];3606[label="compare1 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) (vwx282 || vwx283)",fontsize=16,color="burlywood",shape="triangle"];5542[label="vwx282/False",fontsize=10,color="white",style="solid",shape="box"];3606 -> 5542[label="",style="solid", color="burlywood", weight=9]; 5542 -> 3639[label="",style="solid", color="burlywood", weight=3]; 5543[label="vwx282/True",fontsize=10,color="white",style="solid",shape="box"];3606 -> 5543[label="",style="solid", color="burlywood", weight=9]; 5543 -> 3640[label="",style="solid", color="burlywood", weight=3]; 3454 -> 2671[label="",style="dashed", color="red", weight=0]; 3454[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];3454 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3455 -> 2660[label="",style="dashed", color="red", weight=0]; 3455[label="vwx300 == vwx400",fontsize=16,color="magenta"];3455 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3455 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3456 -> 2661[label="",style="dashed", color="red", weight=0]; 3456[label="vwx300 == vwx400",fontsize=16,color="magenta"];3456 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3456 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3457 -> 2662[label="",style="dashed", color="red", weight=0]; 3457[label="vwx300 == vwx400",fontsize=16,color="magenta"];3457 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3458 -> 2663[label="",style="dashed", color="red", weight=0]; 3458[label="vwx300 == vwx400",fontsize=16,color="magenta"];3458 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3459 -> 2664[label="",style="dashed", color="red", weight=0]; 3459[label="vwx300 == vwx400",fontsize=16,color="magenta"];3459 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3460 -> 2665[label="",style="dashed", color="red", weight=0]; 3460[label="vwx300 == vwx400",fontsize=16,color="magenta"];3460 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3461 -> 2666[label="",style="dashed", color="red", weight=0]; 3461[label="vwx300 == vwx400",fontsize=16,color="magenta"];3461 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3462 -> 2667[label="",style="dashed", color="red", weight=0]; 3462[label="vwx300 == vwx400",fontsize=16,color="magenta"];3462 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3463 -> 2668[label="",style="dashed", color="red", weight=0]; 3463[label="vwx300 == vwx400",fontsize=16,color="magenta"];3463 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3464 -> 2669[label="",style="dashed", color="red", weight=0]; 3464[label="vwx300 == vwx400",fontsize=16,color="magenta"];3464 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3465 -> 2670[label="",style="dashed", color="red", weight=0]; 3465[label="vwx300 == vwx400",fontsize=16,color="magenta"];3465 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3466 -> 2671[label="",style="dashed", color="red", weight=0]; 3466[label="vwx300 == vwx400",fontsize=16,color="magenta"];3466 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3467 -> 2672[label="",style="dashed", color="red", weight=0]; 3467[label="vwx300 == vwx400",fontsize=16,color="magenta"];3467 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3468 -> 2673[label="",style="dashed", color="red", weight=0]; 3468[label="vwx300 == vwx400",fontsize=16,color="magenta"];3468 -> 3669[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3469 -> 2660[label="",style="dashed", color="red", weight=0]; 3469[label="vwx300 == vwx400",fontsize=16,color="magenta"];3469 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3470 -> 2661[label="",style="dashed", color="red", weight=0]; 3470[label="vwx300 == vwx400",fontsize=16,color="magenta"];3470 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3471 -> 2662[label="",style="dashed", color="red", weight=0]; 3471[label="vwx300 == vwx400",fontsize=16,color="magenta"];3471 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3472 -> 2663[label="",style="dashed", color="red", weight=0]; 3472[label="vwx300 == vwx400",fontsize=16,color="magenta"];3472 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3473 -> 2664[label="",style="dashed", color="red", weight=0]; 3473[label="vwx300 == vwx400",fontsize=16,color="magenta"];3473 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3474 -> 2665[label="",style="dashed", color="red", weight=0]; 3474[label="vwx300 == vwx400",fontsize=16,color="magenta"];3474 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3475 -> 2666[label="",style="dashed", color="red", weight=0]; 3475[label="vwx300 == vwx400",fontsize=16,color="magenta"];3475 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3476 -> 2667[label="",style="dashed", color="red", weight=0]; 3476[label="vwx300 == vwx400",fontsize=16,color="magenta"];3476 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3477 -> 2668[label="",style="dashed", color="red", weight=0]; 3477[label="vwx300 == vwx400",fontsize=16,color="magenta"];3477 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3478 -> 2669[label="",style="dashed", color="red", weight=0]; 3478[label="vwx300 == vwx400",fontsize=16,color="magenta"];3478 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3479 -> 2670[label="",style="dashed", color="red", weight=0]; 3479[label="vwx300 == vwx400",fontsize=16,color="magenta"];3479 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3480 -> 2671[label="",style="dashed", color="red", weight=0]; 3480[label="vwx300 == vwx400",fontsize=16,color="magenta"];3480 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3481 -> 2672[label="",style="dashed", color="red", weight=0]; 3481[label="vwx300 == vwx400",fontsize=16,color="magenta"];3481 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3481 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3482 -> 2673[label="",style="dashed", color="red", weight=0]; 3482[label="vwx300 == vwx400",fontsize=16,color="magenta"];3482 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3482 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3483[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];5544[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5544[label="",style="solid", color="blue", weight=9]; 5544 -> 3699[label="",style="solid", color="blue", weight=3]; 5545[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5545[label="",style="solid", color="blue", weight=9]; 5545 -> 3700[label="",style="solid", color="blue", weight=3]; 5546[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5546[label="",style="solid", color="blue", weight=9]; 5546 -> 3701[label="",style="solid", color="blue", weight=3]; 5547[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5547[label="",style="solid", color="blue", weight=9]; 5547 -> 3702[label="",style="solid", color="blue", weight=3]; 5548[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5548[label="",style="solid", color="blue", weight=9]; 5548 -> 3703[label="",style="solid", color="blue", weight=3]; 5549[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5549[label="",style="solid", color="blue", weight=9]; 5549 -> 3704[label="",style="solid", color="blue", weight=3]; 5550[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5550[label="",style="solid", color="blue", weight=9]; 5550 -> 3705[label="",style="solid", color="blue", weight=3]; 5551[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5551[label="",style="solid", color="blue", weight=9]; 5551 -> 3706[label="",style="solid", color="blue", weight=3]; 5552[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5552[label="",style="solid", color="blue", weight=9]; 5552 -> 3707[label="",style="solid", color="blue", weight=3]; 5553[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5553[label="",style="solid", color="blue", weight=9]; 5553 -> 3708[label="",style="solid", color="blue", weight=3]; 5554[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5554[label="",style="solid", color="blue", weight=9]; 5554 -> 3709[label="",style="solid", color="blue", weight=3]; 5555[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5555[label="",style="solid", color="blue", weight=9]; 5555 -> 3710[label="",style="solid", color="blue", weight=3]; 5556[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5556[label="",style="solid", color="blue", weight=9]; 5556 -> 3711[label="",style="solid", color="blue", weight=3]; 5557[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3483 -> 5557[label="",style="solid", color="blue", weight=9]; 5557 -> 3712[label="",style="solid", color="blue", weight=3]; 3484[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5558[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5558[label="",style="solid", color="blue", weight=9]; 5558 -> 3713[label="",style="solid", color="blue", weight=3]; 5559[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5559[label="",style="solid", color="blue", weight=9]; 5559 -> 3714[label="",style="solid", color="blue", weight=3]; 5560[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5560[label="",style="solid", color="blue", weight=9]; 5560 -> 3715[label="",style="solid", color="blue", weight=3]; 5561[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5561[label="",style="solid", color="blue", weight=9]; 5561 -> 3716[label="",style="solid", color="blue", weight=3]; 5562[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5562[label="",style="solid", color="blue", weight=9]; 5562 -> 3717[label="",style="solid", color="blue", weight=3]; 5563[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5563[label="",style="solid", color="blue", weight=9]; 5563 -> 3718[label="",style="solid", color="blue", weight=3]; 5564[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5564[label="",style="solid", color="blue", weight=9]; 5564 -> 3719[label="",style="solid", color="blue", weight=3]; 5565[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5565[label="",style="solid", color="blue", weight=9]; 5565 -> 3720[label="",style="solid", color="blue", weight=3]; 5566[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5566[label="",style="solid", color="blue", weight=9]; 5566 -> 3721[label="",style="solid", color="blue", weight=3]; 5567[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5567[label="",style="solid", color="blue", weight=9]; 5567 -> 3722[label="",style="solid", color="blue", weight=3]; 5568[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5568[label="",style="solid", color="blue", weight=9]; 5568 -> 3723[label="",style="solid", color="blue", weight=3]; 5569[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5569[label="",style="solid", color="blue", weight=9]; 5569 -> 3724[label="",style="solid", color="blue", weight=3]; 5570[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5570[label="",style="solid", color="blue", weight=9]; 5570 -> 3725[label="",style="solid", color="blue", weight=3]; 5571[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3484 -> 5571[label="",style="solid", color="blue", weight=9]; 5571 -> 3726[label="",style="solid", color="blue", weight=3]; 3485[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];5572[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];3485 -> 5572[label="",style="solid", color="burlywood", weight=9]; 5572 -> 3727[label="",style="solid", color="burlywood", weight=3]; 5573[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];3485 -> 5573[label="",style="solid", color="burlywood", weight=9]; 5573 -> 3728[label="",style="solid", color="burlywood", weight=3]; 3486 -> 2660[label="",style="dashed", color="red", weight=0]; 3486[label="vwx300 == vwx400",fontsize=16,color="magenta"];3486 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3487 -> 2661[label="",style="dashed", color="red", weight=0]; 3487[label="vwx300 == vwx400",fontsize=16,color="magenta"];3487 -> 3731[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3732[label="",style="dashed", color="magenta", weight=3]; 3488 -> 2662[label="",style="dashed", color="red", weight=0]; 3488[label="vwx300 == vwx400",fontsize=16,color="magenta"];3488 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3488 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3489 -> 2663[label="",style="dashed", color="red", weight=0]; 3489[label="vwx300 == vwx400",fontsize=16,color="magenta"];3489 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3489 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3490 -> 2664[label="",style="dashed", color="red", weight=0]; 3490[label="vwx300 == vwx400",fontsize=16,color="magenta"];3490 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3490 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3491 -> 2665[label="",style="dashed", color="red", weight=0]; 3491[label="vwx300 == vwx400",fontsize=16,color="magenta"];3491 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3491 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3492 -> 2666[label="",style="dashed", color="red", weight=0]; 3492[label="vwx300 == vwx400",fontsize=16,color="magenta"];3492 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3492 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3493 -> 2667[label="",style="dashed", color="red", weight=0]; 3493[label="vwx300 == vwx400",fontsize=16,color="magenta"];3493 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3493 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3494 -> 2668[label="",style="dashed", color="red", weight=0]; 3494[label="vwx300 == vwx400",fontsize=16,color="magenta"];3494 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3494 -> 3746[label="",style="dashed", color="magenta", weight=3]; 3495 -> 2669[label="",style="dashed", color="red", weight=0]; 3495[label="vwx300 == vwx400",fontsize=16,color="magenta"];3495 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3495 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3496 -> 2670[label="",style="dashed", color="red", weight=0]; 3496[label="vwx300 == vwx400",fontsize=16,color="magenta"];3496 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3496 -> 3750[label="",style="dashed", color="magenta", weight=3]; 3497 -> 2671[label="",style="dashed", color="red", weight=0]; 3497[label="vwx300 == vwx400",fontsize=16,color="magenta"];3497 -> 3751[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3752[label="",style="dashed", color="magenta", weight=3]; 3498 -> 2672[label="",style="dashed", color="red", weight=0]; 3498[label="vwx300 == vwx400",fontsize=16,color="magenta"];3498 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3498 -> 3754[label="",style="dashed", color="magenta", weight=3]; 3499 -> 2673[label="",style="dashed", color="red", weight=0]; 3499[label="vwx300 == vwx400",fontsize=16,color="magenta"];3499 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3499 -> 3756[label="",style="dashed", color="magenta", weight=3]; 3500 -> 2666[label="",style="dashed", color="red", weight=0]; 3500[label="vwx301 == vwx401",fontsize=16,color="magenta"];3500 -> 3757[label="",style="dashed", color="magenta", weight=3]; 3500 -> 3758[label="",style="dashed", color="magenta", weight=3]; 3501[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5574[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5574[label="",style="solid", color="blue", weight=9]; 5574 -> 3759[label="",style="solid", color="blue", weight=3]; 5575[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5575[label="",style="solid", color="blue", weight=9]; 5575 -> 3760[label="",style="solid", color="blue", weight=3]; 5576[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5576[label="",style="solid", color="blue", weight=9]; 5576 -> 3761[label="",style="solid", color="blue", weight=3]; 5577[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5577[label="",style="solid", color="blue", weight=9]; 5577 -> 3762[label="",style="solid", color="blue", weight=3]; 5578[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5578[label="",style="solid", color="blue", weight=9]; 5578 -> 3763[label="",style="solid", color="blue", weight=3]; 5579[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5579[label="",style="solid", color="blue", weight=9]; 5579 -> 3764[label="",style="solid", color="blue", weight=3]; 5580[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5580[label="",style="solid", color="blue", weight=9]; 5580 -> 3765[label="",style="solid", color="blue", weight=3]; 5581[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5581[label="",style="solid", color="blue", weight=9]; 5581 -> 3766[label="",style="solid", color="blue", weight=3]; 5582[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5582[label="",style="solid", color="blue", weight=9]; 5582 -> 3767[label="",style="solid", color="blue", weight=3]; 5583[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5583[label="",style="solid", color="blue", weight=9]; 5583 -> 3768[label="",style="solid", color="blue", weight=3]; 5584[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5584[label="",style="solid", color="blue", weight=9]; 5584 -> 3769[label="",style="solid", color="blue", weight=3]; 5585[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5585[label="",style="solid", color="blue", weight=9]; 5585 -> 3770[label="",style="solid", color="blue", weight=3]; 5586[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5586[label="",style="solid", color="blue", weight=9]; 5586 -> 3771[label="",style="solid", color="blue", weight=3]; 5587[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3501 -> 5587[label="",style="solid", color="blue", weight=9]; 5587 -> 3772[label="",style="solid", color="blue", weight=3]; 3502[label="vwx400",fontsize=16,color="green",shape="box"];3503[label="vwx300",fontsize=16,color="green",shape="box"];3504 -> 3140[label="",style="dashed", color="red", weight=0]; 3504[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];3504 -> 3773[label="",style="dashed", color="magenta", weight=3]; 3504 -> 3774[label="",style="dashed", color="magenta", weight=3]; 3505[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5588[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5588[label="",style="solid", color="blue", weight=9]; 5588 -> 3775[label="",style="solid", color="blue", weight=3]; 5589[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5589[label="",style="solid", color="blue", weight=9]; 5589 -> 3776[label="",style="solid", color="blue", weight=3]; 5590[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5590[label="",style="solid", color="blue", weight=9]; 5590 -> 3777[label="",style="solid", color="blue", weight=3]; 5591[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5591[label="",style="solid", color="blue", weight=9]; 5591 -> 3778[label="",style="solid", color="blue", weight=3]; 5592[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5592[label="",style="solid", color="blue", weight=9]; 5592 -> 3779[label="",style="solid", color="blue", weight=3]; 5593[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5593[label="",style="solid", color="blue", weight=9]; 5593 -> 3780[label="",style="solid", color="blue", weight=3]; 5594[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5594[label="",style="solid", color="blue", weight=9]; 5594 -> 3781[label="",style="solid", color="blue", weight=3]; 5595[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5595[label="",style="solid", color="blue", weight=9]; 5595 -> 3782[label="",style="solid", color="blue", weight=3]; 5596[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5596[label="",style="solid", color="blue", weight=9]; 5596 -> 3783[label="",style="solid", color="blue", weight=3]; 5597[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5597[label="",style="solid", color="blue", weight=9]; 5597 -> 3784[label="",style="solid", color="blue", weight=3]; 5598[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5598[label="",style="solid", color="blue", weight=9]; 5598 -> 3785[label="",style="solid", color="blue", weight=3]; 5599[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5599[label="",style="solid", color="blue", weight=9]; 5599 -> 3786[label="",style="solid", color="blue", weight=3]; 5600[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5600[label="",style="solid", color="blue", weight=9]; 5600 -> 3787[label="",style="solid", color="blue", weight=3]; 5601[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3505 -> 5601[label="",style="solid", color="blue", weight=9]; 5601 -> 3788[label="",style="solid", color="blue", weight=3]; 3506[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];5602[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3506 -> 5602[label="",style="solid", color="burlywood", weight=9]; 5602 -> 3789[label="",style="solid", color="burlywood", weight=3]; 5603[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3506 -> 5603[label="",style="solid", color="burlywood", weight=9]; 5603 -> 3790[label="",style="solid", color="burlywood", weight=3]; 3507[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];3507 -> 3791[label="",style="solid", color="black", weight=3]; 3508[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];5604[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3508 -> 5604[label="",style="solid", color="burlywood", weight=9]; 5604 -> 3792[label="",style="solid", color="burlywood", weight=3]; 5605[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3508 -> 5605[label="",style="solid", color="burlywood", weight=9]; 5605 -> 3793[label="",style="solid", color="burlywood", weight=3]; 3509[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];5606[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3509 -> 5606[label="",style="solid", color="burlywood", weight=9]; 5606 -> 3794[label="",style="solid", color="burlywood", weight=3]; 5607[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3509 -> 5607[label="",style="solid", color="burlywood", weight=9]; 5607 -> 3795[label="",style="solid", color="burlywood", weight=3]; 3510[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];3510 -> 3796[label="",style="solid", color="black", weight=3]; 3511[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];5608[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3511 -> 5608[label="",style="solid", color="burlywood", weight=9]; 5608 -> 3797[label="",style="solid", color="burlywood", weight=3]; 5609[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3511 -> 5609[label="",style="solid", color="burlywood", weight=9]; 5609 -> 3798[label="",style="solid", color="burlywood", weight=3]; 3512[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];5610[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3512 -> 5610[label="",style="solid", color="burlywood", weight=9]; 5610 -> 3799[label="",style="solid", color="burlywood", weight=3]; 5611[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3512 -> 5611[label="",style="solid", color="burlywood", weight=9]; 5611 -> 3800[label="",style="solid", color="burlywood", weight=3]; 3513[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];5612[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3513 -> 5612[label="",style="solid", color="burlywood", weight=9]; 5612 -> 3801[label="",style="solid", color="burlywood", weight=3]; 5613[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3513 -> 5613[label="",style="solid", color="burlywood", weight=9]; 5613 -> 3802[label="",style="solid", color="burlywood", weight=3]; 3514 -> 2671[label="",style="dashed", color="red", weight=0]; 3514[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];3514 -> 3803[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3515[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];5614[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5614[label="",style="solid", color="blue", weight=9]; 5614 -> 3805[label="",style="solid", color="blue", weight=3]; 5615[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3515 -> 5615[label="",style="solid", color="blue", weight=9]; 5615 -> 3806[label="",style="solid", color="blue", weight=3]; 3516[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5616[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3516 -> 5616[label="",style="solid", color="blue", weight=9]; 5616 -> 3807[label="",style="solid", color="blue", weight=3]; 5617[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3516 -> 5617[label="",style="solid", color="blue", weight=9]; 5617 -> 3808[label="",style="solid", color="blue", weight=3]; 3517[label="vwx157 <= vwx158",fontsize=16,color="black",shape="triangle"];3517 -> 3809[label="",style="solid", color="black", weight=3]; 3518[label="vwx157 <= vwx158",fontsize=16,color="burlywood",shape="triangle"];5618[label="vwx157/Nothing",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5618[label="",style="solid", color="burlywood", weight=9]; 5618 -> 3810[label="",style="solid", color="burlywood", weight=3]; 5619[label="vwx157/Just vwx1570",fontsize=10,color="white",style="solid",shape="box"];3518 -> 5619[label="",style="solid", color="burlywood", weight=9]; 5619 -> 3811[label="",style="solid", color="burlywood", weight=3]; 3519[label="vwx157 <= vwx158",fontsize=16,color="black",shape="triangle"];3519 -> 3812[label="",style="solid", color="black", weight=3]; 3520[label="vwx157 <= vwx158",fontsize=16,color="black",shape="triangle"];3520 -> 3813[label="",style="solid", color="black", weight=3]; 3521[label="vwx157 <= vwx158",fontsize=16,color="black",shape="triangle"];3521 -> 3814[label="",style="solid", color="black", weight=3]; 3522[label="vwx157 <= vwx158",fontsize=16,color="burlywood",shape="triangle"];5620[label="vwx157/False",fontsize=10,color="white",style="solid",shape="box"];3522 -> 5620[label="",style="solid", color="burlywood", weight=9]; 5620 -> 3815[label="",style="solid", color="burlywood", weight=3]; 5621[label="vwx157/True",fontsize=10,color="white",style="solid",shape="box"];3522 -> 5621[label="",style="solid", color="burlywood", weight=9]; 5621 -> 3816[label="",style="solid", color="burlywood", weight=3]; 3523[label="vwx157 <= vwx158",fontsize=16,color="black",shape="triangle"];3523 -> 3817[label="",style="solid", color="black", weight=3]; 3524[label="vwx157 <= vwx158",fontsize=16,color="burlywood",shape="triangle"];5622[label="vwx157/LT",fontsize=10,color="white",style="solid",shape="box"];3524 -> 5622[label="",style="solid", color="burlywood", weight=9]; 5622 -> 3818[label="",style="solid", color="burlywood", weight=3]; 5623[label="vwx157/EQ",fontsize=10,color="white",style="solid",shape="box"];3524 -> 5623[label="",style="solid", color="burlywood", weight=9]; 5623 -> 3819[label="",style="solid", color="burlywood", weight=3]; 5624[label="vwx157/GT",fontsize=10,color="white",style="solid",shape="box"];3524 -> 5624[label="",style="solid", color="burlywood", weight=9]; 5624 -> 3820[label="",style="solid", color="burlywood", weight=3]; 3525[label="vwx157 <= vwx158",fontsize=16,color="black",shape="triangle"];3525 -> 3821[label="",style="solid", color="black", weight=3]; 3526[label="vwx157 <= vwx158",fontsize=16,color="black",shape="triangle"];3526 -> 3822[label="",style="solid", color="black", weight=3]; 3527[label="vwx157 <= vwx158",fontsize=16,color="black",shape="triangle"];3527 -> 3823[label="",style="solid", color="black", weight=3]; 3528[label="vwx157 <= vwx158",fontsize=16,color="burlywood",shape="triangle"];5625[label="vwx157/Left vwx1570",fontsize=10,color="white",style="solid",shape="box"];3528 -> 5625[label="",style="solid", color="burlywood", weight=9]; 5625 -> 3824[label="",style="solid", color="burlywood", weight=3]; 5626[label="vwx157/Right vwx1570",fontsize=10,color="white",style="solid",shape="box"];3528 -> 5626[label="",style="solid", color="burlywood", weight=9]; 5626 -> 3825[label="",style="solid", color="burlywood", weight=3]; 3529[label="vwx157 <= vwx158",fontsize=16,color="burlywood",shape="triangle"];5627[label="vwx157/(vwx1570,vwx1571)",fontsize=10,color="white",style="solid",shape="box"];3529 -> 5627[label="",style="solid", color="burlywood", weight=9]; 5627 -> 3826[label="",style="solid", color="burlywood", weight=3]; 3530[label="vwx157 <= vwx158",fontsize=16,color="burlywood",shape="triangle"];5628[label="vwx157/(vwx1570,vwx1571,vwx1572)",fontsize=10,color="white",style="solid",shape="box"];3530 -> 5628[label="",style="solid", color="burlywood", weight=9]; 5628 -> 3827[label="",style="solid", color="burlywood", weight=3]; 3531[label="compare0 (Just vwx234) (Just vwx235) otherwise",fontsize=16,color="black",shape="box"];3531 -> 3828[label="",style="solid", color="black", weight=3]; 3532[label="LT",fontsize=16,color="green",shape="box"];3533[label="primMulNat (Succ vwx4000) vwx310",fontsize=16,color="burlywood",shape="box"];5629[label="vwx310/Succ vwx3100",fontsize=10,color="white",style="solid",shape="box"];3533 -> 5629[label="",style="solid", color="burlywood", weight=9]; 5629 -> 3829[label="",style="solid", color="burlywood", weight=3]; 5630[label="vwx310/Zero",fontsize=10,color="white",style="solid",shape="box"];3533 -> 5630[label="",style="solid", color="burlywood", weight=9]; 5630 -> 3830[label="",style="solid", color="burlywood", weight=3]; 3534[label="primMulNat Zero vwx310",fontsize=16,color="burlywood",shape="box"];5631[label="vwx310/Succ vwx3100",fontsize=10,color="white",style="solid",shape="box"];3534 -> 5631[label="",style="solid", color="burlywood", weight=9]; 5631 -> 3831[label="",style="solid", color="burlywood", weight=3]; 5632[label="vwx310/Zero",fontsize=10,color="white",style="solid",shape="box"];3534 -> 5632[label="",style="solid", color="burlywood", weight=9]; 5632 -> 3832[label="",style="solid", color="burlywood", weight=3]; 3535[label="vwx310",fontsize=16,color="green",shape="box"];3536[label="vwx400",fontsize=16,color="green",shape="box"];3537[label="vwx310",fontsize=16,color="green",shape="box"];3538[label="vwx400",fontsize=16,color="green",shape="box"];3539 -> 3517[label="",style="dashed", color="red", weight=0]; 3539[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3539 -> 3833[label="",style="dashed", color="magenta", weight=3]; 3539 -> 3834[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3518[label="",style="dashed", color="red", weight=0]; 3540[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3540 -> 3835[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3836[label="",style="dashed", color="magenta", weight=3]; 3541 -> 3519[label="",style="dashed", color="red", weight=0]; 3541[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3541 -> 3837[label="",style="dashed", color="magenta", weight=3]; 3541 -> 3838[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3520[label="",style="dashed", color="red", weight=0]; 3542[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3542 -> 3839[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3840[label="",style="dashed", color="magenta", weight=3]; 3543 -> 3521[label="",style="dashed", color="red", weight=0]; 3543[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3543 -> 3841[label="",style="dashed", color="magenta", weight=3]; 3543 -> 3842[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3522[label="",style="dashed", color="red", weight=0]; 3544[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3544 -> 3843[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3844[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3523[label="",style="dashed", color="red", weight=0]; 3545[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3545 -> 3845[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3846[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3524[label="",style="dashed", color="red", weight=0]; 3546[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3546 -> 3847[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3848[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3525[label="",style="dashed", color="red", weight=0]; 3547[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3547 -> 3849[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3850[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3526[label="",style="dashed", color="red", weight=0]; 3548[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3548 -> 3851[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3852[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3527[label="",style="dashed", color="red", weight=0]; 3549[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3549 -> 3853[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3854[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3528[label="",style="dashed", color="red", weight=0]; 3550[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3550 -> 3855[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3856[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3529[label="",style="dashed", color="red", weight=0]; 3551[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3551 -> 3857[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3858[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3530[label="",style="dashed", color="red", weight=0]; 3552[label="vwx169 <= vwx170",fontsize=16,color="magenta"];3552 -> 3859[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3553[label="compare0 (Left vwx241) (Left vwx242) otherwise",fontsize=16,color="black",shape="box"];3553 -> 3861[label="",style="solid", color="black", weight=3]; 3554[label="LT",fontsize=16,color="green",shape="box"];3555 -> 3517[label="",style="dashed", color="red", weight=0]; 3555[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3555 -> 3862[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3518[label="",style="dashed", color="red", weight=0]; 3556[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3556 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3519[label="",style="dashed", color="red", weight=0]; 3557[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3557 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3520[label="",style="dashed", color="red", weight=0]; 3558[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3558 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3521[label="",style="dashed", color="red", weight=0]; 3559[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3559 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3560 -> 3522[label="",style="dashed", color="red", weight=0]; 3560[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3560 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3560 -> 3873[label="",style="dashed", color="magenta", weight=3]; 3561 -> 3523[label="",style="dashed", color="red", weight=0]; 3561[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3561 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3561 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3524[label="",style="dashed", color="red", weight=0]; 3562[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3562 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3525[label="",style="dashed", color="red", weight=0]; 3563[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3563 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3879[label="",style="dashed", color="magenta", weight=3]; 3564 -> 3526[label="",style="dashed", color="red", weight=0]; 3564[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3564 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3564 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3527[label="",style="dashed", color="red", weight=0]; 3565[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3565 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3566 -> 3528[label="",style="dashed", color="red", weight=0]; 3566[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3566 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3566 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3529[label="",style="dashed", color="red", weight=0]; 3567[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3567 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3568 -> 3530[label="",style="dashed", color="red", weight=0]; 3568[label="vwx176 <= vwx177",fontsize=16,color="magenta"];3568 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3568 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3569[label="compare0 (Right vwx248) (Right vwx249) otherwise",fontsize=16,color="black",shape="box"];3569 -> 3890[label="",style="solid", color="black", weight=3]; 3570[label="LT",fontsize=16,color="green",shape="box"];3586[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3586 -> 3891[label="",style="solid", color="black", weight=3]; 3587[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3587 -> 3892[label="",style="solid", color="black", weight=3]; 3588[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3588 -> 3893[label="",style="solid", color="black", weight=3]; 3589[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3589 -> 3894[label="",style="solid", color="black", weight=3]; 3590[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3590 -> 3895[label="",style="solid", color="black", weight=3]; 3591[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3591 -> 3896[label="",style="solid", color="black", weight=3]; 3592[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3592 -> 3897[label="",style="solid", color="black", weight=3]; 3593[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3593 -> 3898[label="",style="solid", color="black", weight=3]; 3594[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3594 -> 3899[label="",style="solid", color="black", weight=3]; 3595[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3595 -> 3900[label="",style="solid", color="black", weight=3]; 3596[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3596 -> 3901[label="",style="solid", color="black", weight=3]; 3597[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3597 -> 3902[label="",style="solid", color="black", weight=3]; 3598[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3598 -> 3903[label="",style="solid", color="black", weight=3]; 3599[label="vwx211 < vwx213",fontsize=16,color="black",shape="triangle"];3599 -> 3904[label="",style="solid", color="black", weight=3]; 3600[label="vwx212 <= vwx214",fontsize=16,color="blue",shape="box"];5633[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5633[label="",style="solid", color="blue", weight=9]; 5633 -> 3905[label="",style="solid", color="blue", weight=3]; 5634[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5634[label="",style="solid", color="blue", weight=9]; 5634 -> 3906[label="",style="solid", color="blue", weight=3]; 5635[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5635[label="",style="solid", color="blue", weight=9]; 5635 -> 3907[label="",style="solid", color="blue", weight=3]; 5636[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5636[label="",style="solid", color="blue", weight=9]; 5636 -> 3908[label="",style="solid", color="blue", weight=3]; 5637[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5637[label="",style="solid", color="blue", weight=9]; 5637 -> 3909[label="",style="solid", color="blue", weight=3]; 5638[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5638[label="",style="solid", color="blue", weight=9]; 5638 -> 3910[label="",style="solid", color="blue", weight=3]; 5639[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5639[label="",style="solid", color="blue", weight=9]; 5639 -> 3911[label="",style="solid", color="blue", weight=3]; 5640[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5640[label="",style="solid", color="blue", weight=9]; 5640 -> 3912[label="",style="solid", color="blue", weight=3]; 5641[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5641[label="",style="solid", color="blue", weight=9]; 5641 -> 3913[label="",style="solid", color="blue", weight=3]; 5642[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5642[label="",style="solid", color="blue", weight=9]; 5642 -> 3914[label="",style="solid", color="blue", weight=3]; 5643[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5643[label="",style="solid", color="blue", weight=9]; 5643 -> 3915[label="",style="solid", color="blue", weight=3]; 5644[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5644[label="",style="solid", color="blue", weight=9]; 5644 -> 3916[label="",style="solid", color="blue", weight=3]; 5645[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5645[label="",style="solid", color="blue", weight=9]; 5645 -> 3917[label="",style="solid", color="blue", weight=3]; 5646[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5646[label="",style="solid", color="blue", weight=9]; 5646 -> 3918[label="",style="solid", color="blue", weight=3]; 3601[label="vwx211 == vwx213",fontsize=16,color="blue",shape="box"];5647[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5647[label="",style="solid", color="blue", weight=9]; 5647 -> 3919[label="",style="solid", color="blue", weight=3]; 5648[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5648[label="",style="solid", color="blue", weight=9]; 5648 -> 3920[label="",style="solid", color="blue", weight=3]; 5649[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5649[label="",style="solid", color="blue", weight=9]; 5649 -> 3921[label="",style="solid", color="blue", weight=3]; 5650[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5650[label="",style="solid", color="blue", weight=9]; 5650 -> 3922[label="",style="solid", color="blue", weight=3]; 5651[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5651[label="",style="solid", color="blue", weight=9]; 5651 -> 3923[label="",style="solid", color="blue", weight=3]; 5652[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5652[label="",style="solid", color="blue", weight=9]; 5652 -> 3924[label="",style="solid", color="blue", weight=3]; 5653[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5653[label="",style="solid", color="blue", weight=9]; 5653 -> 3925[label="",style="solid", color="blue", weight=3]; 5654[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5654[label="",style="solid", color="blue", weight=9]; 5654 -> 3926[label="",style="solid", color="blue", weight=3]; 5655[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5655[label="",style="solid", color="blue", weight=9]; 5655 -> 3927[label="",style="solid", color="blue", weight=3]; 5656[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5656[label="",style="solid", color="blue", weight=9]; 5656 -> 3928[label="",style="solid", color="blue", weight=3]; 5657[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5657[label="",style="solid", color="blue", weight=9]; 5657 -> 3929[label="",style="solid", color="blue", weight=3]; 5658[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5658[label="",style="solid", color="blue", weight=9]; 5658 -> 3930[label="",style="solid", color="blue", weight=3]; 5659[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5659[label="",style="solid", color="blue", weight=9]; 5659 -> 3931[label="",style="solid", color="blue", weight=3]; 5660[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5660[label="",style="solid", color="blue", weight=9]; 5660 -> 3932[label="",style="solid", color="blue", weight=3]; 3602[label="compare1 (vwx261,vwx262) (vwx263,vwx264) (False || vwx266)",fontsize=16,color="black",shape="box"];3602 -> 3933[label="",style="solid", color="black", weight=3]; 3603[label="compare1 (vwx261,vwx262) (vwx263,vwx264) (True || vwx266)",fontsize=16,color="black",shape="box"];3603 -> 3934[label="",style="solid", color="black", weight=3]; 3623 -> 3586[label="",style="dashed", color="red", weight=0]; 3623[label="vwx198 < vwx201",fontsize=16,color="magenta"];3623 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3623 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3624 -> 3587[label="",style="dashed", color="red", weight=0]; 3624[label="vwx198 < vwx201",fontsize=16,color="magenta"];3624 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3624 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3625 -> 3588[label="",style="dashed", color="red", weight=0]; 3625[label="vwx198 < vwx201",fontsize=16,color="magenta"];3625 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3625 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3589[label="",style="dashed", color="red", weight=0]; 3626[label="vwx198 < vwx201",fontsize=16,color="magenta"];3626 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3627 -> 3590[label="",style="dashed", color="red", weight=0]; 3627[label="vwx198 < vwx201",fontsize=16,color="magenta"];3627 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3627 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3628 -> 3591[label="",style="dashed", color="red", weight=0]; 3628[label="vwx198 < vwx201",fontsize=16,color="magenta"];3628 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3628 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3629 -> 3592[label="",style="dashed", color="red", weight=0]; 3629[label="vwx198 < vwx201",fontsize=16,color="magenta"];3629 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3629 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3630 -> 3593[label="",style="dashed", color="red", weight=0]; 3630[label="vwx198 < vwx201",fontsize=16,color="magenta"];3630 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3630 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3631 -> 3594[label="",style="dashed", color="red", weight=0]; 3631[label="vwx198 < vwx201",fontsize=16,color="magenta"];3631 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3631 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3632 -> 3595[label="",style="dashed", color="red", weight=0]; 3632[label="vwx198 < vwx201",fontsize=16,color="magenta"];3632 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3632 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3633 -> 3596[label="",style="dashed", color="red", weight=0]; 3633[label="vwx198 < vwx201",fontsize=16,color="magenta"];3633 -> 3955[label="",style="dashed", color="magenta", weight=3]; 3633 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3634 -> 3597[label="",style="dashed", color="red", weight=0]; 3634[label="vwx198 < vwx201",fontsize=16,color="magenta"];3634 -> 3957[label="",style="dashed", color="magenta", weight=3]; 3634 -> 3958[label="",style="dashed", color="magenta", weight=3]; 3635 -> 3598[label="",style="dashed", color="red", weight=0]; 3635[label="vwx198 < vwx201",fontsize=16,color="magenta"];3635 -> 3959[label="",style="dashed", color="magenta", weight=3]; 3635 -> 3960[label="",style="dashed", color="magenta", weight=3]; 3636 -> 3599[label="",style="dashed", color="red", weight=0]; 3636[label="vwx198 < vwx201",fontsize=16,color="magenta"];3636 -> 3961[label="",style="dashed", color="magenta", weight=3]; 3636 -> 3962[label="",style="dashed", color="magenta", weight=3]; 3637 -> 4281[label="",style="dashed", color="red", weight=0]; 3637[label="vwx199 < vwx202 || vwx199 == vwx202 && vwx200 <= vwx203",fontsize=16,color="magenta"];3637 -> 4282[label="",style="dashed", color="magenta", weight=3]; 3637 -> 4283[label="",style="dashed", color="magenta", weight=3]; 3638[label="vwx198 == vwx201",fontsize=16,color="blue",shape="box"];5661[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5661[label="",style="solid", color="blue", weight=9]; 5661 -> 3965[label="",style="solid", color="blue", weight=3]; 5662[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5662[label="",style="solid", color="blue", weight=9]; 5662 -> 3966[label="",style="solid", color="blue", weight=3]; 5663[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5663[label="",style="solid", color="blue", weight=9]; 5663 -> 3967[label="",style="solid", color="blue", weight=3]; 5664[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5664[label="",style="solid", color="blue", weight=9]; 5664 -> 3968[label="",style="solid", color="blue", weight=3]; 5665[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5665[label="",style="solid", color="blue", weight=9]; 5665 -> 3969[label="",style="solid", color="blue", weight=3]; 5666[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5666[label="",style="solid", color="blue", weight=9]; 5666 -> 3970[label="",style="solid", color="blue", weight=3]; 5667[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5667[label="",style="solid", color="blue", weight=9]; 5667 -> 3971[label="",style="solid", color="blue", weight=3]; 5668[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5668[label="",style="solid", color="blue", weight=9]; 5668 -> 3972[label="",style="solid", color="blue", weight=3]; 5669[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5669[label="",style="solid", color="blue", weight=9]; 5669 -> 3973[label="",style="solid", color="blue", weight=3]; 5670[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5670[label="",style="solid", color="blue", weight=9]; 5670 -> 3974[label="",style="solid", color="blue", weight=3]; 5671[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5671[label="",style="solid", color="blue", weight=9]; 5671 -> 3975[label="",style="solid", color="blue", weight=3]; 5672[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5672[label="",style="solid", color="blue", weight=9]; 5672 -> 3976[label="",style="solid", color="blue", weight=3]; 5673[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5673[label="",style="solid", color="blue", weight=9]; 5673 -> 3977[label="",style="solid", color="blue", weight=3]; 5674[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3638 -> 5674[label="",style="solid", color="blue", weight=9]; 5674 -> 3978[label="",style="solid", color="blue", weight=3]; 3639[label="compare1 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) (False || vwx283)",fontsize=16,color="black",shape="box"];3639 -> 3979[label="",style="solid", color="black", weight=3]; 3640[label="compare1 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) (True || vwx283)",fontsize=16,color="black",shape="box"];3640 -> 3980[label="",style="solid", color="black", weight=3]; 3641 -> 2545[label="",style="dashed", color="red", weight=0]; 3641[label="vwx301 * vwx400",fontsize=16,color="magenta"];3641 -> 3981[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3642 -> 2545[label="",style="dashed", color="red", weight=0]; 3642[label="vwx300 * vwx401",fontsize=16,color="magenta"];3642 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3642 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3643[label="vwx400",fontsize=16,color="green",shape="box"];3644[label="vwx300",fontsize=16,color="green",shape="box"];3645[label="vwx400",fontsize=16,color="green",shape="box"];3646[label="vwx300",fontsize=16,color="green",shape="box"];3647[label="vwx400",fontsize=16,color="green",shape="box"];3648[label="vwx300",fontsize=16,color="green",shape="box"];3649[label="vwx400",fontsize=16,color="green",shape="box"];3650[label="vwx300",fontsize=16,color="green",shape="box"];3651[label="vwx400",fontsize=16,color="green",shape="box"];3652[label="vwx300",fontsize=16,color="green",shape="box"];3653[label="vwx400",fontsize=16,color="green",shape="box"];3654[label="vwx300",fontsize=16,color="green",shape="box"];3655[label="vwx400",fontsize=16,color="green",shape="box"];3656[label="vwx300",fontsize=16,color="green",shape="box"];3657[label="vwx400",fontsize=16,color="green",shape="box"];3658[label="vwx300",fontsize=16,color="green",shape="box"];3659[label="vwx400",fontsize=16,color="green",shape="box"];3660[label="vwx300",fontsize=16,color="green",shape="box"];3661[label="vwx400",fontsize=16,color="green",shape="box"];3662[label="vwx300",fontsize=16,color="green",shape="box"];3663[label="vwx400",fontsize=16,color="green",shape="box"];3664[label="vwx300",fontsize=16,color="green",shape="box"];3665[label="vwx400",fontsize=16,color="green",shape="box"];3666[label="vwx300",fontsize=16,color="green",shape="box"];3667[label="vwx400",fontsize=16,color="green",shape="box"];3668[label="vwx300",fontsize=16,color="green",shape="box"];3669[label="vwx400",fontsize=16,color="green",shape="box"];3670[label="vwx300",fontsize=16,color="green",shape="box"];3671[label="vwx400",fontsize=16,color="green",shape="box"];3672[label="vwx300",fontsize=16,color="green",shape="box"];3673[label="vwx400",fontsize=16,color="green",shape="box"];3674[label="vwx300",fontsize=16,color="green",shape="box"];3675[label="vwx400",fontsize=16,color="green",shape="box"];3676[label="vwx300",fontsize=16,color="green",shape="box"];3677[label="vwx400",fontsize=16,color="green",shape="box"];3678[label="vwx300",fontsize=16,color="green",shape="box"];3679[label="vwx400",fontsize=16,color="green",shape="box"];3680[label="vwx300",fontsize=16,color="green",shape="box"];3681[label="vwx400",fontsize=16,color="green",shape="box"];3682[label="vwx300",fontsize=16,color="green",shape="box"];3683[label="vwx400",fontsize=16,color="green",shape="box"];3684[label="vwx300",fontsize=16,color="green",shape="box"];3685[label="vwx400",fontsize=16,color="green",shape="box"];3686[label="vwx300",fontsize=16,color="green",shape="box"];3687[label="vwx400",fontsize=16,color="green",shape="box"];3688[label="vwx300",fontsize=16,color="green",shape="box"];3689[label="vwx400",fontsize=16,color="green",shape="box"];3690[label="vwx300",fontsize=16,color="green",shape="box"];3691[label="vwx400",fontsize=16,color="green",shape="box"];3692[label="vwx300",fontsize=16,color="green",shape="box"];3693[label="vwx400",fontsize=16,color="green",shape="box"];3694[label="vwx300",fontsize=16,color="green",shape="box"];3695[label="vwx400",fontsize=16,color="green",shape="box"];3696[label="vwx300",fontsize=16,color="green",shape="box"];3697[label="vwx400",fontsize=16,color="green",shape="box"];3698[label="vwx300",fontsize=16,color="green",shape="box"];3699 -> 2660[label="",style="dashed", color="red", weight=0]; 3699[label="vwx301 == vwx401",fontsize=16,color="magenta"];3699 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3699 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3700 -> 2661[label="",style="dashed", color="red", weight=0]; 3700[label="vwx301 == vwx401",fontsize=16,color="magenta"];3700 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3700 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3701 -> 2662[label="",style="dashed", color="red", weight=0]; 3701[label="vwx301 == vwx401",fontsize=16,color="magenta"];3701 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3701 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3702 -> 2663[label="",style="dashed", color="red", weight=0]; 3702[label="vwx301 == vwx401",fontsize=16,color="magenta"];3702 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3702 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3703 -> 2664[label="",style="dashed", color="red", weight=0]; 3703[label="vwx301 == vwx401",fontsize=16,color="magenta"];3703 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3703 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3704 -> 2665[label="",style="dashed", color="red", weight=0]; 3704[label="vwx301 == vwx401",fontsize=16,color="magenta"];3704 -> 3995[label="",style="dashed", color="magenta", weight=3]; 3704 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3705 -> 2666[label="",style="dashed", color="red", weight=0]; 3705[label="vwx301 == vwx401",fontsize=16,color="magenta"];3705 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3705 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3706 -> 2667[label="",style="dashed", color="red", weight=0]; 3706[label="vwx301 == vwx401",fontsize=16,color="magenta"];3706 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3706 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3707 -> 2668[label="",style="dashed", color="red", weight=0]; 3707[label="vwx301 == vwx401",fontsize=16,color="magenta"];3707 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3707 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3708 -> 2669[label="",style="dashed", color="red", weight=0]; 3708[label="vwx301 == vwx401",fontsize=16,color="magenta"];3708 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3708 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3709 -> 2670[label="",style="dashed", color="red", weight=0]; 3709[label="vwx301 == vwx401",fontsize=16,color="magenta"];3709 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3709 -> 4006[label="",style="dashed", color="magenta", weight=3]; 3710 -> 2671[label="",style="dashed", color="red", weight=0]; 3710[label="vwx301 == vwx401",fontsize=16,color="magenta"];3710 -> 4007[label="",style="dashed", color="magenta", weight=3]; 3710 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3711 -> 2672[label="",style="dashed", color="red", weight=0]; 3711[label="vwx301 == vwx401",fontsize=16,color="magenta"];3711 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3711 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3712 -> 2673[label="",style="dashed", color="red", weight=0]; 3712[label="vwx301 == vwx401",fontsize=16,color="magenta"];3712 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3712 -> 4012[label="",style="dashed", color="magenta", weight=3]; 3713 -> 2660[label="",style="dashed", color="red", weight=0]; 3713[label="vwx300 == vwx400",fontsize=16,color="magenta"];3713 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3713 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3714 -> 2661[label="",style="dashed", color="red", weight=0]; 3714[label="vwx300 == vwx400",fontsize=16,color="magenta"];3714 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3714 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3715 -> 2662[label="",style="dashed", color="red", weight=0]; 3715[label="vwx300 == vwx400",fontsize=16,color="magenta"];3715 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3715 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3716 -> 2663[label="",style="dashed", color="red", weight=0]; 3716[label="vwx300 == vwx400",fontsize=16,color="magenta"];3716 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3716 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3717 -> 2664[label="",style="dashed", color="red", weight=0]; 3717[label="vwx300 == vwx400",fontsize=16,color="magenta"];3717 -> 4021[label="",style="dashed", color="magenta", weight=3]; 3717 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3718 -> 2665[label="",style="dashed", color="red", weight=0]; 3718[label="vwx300 == vwx400",fontsize=16,color="magenta"];3718 -> 4023[label="",style="dashed", color="magenta", weight=3]; 3718 -> 4024[label="",style="dashed", color="magenta", weight=3]; 3719 -> 2666[label="",style="dashed", color="red", weight=0]; 3719[label="vwx300 == vwx400",fontsize=16,color="magenta"];3719 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3719 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3720 -> 2667[label="",style="dashed", color="red", weight=0]; 3720[label="vwx300 == vwx400",fontsize=16,color="magenta"];3720 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3720 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3721 -> 2668[label="",style="dashed", color="red", weight=0]; 3721[label="vwx300 == vwx400",fontsize=16,color="magenta"];3721 -> 4029[label="",style="dashed", color="magenta", weight=3]; 3721 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3722 -> 2669[label="",style="dashed", color="red", weight=0]; 3722[label="vwx300 == vwx400",fontsize=16,color="magenta"];3722 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3722 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3723 -> 2670[label="",style="dashed", color="red", weight=0]; 3723[label="vwx300 == vwx400",fontsize=16,color="magenta"];3723 -> 4033[label="",style="dashed", color="magenta", weight=3]; 3723 -> 4034[label="",style="dashed", color="magenta", weight=3]; 3724 -> 2671[label="",style="dashed", color="red", weight=0]; 3724[label="vwx300 == vwx400",fontsize=16,color="magenta"];3724 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3724 -> 4036[label="",style="dashed", color="magenta", weight=3]; 3725 -> 2672[label="",style="dashed", color="red", weight=0]; 3725[label="vwx300 == vwx400",fontsize=16,color="magenta"];3725 -> 4037[label="",style="dashed", color="magenta", weight=3]; 3725 -> 4038[label="",style="dashed", color="magenta", weight=3]; 3726 -> 2673[label="",style="dashed", color="red", weight=0]; 3726[label="vwx300 == vwx400",fontsize=16,color="magenta"];3726 -> 4039[label="",style="dashed", color="magenta", weight=3]; 3726 -> 4040[label="",style="dashed", color="magenta", weight=3]; 3727[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];5675[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3727 -> 5675[label="",style="solid", color="burlywood", weight=9]; 5675 -> 4041[label="",style="solid", color="burlywood", weight=3]; 5676[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3727 -> 5676[label="",style="solid", color="burlywood", weight=9]; 5676 -> 4042[label="",style="solid", color="burlywood", weight=3]; 3728[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];5677[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];3728 -> 5677[label="",style="solid", color="burlywood", weight=9]; 5677 -> 4043[label="",style="solid", color="burlywood", weight=3]; 5678[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];3728 -> 5678[label="",style="solid", color="burlywood", weight=9]; 5678 -> 4044[label="",style="solid", color="burlywood", weight=3]; 3729[label="vwx400",fontsize=16,color="green",shape="box"];3730[label="vwx300",fontsize=16,color="green",shape="box"];3731[label="vwx400",fontsize=16,color="green",shape="box"];3732[label="vwx300",fontsize=16,color="green",shape="box"];3733[label="vwx400",fontsize=16,color="green",shape="box"];3734[label="vwx300",fontsize=16,color="green",shape="box"];3735[label="vwx400",fontsize=16,color="green",shape="box"];3736[label="vwx300",fontsize=16,color="green",shape="box"];3737[label="vwx400",fontsize=16,color="green",shape="box"];3738[label="vwx300",fontsize=16,color="green",shape="box"];3739[label="vwx400",fontsize=16,color="green",shape="box"];3740[label="vwx300",fontsize=16,color="green",shape="box"];3741[label="vwx400",fontsize=16,color="green",shape="box"];3742[label="vwx300",fontsize=16,color="green",shape="box"];3743[label="vwx400",fontsize=16,color="green",shape="box"];3744[label="vwx300",fontsize=16,color="green",shape="box"];3745[label="vwx400",fontsize=16,color="green",shape="box"];3746[label="vwx300",fontsize=16,color="green",shape="box"];3747[label="vwx400",fontsize=16,color="green",shape="box"];3748[label="vwx300",fontsize=16,color="green",shape="box"];3749[label="vwx400",fontsize=16,color="green",shape="box"];3750[label="vwx300",fontsize=16,color="green",shape="box"];3751[label="vwx400",fontsize=16,color="green",shape="box"];3752[label="vwx300",fontsize=16,color="green",shape="box"];3753[label="vwx400",fontsize=16,color="green",shape="box"];3754[label="vwx300",fontsize=16,color="green",shape="box"];3755[label="vwx400",fontsize=16,color="green",shape="box"];3756[label="vwx300",fontsize=16,color="green",shape="box"];3757[label="vwx401",fontsize=16,color="green",shape="box"];3758[label="vwx301",fontsize=16,color="green",shape="box"];3759 -> 2660[label="",style="dashed", color="red", weight=0]; 3759[label="vwx300 == vwx400",fontsize=16,color="magenta"];3759 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3759 -> 4046[label="",style="dashed", color="magenta", weight=3]; 3760 -> 2661[label="",style="dashed", color="red", weight=0]; 3760[label="vwx300 == vwx400",fontsize=16,color="magenta"];3760 -> 4047[label="",style="dashed", color="magenta", weight=3]; 3760 -> 4048[label="",style="dashed", color="magenta", weight=3]; 3761 -> 2662[label="",style="dashed", color="red", weight=0]; 3761[label="vwx300 == vwx400",fontsize=16,color="magenta"];3761 -> 4049[label="",style="dashed", color="magenta", weight=3]; 3761 -> 4050[label="",style="dashed", color="magenta", weight=3]; 3762 -> 2663[label="",style="dashed", color="red", weight=0]; 3762[label="vwx300 == vwx400",fontsize=16,color="magenta"];3762 -> 4051[label="",style="dashed", color="magenta", weight=3]; 3762 -> 4052[label="",style="dashed", color="magenta", weight=3]; 3763 -> 2664[label="",style="dashed", color="red", weight=0]; 3763[label="vwx300 == vwx400",fontsize=16,color="magenta"];3763 -> 4053[label="",style="dashed", color="magenta", weight=3]; 3763 -> 4054[label="",style="dashed", color="magenta", weight=3]; 3764 -> 2665[label="",style="dashed", color="red", weight=0]; 3764[label="vwx300 == vwx400",fontsize=16,color="magenta"];3764 -> 4055[label="",style="dashed", color="magenta", weight=3]; 3764 -> 4056[label="",style="dashed", color="magenta", weight=3]; 3765 -> 2666[label="",style="dashed", color="red", weight=0]; 3765[label="vwx300 == vwx400",fontsize=16,color="magenta"];3765 -> 4057[label="",style="dashed", color="magenta", weight=3]; 3765 -> 4058[label="",style="dashed", color="magenta", weight=3]; 3766 -> 2667[label="",style="dashed", color="red", weight=0]; 3766[label="vwx300 == vwx400",fontsize=16,color="magenta"];3766 -> 4059[label="",style="dashed", color="magenta", weight=3]; 3766 -> 4060[label="",style="dashed", color="magenta", weight=3]; 3767 -> 2668[label="",style="dashed", color="red", weight=0]; 3767[label="vwx300 == vwx400",fontsize=16,color="magenta"];3767 -> 4061[label="",style="dashed", color="magenta", weight=3]; 3767 -> 4062[label="",style="dashed", color="magenta", weight=3]; 3768 -> 2669[label="",style="dashed", color="red", weight=0]; 3768[label="vwx300 == vwx400",fontsize=16,color="magenta"];3768 -> 4063[label="",style="dashed", color="magenta", weight=3]; 3768 -> 4064[label="",style="dashed", color="magenta", weight=3]; 3769 -> 2670[label="",style="dashed", color="red", weight=0]; 3769[label="vwx300 == vwx400",fontsize=16,color="magenta"];3769 -> 4065[label="",style="dashed", color="magenta", weight=3]; 3769 -> 4066[label="",style="dashed", color="magenta", weight=3]; 3770 -> 2671[label="",style="dashed", color="red", weight=0]; 3770[label="vwx300 == vwx400",fontsize=16,color="magenta"];3770 -> 4067[label="",style="dashed", color="magenta", weight=3]; 3770 -> 4068[label="",style="dashed", color="magenta", weight=3]; 3771 -> 2672[label="",style="dashed", color="red", weight=0]; 3771[label="vwx300 == vwx400",fontsize=16,color="magenta"];3771 -> 4069[label="",style="dashed", color="magenta", weight=3]; 3771 -> 4070[label="",style="dashed", color="magenta", weight=3]; 3772 -> 2673[label="",style="dashed", color="red", weight=0]; 3772[label="vwx300 == vwx400",fontsize=16,color="magenta"];3772 -> 4071[label="",style="dashed", color="magenta", weight=3]; 3772 -> 4072[label="",style="dashed", color="magenta", weight=3]; 3773[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];5679[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5679[label="",style="solid", color="blue", weight=9]; 5679 -> 4073[label="",style="solid", color="blue", weight=3]; 5680[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5680[label="",style="solid", color="blue", weight=9]; 5680 -> 4074[label="",style="solid", color="blue", weight=3]; 5681[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5681[label="",style="solid", color="blue", weight=9]; 5681 -> 4075[label="",style="solid", color="blue", weight=3]; 5682[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5682[label="",style="solid", color="blue", weight=9]; 5682 -> 4076[label="",style="solid", color="blue", weight=3]; 5683[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5683[label="",style="solid", color="blue", weight=9]; 5683 -> 4077[label="",style="solid", color="blue", weight=3]; 5684[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5684[label="",style="solid", color="blue", weight=9]; 5684 -> 4078[label="",style="solid", color="blue", weight=3]; 5685[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5685[label="",style="solid", color="blue", weight=9]; 5685 -> 4079[label="",style="solid", color="blue", weight=3]; 5686[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5686[label="",style="solid", color="blue", weight=9]; 5686 -> 4080[label="",style="solid", color="blue", weight=3]; 5687[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5687[label="",style="solid", color="blue", weight=9]; 5687 -> 4081[label="",style="solid", color="blue", weight=3]; 5688[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5688[label="",style="solid", color="blue", weight=9]; 5688 -> 4082[label="",style="solid", color="blue", weight=3]; 5689[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5689[label="",style="solid", color="blue", weight=9]; 5689 -> 4083[label="",style="solid", color="blue", weight=3]; 5690[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5690[label="",style="solid", color="blue", weight=9]; 5690 -> 4084[label="",style="solid", color="blue", weight=3]; 5691[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5691[label="",style="solid", color="blue", weight=9]; 5691 -> 4085[label="",style="solid", color="blue", weight=3]; 5692[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3773 -> 5692[label="",style="solid", color="blue", weight=9]; 5692 -> 4086[label="",style="solid", color="blue", weight=3]; 3774[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];5693[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5693[label="",style="solid", color="blue", weight=9]; 5693 -> 4087[label="",style="solid", color="blue", weight=3]; 5694[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5694[label="",style="solid", color="blue", weight=9]; 5694 -> 4088[label="",style="solid", color="blue", weight=3]; 5695[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5695[label="",style="solid", color="blue", weight=9]; 5695 -> 4089[label="",style="solid", color="blue", weight=3]; 5696[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5696[label="",style="solid", color="blue", weight=9]; 5696 -> 4090[label="",style="solid", color="blue", weight=3]; 5697[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5697[label="",style="solid", color="blue", weight=9]; 5697 -> 4091[label="",style="solid", color="blue", weight=3]; 5698[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5698[label="",style="solid", color="blue", weight=9]; 5698 -> 4092[label="",style="solid", color="blue", weight=3]; 5699[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5699[label="",style="solid", color="blue", weight=9]; 5699 -> 4093[label="",style="solid", color="blue", weight=3]; 5700[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5700[label="",style="solid", color="blue", weight=9]; 5700 -> 4094[label="",style="solid", color="blue", weight=3]; 5701[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5701[label="",style="solid", color="blue", weight=9]; 5701 -> 4095[label="",style="solid", color="blue", weight=3]; 5702[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5702[label="",style="solid", color="blue", weight=9]; 5702 -> 4096[label="",style="solid", color="blue", weight=3]; 5703[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5703[label="",style="solid", color="blue", weight=9]; 5703 -> 4097[label="",style="solid", color="blue", weight=3]; 5704[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5704[label="",style="solid", color="blue", weight=9]; 5704 -> 4098[label="",style="solid", color="blue", weight=3]; 5705[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5705[label="",style="solid", color="blue", weight=9]; 5705 -> 4099[label="",style="solid", color="blue", weight=3]; 5706[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5706[label="",style="solid", color="blue", weight=9]; 5706 -> 4100[label="",style="solid", color="blue", weight=3]; 3775 -> 2660[label="",style="dashed", color="red", weight=0]; 3775[label="vwx300 == vwx400",fontsize=16,color="magenta"];3775 -> 4101[label="",style="dashed", color="magenta", weight=3]; 3775 -> 4102[label="",style="dashed", color="magenta", weight=3]; 3776 -> 2661[label="",style="dashed", color="red", weight=0]; 3776[label="vwx300 == vwx400",fontsize=16,color="magenta"];3776 -> 4103[label="",style="dashed", color="magenta", weight=3]; 3776 -> 4104[label="",style="dashed", color="magenta", weight=3]; 3777 -> 2662[label="",style="dashed", color="red", weight=0]; 3777[label="vwx300 == vwx400",fontsize=16,color="magenta"];3777 -> 4105[label="",style="dashed", color="magenta", weight=3]; 3777 -> 4106[label="",style="dashed", color="magenta", weight=3]; 3778 -> 2663[label="",style="dashed", color="red", weight=0]; 3778[label="vwx300 == vwx400",fontsize=16,color="magenta"];3778 -> 4107[label="",style="dashed", color="magenta", weight=3]; 3778 -> 4108[label="",style="dashed", color="magenta", weight=3]; 3779 -> 2664[label="",style="dashed", color="red", weight=0]; 3779[label="vwx300 == vwx400",fontsize=16,color="magenta"];3779 -> 4109[label="",style="dashed", color="magenta", weight=3]; 3779 -> 4110[label="",style="dashed", color="magenta", weight=3]; 3780 -> 2665[label="",style="dashed", color="red", weight=0]; 3780[label="vwx300 == vwx400",fontsize=16,color="magenta"];3780 -> 4111[label="",style="dashed", color="magenta", weight=3]; 3780 -> 4112[label="",style="dashed", color="magenta", weight=3]; 3781 -> 2666[label="",style="dashed", color="red", weight=0]; 3781[label="vwx300 == vwx400",fontsize=16,color="magenta"];3781 -> 4113[label="",style="dashed", color="magenta", weight=3]; 3781 -> 4114[label="",style="dashed", color="magenta", weight=3]; 3782 -> 2667[label="",style="dashed", color="red", weight=0]; 3782[label="vwx300 == vwx400",fontsize=16,color="magenta"];3782 -> 4115[label="",style="dashed", color="magenta", weight=3]; 3782 -> 4116[label="",style="dashed", color="magenta", weight=3]; 3783 -> 2668[label="",style="dashed", color="red", weight=0]; 3783[label="vwx300 == vwx400",fontsize=16,color="magenta"];3783 -> 4117[label="",style="dashed", color="magenta", weight=3]; 3783 -> 4118[label="",style="dashed", color="magenta", weight=3]; 3784 -> 2669[label="",style="dashed", color="red", weight=0]; 3784[label="vwx300 == vwx400",fontsize=16,color="magenta"];3784 -> 4119[label="",style="dashed", color="magenta", weight=3]; 3784 -> 4120[label="",style="dashed", color="magenta", weight=3]; 3785 -> 2670[label="",style="dashed", color="red", weight=0]; 3785[label="vwx300 == vwx400",fontsize=16,color="magenta"];3785 -> 4121[label="",style="dashed", color="magenta", weight=3]; 3785 -> 4122[label="",style="dashed", color="magenta", weight=3]; 3786 -> 2671[label="",style="dashed", color="red", weight=0]; 3786[label="vwx300 == vwx400",fontsize=16,color="magenta"];3786 -> 4123[label="",style="dashed", color="magenta", weight=3]; 3786 -> 4124[label="",style="dashed", color="magenta", weight=3]; 3787 -> 2672[label="",style="dashed", color="red", weight=0]; 3787[label="vwx300 == vwx400",fontsize=16,color="magenta"];3787 -> 4125[label="",style="dashed", color="magenta", weight=3]; 3787 -> 4126[label="",style="dashed", color="magenta", weight=3]; 3788 -> 2673[label="",style="dashed", color="red", weight=0]; 3788[label="vwx300 == vwx400",fontsize=16,color="magenta"];3788 -> 4127[label="",style="dashed", color="magenta", weight=3]; 3788 -> 4128[label="",style="dashed", color="magenta", weight=3]; 3789[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];3789 -> 4129[label="",style="solid", color="black", weight=3]; 3790[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3790 -> 4130[label="",style="solid", color="black", weight=3]; 3791[label="False",fontsize=16,color="green",shape="box"];3792[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];3792 -> 4131[label="",style="solid", color="black", weight=3]; 3793[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3793 -> 4132[label="",style="solid", color="black", weight=3]; 3794[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];3794 -> 4133[label="",style="solid", color="black", weight=3]; 3795[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3795 -> 4134[label="",style="solid", color="black", weight=3]; 3796[label="False",fontsize=16,color="green",shape="box"];3797[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];3797 -> 4135[label="",style="solid", color="black", weight=3]; 3798[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3798 -> 4136[label="",style="solid", color="black", weight=3]; 3799[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];3799 -> 4137[label="",style="solid", color="black", weight=3]; 3800[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3800 -> 4138[label="",style="solid", color="black", weight=3]; 3801[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];3801 -> 4139[label="",style="solid", color="black", weight=3]; 3802[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3802 -> 4140[label="",style="solid", color="black", weight=3]; 3803 -> 2545[label="",style="dashed", color="red", weight=0]; 3803[label="vwx301 * vwx400",fontsize=16,color="magenta"];3803 -> 4141[label="",style="dashed", color="magenta", weight=3]; 3803 -> 4142[label="",style="dashed", color="magenta", weight=3]; 3804 -> 2545[label="",style="dashed", color="red", weight=0]; 3804[label="vwx300 * vwx401",fontsize=16,color="magenta"];3804 -> 4143[label="",style="dashed", color="magenta", weight=3]; 3804 -> 4144[label="",style="dashed", color="magenta", weight=3]; 3805 -> 2669[label="",style="dashed", color="red", weight=0]; 3805[label="vwx301 == vwx401",fontsize=16,color="magenta"];3805 -> 4145[label="",style="dashed", color="magenta", weight=3]; 3805 -> 4146[label="",style="dashed", color="magenta", weight=3]; 3806 -> 2671[label="",style="dashed", color="red", weight=0]; 3806[label="vwx301 == vwx401",fontsize=16,color="magenta"];3806 -> 4147[label="",style="dashed", color="magenta", weight=3]; 3806 -> 4148[label="",style="dashed", color="magenta", weight=3]; 3807 -> 2669[label="",style="dashed", color="red", weight=0]; 3807[label="vwx300 == vwx400",fontsize=16,color="magenta"];3807 -> 4149[label="",style="dashed", color="magenta", weight=3]; 3807 -> 4150[label="",style="dashed", color="magenta", weight=3]; 3808 -> 2671[label="",style="dashed", color="red", weight=0]; 3808[label="vwx300 == vwx400",fontsize=16,color="magenta"];3808 -> 4151[label="",style="dashed", color="magenta", weight=3]; 3808 -> 4152[label="",style="dashed", color="magenta", weight=3]; 3809 -> 4153[label="",style="dashed", color="red", weight=0]; 3809[label="compare vwx157 vwx158 /= GT",fontsize=16,color="magenta"];3809 -> 4154[label="",style="dashed", color="magenta", weight=3]; 3810[label="Nothing <= vwx158",fontsize=16,color="burlywood",shape="box"];5707[label="vwx158/Nothing",fontsize=10,color="white",style="solid",shape="box"];3810 -> 5707[label="",style="solid", color="burlywood", weight=9]; 5707 -> 4162[label="",style="solid", color="burlywood", weight=3]; 5708[label="vwx158/Just vwx1580",fontsize=10,color="white",style="solid",shape="box"];3810 -> 5708[label="",style="solid", color="burlywood", weight=9]; 5708 -> 4163[label="",style="solid", color="burlywood", weight=3]; 3811[label="Just vwx1570 <= vwx158",fontsize=16,color="burlywood",shape="box"];5709[label="vwx158/Nothing",fontsize=10,color="white",style="solid",shape="box"];3811 -> 5709[label="",style="solid", color="burlywood", weight=9]; 5709 -> 4164[label="",style="solid", color="burlywood", weight=3]; 5710[label="vwx158/Just vwx1580",fontsize=10,color="white",style="solid",shape="box"];3811 -> 5710[label="",style="solid", color="burlywood", weight=9]; 5710 -> 4165[label="",style="solid", color="burlywood", weight=3]; 3812 -> 4153[label="",style="dashed", color="red", weight=0]; 3812[label="compare vwx157 vwx158 /= GT",fontsize=16,color="magenta"];3812 -> 4155[label="",style="dashed", color="magenta", weight=3]; 3813 -> 4153[label="",style="dashed", color="red", weight=0]; 3813[label="compare vwx157 vwx158 /= GT",fontsize=16,color="magenta"];3813 -> 4156[label="",style="dashed", color="magenta", weight=3]; 3814 -> 4153[label="",style="dashed", color="red", weight=0]; 3814[label="compare vwx157 vwx158 /= GT",fontsize=16,color="magenta"];3814 -> 4157[label="",style="dashed", color="magenta", weight=3]; 3815[label="False <= vwx158",fontsize=16,color="burlywood",shape="box"];5711[label="vwx158/False",fontsize=10,color="white",style="solid",shape="box"];3815 -> 5711[label="",style="solid", color="burlywood", weight=9]; 5711 -> 4166[label="",style="solid", color="burlywood", weight=3]; 5712[label="vwx158/True",fontsize=10,color="white",style="solid",shape="box"];3815 -> 5712[label="",style="solid", color="burlywood", weight=9]; 5712 -> 4167[label="",style="solid", color="burlywood", weight=3]; 3816[label="True <= vwx158",fontsize=16,color="burlywood",shape="box"];5713[label="vwx158/False",fontsize=10,color="white",style="solid",shape="box"];3816 -> 5713[label="",style="solid", color="burlywood", weight=9]; 5713 -> 4168[label="",style="solid", color="burlywood", weight=3]; 5714[label="vwx158/True",fontsize=10,color="white",style="solid",shape="box"];3816 -> 5714[label="",style="solid", color="burlywood", weight=9]; 5714 -> 4169[label="",style="solid", color="burlywood", weight=3]; 3817 -> 4153[label="",style="dashed", color="red", weight=0]; 3817[label="compare vwx157 vwx158 /= GT",fontsize=16,color="magenta"];3817 -> 4158[label="",style="dashed", color="magenta", weight=3]; 3818[label="LT <= vwx158",fontsize=16,color="burlywood",shape="box"];5715[label="vwx158/LT",fontsize=10,color="white",style="solid",shape="box"];3818 -> 5715[label="",style="solid", color="burlywood", weight=9]; 5715 -> 4170[label="",style="solid", color="burlywood", weight=3]; 5716[label="vwx158/EQ",fontsize=10,color="white",style="solid",shape="box"];3818 -> 5716[label="",style="solid", color="burlywood", weight=9]; 5716 -> 4171[label="",style="solid", color="burlywood", weight=3]; 5717[label="vwx158/GT",fontsize=10,color="white",style="solid",shape="box"];3818 -> 5717[label="",style="solid", color="burlywood", weight=9]; 5717 -> 4172[label="",style="solid", color="burlywood", weight=3]; 3819[label="EQ <= vwx158",fontsize=16,color="burlywood",shape="box"];5718[label="vwx158/LT",fontsize=10,color="white",style="solid",shape="box"];3819 -> 5718[label="",style="solid", color="burlywood", weight=9]; 5718 -> 4173[label="",style="solid", color="burlywood", weight=3]; 5719[label="vwx158/EQ",fontsize=10,color="white",style="solid",shape="box"];3819 -> 5719[label="",style="solid", color="burlywood", weight=9]; 5719 -> 4174[label="",style="solid", color="burlywood", weight=3]; 5720[label="vwx158/GT",fontsize=10,color="white",style="solid",shape="box"];3819 -> 5720[label="",style="solid", color="burlywood", weight=9]; 5720 -> 4175[label="",style="solid", color="burlywood", weight=3]; 3820[label="GT <= vwx158",fontsize=16,color="burlywood",shape="box"];5721[label="vwx158/LT",fontsize=10,color="white",style="solid",shape="box"];3820 -> 5721[label="",style="solid", color="burlywood", weight=9]; 5721 -> 4176[label="",style="solid", color="burlywood", weight=3]; 5722[label="vwx158/EQ",fontsize=10,color="white",style="solid",shape="box"];3820 -> 5722[label="",style="solid", color="burlywood", weight=9]; 5722 -> 4177[label="",style="solid", color="burlywood", weight=3]; 5723[label="vwx158/GT",fontsize=10,color="white",style="solid",shape="box"];3820 -> 5723[label="",style="solid", color="burlywood", weight=9]; 5723 -> 4178[label="",style="solid", color="burlywood", weight=3]; 3821 -> 4153[label="",style="dashed", color="red", weight=0]; 3821[label="compare vwx157 vwx158 /= GT",fontsize=16,color="magenta"];3821 -> 4159[label="",style="dashed", color="magenta", weight=3]; 3822 -> 4153[label="",style="dashed", color="red", weight=0]; 3822[label="compare vwx157 vwx158 /= GT",fontsize=16,color="magenta"];3822 -> 4160[label="",style="dashed", color="magenta", weight=3]; 3823 -> 4153[label="",style="dashed", color="red", weight=0]; 3823[label="compare vwx157 vwx158 /= GT",fontsize=16,color="magenta"];3823 -> 4161[label="",style="dashed", color="magenta", weight=3]; 3824[label="Left vwx1570 <= vwx158",fontsize=16,color="burlywood",shape="box"];5724[label="vwx158/Left vwx1580",fontsize=10,color="white",style="solid",shape="box"];3824 -> 5724[label="",style="solid", color="burlywood", weight=9]; 5724 -> 4179[label="",style="solid", color="burlywood", weight=3]; 5725[label="vwx158/Right vwx1580",fontsize=10,color="white",style="solid",shape="box"];3824 -> 5725[label="",style="solid", color="burlywood", weight=9]; 5725 -> 4180[label="",style="solid", color="burlywood", weight=3]; 3825[label="Right vwx1570 <= vwx158",fontsize=16,color="burlywood",shape="box"];5726[label="vwx158/Left vwx1580",fontsize=10,color="white",style="solid",shape="box"];3825 -> 5726[label="",style="solid", color="burlywood", weight=9]; 5726 -> 4181[label="",style="solid", color="burlywood", weight=3]; 5727[label="vwx158/Right vwx1580",fontsize=10,color="white",style="solid",shape="box"];3825 -> 5727[label="",style="solid", color="burlywood", weight=9]; 5727 -> 4182[label="",style="solid", color="burlywood", weight=3]; 3826[label="(vwx1570,vwx1571) <= vwx158",fontsize=16,color="burlywood",shape="box"];5728[label="vwx158/(vwx1580,vwx1581)",fontsize=10,color="white",style="solid",shape="box"];3826 -> 5728[label="",style="solid", color="burlywood", weight=9]; 5728 -> 4183[label="",style="solid", color="burlywood", weight=3]; 3827[label="(vwx1570,vwx1571,vwx1572) <= vwx158",fontsize=16,color="burlywood",shape="box"];5729[label="vwx158/(vwx1580,vwx1581,vwx1582)",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5729[label="",style="solid", color="burlywood", weight=9]; 5729 -> 4184[label="",style="solid", color="burlywood", weight=3]; 3828[label="compare0 (Just vwx234) (Just vwx235) True",fontsize=16,color="black",shape="box"];3828 -> 4185[label="",style="solid", color="black", weight=3]; 3829[label="primMulNat (Succ vwx4000) (Succ vwx3100)",fontsize=16,color="black",shape="box"];3829 -> 4186[label="",style="solid", color="black", weight=3]; 3830[label="primMulNat (Succ vwx4000) Zero",fontsize=16,color="black",shape="box"];3830 -> 4187[label="",style="solid", color="black", weight=3]; 3831[label="primMulNat Zero (Succ vwx3100)",fontsize=16,color="black",shape="box"];3831 -> 4188[label="",style="solid", color="black", weight=3]; 3832[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];3832 -> 4189[label="",style="solid", color="black", weight=3]; 3833[label="vwx170",fontsize=16,color="green",shape="box"];3834[label="vwx169",fontsize=16,color="green",shape="box"];3835[label="vwx170",fontsize=16,color="green",shape="box"];3836[label="vwx169",fontsize=16,color="green",shape="box"];3837[label="vwx170",fontsize=16,color="green",shape="box"];3838[label="vwx169",fontsize=16,color="green",shape="box"];3839[label="vwx170",fontsize=16,color="green",shape="box"];3840[label="vwx169",fontsize=16,color="green",shape="box"];3841[label="vwx170",fontsize=16,color="green",shape="box"];3842[label="vwx169",fontsize=16,color="green",shape="box"];3843[label="vwx170",fontsize=16,color="green",shape="box"];3844[label="vwx169",fontsize=16,color="green",shape="box"];3845[label="vwx170",fontsize=16,color="green",shape="box"];3846[label="vwx169",fontsize=16,color="green",shape="box"];3847[label="vwx170",fontsize=16,color="green",shape="box"];3848[label="vwx169",fontsize=16,color="green",shape="box"];3849[label="vwx170",fontsize=16,color="green",shape="box"];3850[label="vwx169",fontsize=16,color="green",shape="box"];3851[label="vwx170",fontsize=16,color="green",shape="box"];3852[label="vwx169",fontsize=16,color="green",shape="box"];3853[label="vwx170",fontsize=16,color="green",shape="box"];3854[label="vwx169",fontsize=16,color="green",shape="box"];3855[label="vwx170",fontsize=16,color="green",shape="box"];3856[label="vwx169",fontsize=16,color="green",shape="box"];3857[label="vwx170",fontsize=16,color="green",shape="box"];3858[label="vwx169",fontsize=16,color="green",shape="box"];3859[label="vwx170",fontsize=16,color="green",shape="box"];3860[label="vwx169",fontsize=16,color="green",shape="box"];3861[label="compare0 (Left vwx241) (Left vwx242) True",fontsize=16,color="black",shape="box"];3861 -> 4190[label="",style="solid", color="black", weight=3]; 3862[label="vwx177",fontsize=16,color="green",shape="box"];3863[label="vwx176",fontsize=16,color="green",shape="box"];3864[label="vwx177",fontsize=16,color="green",shape="box"];3865[label="vwx176",fontsize=16,color="green",shape="box"];3866[label="vwx177",fontsize=16,color="green",shape="box"];3867[label="vwx176",fontsize=16,color="green",shape="box"];3868[label="vwx177",fontsize=16,color="green",shape="box"];3869[label="vwx176",fontsize=16,color="green",shape="box"];3870[label="vwx177",fontsize=16,color="green",shape="box"];3871[label="vwx176",fontsize=16,color="green",shape="box"];3872[label="vwx177",fontsize=16,color="green",shape="box"];3873[label="vwx176",fontsize=16,color="green",shape="box"];3874[label="vwx177",fontsize=16,color="green",shape="box"];3875[label="vwx176",fontsize=16,color="green",shape="box"];3876[label="vwx177",fontsize=16,color="green",shape="box"];3877[label="vwx176",fontsize=16,color="green",shape="box"];3878[label="vwx177",fontsize=16,color="green",shape="box"];3879[label="vwx176",fontsize=16,color="green",shape="box"];3880[label="vwx177",fontsize=16,color="green",shape="box"];3881[label="vwx176",fontsize=16,color="green",shape="box"];3882[label="vwx177",fontsize=16,color="green",shape="box"];3883[label="vwx176",fontsize=16,color="green",shape="box"];3884[label="vwx177",fontsize=16,color="green",shape="box"];3885[label="vwx176",fontsize=16,color="green",shape="box"];3886[label="vwx177",fontsize=16,color="green",shape="box"];3887[label="vwx176",fontsize=16,color="green",shape="box"];3888[label="vwx177",fontsize=16,color="green",shape="box"];3889[label="vwx176",fontsize=16,color="green",shape="box"];3890[label="compare0 (Right vwx248) (Right vwx249) True",fontsize=16,color="black",shape="box"];3890 -> 4191[label="",style="solid", color="black", weight=3]; 3891 -> 2665[label="",style="dashed", color="red", weight=0]; 3891[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3891 -> 4192[label="",style="dashed", color="magenta", weight=3]; 3891 -> 4193[label="",style="dashed", color="magenta", weight=3]; 3892 -> 2665[label="",style="dashed", color="red", weight=0]; 3892[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3892 -> 4194[label="",style="dashed", color="magenta", weight=3]; 3892 -> 4195[label="",style="dashed", color="magenta", weight=3]; 3893 -> 2665[label="",style="dashed", color="red", weight=0]; 3893[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3893 -> 4196[label="",style="dashed", color="magenta", weight=3]; 3893 -> 4197[label="",style="dashed", color="magenta", weight=3]; 3894 -> 2665[label="",style="dashed", color="red", weight=0]; 3894[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3894 -> 4198[label="",style="dashed", color="magenta", weight=3]; 3894 -> 4199[label="",style="dashed", color="magenta", weight=3]; 3895 -> 2665[label="",style="dashed", color="red", weight=0]; 3895[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3895 -> 4200[label="",style="dashed", color="magenta", weight=3]; 3895 -> 4201[label="",style="dashed", color="magenta", weight=3]; 3896 -> 2665[label="",style="dashed", color="red", weight=0]; 3896[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3896 -> 4202[label="",style="dashed", color="magenta", weight=3]; 3896 -> 4203[label="",style="dashed", color="magenta", weight=3]; 3897 -> 2665[label="",style="dashed", color="red", weight=0]; 3897[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3897 -> 4204[label="",style="dashed", color="magenta", weight=3]; 3897 -> 4205[label="",style="dashed", color="magenta", weight=3]; 3898 -> 2665[label="",style="dashed", color="red", weight=0]; 3898[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3898 -> 4206[label="",style="dashed", color="magenta", weight=3]; 3898 -> 4207[label="",style="dashed", color="magenta", weight=3]; 3899 -> 2665[label="",style="dashed", color="red", weight=0]; 3899[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3899 -> 4208[label="",style="dashed", color="magenta", weight=3]; 3899 -> 4209[label="",style="dashed", color="magenta", weight=3]; 3900 -> 2665[label="",style="dashed", color="red", weight=0]; 3900[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3900 -> 4210[label="",style="dashed", color="magenta", weight=3]; 3900 -> 4211[label="",style="dashed", color="magenta", weight=3]; 3901 -> 2665[label="",style="dashed", color="red", weight=0]; 3901[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3901 -> 4212[label="",style="dashed", color="magenta", weight=3]; 3901 -> 4213[label="",style="dashed", color="magenta", weight=3]; 3902 -> 2665[label="",style="dashed", color="red", weight=0]; 3902[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3902 -> 4214[label="",style="dashed", color="magenta", weight=3]; 3902 -> 4215[label="",style="dashed", color="magenta", weight=3]; 3903 -> 2665[label="",style="dashed", color="red", weight=0]; 3903[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3903 -> 4216[label="",style="dashed", color="magenta", weight=3]; 3903 -> 4217[label="",style="dashed", color="magenta", weight=3]; 3904 -> 2665[label="",style="dashed", color="red", weight=0]; 3904[label="compare vwx211 vwx213 == LT",fontsize=16,color="magenta"];3904 -> 4218[label="",style="dashed", color="magenta", weight=3]; 3904 -> 4219[label="",style="dashed", color="magenta", weight=3]; 3905 -> 3517[label="",style="dashed", color="red", weight=0]; 3905[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3905 -> 4220[label="",style="dashed", color="magenta", weight=3]; 3905 -> 4221[label="",style="dashed", color="magenta", weight=3]; 3906 -> 3518[label="",style="dashed", color="red", weight=0]; 3906[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3906 -> 4222[label="",style="dashed", color="magenta", weight=3]; 3906 -> 4223[label="",style="dashed", color="magenta", weight=3]; 3907 -> 3519[label="",style="dashed", color="red", weight=0]; 3907[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3907 -> 4224[label="",style="dashed", color="magenta", weight=3]; 3907 -> 4225[label="",style="dashed", color="magenta", weight=3]; 3908 -> 3520[label="",style="dashed", color="red", weight=0]; 3908[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3908 -> 4226[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4227[label="",style="dashed", color="magenta", weight=3]; 3909 -> 3521[label="",style="dashed", color="red", weight=0]; 3909[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3909 -> 4228[label="",style="dashed", color="magenta", weight=3]; 3909 -> 4229[label="",style="dashed", color="magenta", weight=3]; 3910 -> 3522[label="",style="dashed", color="red", weight=0]; 3910[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3910 -> 4230[label="",style="dashed", color="magenta", weight=3]; 3910 -> 4231[label="",style="dashed", color="magenta", weight=3]; 3911 -> 3523[label="",style="dashed", color="red", weight=0]; 3911[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3911 -> 4232[label="",style="dashed", color="magenta", weight=3]; 3911 -> 4233[label="",style="dashed", color="magenta", weight=3]; 3912 -> 3524[label="",style="dashed", color="red", weight=0]; 3912[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3912 -> 4234[label="",style="dashed", color="magenta", weight=3]; 3912 -> 4235[label="",style="dashed", color="magenta", weight=3]; 3913 -> 3525[label="",style="dashed", color="red", weight=0]; 3913[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3913 -> 4236[label="",style="dashed", color="magenta", weight=3]; 3913 -> 4237[label="",style="dashed", color="magenta", weight=3]; 3914 -> 3526[label="",style="dashed", color="red", weight=0]; 3914[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3914 -> 4238[label="",style="dashed", color="magenta", weight=3]; 3914 -> 4239[label="",style="dashed", color="magenta", weight=3]; 3915 -> 3527[label="",style="dashed", color="red", weight=0]; 3915[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3915 -> 4240[label="",style="dashed", color="magenta", weight=3]; 3915 -> 4241[label="",style="dashed", color="magenta", weight=3]; 3916 -> 3528[label="",style="dashed", color="red", weight=0]; 3916[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3916 -> 4242[label="",style="dashed", color="magenta", weight=3]; 3916 -> 4243[label="",style="dashed", color="magenta", weight=3]; 3917 -> 3529[label="",style="dashed", color="red", weight=0]; 3917[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3917 -> 4244[label="",style="dashed", color="magenta", weight=3]; 3917 -> 4245[label="",style="dashed", color="magenta", weight=3]; 3918 -> 3530[label="",style="dashed", color="red", weight=0]; 3918[label="vwx212 <= vwx214",fontsize=16,color="magenta"];3918 -> 4246[label="",style="dashed", color="magenta", weight=3]; 3918 -> 4247[label="",style="dashed", color="magenta", weight=3]; 3919 -> 2671[label="",style="dashed", color="red", weight=0]; 3919[label="vwx211 == vwx213",fontsize=16,color="magenta"];3919 -> 4248[label="",style="dashed", color="magenta", weight=3]; 3919 -> 4249[label="",style="dashed", color="magenta", weight=3]; 3920 -> 2664[label="",style="dashed", color="red", weight=0]; 3920[label="vwx211 == vwx213",fontsize=16,color="magenta"];3920 -> 4250[label="",style="dashed", color="magenta", weight=3]; 3920 -> 4251[label="",style="dashed", color="magenta", weight=3]; 3921 -> 2669[label="",style="dashed", color="red", weight=0]; 3921[label="vwx211 == vwx213",fontsize=16,color="magenta"];3921 -> 4252[label="",style="dashed", color="magenta", weight=3]; 3921 -> 4253[label="",style="dashed", color="magenta", weight=3]; 3922 -> 2672[label="",style="dashed", color="red", weight=0]; 3922[label="vwx211 == vwx213",fontsize=16,color="magenta"];3922 -> 4254[label="",style="dashed", color="magenta", weight=3]; 3922 -> 4255[label="",style="dashed", color="magenta", weight=3]; 3923 -> 2673[label="",style="dashed", color="red", weight=0]; 3923[label="vwx211 == vwx213",fontsize=16,color="magenta"];3923 -> 4256[label="",style="dashed", color="magenta", weight=3]; 3923 -> 4257[label="",style="dashed", color="magenta", weight=3]; 3924 -> 2668[label="",style="dashed", color="red", weight=0]; 3924[label="vwx211 == vwx213",fontsize=16,color="magenta"];3924 -> 4258[label="",style="dashed", color="magenta", weight=3]; 3924 -> 4259[label="",style="dashed", color="magenta", weight=3]; 3925 -> 2663[label="",style="dashed", color="red", weight=0]; 3925[label="vwx211 == vwx213",fontsize=16,color="magenta"];3925 -> 4260[label="",style="dashed", color="magenta", weight=3]; 3925 -> 4261[label="",style="dashed", color="magenta", weight=3]; 3926 -> 2665[label="",style="dashed", color="red", weight=0]; 3926[label="vwx211 == vwx213",fontsize=16,color="magenta"];3926 -> 4262[label="",style="dashed", color="magenta", weight=3]; 3926 -> 4263[label="",style="dashed", color="magenta", weight=3]; 3927 -> 2660[label="",style="dashed", color="red", weight=0]; 3927[label="vwx211 == vwx213",fontsize=16,color="magenta"];3927 -> 4264[label="",style="dashed", color="magenta", weight=3]; 3927 -> 4265[label="",style="dashed", color="magenta", weight=3]; 3928 -> 2667[label="",style="dashed", color="red", weight=0]; 3928[label="vwx211 == vwx213",fontsize=16,color="magenta"];3928 -> 4266[label="",style="dashed", color="magenta", weight=3]; 3928 -> 4267[label="",style="dashed", color="magenta", weight=3]; 3929 -> 2666[label="",style="dashed", color="red", weight=0]; 3929[label="vwx211 == vwx213",fontsize=16,color="magenta"];3929 -> 4268[label="",style="dashed", color="magenta", weight=3]; 3929 -> 4269[label="",style="dashed", color="magenta", weight=3]; 3930 -> 2661[label="",style="dashed", color="red", weight=0]; 3930[label="vwx211 == vwx213",fontsize=16,color="magenta"];3930 -> 4270[label="",style="dashed", color="magenta", weight=3]; 3930 -> 4271[label="",style="dashed", color="magenta", weight=3]; 3931 -> 2662[label="",style="dashed", color="red", weight=0]; 3931[label="vwx211 == vwx213",fontsize=16,color="magenta"];3931 -> 4272[label="",style="dashed", color="magenta", weight=3]; 3931 -> 4273[label="",style="dashed", color="magenta", weight=3]; 3932 -> 2670[label="",style="dashed", color="red", weight=0]; 3932[label="vwx211 == vwx213",fontsize=16,color="magenta"];3932 -> 4274[label="",style="dashed", color="magenta", weight=3]; 3932 -> 4275[label="",style="dashed", color="magenta", weight=3]; 3933[label="compare1 (vwx261,vwx262) (vwx263,vwx264) vwx266",fontsize=16,color="burlywood",shape="triangle"];5730[label="vwx266/False",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5730[label="",style="solid", color="burlywood", weight=9]; 5730 -> 4276[label="",style="solid", color="burlywood", weight=3]; 5731[label="vwx266/True",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5731[label="",style="solid", color="burlywood", weight=9]; 5731 -> 4277[label="",style="solid", color="burlywood", weight=3]; 3934 -> 3933[label="",style="dashed", color="red", weight=0]; 3934[label="compare1 (vwx261,vwx262) (vwx263,vwx264) True",fontsize=16,color="magenta"];3934 -> 4278[label="",style="dashed", color="magenta", weight=3]; 3935[label="vwx201",fontsize=16,color="green",shape="box"];3936[label="vwx198",fontsize=16,color="green",shape="box"];3937[label="vwx201",fontsize=16,color="green",shape="box"];3938[label="vwx198",fontsize=16,color="green",shape="box"];3939[label="vwx201",fontsize=16,color="green",shape="box"];3940[label="vwx198",fontsize=16,color="green",shape="box"];3941[label="vwx201",fontsize=16,color="green",shape="box"];3942[label="vwx198",fontsize=16,color="green",shape="box"];3943[label="vwx201",fontsize=16,color="green",shape="box"];3944[label="vwx198",fontsize=16,color="green",shape="box"];3945[label="vwx201",fontsize=16,color="green",shape="box"];3946[label="vwx198",fontsize=16,color="green",shape="box"];3947[label="vwx201",fontsize=16,color="green",shape="box"];3948[label="vwx198",fontsize=16,color="green",shape="box"];3949[label="vwx201",fontsize=16,color="green",shape="box"];3950[label="vwx198",fontsize=16,color="green",shape="box"];3951[label="vwx201",fontsize=16,color="green",shape="box"];3952[label="vwx198",fontsize=16,color="green",shape="box"];3953[label="vwx201",fontsize=16,color="green",shape="box"];3954[label="vwx198",fontsize=16,color="green",shape="box"];3955[label="vwx201",fontsize=16,color="green",shape="box"];3956[label="vwx198",fontsize=16,color="green",shape="box"];3957[label="vwx201",fontsize=16,color="green",shape="box"];3958[label="vwx198",fontsize=16,color="green",shape="box"];3959[label="vwx201",fontsize=16,color="green",shape="box"];3960[label="vwx198",fontsize=16,color="green",shape="box"];3961[label="vwx201",fontsize=16,color="green",shape="box"];3962[label="vwx198",fontsize=16,color="green",shape="box"];4282[label="vwx199 < vwx202",fontsize=16,color="blue",shape="box"];5732[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5732[label="",style="solid", color="blue", weight=9]; 5732 -> 4286[label="",style="solid", color="blue", weight=3]; 5733[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5733[label="",style="solid", color="blue", weight=9]; 5733 -> 4287[label="",style="solid", color="blue", weight=3]; 5734[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5734[label="",style="solid", color="blue", weight=9]; 5734 -> 4288[label="",style="solid", color="blue", weight=3]; 5735[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5735[label="",style="solid", color="blue", weight=9]; 5735 -> 4289[label="",style="solid", color="blue", weight=3]; 5736[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5736[label="",style="solid", color="blue", weight=9]; 5736 -> 4290[label="",style="solid", color="blue", weight=3]; 5737[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5737[label="",style="solid", color="blue", weight=9]; 5737 -> 4291[label="",style="solid", color="blue", weight=3]; 5738[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5738[label="",style="solid", color="blue", weight=9]; 5738 -> 4292[label="",style="solid", color="blue", weight=3]; 5739[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5739[label="",style="solid", color="blue", weight=9]; 5739 -> 4293[label="",style="solid", color="blue", weight=3]; 5740[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5740[label="",style="solid", color="blue", weight=9]; 5740 -> 4294[label="",style="solid", color="blue", weight=3]; 5741[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5741[label="",style="solid", color="blue", weight=9]; 5741 -> 4295[label="",style="solid", color="blue", weight=3]; 5742[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5742[label="",style="solid", color="blue", weight=9]; 5742 -> 4296[label="",style="solid", color="blue", weight=3]; 5743[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5743[label="",style="solid", color="blue", weight=9]; 5743 -> 4297[label="",style="solid", color="blue", weight=3]; 5744[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5744[label="",style="solid", color="blue", weight=9]; 5744 -> 4298[label="",style="solid", color="blue", weight=3]; 5745[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4282 -> 5745[label="",style="solid", color="blue", weight=9]; 5745 -> 4299[label="",style="solid", color="blue", weight=3]; 4283 -> 3140[label="",style="dashed", color="red", weight=0]; 4283[label="vwx199 == vwx202 && vwx200 <= vwx203",fontsize=16,color="magenta"];4283 -> 4300[label="",style="dashed", color="magenta", weight=3]; 4283 -> 4301[label="",style="dashed", color="magenta", weight=3]; 4281[label="vwx289 || vwx290",fontsize=16,color="burlywood",shape="triangle"];5746[label="vwx289/False",fontsize=10,color="white",style="solid",shape="box"];4281 -> 5746[label="",style="solid", color="burlywood", weight=9]; 5746 -> 4302[label="",style="solid", color="burlywood", weight=3]; 5747[label="vwx289/True",fontsize=10,color="white",style="solid",shape="box"];4281 -> 5747[label="",style="solid", color="burlywood", weight=9]; 5747 -> 4303[label="",style="solid", color="burlywood", weight=3]; 3965 -> 2671[label="",style="dashed", color="red", weight=0]; 3965[label="vwx198 == vwx201",fontsize=16,color="magenta"];3965 -> 4304[label="",style="dashed", color="magenta", weight=3]; 3965 -> 4305[label="",style="dashed", color="magenta", weight=3]; 3966 -> 2664[label="",style="dashed", color="red", weight=0]; 3966[label="vwx198 == vwx201",fontsize=16,color="magenta"];3966 -> 4306[label="",style="dashed", color="magenta", weight=3]; 3966 -> 4307[label="",style="dashed", color="magenta", weight=3]; 3967 -> 2669[label="",style="dashed", color="red", weight=0]; 3967[label="vwx198 == vwx201",fontsize=16,color="magenta"];3967 -> 4308[label="",style="dashed", color="magenta", weight=3]; 3967 -> 4309[label="",style="dashed", color="magenta", weight=3]; 3968 -> 2672[label="",style="dashed", color="red", weight=0]; 3968[label="vwx198 == vwx201",fontsize=16,color="magenta"];3968 -> 4310[label="",style="dashed", color="magenta", weight=3]; 3968 -> 4311[label="",style="dashed", color="magenta", weight=3]; 3969 -> 2673[label="",style="dashed", color="red", weight=0]; 3969[label="vwx198 == vwx201",fontsize=16,color="magenta"];3969 -> 4312[label="",style="dashed", color="magenta", weight=3]; 3969 -> 4313[label="",style="dashed", color="magenta", weight=3]; 3970 -> 2668[label="",style="dashed", color="red", weight=0]; 3970[label="vwx198 == vwx201",fontsize=16,color="magenta"];3970 -> 4314[label="",style="dashed", color="magenta", weight=3]; 3970 -> 4315[label="",style="dashed", color="magenta", weight=3]; 3971 -> 2663[label="",style="dashed", color="red", weight=0]; 3971[label="vwx198 == vwx201",fontsize=16,color="magenta"];3971 -> 4316[label="",style="dashed", color="magenta", weight=3]; 3971 -> 4317[label="",style="dashed", color="magenta", weight=3]; 3972 -> 2665[label="",style="dashed", color="red", weight=0]; 3972[label="vwx198 == vwx201",fontsize=16,color="magenta"];3972 -> 4318[label="",style="dashed", color="magenta", weight=3]; 3972 -> 4319[label="",style="dashed", color="magenta", weight=3]; 3973 -> 2660[label="",style="dashed", color="red", weight=0]; 3973[label="vwx198 == vwx201",fontsize=16,color="magenta"];3973 -> 4320[label="",style="dashed", color="magenta", weight=3]; 3973 -> 4321[label="",style="dashed", color="magenta", weight=3]; 3974 -> 2667[label="",style="dashed", color="red", weight=0]; 3974[label="vwx198 == vwx201",fontsize=16,color="magenta"];3974 -> 4322[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4323[label="",style="dashed", color="magenta", weight=3]; 3975 -> 2666[label="",style="dashed", color="red", weight=0]; 3975[label="vwx198 == vwx201",fontsize=16,color="magenta"];3975 -> 4324[label="",style="dashed", color="magenta", weight=3]; 3975 -> 4325[label="",style="dashed", color="magenta", weight=3]; 3976 -> 2661[label="",style="dashed", color="red", weight=0]; 3976[label="vwx198 == vwx201",fontsize=16,color="magenta"];3976 -> 4326[label="",style="dashed", color="magenta", weight=3]; 3976 -> 4327[label="",style="dashed", color="magenta", weight=3]; 3977 -> 2662[label="",style="dashed", color="red", weight=0]; 3977[label="vwx198 == vwx201",fontsize=16,color="magenta"];3977 -> 4328[label="",style="dashed", color="magenta", weight=3]; 3977 -> 4329[label="",style="dashed", color="magenta", weight=3]; 3978 -> 2670[label="",style="dashed", color="red", weight=0]; 3978[label="vwx198 == vwx201",fontsize=16,color="magenta"];3978 -> 4330[label="",style="dashed", color="magenta", weight=3]; 3978 -> 4331[label="",style="dashed", color="magenta", weight=3]; 3979[label="compare1 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) vwx283",fontsize=16,color="burlywood",shape="triangle"];5748[label="vwx283/False",fontsize=10,color="white",style="solid",shape="box"];3979 -> 5748[label="",style="solid", color="burlywood", weight=9]; 5748 -> 4332[label="",style="solid", color="burlywood", weight=3]; 5749[label="vwx283/True",fontsize=10,color="white",style="solid",shape="box"];3979 -> 5749[label="",style="solid", color="burlywood", weight=9]; 5749 -> 4333[label="",style="solid", color="burlywood", weight=3]; 3980 -> 3979[label="",style="dashed", color="red", weight=0]; 3980[label="compare1 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) True",fontsize=16,color="magenta"];3980 -> 4334[label="",style="dashed", color="magenta", weight=3]; 3981[label="vwx400",fontsize=16,color="green",shape="box"];3982[label="vwx301",fontsize=16,color="green",shape="box"];3983[label="vwx401",fontsize=16,color="green",shape="box"];3984[label="vwx300",fontsize=16,color="green",shape="box"];3985[label="vwx401",fontsize=16,color="green",shape="box"];3986[label="vwx301",fontsize=16,color="green",shape="box"];3987[label="vwx401",fontsize=16,color="green",shape="box"];3988[label="vwx301",fontsize=16,color="green",shape="box"];3989[label="vwx401",fontsize=16,color="green",shape="box"];3990[label="vwx301",fontsize=16,color="green",shape="box"];3991[label="vwx401",fontsize=16,color="green",shape="box"];3992[label="vwx301",fontsize=16,color="green",shape="box"];3993[label="vwx401",fontsize=16,color="green",shape="box"];3994[label="vwx301",fontsize=16,color="green",shape="box"];3995[label="vwx401",fontsize=16,color="green",shape="box"];3996[label="vwx301",fontsize=16,color="green",shape="box"];3997[label="vwx401",fontsize=16,color="green",shape="box"];3998[label="vwx301",fontsize=16,color="green",shape="box"];3999[label="vwx401",fontsize=16,color="green",shape="box"];4000[label="vwx301",fontsize=16,color="green",shape="box"];4001[label="vwx401",fontsize=16,color="green",shape="box"];4002[label="vwx301",fontsize=16,color="green",shape="box"];4003[label="vwx401",fontsize=16,color="green",shape="box"];4004[label="vwx301",fontsize=16,color="green",shape="box"];4005[label="vwx401",fontsize=16,color="green",shape="box"];4006[label="vwx301",fontsize=16,color="green",shape="box"];4007[label="vwx401",fontsize=16,color="green",shape="box"];4008[label="vwx301",fontsize=16,color="green",shape="box"];4009[label="vwx401",fontsize=16,color="green",shape="box"];4010[label="vwx301",fontsize=16,color="green",shape="box"];4011[label="vwx401",fontsize=16,color="green",shape="box"];4012[label="vwx301",fontsize=16,color="green",shape="box"];4013[label="vwx400",fontsize=16,color="green",shape="box"];4014[label="vwx300",fontsize=16,color="green",shape="box"];4015[label="vwx400",fontsize=16,color="green",shape="box"];4016[label="vwx300",fontsize=16,color="green",shape="box"];4017[label="vwx400",fontsize=16,color="green",shape="box"];4018[label="vwx300",fontsize=16,color="green",shape="box"];4019[label="vwx400",fontsize=16,color="green",shape="box"];4020[label="vwx300",fontsize=16,color="green",shape="box"];4021[label="vwx400",fontsize=16,color="green",shape="box"];4022[label="vwx300",fontsize=16,color="green",shape="box"];4023[label="vwx400",fontsize=16,color="green",shape="box"];4024[label="vwx300",fontsize=16,color="green",shape="box"];4025[label="vwx400",fontsize=16,color="green",shape="box"];4026[label="vwx300",fontsize=16,color="green",shape="box"];4027[label="vwx400",fontsize=16,color="green",shape="box"];4028[label="vwx300",fontsize=16,color="green",shape="box"];4029[label="vwx400",fontsize=16,color="green",shape="box"];4030[label="vwx300",fontsize=16,color="green",shape="box"];4031[label="vwx400",fontsize=16,color="green",shape="box"];4032[label="vwx300",fontsize=16,color="green",shape="box"];4033[label="vwx400",fontsize=16,color="green",shape="box"];4034[label="vwx300",fontsize=16,color="green",shape="box"];4035[label="vwx400",fontsize=16,color="green",shape="box"];4036[label="vwx300",fontsize=16,color="green",shape="box"];4037[label="vwx400",fontsize=16,color="green",shape="box"];4038[label="vwx300",fontsize=16,color="green",shape="box"];4039[label="vwx400",fontsize=16,color="green",shape="box"];4040[label="vwx300",fontsize=16,color="green",shape="box"];4041[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];4041 -> 4335[label="",style="solid", color="black", weight=3]; 4042[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];4042 -> 4336[label="",style="solid", color="black", weight=3]; 4043[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];4043 -> 4337[label="",style="solid", color="black", weight=3]; 4044[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];4044 -> 4338[label="",style="solid", color="black", weight=3]; 4045[label="vwx400",fontsize=16,color="green",shape="box"];4046[label="vwx300",fontsize=16,color="green",shape="box"];4047[label="vwx400",fontsize=16,color="green",shape="box"];4048[label="vwx300",fontsize=16,color="green",shape="box"];4049[label="vwx400",fontsize=16,color="green",shape="box"];4050[label="vwx300",fontsize=16,color="green",shape="box"];4051[label="vwx400",fontsize=16,color="green",shape="box"];4052[label="vwx300",fontsize=16,color="green",shape="box"];4053[label="vwx400",fontsize=16,color="green",shape="box"];4054[label="vwx300",fontsize=16,color="green",shape="box"];4055[label="vwx400",fontsize=16,color="green",shape="box"];4056[label="vwx300",fontsize=16,color="green",shape="box"];4057[label="vwx400",fontsize=16,color="green",shape="box"];4058[label="vwx300",fontsize=16,color="green",shape="box"];4059[label="vwx400",fontsize=16,color="green",shape="box"];4060[label="vwx300",fontsize=16,color="green",shape="box"];4061[label="vwx400",fontsize=16,color="green",shape="box"];4062[label="vwx300",fontsize=16,color="green",shape="box"];4063[label="vwx400",fontsize=16,color="green",shape="box"];4064[label="vwx300",fontsize=16,color="green",shape="box"];4065[label="vwx400",fontsize=16,color="green",shape="box"];4066[label="vwx300",fontsize=16,color="green",shape="box"];4067[label="vwx400",fontsize=16,color="green",shape="box"];4068[label="vwx300",fontsize=16,color="green",shape="box"];4069[label="vwx400",fontsize=16,color="green",shape="box"];4070[label="vwx300",fontsize=16,color="green",shape="box"];4071[label="vwx400",fontsize=16,color="green",shape="box"];4072[label="vwx300",fontsize=16,color="green",shape="box"];4073 -> 2660[label="",style="dashed", color="red", weight=0]; 4073[label="vwx302 == vwx402",fontsize=16,color="magenta"];4073 -> 4339[label="",style="dashed", color="magenta", weight=3]; 4073 -> 4340[label="",style="dashed", color="magenta", weight=3]; 4074 -> 2661[label="",style="dashed", color="red", weight=0]; 4074[label="vwx302 == vwx402",fontsize=16,color="magenta"];4074 -> 4341[label="",style="dashed", color="magenta", weight=3]; 4074 -> 4342[label="",style="dashed", color="magenta", weight=3]; 4075 -> 2662[label="",style="dashed", color="red", weight=0]; 4075[label="vwx302 == vwx402",fontsize=16,color="magenta"];4075 -> 4343[label="",style="dashed", color="magenta", weight=3]; 4075 -> 4344[label="",style="dashed", color="magenta", weight=3]; 4076 -> 2663[label="",style="dashed", color="red", weight=0]; 4076[label="vwx302 == vwx402",fontsize=16,color="magenta"];4076 -> 4345[label="",style="dashed", color="magenta", weight=3]; 4076 -> 4346[label="",style="dashed", color="magenta", weight=3]; 4077 -> 2664[label="",style="dashed", color="red", weight=0]; 4077[label="vwx302 == vwx402",fontsize=16,color="magenta"];4077 -> 4347[label="",style="dashed", color="magenta", weight=3]; 4077 -> 4348[label="",style="dashed", color="magenta", weight=3]; 4078 -> 2665[label="",style="dashed", color="red", weight=0]; 4078[label="vwx302 == vwx402",fontsize=16,color="magenta"];4078 -> 4349[label="",style="dashed", color="magenta", weight=3]; 4078 -> 4350[label="",style="dashed", color="magenta", weight=3]; 4079 -> 2666[label="",style="dashed", color="red", weight=0]; 4079[label="vwx302 == vwx402",fontsize=16,color="magenta"];4079 -> 4351[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4352[label="",style="dashed", color="magenta", weight=3]; 4080 -> 2667[label="",style="dashed", color="red", weight=0]; 4080[label="vwx302 == vwx402",fontsize=16,color="magenta"];4080 -> 4353[label="",style="dashed", color="magenta", weight=3]; 4080 -> 4354[label="",style="dashed", color="magenta", weight=3]; 4081 -> 2668[label="",style="dashed", color="red", weight=0]; 4081[label="vwx302 == vwx402",fontsize=16,color="magenta"];4081 -> 4355[label="",style="dashed", color="magenta", weight=3]; 4081 -> 4356[label="",style="dashed", color="magenta", weight=3]; 4082 -> 2669[label="",style="dashed", color="red", weight=0]; 4082[label="vwx302 == vwx402",fontsize=16,color="magenta"];4082 -> 4357[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4358[label="",style="dashed", color="magenta", weight=3]; 4083 -> 2670[label="",style="dashed", color="red", weight=0]; 4083[label="vwx302 == vwx402",fontsize=16,color="magenta"];4083 -> 4359[label="",style="dashed", color="magenta", weight=3]; 4083 -> 4360[label="",style="dashed", color="magenta", weight=3]; 4084 -> 2671[label="",style="dashed", color="red", weight=0]; 4084[label="vwx302 == vwx402",fontsize=16,color="magenta"];4084 -> 4361[label="",style="dashed", color="magenta", weight=3]; 4084 -> 4362[label="",style="dashed", color="magenta", weight=3]; 4085 -> 2672[label="",style="dashed", color="red", weight=0]; 4085[label="vwx302 == vwx402",fontsize=16,color="magenta"];4085 -> 4363[label="",style="dashed", color="magenta", weight=3]; 4085 -> 4364[label="",style="dashed", color="magenta", weight=3]; 4086 -> 2673[label="",style="dashed", color="red", weight=0]; 4086[label="vwx302 == vwx402",fontsize=16,color="magenta"];4086 -> 4365[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4366[label="",style="dashed", color="magenta", weight=3]; 4087 -> 2660[label="",style="dashed", color="red", weight=0]; 4087[label="vwx301 == vwx401",fontsize=16,color="magenta"];4087 -> 4367[label="",style="dashed", color="magenta", weight=3]; 4087 -> 4368[label="",style="dashed", color="magenta", weight=3]; 4088 -> 2661[label="",style="dashed", color="red", weight=0]; 4088[label="vwx301 == vwx401",fontsize=16,color="magenta"];4088 -> 4369[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4370[label="",style="dashed", color="magenta", weight=3]; 4089 -> 2662[label="",style="dashed", color="red", weight=0]; 4089[label="vwx301 == vwx401",fontsize=16,color="magenta"];4089 -> 4371[label="",style="dashed", color="magenta", weight=3]; 4089 -> 4372[label="",style="dashed", color="magenta", weight=3]; 4090 -> 2663[label="",style="dashed", color="red", weight=0]; 4090[label="vwx301 == vwx401",fontsize=16,color="magenta"];4090 -> 4373[label="",style="dashed", color="magenta", weight=3]; 4090 -> 4374[label="",style="dashed", color="magenta", weight=3]; 4091 -> 2664[label="",style="dashed", color="red", weight=0]; 4091[label="vwx301 == vwx401",fontsize=16,color="magenta"];4091 -> 4375[label="",style="dashed", color="magenta", weight=3]; 4091 -> 4376[label="",style="dashed", color="magenta", weight=3]; 4092 -> 2665[label="",style="dashed", color="red", weight=0]; 4092[label="vwx301 == vwx401",fontsize=16,color="magenta"];4092 -> 4377[label="",style="dashed", color="magenta", weight=3]; 4092 -> 4378[label="",style="dashed", color="magenta", weight=3]; 4093 -> 2666[label="",style="dashed", color="red", weight=0]; 4093[label="vwx301 == vwx401",fontsize=16,color="magenta"];4093 -> 4379[label="",style="dashed", color="magenta", weight=3]; 4093 -> 4380[label="",style="dashed", color="magenta", weight=3]; 4094 -> 2667[label="",style="dashed", color="red", weight=0]; 4094[label="vwx301 == vwx401",fontsize=16,color="magenta"];4094 -> 4381[label="",style="dashed", color="magenta", weight=3]; 4094 -> 4382[label="",style="dashed", color="magenta", weight=3]; 4095 -> 2668[label="",style="dashed", color="red", weight=0]; 4095[label="vwx301 == vwx401",fontsize=16,color="magenta"];4095 -> 4383[label="",style="dashed", color="magenta", weight=3]; 4095 -> 4384[label="",style="dashed", color="magenta", weight=3]; 4096 -> 2669[label="",style="dashed", color="red", weight=0]; 4096[label="vwx301 == vwx401",fontsize=16,color="magenta"];4096 -> 4385[label="",style="dashed", color="magenta", weight=3]; 4096 -> 4386[label="",style="dashed", color="magenta", weight=3]; 4097 -> 2670[label="",style="dashed", color="red", weight=0]; 4097[label="vwx301 == vwx401",fontsize=16,color="magenta"];4097 -> 4387[label="",style="dashed", color="magenta", weight=3]; 4097 -> 4388[label="",style="dashed", color="magenta", weight=3]; 4098 -> 2671[label="",style="dashed", color="red", weight=0]; 4098[label="vwx301 == vwx401",fontsize=16,color="magenta"];4098 -> 4389[label="",style="dashed", color="magenta", weight=3]; 4098 -> 4390[label="",style="dashed", color="magenta", weight=3]; 4099 -> 2672[label="",style="dashed", color="red", weight=0]; 4099[label="vwx301 == vwx401",fontsize=16,color="magenta"];4099 -> 4391[label="",style="dashed", color="magenta", weight=3]; 4099 -> 4392[label="",style="dashed", color="magenta", weight=3]; 4100 -> 2673[label="",style="dashed", color="red", weight=0]; 4100[label="vwx301 == vwx401",fontsize=16,color="magenta"];4100 -> 4393[label="",style="dashed", color="magenta", weight=3]; 4100 -> 4394[label="",style="dashed", color="magenta", weight=3]; 4101[label="vwx400",fontsize=16,color="green",shape="box"];4102[label="vwx300",fontsize=16,color="green",shape="box"];4103[label="vwx400",fontsize=16,color="green",shape="box"];4104[label="vwx300",fontsize=16,color="green",shape="box"];4105[label="vwx400",fontsize=16,color="green",shape="box"];4106[label="vwx300",fontsize=16,color="green",shape="box"];4107[label="vwx400",fontsize=16,color="green",shape="box"];4108[label="vwx300",fontsize=16,color="green",shape="box"];4109[label="vwx400",fontsize=16,color="green",shape="box"];4110[label="vwx300",fontsize=16,color="green",shape="box"];4111[label="vwx400",fontsize=16,color="green",shape="box"];4112[label="vwx300",fontsize=16,color="green",shape="box"];4113[label="vwx400",fontsize=16,color="green",shape="box"];4114[label="vwx300",fontsize=16,color="green",shape="box"];4115[label="vwx400",fontsize=16,color="green",shape="box"];4116[label="vwx300",fontsize=16,color="green",shape="box"];4117[label="vwx400",fontsize=16,color="green",shape="box"];4118[label="vwx300",fontsize=16,color="green",shape="box"];4119[label="vwx400",fontsize=16,color="green",shape="box"];4120[label="vwx300",fontsize=16,color="green",shape="box"];4121[label="vwx400",fontsize=16,color="green",shape="box"];4122[label="vwx300",fontsize=16,color="green",shape="box"];4123[label="vwx400",fontsize=16,color="green",shape="box"];4124[label="vwx300",fontsize=16,color="green",shape="box"];4125[label="vwx400",fontsize=16,color="green",shape="box"];4126[label="vwx300",fontsize=16,color="green",shape="box"];4127[label="vwx400",fontsize=16,color="green",shape="box"];4128[label="vwx300",fontsize=16,color="green",shape="box"];4129 -> 3485[label="",style="dashed", color="red", weight=0]; 4129[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];4129 -> 4395[label="",style="dashed", color="magenta", weight=3]; 4129 -> 4396[label="",style="dashed", color="magenta", weight=3]; 4130[label="False",fontsize=16,color="green",shape="box"];4131[label="False",fontsize=16,color="green",shape="box"];4132[label="True",fontsize=16,color="green",shape="box"];4133[label="False",fontsize=16,color="green",shape="box"];4134[label="True",fontsize=16,color="green",shape="box"];4135 -> 3485[label="",style="dashed", color="red", weight=0]; 4135[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];4135 -> 4397[label="",style="dashed", color="magenta", weight=3]; 4135 -> 4398[label="",style="dashed", color="magenta", weight=3]; 4136[label="False",fontsize=16,color="green",shape="box"];4137[label="False",fontsize=16,color="green",shape="box"];4138[label="True",fontsize=16,color="green",shape="box"];4139[label="False",fontsize=16,color="green",shape="box"];4140[label="True",fontsize=16,color="green",shape="box"];4141[label="vwx400",fontsize=16,color="green",shape="box"];4142[label="vwx301",fontsize=16,color="green",shape="box"];4143[label="vwx401",fontsize=16,color="green",shape="box"];4144[label="vwx300",fontsize=16,color="green",shape="box"];4145[label="vwx401",fontsize=16,color="green",shape="box"];4146[label="vwx301",fontsize=16,color="green",shape="box"];4147[label="vwx401",fontsize=16,color="green",shape="box"];4148[label="vwx301",fontsize=16,color="green",shape="box"];4149[label="vwx400",fontsize=16,color="green",shape="box"];4150[label="vwx300",fontsize=16,color="green",shape="box"];4151[label="vwx400",fontsize=16,color="green",shape="box"];4152[label="vwx300",fontsize=16,color="green",shape="box"];4154 -> 2380[label="",style="dashed", color="red", weight=0]; 4154[label="compare vwx157 vwx158",fontsize=16,color="magenta"];4154 -> 4399[label="",style="dashed", color="magenta", weight=3]; 4154 -> 4400[label="",style="dashed", color="magenta", weight=3]; 4153[label="vwx285 /= GT",fontsize=16,color="black",shape="triangle"];4153 -> 4401[label="",style="solid", color="black", weight=3]; 4162[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];4162 -> 4402[label="",style="solid", color="black", weight=3]; 4163[label="Nothing <= Just vwx1580",fontsize=16,color="black",shape="box"];4163 -> 4403[label="",style="solid", color="black", weight=3]; 4164[label="Just vwx1570 <= Nothing",fontsize=16,color="black",shape="box"];4164 -> 4404[label="",style="solid", color="black", weight=3]; 4165[label="Just vwx1570 <= Just vwx1580",fontsize=16,color="black",shape="box"];4165 -> 4405[label="",style="solid", color="black", weight=3]; 4155 -> 2382[label="",style="dashed", color="red", weight=0]; 4155[label="compare vwx157 vwx158",fontsize=16,color="magenta"];4155 -> 4406[label="",style="dashed", color="magenta", weight=3]; 4155 -> 4407[label="",style="dashed", color="magenta", weight=3]; 4156 -> 2383[label="",style="dashed", color="red", weight=0]; 4156[label="compare vwx157 vwx158",fontsize=16,color="magenta"];4156 -> 4408[label="",style="dashed", color="magenta", weight=3]; 4156 -> 4409[label="",style="dashed", color="magenta", weight=3]; 4157 -> 2384[label="",style="dashed", color="red", weight=0]; 4157[label="compare vwx157 vwx158",fontsize=16,color="magenta"];4157 -> 4410[label="",style="dashed", color="magenta", weight=3]; 4157 -> 4411[label="",style="dashed", color="magenta", weight=3]; 4166[label="False <= False",fontsize=16,color="black",shape="box"];4166 -> 4412[label="",style="solid", color="black", weight=3]; 4167[label="False <= True",fontsize=16,color="black",shape="box"];4167 -> 4413[label="",style="solid", color="black", weight=3]; 4168[label="True <= False",fontsize=16,color="black",shape="box"];4168 -> 4414[label="",style="solid", color="black", weight=3]; 4169[label="True <= True",fontsize=16,color="black",shape="box"];4169 -> 4415[label="",style="solid", color="black", weight=3]; 4158 -> 2386[label="",style="dashed", color="red", weight=0]; 4158[label="compare vwx157 vwx158",fontsize=16,color="magenta"];4158 -> 4416[label="",style="dashed", color="magenta", weight=3]; 4158 -> 4417[label="",style="dashed", color="magenta", weight=3]; 4170[label="LT <= LT",fontsize=16,color="black",shape="box"];4170 -> 4418[label="",style="solid", color="black", weight=3]; 4171[label="LT <= EQ",fontsize=16,color="black",shape="box"];4171 -> 4419[label="",style="solid", color="black", weight=3]; 4172[label="LT <= GT",fontsize=16,color="black",shape="box"];4172 -> 4420[label="",style="solid", color="black", weight=3]; 4173[label="EQ <= LT",fontsize=16,color="black",shape="box"];4173 -> 4421[label="",style="solid", color="black", weight=3]; 4174[label="EQ <= EQ",fontsize=16,color="black",shape="box"];4174 -> 4422[label="",style="solid", color="black", weight=3]; 4175[label="EQ <= GT",fontsize=16,color="black",shape="box"];4175 -> 4423[label="",style="solid", color="black", weight=3]; 4176[label="GT <= LT",fontsize=16,color="black",shape="box"];4176 -> 4424[label="",style="solid", color="black", weight=3]; 4177[label="GT <= EQ",fontsize=16,color="black",shape="box"];4177 -> 4425[label="",style="solid", color="black", weight=3]; 4178[label="GT <= GT",fontsize=16,color="black",shape="box"];4178 -> 4426[label="",style="solid", color="black", weight=3]; 4159 -> 2388[label="",style="dashed", color="red", weight=0]; 4159[label="compare vwx157 vwx158",fontsize=16,color="magenta"];4159 -> 4427[label="",style="dashed", color="magenta", weight=3]; 4159 -> 4428[label="",style="dashed", color="magenta", weight=3]; 4160 -> 2389[label="",style="dashed", color="red", weight=0]; 4160[label="compare vwx157 vwx158",fontsize=16,color="magenta"];4160 -> 4429[label="",style="dashed", color="magenta", weight=3]; 4160 -> 4430[label="",style="dashed", color="magenta", weight=3]; 4161 -> 2390[label="",style="dashed", color="red", weight=0]; 4161[label="compare vwx157 vwx158",fontsize=16,color="magenta"];4161 -> 4431[label="",style="dashed", color="magenta", weight=3]; 4161 -> 4432[label="",style="dashed", color="magenta", weight=3]; 4179[label="Left vwx1570 <= Left vwx1580",fontsize=16,color="black",shape="box"];4179 -> 4433[label="",style="solid", color="black", weight=3]; 4180[label="Left vwx1570 <= Right vwx1580",fontsize=16,color="black",shape="box"];4180 -> 4434[label="",style="solid", color="black", weight=3]; 4181[label="Right vwx1570 <= Left vwx1580",fontsize=16,color="black",shape="box"];4181 -> 4435[label="",style="solid", color="black", weight=3]; 4182[label="Right vwx1570 <= Right vwx1580",fontsize=16,color="black",shape="box"];4182 -> 4436[label="",style="solid", color="black", weight=3]; 4183[label="(vwx1570,vwx1571) <= (vwx1580,vwx1581)",fontsize=16,color="black",shape="box"];4183 -> 4437[label="",style="solid", color="black", weight=3]; 4184[label="(vwx1570,vwx1571,vwx1572) <= (vwx1580,vwx1581,vwx1582)",fontsize=16,color="black",shape="box"];4184 -> 4438[label="",style="solid", color="black", weight=3]; 4185[label="GT",fontsize=16,color="green",shape="box"];4186 -> 4439[label="",style="dashed", color="red", weight=0]; 4186[label="primPlusNat (primMulNat vwx4000 (Succ vwx3100)) (Succ vwx3100)",fontsize=16,color="magenta"];4186 -> 4440[label="",style="dashed", color="magenta", weight=3]; 4187[label="Zero",fontsize=16,color="green",shape="box"];4188[label="Zero",fontsize=16,color="green",shape="box"];4189[label="Zero",fontsize=16,color="green",shape="box"];4190[label="GT",fontsize=16,color="green",shape="box"];4191[label="GT",fontsize=16,color="green",shape="box"];4192[label="LT",fontsize=16,color="green",shape="box"];4193 -> 2380[label="",style="dashed", color="red", weight=0]; 4193[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4193 -> 4441[label="",style="dashed", color="magenta", weight=3]; 4193 -> 4442[label="",style="dashed", color="magenta", weight=3]; 4194[label="LT",fontsize=16,color="green",shape="box"];4195 -> 2381[label="",style="dashed", color="red", weight=0]; 4195[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4195 -> 4443[label="",style="dashed", color="magenta", weight=3]; 4195 -> 4444[label="",style="dashed", color="magenta", weight=3]; 4196[label="LT",fontsize=16,color="green",shape="box"];4197 -> 2382[label="",style="dashed", color="red", weight=0]; 4197[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4197 -> 4445[label="",style="dashed", color="magenta", weight=3]; 4197 -> 4446[label="",style="dashed", color="magenta", weight=3]; 4198[label="LT",fontsize=16,color="green",shape="box"];4199 -> 2383[label="",style="dashed", color="red", weight=0]; 4199[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4199 -> 4447[label="",style="dashed", color="magenta", weight=3]; 4199 -> 4448[label="",style="dashed", color="magenta", weight=3]; 4200[label="LT",fontsize=16,color="green",shape="box"];4201 -> 2384[label="",style="dashed", color="red", weight=0]; 4201[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4201 -> 4449[label="",style="dashed", color="magenta", weight=3]; 4201 -> 4450[label="",style="dashed", color="magenta", weight=3]; 4202[label="LT",fontsize=16,color="green",shape="box"];4203 -> 2385[label="",style="dashed", color="red", weight=0]; 4203[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4203 -> 4451[label="",style="dashed", color="magenta", weight=3]; 4203 -> 4452[label="",style="dashed", color="magenta", weight=3]; 4204[label="LT",fontsize=16,color="green",shape="box"];4205 -> 2386[label="",style="dashed", color="red", weight=0]; 4205[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4205 -> 4453[label="",style="dashed", color="magenta", weight=3]; 4205 -> 4454[label="",style="dashed", color="magenta", weight=3]; 4206[label="LT",fontsize=16,color="green",shape="box"];4207 -> 2387[label="",style="dashed", color="red", weight=0]; 4207[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4207 -> 4455[label="",style="dashed", color="magenta", weight=3]; 4207 -> 4456[label="",style="dashed", color="magenta", weight=3]; 4208[label="LT",fontsize=16,color="green",shape="box"];4209 -> 2388[label="",style="dashed", color="red", weight=0]; 4209[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4209 -> 4457[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4458[label="",style="dashed", color="magenta", weight=3]; 4210[label="LT",fontsize=16,color="green",shape="box"];4211 -> 2389[label="",style="dashed", color="red", weight=0]; 4211[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4211 -> 4459[label="",style="dashed", color="magenta", weight=3]; 4211 -> 4460[label="",style="dashed", color="magenta", weight=3]; 4212[label="LT",fontsize=16,color="green",shape="box"];4213 -> 2390[label="",style="dashed", color="red", weight=0]; 4213[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4213 -> 4461[label="",style="dashed", color="magenta", weight=3]; 4213 -> 4462[label="",style="dashed", color="magenta", weight=3]; 4214[label="LT",fontsize=16,color="green",shape="box"];4215 -> 2391[label="",style="dashed", color="red", weight=0]; 4215[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4215 -> 4463[label="",style="dashed", color="magenta", weight=3]; 4215 -> 4464[label="",style="dashed", color="magenta", weight=3]; 4216[label="LT",fontsize=16,color="green",shape="box"];4217 -> 2392[label="",style="dashed", color="red", weight=0]; 4217[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4217 -> 4465[label="",style="dashed", color="magenta", weight=3]; 4217 -> 4466[label="",style="dashed", color="magenta", weight=3]; 4218[label="LT",fontsize=16,color="green",shape="box"];4219 -> 2393[label="",style="dashed", color="red", weight=0]; 4219[label="compare vwx211 vwx213",fontsize=16,color="magenta"];4219 -> 4467[label="",style="dashed", color="magenta", weight=3]; 4219 -> 4468[label="",style="dashed", color="magenta", weight=3]; 4220[label="vwx214",fontsize=16,color="green",shape="box"];4221[label="vwx212",fontsize=16,color="green",shape="box"];4222[label="vwx214",fontsize=16,color="green",shape="box"];4223[label="vwx212",fontsize=16,color="green",shape="box"];4224[label="vwx214",fontsize=16,color="green",shape="box"];4225[label="vwx212",fontsize=16,color="green",shape="box"];4226[label="vwx214",fontsize=16,color="green",shape="box"];4227[label="vwx212",fontsize=16,color="green",shape="box"];4228[label="vwx214",fontsize=16,color="green",shape="box"];4229[label="vwx212",fontsize=16,color="green",shape="box"];4230[label="vwx214",fontsize=16,color="green",shape="box"];4231[label="vwx212",fontsize=16,color="green",shape="box"];4232[label="vwx214",fontsize=16,color="green",shape="box"];4233[label="vwx212",fontsize=16,color="green",shape="box"];4234[label="vwx214",fontsize=16,color="green",shape="box"];4235[label="vwx212",fontsize=16,color="green",shape="box"];4236[label="vwx214",fontsize=16,color="green",shape="box"];4237[label="vwx212",fontsize=16,color="green",shape="box"];4238[label="vwx214",fontsize=16,color="green",shape="box"];4239[label="vwx212",fontsize=16,color="green",shape="box"];4240[label="vwx214",fontsize=16,color="green",shape="box"];4241[label="vwx212",fontsize=16,color="green",shape="box"];4242[label="vwx214",fontsize=16,color="green",shape="box"];4243[label="vwx212",fontsize=16,color="green",shape="box"];4244[label="vwx214",fontsize=16,color="green",shape="box"];4245[label="vwx212",fontsize=16,color="green",shape="box"];4246[label="vwx214",fontsize=16,color="green",shape="box"];4247[label="vwx212",fontsize=16,color="green",shape="box"];4248[label="vwx213",fontsize=16,color="green",shape="box"];4249[label="vwx211",fontsize=16,color="green",shape="box"];4250[label="vwx213",fontsize=16,color="green",shape="box"];4251[label="vwx211",fontsize=16,color="green",shape="box"];4252[label="vwx213",fontsize=16,color="green",shape="box"];4253[label="vwx211",fontsize=16,color="green",shape="box"];4254[label="vwx213",fontsize=16,color="green",shape="box"];4255[label="vwx211",fontsize=16,color="green",shape="box"];4256[label="vwx213",fontsize=16,color="green",shape="box"];4257[label="vwx211",fontsize=16,color="green",shape="box"];4258[label="vwx213",fontsize=16,color="green",shape="box"];4259[label="vwx211",fontsize=16,color="green",shape="box"];4260[label="vwx213",fontsize=16,color="green",shape="box"];4261[label="vwx211",fontsize=16,color="green",shape="box"];4262[label="vwx213",fontsize=16,color="green",shape="box"];4263[label="vwx211",fontsize=16,color="green",shape="box"];4264[label="vwx213",fontsize=16,color="green",shape="box"];4265[label="vwx211",fontsize=16,color="green",shape="box"];4266[label="vwx213",fontsize=16,color="green",shape="box"];4267[label="vwx211",fontsize=16,color="green",shape="box"];4268[label="vwx213",fontsize=16,color="green",shape="box"];4269[label="vwx211",fontsize=16,color="green",shape="box"];4270[label="vwx213",fontsize=16,color="green",shape="box"];4271[label="vwx211",fontsize=16,color="green",shape="box"];4272[label="vwx213",fontsize=16,color="green",shape="box"];4273[label="vwx211",fontsize=16,color="green",shape="box"];4274[label="vwx213",fontsize=16,color="green",shape="box"];4275[label="vwx211",fontsize=16,color="green",shape="box"];4276[label="compare1 (vwx261,vwx262) (vwx263,vwx264) False",fontsize=16,color="black",shape="box"];4276 -> 4469[label="",style="solid", color="black", weight=3]; 4277[label="compare1 (vwx261,vwx262) (vwx263,vwx264) True",fontsize=16,color="black",shape="box"];4277 -> 4470[label="",style="solid", color="black", weight=3]; 4278[label="True",fontsize=16,color="green",shape="box"];4286 -> 3586[label="",style="dashed", color="red", weight=0]; 4286[label="vwx199 < vwx202",fontsize=16,color="magenta"];4286 -> 4471[label="",style="dashed", color="magenta", weight=3]; 4286 -> 4472[label="",style="dashed", color="magenta", weight=3]; 4287 -> 3587[label="",style="dashed", color="red", weight=0]; 4287[label="vwx199 < vwx202",fontsize=16,color="magenta"];4287 -> 4473[label="",style="dashed", color="magenta", weight=3]; 4287 -> 4474[label="",style="dashed", color="magenta", weight=3]; 4288 -> 3588[label="",style="dashed", color="red", weight=0]; 4288[label="vwx199 < vwx202",fontsize=16,color="magenta"];4288 -> 4475[label="",style="dashed", color="magenta", weight=3]; 4288 -> 4476[label="",style="dashed", color="magenta", weight=3]; 4289 -> 3589[label="",style="dashed", color="red", weight=0]; 4289[label="vwx199 < vwx202",fontsize=16,color="magenta"];4289 -> 4477[label="",style="dashed", color="magenta", weight=3]; 4289 -> 4478[label="",style="dashed", color="magenta", weight=3]; 4290 -> 3590[label="",style="dashed", color="red", weight=0]; 4290[label="vwx199 < vwx202",fontsize=16,color="magenta"];4290 -> 4479[label="",style="dashed", color="magenta", weight=3]; 4290 -> 4480[label="",style="dashed", color="magenta", weight=3]; 4291 -> 3591[label="",style="dashed", color="red", weight=0]; 4291[label="vwx199 < vwx202",fontsize=16,color="magenta"];4291 -> 4481[label="",style="dashed", color="magenta", weight=3]; 4291 -> 4482[label="",style="dashed", color="magenta", weight=3]; 4292 -> 3592[label="",style="dashed", color="red", weight=0]; 4292[label="vwx199 < vwx202",fontsize=16,color="magenta"];4292 -> 4483[label="",style="dashed", color="magenta", weight=3]; 4292 -> 4484[label="",style="dashed", color="magenta", weight=3]; 4293 -> 3593[label="",style="dashed", color="red", weight=0]; 4293[label="vwx199 < vwx202",fontsize=16,color="magenta"];4293 -> 4485[label="",style="dashed", color="magenta", weight=3]; 4293 -> 4486[label="",style="dashed", color="magenta", weight=3]; 4294 -> 3594[label="",style="dashed", color="red", weight=0]; 4294[label="vwx199 < vwx202",fontsize=16,color="magenta"];4294 -> 4487[label="",style="dashed", color="magenta", weight=3]; 4294 -> 4488[label="",style="dashed", color="magenta", weight=3]; 4295 -> 3595[label="",style="dashed", color="red", weight=0]; 4295[label="vwx199 < vwx202",fontsize=16,color="magenta"];4295 -> 4489[label="",style="dashed", color="magenta", weight=3]; 4295 -> 4490[label="",style="dashed", color="magenta", weight=3]; 4296 -> 3596[label="",style="dashed", color="red", weight=0]; 4296[label="vwx199 < vwx202",fontsize=16,color="magenta"];4296 -> 4491[label="",style="dashed", color="magenta", weight=3]; 4296 -> 4492[label="",style="dashed", color="magenta", weight=3]; 4297 -> 3597[label="",style="dashed", color="red", weight=0]; 4297[label="vwx199 < vwx202",fontsize=16,color="magenta"];4297 -> 4493[label="",style="dashed", color="magenta", weight=3]; 4297 -> 4494[label="",style="dashed", color="magenta", weight=3]; 4298 -> 3598[label="",style="dashed", color="red", weight=0]; 4298[label="vwx199 < vwx202",fontsize=16,color="magenta"];4298 -> 4495[label="",style="dashed", color="magenta", weight=3]; 4298 -> 4496[label="",style="dashed", color="magenta", weight=3]; 4299 -> 3599[label="",style="dashed", color="red", weight=0]; 4299[label="vwx199 < vwx202",fontsize=16,color="magenta"];4299 -> 4497[label="",style="dashed", color="magenta", weight=3]; 4299 -> 4498[label="",style="dashed", color="magenta", weight=3]; 4300[label="vwx200 <= vwx203",fontsize=16,color="blue",shape="box"];5750[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5750[label="",style="solid", color="blue", weight=9]; 5750 -> 4499[label="",style="solid", color="blue", weight=3]; 5751[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5751[label="",style="solid", color="blue", weight=9]; 5751 -> 4500[label="",style="solid", color="blue", weight=3]; 5752[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5752[label="",style="solid", color="blue", weight=9]; 5752 -> 4501[label="",style="solid", color="blue", weight=3]; 5753[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5753[label="",style="solid", color="blue", weight=9]; 5753 -> 4502[label="",style="solid", color="blue", weight=3]; 5754[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5754[label="",style="solid", color="blue", weight=9]; 5754 -> 4503[label="",style="solid", color="blue", weight=3]; 5755[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5755[label="",style="solid", color="blue", weight=9]; 5755 -> 4504[label="",style="solid", color="blue", weight=3]; 5756[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5756[label="",style="solid", color="blue", weight=9]; 5756 -> 4505[label="",style="solid", color="blue", weight=3]; 5757[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5757[label="",style="solid", color="blue", weight=9]; 5757 -> 4506[label="",style="solid", color="blue", weight=3]; 5758[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5758[label="",style="solid", color="blue", weight=9]; 5758 -> 4507[label="",style="solid", color="blue", weight=3]; 5759[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5759[label="",style="solid", color="blue", weight=9]; 5759 -> 4508[label="",style="solid", color="blue", weight=3]; 5760[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5760[label="",style="solid", color="blue", weight=9]; 5760 -> 4509[label="",style="solid", color="blue", weight=3]; 5761[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5761[label="",style="solid", color="blue", weight=9]; 5761 -> 4510[label="",style="solid", color="blue", weight=3]; 5762[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5762[label="",style="solid", color="blue", weight=9]; 5762 -> 4511[label="",style="solid", color="blue", weight=3]; 5763[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5763[label="",style="solid", color="blue", weight=9]; 5763 -> 4512[label="",style="solid", color="blue", weight=3]; 4301[label="vwx199 == vwx202",fontsize=16,color="blue",shape="box"];5764[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5764[label="",style="solid", color="blue", weight=9]; 5764 -> 4513[label="",style="solid", color="blue", weight=3]; 5765[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5765[label="",style="solid", color="blue", weight=9]; 5765 -> 4514[label="",style="solid", color="blue", weight=3]; 5766[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5766[label="",style="solid", color="blue", weight=9]; 5766 -> 4515[label="",style="solid", color="blue", weight=3]; 5767[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5767[label="",style="solid", color="blue", weight=9]; 5767 -> 4516[label="",style="solid", color="blue", weight=3]; 5768[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5768[label="",style="solid", color="blue", weight=9]; 5768 -> 4517[label="",style="solid", color="blue", weight=3]; 5769[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5769[label="",style="solid", color="blue", weight=9]; 5769 -> 4518[label="",style="solid", color="blue", weight=3]; 5770[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5770[label="",style="solid", color="blue", weight=9]; 5770 -> 4519[label="",style="solid", color="blue", weight=3]; 5771[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5771[label="",style="solid", color="blue", weight=9]; 5771 -> 4520[label="",style="solid", color="blue", weight=3]; 5772[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5772[label="",style="solid", color="blue", weight=9]; 5772 -> 4521[label="",style="solid", color="blue", weight=3]; 5773[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5773[label="",style="solid", color="blue", weight=9]; 5773 -> 4522[label="",style="solid", color="blue", weight=3]; 5774[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5774[label="",style="solid", color="blue", weight=9]; 5774 -> 4523[label="",style="solid", color="blue", weight=3]; 5775[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5775[label="",style="solid", color="blue", weight=9]; 5775 -> 4524[label="",style="solid", color="blue", weight=3]; 5776[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5776[label="",style="solid", color="blue", weight=9]; 5776 -> 4525[label="",style="solid", color="blue", weight=3]; 5777[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4301 -> 5777[label="",style="solid", color="blue", weight=9]; 5777 -> 4526[label="",style="solid", color="blue", weight=3]; 4302[label="False || vwx290",fontsize=16,color="black",shape="box"];4302 -> 4527[label="",style="solid", color="black", weight=3]; 4303[label="True || vwx290",fontsize=16,color="black",shape="box"];4303 -> 4528[label="",style="solid", color="black", weight=3]; 4304[label="vwx201",fontsize=16,color="green",shape="box"];4305[label="vwx198",fontsize=16,color="green",shape="box"];4306[label="vwx201",fontsize=16,color="green",shape="box"];4307[label="vwx198",fontsize=16,color="green",shape="box"];4308[label="vwx201",fontsize=16,color="green",shape="box"];4309[label="vwx198",fontsize=16,color="green",shape="box"];4310[label="vwx201",fontsize=16,color="green",shape="box"];4311[label="vwx198",fontsize=16,color="green",shape="box"];4312[label="vwx201",fontsize=16,color="green",shape="box"];4313[label="vwx198",fontsize=16,color="green",shape="box"];4314[label="vwx201",fontsize=16,color="green",shape="box"];4315[label="vwx198",fontsize=16,color="green",shape="box"];4316[label="vwx201",fontsize=16,color="green",shape="box"];4317[label="vwx198",fontsize=16,color="green",shape="box"];4318[label="vwx201",fontsize=16,color="green",shape="box"];4319[label="vwx198",fontsize=16,color="green",shape="box"];4320[label="vwx201",fontsize=16,color="green",shape="box"];4321[label="vwx198",fontsize=16,color="green",shape="box"];4322[label="vwx201",fontsize=16,color="green",shape="box"];4323[label="vwx198",fontsize=16,color="green",shape="box"];4324[label="vwx201",fontsize=16,color="green",shape="box"];4325[label="vwx198",fontsize=16,color="green",shape="box"];4326[label="vwx201",fontsize=16,color="green",shape="box"];4327[label="vwx198",fontsize=16,color="green",shape="box"];4328[label="vwx201",fontsize=16,color="green",shape="box"];4329[label="vwx198",fontsize=16,color="green",shape="box"];4330[label="vwx201",fontsize=16,color="green",shape="box"];4331[label="vwx198",fontsize=16,color="green",shape="box"];4332[label="compare1 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) False",fontsize=16,color="black",shape="box"];4332 -> 4529[label="",style="solid", color="black", weight=3]; 4333[label="compare1 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) True",fontsize=16,color="black",shape="box"];4333 -> 4530[label="",style="solid", color="black", weight=3]; 4334[label="True",fontsize=16,color="green",shape="box"];4335 -> 3485[label="",style="dashed", color="red", weight=0]; 4335[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];4335 -> 4531[label="",style="dashed", color="magenta", weight=3]; 4335 -> 4532[label="",style="dashed", color="magenta", weight=3]; 4336[label="False",fontsize=16,color="green",shape="box"];4337[label="False",fontsize=16,color="green",shape="box"];4338[label="True",fontsize=16,color="green",shape="box"];4339[label="vwx402",fontsize=16,color="green",shape="box"];4340[label="vwx302",fontsize=16,color="green",shape="box"];4341[label="vwx402",fontsize=16,color="green",shape="box"];4342[label="vwx302",fontsize=16,color="green",shape="box"];4343[label="vwx402",fontsize=16,color="green",shape="box"];4344[label="vwx302",fontsize=16,color="green",shape="box"];4345[label="vwx402",fontsize=16,color="green",shape="box"];4346[label="vwx302",fontsize=16,color="green",shape="box"];4347[label="vwx402",fontsize=16,color="green",shape="box"];4348[label="vwx302",fontsize=16,color="green",shape="box"];4349[label="vwx402",fontsize=16,color="green",shape="box"];4350[label="vwx302",fontsize=16,color="green",shape="box"];4351[label="vwx402",fontsize=16,color="green",shape="box"];4352[label="vwx302",fontsize=16,color="green",shape="box"];4353[label="vwx402",fontsize=16,color="green",shape="box"];4354[label="vwx302",fontsize=16,color="green",shape="box"];4355[label="vwx402",fontsize=16,color="green",shape="box"];4356[label="vwx302",fontsize=16,color="green",shape="box"];4357[label="vwx402",fontsize=16,color="green",shape="box"];4358[label="vwx302",fontsize=16,color="green",shape="box"];4359[label="vwx402",fontsize=16,color="green",shape="box"];4360[label="vwx302",fontsize=16,color="green",shape="box"];4361[label="vwx402",fontsize=16,color="green",shape="box"];4362[label="vwx302",fontsize=16,color="green",shape="box"];4363[label="vwx402",fontsize=16,color="green",shape="box"];4364[label="vwx302",fontsize=16,color="green",shape="box"];4365[label="vwx402",fontsize=16,color="green",shape="box"];4366[label="vwx302",fontsize=16,color="green",shape="box"];4367[label="vwx401",fontsize=16,color="green",shape="box"];4368[label="vwx301",fontsize=16,color="green",shape="box"];4369[label="vwx401",fontsize=16,color="green",shape="box"];4370[label="vwx301",fontsize=16,color="green",shape="box"];4371[label="vwx401",fontsize=16,color="green",shape="box"];4372[label="vwx301",fontsize=16,color="green",shape="box"];4373[label="vwx401",fontsize=16,color="green",shape="box"];4374[label="vwx301",fontsize=16,color="green",shape="box"];4375[label="vwx401",fontsize=16,color="green",shape="box"];4376[label="vwx301",fontsize=16,color="green",shape="box"];4377[label="vwx401",fontsize=16,color="green",shape="box"];4378[label="vwx301",fontsize=16,color="green",shape="box"];4379[label="vwx401",fontsize=16,color="green",shape="box"];4380[label="vwx301",fontsize=16,color="green",shape="box"];4381[label="vwx401",fontsize=16,color="green",shape="box"];4382[label="vwx301",fontsize=16,color="green",shape="box"];4383[label="vwx401",fontsize=16,color="green",shape="box"];4384[label="vwx301",fontsize=16,color="green",shape="box"];4385[label="vwx401",fontsize=16,color="green",shape="box"];4386[label="vwx301",fontsize=16,color="green",shape="box"];4387[label="vwx401",fontsize=16,color="green",shape="box"];4388[label="vwx301",fontsize=16,color="green",shape="box"];4389[label="vwx401",fontsize=16,color="green",shape="box"];4390[label="vwx301",fontsize=16,color="green",shape="box"];4391[label="vwx401",fontsize=16,color="green",shape="box"];4392[label="vwx301",fontsize=16,color="green",shape="box"];4393[label="vwx401",fontsize=16,color="green",shape="box"];4394[label="vwx301",fontsize=16,color="green",shape="box"];4395[label="vwx3000",fontsize=16,color="green",shape="box"];4396[label="vwx4000",fontsize=16,color="green",shape="box"];4397[label="vwx3000",fontsize=16,color="green",shape="box"];4398[label="vwx4000",fontsize=16,color="green",shape="box"];4399[label="vwx158",fontsize=16,color="green",shape="box"];4400[label="vwx157",fontsize=16,color="green",shape="box"];4401 -> 2279[label="",style="dashed", color="red", weight=0]; 4401[label="not (vwx285 == GT)",fontsize=16,color="magenta"];4401 -> 4533[label="",style="dashed", color="magenta", weight=3]; 4402[label="True",fontsize=16,color="green",shape="box"];4403[label="True",fontsize=16,color="green",shape="box"];4404[label="False",fontsize=16,color="green",shape="box"];4405[label="vwx1570 <= vwx1580",fontsize=16,color="blue",shape="box"];5778[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5778[label="",style="solid", color="blue", weight=9]; 5778 -> 4534[label="",style="solid", color="blue", weight=3]; 5779[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5779[label="",style="solid", color="blue", weight=9]; 5779 -> 4535[label="",style="solid", color="blue", weight=3]; 5780[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5780[label="",style="solid", color="blue", weight=9]; 5780 -> 4536[label="",style="solid", color="blue", weight=3]; 5781[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5781[label="",style="solid", color="blue", weight=9]; 5781 -> 4537[label="",style="solid", color="blue", weight=3]; 5782[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5782[label="",style="solid", color="blue", weight=9]; 5782 -> 4538[label="",style="solid", color="blue", weight=3]; 5783[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5783[label="",style="solid", color="blue", weight=9]; 5783 -> 4539[label="",style="solid", color="blue", weight=3]; 5784[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5784[label="",style="solid", color="blue", weight=9]; 5784 -> 4540[label="",style="solid", color="blue", weight=3]; 5785[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5785[label="",style="solid", color="blue", weight=9]; 5785 -> 4541[label="",style="solid", color="blue", weight=3]; 5786[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5786[label="",style="solid", color="blue", weight=9]; 5786 -> 4542[label="",style="solid", color="blue", weight=3]; 5787[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5787[label="",style="solid", color="blue", weight=9]; 5787 -> 4543[label="",style="solid", color="blue", weight=3]; 5788[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5788[label="",style="solid", color="blue", weight=9]; 5788 -> 4544[label="",style="solid", color="blue", weight=3]; 5789[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5789[label="",style="solid", color="blue", weight=9]; 5789 -> 4545[label="",style="solid", color="blue", weight=3]; 5790[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5790[label="",style="solid", color="blue", weight=9]; 5790 -> 4546[label="",style="solid", color="blue", weight=3]; 5791[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4405 -> 5791[label="",style="solid", color="blue", weight=9]; 5791 -> 4547[label="",style="solid", color="blue", weight=3]; 4406[label="vwx158",fontsize=16,color="green",shape="box"];4407[label="vwx157",fontsize=16,color="green",shape="box"];4408[label="vwx158",fontsize=16,color="green",shape="box"];4409[label="vwx157",fontsize=16,color="green",shape="box"];4410[label="vwx158",fontsize=16,color="green",shape="box"];4411[label="vwx157",fontsize=16,color="green",shape="box"];4412[label="True",fontsize=16,color="green",shape="box"];4413[label="True",fontsize=16,color="green",shape="box"];4414[label="False",fontsize=16,color="green",shape="box"];4415[label="True",fontsize=16,color="green",shape="box"];4416[label="vwx158",fontsize=16,color="green",shape="box"];4417[label="vwx157",fontsize=16,color="green",shape="box"];4418[label="True",fontsize=16,color="green",shape="box"];4419[label="True",fontsize=16,color="green",shape="box"];4420[label="True",fontsize=16,color="green",shape="box"];4421[label="False",fontsize=16,color="green",shape="box"];4422[label="True",fontsize=16,color="green",shape="box"];4423[label="True",fontsize=16,color="green",shape="box"];4424[label="False",fontsize=16,color="green",shape="box"];4425[label="False",fontsize=16,color="green",shape="box"];4426[label="True",fontsize=16,color="green",shape="box"];4427[label="vwx158",fontsize=16,color="green",shape="box"];4428[label="vwx157",fontsize=16,color="green",shape="box"];4429[label="vwx158",fontsize=16,color="green",shape="box"];4430[label="vwx157",fontsize=16,color="green",shape="box"];4431[label="vwx158",fontsize=16,color="green",shape="box"];4432[label="vwx157",fontsize=16,color="green",shape="box"];4433[label="vwx1570 <= vwx1580",fontsize=16,color="blue",shape="box"];5792[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5792[label="",style="solid", color="blue", weight=9]; 5792 -> 4548[label="",style="solid", color="blue", weight=3]; 5793[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5793[label="",style="solid", color="blue", weight=9]; 5793 -> 4549[label="",style="solid", color="blue", weight=3]; 5794[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5794[label="",style="solid", color="blue", weight=9]; 5794 -> 4550[label="",style="solid", color="blue", weight=3]; 5795[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5795[label="",style="solid", color="blue", weight=9]; 5795 -> 4551[label="",style="solid", color="blue", weight=3]; 5796[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5796[label="",style="solid", color="blue", weight=9]; 5796 -> 4552[label="",style="solid", color="blue", weight=3]; 5797[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5797[label="",style="solid", color="blue", weight=9]; 5797 -> 4553[label="",style="solid", color="blue", weight=3]; 5798[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5798[label="",style="solid", color="blue", weight=9]; 5798 -> 4554[label="",style="solid", color="blue", weight=3]; 5799[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5799[label="",style="solid", color="blue", weight=9]; 5799 -> 4555[label="",style="solid", color="blue", weight=3]; 5800[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5800[label="",style="solid", color="blue", weight=9]; 5800 -> 4556[label="",style="solid", color="blue", weight=3]; 5801[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5801[label="",style="solid", color="blue", weight=9]; 5801 -> 4557[label="",style="solid", color="blue", weight=3]; 5802[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5802[label="",style="solid", color="blue", weight=9]; 5802 -> 4558[label="",style="solid", color="blue", weight=3]; 5803[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5803[label="",style="solid", color="blue", weight=9]; 5803 -> 4559[label="",style="solid", color="blue", weight=3]; 5804[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5804[label="",style="solid", color="blue", weight=9]; 5804 -> 4560[label="",style="solid", color="blue", weight=3]; 5805[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4433 -> 5805[label="",style="solid", color="blue", weight=9]; 5805 -> 4561[label="",style="solid", color="blue", weight=3]; 4434[label="True",fontsize=16,color="green",shape="box"];4435[label="False",fontsize=16,color="green",shape="box"];4436[label="vwx1570 <= vwx1580",fontsize=16,color="blue",shape="box"];5806[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5806[label="",style="solid", color="blue", weight=9]; 5806 -> 4562[label="",style="solid", color="blue", weight=3]; 5807[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5807[label="",style="solid", color="blue", weight=9]; 5807 -> 4563[label="",style="solid", color="blue", weight=3]; 5808[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5808[label="",style="solid", color="blue", weight=9]; 5808 -> 4564[label="",style="solid", color="blue", weight=3]; 5809[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5809[label="",style="solid", color="blue", weight=9]; 5809 -> 4565[label="",style="solid", color="blue", weight=3]; 5810[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5810[label="",style="solid", color="blue", weight=9]; 5810 -> 4566[label="",style="solid", color="blue", weight=3]; 5811[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5811[label="",style="solid", color="blue", weight=9]; 5811 -> 4567[label="",style="solid", color="blue", weight=3]; 5812[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5812[label="",style="solid", color="blue", weight=9]; 5812 -> 4568[label="",style="solid", color="blue", weight=3]; 5813[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5813[label="",style="solid", color="blue", weight=9]; 5813 -> 4569[label="",style="solid", color="blue", weight=3]; 5814[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5814[label="",style="solid", color="blue", weight=9]; 5814 -> 4570[label="",style="solid", color="blue", weight=3]; 5815[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5815[label="",style="solid", color="blue", weight=9]; 5815 -> 4571[label="",style="solid", color="blue", weight=3]; 5816[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5816[label="",style="solid", color="blue", weight=9]; 5816 -> 4572[label="",style="solid", color="blue", weight=3]; 5817[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5817[label="",style="solid", color="blue", weight=9]; 5817 -> 4573[label="",style="solid", color="blue", weight=3]; 5818[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5818[label="",style="solid", color="blue", weight=9]; 5818 -> 4574[label="",style="solid", color="blue", weight=3]; 5819[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5819[label="",style="solid", color="blue", weight=9]; 5819 -> 4575[label="",style="solid", color="blue", weight=3]; 4437 -> 4281[label="",style="dashed", color="red", weight=0]; 4437[label="vwx1570 < vwx1580 || vwx1570 == vwx1580 && vwx1571 <= vwx1581",fontsize=16,color="magenta"];4437 -> 4576[label="",style="dashed", color="magenta", weight=3]; 4437 -> 4577[label="",style="dashed", color="magenta", weight=3]; 4438 -> 4281[label="",style="dashed", color="red", weight=0]; 4438[label="vwx1570 < vwx1580 || vwx1570 == vwx1580 && (vwx1571 < vwx1581 || vwx1571 == vwx1581 && vwx1572 <= vwx1582)",fontsize=16,color="magenta"];4438 -> 4578[label="",style="dashed", color="magenta", weight=3]; 4438 -> 4579[label="",style="dashed", color="magenta", weight=3]; 4440 -> 3363[label="",style="dashed", color="red", weight=0]; 4440[label="primMulNat vwx4000 (Succ vwx3100)",fontsize=16,color="magenta"];4440 -> 4580[label="",style="dashed", color="magenta", weight=3]; 4440 -> 4581[label="",style="dashed", color="magenta", weight=3]; 4439[label="primPlusNat vwx291 (Succ vwx3100)",fontsize=16,color="burlywood",shape="triangle"];5820[label="vwx291/Succ vwx2910",fontsize=10,color="white",style="solid",shape="box"];4439 -> 5820[label="",style="solid", color="burlywood", weight=9]; 5820 -> 4582[label="",style="solid", color="burlywood", weight=3]; 5821[label="vwx291/Zero",fontsize=10,color="white",style="solid",shape="box"];4439 -> 5821[label="",style="solid", color="burlywood", weight=9]; 5821 -> 4583[label="",style="solid", color="burlywood", weight=3]; 4441[label="vwx213",fontsize=16,color="green",shape="box"];4442[label="vwx211",fontsize=16,color="green",shape="box"];4443[label="vwx213",fontsize=16,color="green",shape="box"];4444[label="vwx211",fontsize=16,color="green",shape="box"];4445[label="vwx213",fontsize=16,color="green",shape="box"];4446[label="vwx211",fontsize=16,color="green",shape="box"];4447[label="vwx213",fontsize=16,color="green",shape="box"];4448[label="vwx211",fontsize=16,color="green",shape="box"];4449[label="vwx213",fontsize=16,color="green",shape="box"];4450[label="vwx211",fontsize=16,color="green",shape="box"];4451[label="vwx213",fontsize=16,color="green",shape="box"];4452[label="vwx211",fontsize=16,color="green",shape="box"];4453[label="vwx213",fontsize=16,color="green",shape="box"];4454[label="vwx211",fontsize=16,color="green",shape="box"];4455[label="vwx213",fontsize=16,color="green",shape="box"];4456[label="vwx211",fontsize=16,color="green",shape="box"];4457[label="vwx213",fontsize=16,color="green",shape="box"];4458[label="vwx211",fontsize=16,color="green",shape="box"];4459[label="vwx213",fontsize=16,color="green",shape="box"];4460[label="vwx211",fontsize=16,color="green",shape="box"];4461[label="vwx213",fontsize=16,color="green",shape="box"];4462[label="vwx211",fontsize=16,color="green",shape="box"];4463[label="vwx213",fontsize=16,color="green",shape="box"];4464[label="vwx211",fontsize=16,color="green",shape="box"];4465[label="vwx213",fontsize=16,color="green",shape="box"];4466[label="vwx211",fontsize=16,color="green",shape="box"];4467[label="vwx213",fontsize=16,color="green",shape="box"];4468[label="vwx211",fontsize=16,color="green",shape="box"];4469[label="compare0 (vwx261,vwx262) (vwx263,vwx264) otherwise",fontsize=16,color="black",shape="box"];4469 -> 4584[label="",style="solid", color="black", weight=3]; 4470[label="LT",fontsize=16,color="green",shape="box"];4471[label="vwx202",fontsize=16,color="green",shape="box"];4472[label="vwx199",fontsize=16,color="green",shape="box"];4473[label="vwx202",fontsize=16,color="green",shape="box"];4474[label="vwx199",fontsize=16,color="green",shape="box"];4475[label="vwx202",fontsize=16,color="green",shape="box"];4476[label="vwx199",fontsize=16,color="green",shape="box"];4477[label="vwx202",fontsize=16,color="green",shape="box"];4478[label="vwx199",fontsize=16,color="green",shape="box"];4479[label="vwx202",fontsize=16,color="green",shape="box"];4480[label="vwx199",fontsize=16,color="green",shape="box"];4481[label="vwx202",fontsize=16,color="green",shape="box"];4482[label="vwx199",fontsize=16,color="green",shape="box"];4483[label="vwx202",fontsize=16,color="green",shape="box"];4484[label="vwx199",fontsize=16,color="green",shape="box"];4485[label="vwx202",fontsize=16,color="green",shape="box"];4486[label="vwx199",fontsize=16,color="green",shape="box"];4487[label="vwx202",fontsize=16,color="green",shape="box"];4488[label="vwx199",fontsize=16,color="green",shape="box"];4489[label="vwx202",fontsize=16,color="green",shape="box"];4490[label="vwx199",fontsize=16,color="green",shape="box"];4491[label="vwx202",fontsize=16,color="green",shape="box"];4492[label="vwx199",fontsize=16,color="green",shape="box"];4493[label="vwx202",fontsize=16,color="green",shape="box"];4494[label="vwx199",fontsize=16,color="green",shape="box"];4495[label="vwx202",fontsize=16,color="green",shape="box"];4496[label="vwx199",fontsize=16,color="green",shape="box"];4497[label="vwx202",fontsize=16,color="green",shape="box"];4498[label="vwx199",fontsize=16,color="green",shape="box"];4499 -> 3517[label="",style="dashed", color="red", weight=0]; 4499[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4499 -> 4585[label="",style="dashed", color="magenta", weight=3]; 4499 -> 4586[label="",style="dashed", color="magenta", weight=3]; 4500 -> 3518[label="",style="dashed", color="red", weight=0]; 4500[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4500 -> 4587[label="",style="dashed", color="magenta", weight=3]; 4500 -> 4588[label="",style="dashed", color="magenta", weight=3]; 4501 -> 3519[label="",style="dashed", color="red", weight=0]; 4501[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4501 -> 4589[label="",style="dashed", color="magenta", weight=3]; 4501 -> 4590[label="",style="dashed", color="magenta", weight=3]; 4502 -> 3520[label="",style="dashed", color="red", weight=0]; 4502[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4502 -> 4591[label="",style="dashed", color="magenta", weight=3]; 4502 -> 4592[label="",style="dashed", color="magenta", weight=3]; 4503 -> 3521[label="",style="dashed", color="red", weight=0]; 4503[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4503 -> 4593[label="",style="dashed", color="magenta", weight=3]; 4503 -> 4594[label="",style="dashed", color="magenta", weight=3]; 4504 -> 3522[label="",style="dashed", color="red", weight=0]; 4504[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4504 -> 4595[label="",style="dashed", color="magenta", weight=3]; 4504 -> 4596[label="",style="dashed", color="magenta", weight=3]; 4505 -> 3523[label="",style="dashed", color="red", weight=0]; 4505[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4505 -> 4597[label="",style="dashed", color="magenta", weight=3]; 4505 -> 4598[label="",style="dashed", color="magenta", weight=3]; 4506 -> 3524[label="",style="dashed", color="red", weight=0]; 4506[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4506 -> 4599[label="",style="dashed", color="magenta", weight=3]; 4506 -> 4600[label="",style="dashed", color="magenta", weight=3]; 4507 -> 3525[label="",style="dashed", color="red", weight=0]; 4507[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4507 -> 4601[label="",style="dashed", color="magenta", weight=3]; 4507 -> 4602[label="",style="dashed", color="magenta", weight=3]; 4508 -> 3526[label="",style="dashed", color="red", weight=0]; 4508[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4508 -> 4603[label="",style="dashed", color="magenta", weight=3]; 4508 -> 4604[label="",style="dashed", color="magenta", weight=3]; 4509 -> 3527[label="",style="dashed", color="red", weight=0]; 4509[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4509 -> 4605[label="",style="dashed", color="magenta", weight=3]; 4509 -> 4606[label="",style="dashed", color="magenta", weight=3]; 4510 -> 3528[label="",style="dashed", color="red", weight=0]; 4510[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4510 -> 4607[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4608[label="",style="dashed", color="magenta", weight=3]; 4511 -> 3529[label="",style="dashed", color="red", weight=0]; 4511[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4511 -> 4609[label="",style="dashed", color="magenta", weight=3]; 4511 -> 4610[label="",style="dashed", color="magenta", weight=3]; 4512 -> 3530[label="",style="dashed", color="red", weight=0]; 4512[label="vwx200 <= vwx203",fontsize=16,color="magenta"];4512 -> 4611[label="",style="dashed", color="magenta", weight=3]; 4512 -> 4612[label="",style="dashed", color="magenta", weight=3]; 4513 -> 2671[label="",style="dashed", color="red", weight=0]; 4513[label="vwx199 == vwx202",fontsize=16,color="magenta"];4513 -> 4613[label="",style="dashed", color="magenta", weight=3]; 4513 -> 4614[label="",style="dashed", color="magenta", weight=3]; 4514 -> 2664[label="",style="dashed", color="red", weight=0]; 4514[label="vwx199 == vwx202",fontsize=16,color="magenta"];4514 -> 4615[label="",style="dashed", color="magenta", weight=3]; 4514 -> 4616[label="",style="dashed", color="magenta", weight=3]; 4515 -> 2669[label="",style="dashed", color="red", weight=0]; 4515[label="vwx199 == vwx202",fontsize=16,color="magenta"];4515 -> 4617[label="",style="dashed", color="magenta", weight=3]; 4515 -> 4618[label="",style="dashed", color="magenta", weight=3]; 4516 -> 2672[label="",style="dashed", color="red", weight=0]; 4516[label="vwx199 == vwx202",fontsize=16,color="magenta"];4516 -> 4619[label="",style="dashed", color="magenta", weight=3]; 4516 -> 4620[label="",style="dashed", color="magenta", weight=3]; 4517 -> 2673[label="",style="dashed", color="red", weight=0]; 4517[label="vwx199 == vwx202",fontsize=16,color="magenta"];4517 -> 4621[label="",style="dashed", color="magenta", weight=3]; 4517 -> 4622[label="",style="dashed", color="magenta", weight=3]; 4518 -> 2668[label="",style="dashed", color="red", weight=0]; 4518[label="vwx199 == vwx202",fontsize=16,color="magenta"];4518 -> 4623[label="",style="dashed", color="magenta", weight=3]; 4518 -> 4624[label="",style="dashed", color="magenta", weight=3]; 4519 -> 2663[label="",style="dashed", color="red", weight=0]; 4519[label="vwx199 == vwx202",fontsize=16,color="magenta"];4519 -> 4625[label="",style="dashed", color="magenta", weight=3]; 4519 -> 4626[label="",style="dashed", color="magenta", weight=3]; 4520 -> 2665[label="",style="dashed", color="red", weight=0]; 4520[label="vwx199 == vwx202",fontsize=16,color="magenta"];4520 -> 4627[label="",style="dashed", color="magenta", weight=3]; 4520 -> 4628[label="",style="dashed", color="magenta", weight=3]; 4521 -> 2660[label="",style="dashed", color="red", weight=0]; 4521[label="vwx199 == vwx202",fontsize=16,color="magenta"];4521 -> 4629[label="",style="dashed", color="magenta", weight=3]; 4521 -> 4630[label="",style="dashed", color="magenta", weight=3]; 4522 -> 2667[label="",style="dashed", color="red", weight=0]; 4522[label="vwx199 == vwx202",fontsize=16,color="magenta"];4522 -> 4631[label="",style="dashed", color="magenta", weight=3]; 4522 -> 4632[label="",style="dashed", color="magenta", weight=3]; 4523 -> 2666[label="",style="dashed", color="red", weight=0]; 4523[label="vwx199 == vwx202",fontsize=16,color="magenta"];4523 -> 4633[label="",style="dashed", color="magenta", weight=3]; 4523 -> 4634[label="",style="dashed", color="magenta", weight=3]; 4524 -> 2661[label="",style="dashed", color="red", weight=0]; 4524[label="vwx199 == vwx202",fontsize=16,color="magenta"];4524 -> 4635[label="",style="dashed", color="magenta", weight=3]; 4524 -> 4636[label="",style="dashed", color="magenta", weight=3]; 4525 -> 2662[label="",style="dashed", color="red", weight=0]; 4525[label="vwx199 == vwx202",fontsize=16,color="magenta"];4525 -> 4637[label="",style="dashed", color="magenta", weight=3]; 4525 -> 4638[label="",style="dashed", color="magenta", weight=3]; 4526 -> 2670[label="",style="dashed", color="red", weight=0]; 4526[label="vwx199 == vwx202",fontsize=16,color="magenta"];4526 -> 4639[label="",style="dashed", color="magenta", weight=3]; 4526 -> 4640[label="",style="dashed", color="magenta", weight=3]; 4527[label="vwx290",fontsize=16,color="green",shape="box"];4528[label="True",fontsize=16,color="green",shape="box"];4529[label="compare0 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) otherwise",fontsize=16,color="black",shape="box"];4529 -> 4641[label="",style="solid", color="black", weight=3]; 4530[label="LT",fontsize=16,color="green",shape="box"];4531[label="vwx3000",fontsize=16,color="green",shape="box"];4532[label="vwx4000",fontsize=16,color="green",shape="box"];4533 -> 2665[label="",style="dashed", color="red", weight=0]; 4533[label="vwx285 == GT",fontsize=16,color="magenta"];4533 -> 4642[label="",style="dashed", color="magenta", weight=3]; 4533 -> 4643[label="",style="dashed", color="magenta", weight=3]; 4534 -> 3517[label="",style="dashed", color="red", weight=0]; 4534[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4534 -> 4644[label="",style="dashed", color="magenta", weight=3]; 4534 -> 4645[label="",style="dashed", color="magenta", weight=3]; 4535 -> 3518[label="",style="dashed", color="red", weight=0]; 4535[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4535 -> 4646[label="",style="dashed", color="magenta", weight=3]; 4535 -> 4647[label="",style="dashed", color="magenta", weight=3]; 4536 -> 3519[label="",style="dashed", color="red", weight=0]; 4536[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4536 -> 4648[label="",style="dashed", color="magenta", weight=3]; 4536 -> 4649[label="",style="dashed", color="magenta", weight=3]; 4537 -> 3520[label="",style="dashed", color="red", weight=0]; 4537[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4537 -> 4650[label="",style="dashed", color="magenta", weight=3]; 4537 -> 4651[label="",style="dashed", color="magenta", weight=3]; 4538 -> 3521[label="",style="dashed", color="red", weight=0]; 4538[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4538 -> 4652[label="",style="dashed", color="magenta", weight=3]; 4538 -> 4653[label="",style="dashed", color="magenta", weight=3]; 4539 -> 3522[label="",style="dashed", color="red", weight=0]; 4539[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4539 -> 4654[label="",style="dashed", color="magenta", weight=3]; 4539 -> 4655[label="",style="dashed", color="magenta", weight=3]; 4540 -> 3523[label="",style="dashed", color="red", weight=0]; 4540[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4540 -> 4656[label="",style="dashed", color="magenta", weight=3]; 4540 -> 4657[label="",style="dashed", color="magenta", weight=3]; 4541 -> 3524[label="",style="dashed", color="red", weight=0]; 4541[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4541 -> 4658[label="",style="dashed", color="magenta", weight=3]; 4541 -> 4659[label="",style="dashed", color="magenta", weight=3]; 4542 -> 3525[label="",style="dashed", color="red", weight=0]; 4542[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4542 -> 4660[label="",style="dashed", color="magenta", weight=3]; 4542 -> 4661[label="",style="dashed", color="magenta", weight=3]; 4543 -> 3526[label="",style="dashed", color="red", weight=0]; 4543[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4543 -> 4662[label="",style="dashed", color="magenta", weight=3]; 4543 -> 4663[label="",style="dashed", color="magenta", weight=3]; 4544 -> 3527[label="",style="dashed", color="red", weight=0]; 4544[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4544 -> 4664[label="",style="dashed", color="magenta", weight=3]; 4544 -> 4665[label="",style="dashed", color="magenta", weight=3]; 4545 -> 3528[label="",style="dashed", color="red", weight=0]; 4545[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4545 -> 4666[label="",style="dashed", color="magenta", weight=3]; 4545 -> 4667[label="",style="dashed", color="magenta", weight=3]; 4546 -> 3529[label="",style="dashed", color="red", weight=0]; 4546[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4546 -> 4668[label="",style="dashed", color="magenta", weight=3]; 4546 -> 4669[label="",style="dashed", color="magenta", weight=3]; 4547 -> 3530[label="",style="dashed", color="red", weight=0]; 4547[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4547 -> 4670[label="",style="dashed", color="magenta", weight=3]; 4547 -> 4671[label="",style="dashed", color="magenta", weight=3]; 4548 -> 3517[label="",style="dashed", color="red", weight=0]; 4548[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4548 -> 4672[label="",style="dashed", color="magenta", weight=3]; 4548 -> 4673[label="",style="dashed", color="magenta", weight=3]; 4549 -> 3518[label="",style="dashed", color="red", weight=0]; 4549[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4549 -> 4674[label="",style="dashed", color="magenta", weight=3]; 4549 -> 4675[label="",style="dashed", color="magenta", weight=3]; 4550 -> 3519[label="",style="dashed", color="red", weight=0]; 4550[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4550 -> 4676[label="",style="dashed", color="magenta", weight=3]; 4550 -> 4677[label="",style="dashed", color="magenta", weight=3]; 4551 -> 3520[label="",style="dashed", color="red", weight=0]; 4551[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4551 -> 4678[label="",style="dashed", color="magenta", weight=3]; 4551 -> 4679[label="",style="dashed", color="magenta", weight=3]; 4552 -> 3521[label="",style="dashed", color="red", weight=0]; 4552[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4552 -> 4680[label="",style="dashed", color="magenta", weight=3]; 4552 -> 4681[label="",style="dashed", color="magenta", weight=3]; 4553 -> 3522[label="",style="dashed", color="red", weight=0]; 4553[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4553 -> 4682[label="",style="dashed", color="magenta", weight=3]; 4553 -> 4683[label="",style="dashed", color="magenta", weight=3]; 4554 -> 3523[label="",style="dashed", color="red", weight=0]; 4554[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4554 -> 4684[label="",style="dashed", color="magenta", weight=3]; 4554 -> 4685[label="",style="dashed", color="magenta", weight=3]; 4555 -> 3524[label="",style="dashed", color="red", weight=0]; 4555[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4555 -> 4686[label="",style="dashed", color="magenta", weight=3]; 4555 -> 4687[label="",style="dashed", color="magenta", weight=3]; 4556 -> 3525[label="",style="dashed", color="red", weight=0]; 4556[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4556 -> 4688[label="",style="dashed", color="magenta", weight=3]; 4556 -> 4689[label="",style="dashed", color="magenta", weight=3]; 4557 -> 3526[label="",style="dashed", color="red", weight=0]; 4557[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4557 -> 4690[label="",style="dashed", color="magenta", weight=3]; 4557 -> 4691[label="",style="dashed", color="magenta", weight=3]; 4558 -> 3527[label="",style="dashed", color="red", weight=0]; 4558[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4558 -> 4692[label="",style="dashed", color="magenta", weight=3]; 4558 -> 4693[label="",style="dashed", color="magenta", weight=3]; 4559 -> 3528[label="",style="dashed", color="red", weight=0]; 4559[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4559 -> 4694[label="",style="dashed", color="magenta", weight=3]; 4559 -> 4695[label="",style="dashed", color="magenta", weight=3]; 4560 -> 3529[label="",style="dashed", color="red", weight=0]; 4560[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4560 -> 4696[label="",style="dashed", color="magenta", weight=3]; 4560 -> 4697[label="",style="dashed", color="magenta", weight=3]; 4561 -> 3530[label="",style="dashed", color="red", weight=0]; 4561[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4561 -> 4698[label="",style="dashed", color="magenta", weight=3]; 4561 -> 4699[label="",style="dashed", color="magenta", weight=3]; 4562 -> 3517[label="",style="dashed", color="red", weight=0]; 4562[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4562 -> 4700[label="",style="dashed", color="magenta", weight=3]; 4562 -> 4701[label="",style="dashed", color="magenta", weight=3]; 4563 -> 3518[label="",style="dashed", color="red", weight=0]; 4563[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4563 -> 4702[label="",style="dashed", color="magenta", weight=3]; 4563 -> 4703[label="",style="dashed", color="magenta", weight=3]; 4564 -> 3519[label="",style="dashed", color="red", weight=0]; 4564[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4564 -> 4704[label="",style="dashed", color="magenta", weight=3]; 4564 -> 4705[label="",style="dashed", color="magenta", weight=3]; 4565 -> 3520[label="",style="dashed", color="red", weight=0]; 4565[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4565 -> 4706[label="",style="dashed", color="magenta", weight=3]; 4565 -> 4707[label="",style="dashed", color="magenta", weight=3]; 4566 -> 3521[label="",style="dashed", color="red", weight=0]; 4566[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4566 -> 4708[label="",style="dashed", color="magenta", weight=3]; 4566 -> 4709[label="",style="dashed", color="magenta", weight=3]; 4567 -> 3522[label="",style="dashed", color="red", weight=0]; 4567[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4567 -> 4710[label="",style="dashed", color="magenta", weight=3]; 4567 -> 4711[label="",style="dashed", color="magenta", weight=3]; 4568 -> 3523[label="",style="dashed", color="red", weight=0]; 4568[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4568 -> 4712[label="",style="dashed", color="magenta", weight=3]; 4568 -> 4713[label="",style="dashed", color="magenta", weight=3]; 4569 -> 3524[label="",style="dashed", color="red", weight=0]; 4569[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4569 -> 4714[label="",style="dashed", color="magenta", weight=3]; 4569 -> 4715[label="",style="dashed", color="magenta", weight=3]; 4570 -> 3525[label="",style="dashed", color="red", weight=0]; 4570[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4570 -> 4716[label="",style="dashed", color="magenta", weight=3]; 4570 -> 4717[label="",style="dashed", color="magenta", weight=3]; 4571 -> 3526[label="",style="dashed", color="red", weight=0]; 4571[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4571 -> 4718[label="",style="dashed", color="magenta", weight=3]; 4571 -> 4719[label="",style="dashed", color="magenta", weight=3]; 4572 -> 3527[label="",style="dashed", color="red", weight=0]; 4572[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4572 -> 4720[label="",style="dashed", color="magenta", weight=3]; 4572 -> 4721[label="",style="dashed", color="magenta", weight=3]; 4573 -> 3528[label="",style="dashed", color="red", weight=0]; 4573[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4573 -> 4722[label="",style="dashed", color="magenta", weight=3]; 4573 -> 4723[label="",style="dashed", color="magenta", weight=3]; 4574 -> 3529[label="",style="dashed", color="red", weight=0]; 4574[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4574 -> 4724[label="",style="dashed", color="magenta", weight=3]; 4574 -> 4725[label="",style="dashed", color="magenta", weight=3]; 4575 -> 3530[label="",style="dashed", color="red", weight=0]; 4575[label="vwx1570 <= vwx1580",fontsize=16,color="magenta"];4575 -> 4726[label="",style="dashed", color="magenta", weight=3]; 4575 -> 4727[label="",style="dashed", color="magenta", weight=3]; 4576[label="vwx1570 < vwx1580",fontsize=16,color="blue",shape="box"];5822[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5822[label="",style="solid", color="blue", weight=9]; 5822 -> 4728[label="",style="solid", color="blue", weight=3]; 5823[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5823[label="",style="solid", color="blue", weight=9]; 5823 -> 4729[label="",style="solid", color="blue", weight=3]; 5824[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5824[label="",style="solid", color="blue", weight=9]; 5824 -> 4730[label="",style="solid", color="blue", weight=3]; 5825[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5825[label="",style="solid", color="blue", weight=9]; 5825 -> 4731[label="",style="solid", color="blue", weight=3]; 5826[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5826[label="",style="solid", color="blue", weight=9]; 5826 -> 4732[label="",style="solid", color="blue", weight=3]; 5827[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5827[label="",style="solid", color="blue", weight=9]; 5827 -> 4733[label="",style="solid", color="blue", weight=3]; 5828[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5828[label="",style="solid", color="blue", weight=9]; 5828 -> 4734[label="",style="solid", color="blue", weight=3]; 5829[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5829[label="",style="solid", color="blue", weight=9]; 5829 -> 4735[label="",style="solid", color="blue", weight=3]; 5830[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5830[label="",style="solid", color="blue", weight=9]; 5830 -> 4736[label="",style="solid", color="blue", weight=3]; 5831[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5831[label="",style="solid", color="blue", weight=9]; 5831 -> 4737[label="",style="solid", color="blue", weight=3]; 5832[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5832[label="",style="solid", color="blue", weight=9]; 5832 -> 4738[label="",style="solid", color="blue", weight=3]; 5833[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5833[label="",style="solid", color="blue", weight=9]; 5833 -> 4739[label="",style="solid", color="blue", weight=3]; 5834[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5834[label="",style="solid", color="blue", weight=9]; 5834 -> 4740[label="",style="solid", color="blue", weight=3]; 5835[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5835[label="",style="solid", color="blue", weight=9]; 5835 -> 4741[label="",style="solid", color="blue", weight=3]; 4577 -> 3140[label="",style="dashed", color="red", weight=0]; 4577[label="vwx1570 == vwx1580 && vwx1571 <= vwx1581",fontsize=16,color="magenta"];4577 -> 4742[label="",style="dashed", color="magenta", weight=3]; 4577 -> 4743[label="",style="dashed", color="magenta", weight=3]; 4578[label="vwx1570 < vwx1580",fontsize=16,color="blue",shape="box"];5836[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5836[label="",style="solid", color="blue", weight=9]; 5836 -> 4744[label="",style="solid", color="blue", weight=3]; 5837[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5837[label="",style="solid", color="blue", weight=9]; 5837 -> 4745[label="",style="solid", color="blue", weight=3]; 5838[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5838[label="",style="solid", color="blue", weight=9]; 5838 -> 4746[label="",style="solid", color="blue", weight=3]; 5839[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5839[label="",style="solid", color="blue", weight=9]; 5839 -> 4747[label="",style="solid", color="blue", weight=3]; 5840[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5840[label="",style="solid", color="blue", weight=9]; 5840 -> 4748[label="",style="solid", color="blue", weight=3]; 5841[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5841[label="",style="solid", color="blue", weight=9]; 5841 -> 4749[label="",style="solid", color="blue", weight=3]; 5842[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5842[label="",style="solid", color="blue", weight=9]; 5842 -> 4750[label="",style="solid", color="blue", weight=3]; 5843[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5843[label="",style="solid", color="blue", weight=9]; 5843 -> 4751[label="",style="solid", color="blue", weight=3]; 5844[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5844[label="",style="solid", color="blue", weight=9]; 5844 -> 4752[label="",style="solid", color="blue", weight=3]; 5845[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5845[label="",style="solid", color="blue", weight=9]; 5845 -> 4753[label="",style="solid", color="blue", weight=3]; 5846[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5846[label="",style="solid", color="blue", weight=9]; 5846 -> 4754[label="",style="solid", color="blue", weight=3]; 5847[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5847[label="",style="solid", color="blue", weight=9]; 5847 -> 4755[label="",style="solid", color="blue", weight=3]; 5848[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5848[label="",style="solid", color="blue", weight=9]; 5848 -> 4756[label="",style="solid", color="blue", weight=3]; 5849[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4578 -> 5849[label="",style="solid", color="blue", weight=9]; 5849 -> 4757[label="",style="solid", color="blue", weight=3]; 4579 -> 3140[label="",style="dashed", color="red", weight=0]; 4579[label="vwx1570 == vwx1580 && (vwx1571 < vwx1581 || vwx1571 == vwx1581 && vwx1572 <= vwx1582)",fontsize=16,color="magenta"];4579 -> 4758[label="",style="dashed", color="magenta", weight=3]; 4579 -> 4759[label="",style="dashed", color="magenta", weight=3]; 4580[label="Succ vwx3100",fontsize=16,color="green",shape="box"];4581[label="vwx4000",fontsize=16,color="green",shape="box"];4582[label="primPlusNat (Succ vwx2910) (Succ vwx3100)",fontsize=16,color="black",shape="box"];4582 -> 4760[label="",style="solid", color="black", weight=3]; 4583[label="primPlusNat Zero (Succ vwx3100)",fontsize=16,color="black",shape="box"];4583 -> 4761[label="",style="solid", color="black", weight=3]; 4584[label="compare0 (vwx261,vwx262) (vwx263,vwx264) True",fontsize=16,color="black",shape="box"];4584 -> 4762[label="",style="solid", color="black", weight=3]; 4585[label="vwx203",fontsize=16,color="green",shape="box"];4586[label="vwx200",fontsize=16,color="green",shape="box"];4587[label="vwx203",fontsize=16,color="green",shape="box"];4588[label="vwx200",fontsize=16,color="green",shape="box"];4589[label="vwx203",fontsize=16,color="green",shape="box"];4590[label="vwx200",fontsize=16,color="green",shape="box"];4591[label="vwx203",fontsize=16,color="green",shape="box"];4592[label="vwx200",fontsize=16,color="green",shape="box"];4593[label="vwx203",fontsize=16,color="green",shape="box"];4594[label="vwx200",fontsize=16,color="green",shape="box"];4595[label="vwx203",fontsize=16,color="green",shape="box"];4596[label="vwx200",fontsize=16,color="green",shape="box"];4597[label="vwx203",fontsize=16,color="green",shape="box"];4598[label="vwx200",fontsize=16,color="green",shape="box"];4599[label="vwx203",fontsize=16,color="green",shape="box"];4600[label="vwx200",fontsize=16,color="green",shape="box"];4601[label="vwx203",fontsize=16,color="green",shape="box"];4602[label="vwx200",fontsize=16,color="green",shape="box"];4603[label="vwx203",fontsize=16,color="green",shape="box"];4604[label="vwx200",fontsize=16,color="green",shape="box"];4605[label="vwx203",fontsize=16,color="green",shape="box"];4606[label="vwx200",fontsize=16,color="green",shape="box"];4607[label="vwx203",fontsize=16,color="green",shape="box"];4608[label="vwx200",fontsize=16,color="green",shape="box"];4609[label="vwx203",fontsize=16,color="green",shape="box"];4610[label="vwx200",fontsize=16,color="green",shape="box"];4611[label="vwx203",fontsize=16,color="green",shape="box"];4612[label="vwx200",fontsize=16,color="green",shape="box"];4613[label="vwx202",fontsize=16,color="green",shape="box"];4614[label="vwx199",fontsize=16,color="green",shape="box"];4615[label="vwx202",fontsize=16,color="green",shape="box"];4616[label="vwx199",fontsize=16,color="green",shape="box"];4617[label="vwx202",fontsize=16,color="green",shape="box"];4618[label="vwx199",fontsize=16,color="green",shape="box"];4619[label="vwx202",fontsize=16,color="green",shape="box"];4620[label="vwx199",fontsize=16,color="green",shape="box"];4621[label="vwx202",fontsize=16,color="green",shape="box"];4622[label="vwx199",fontsize=16,color="green",shape="box"];4623[label="vwx202",fontsize=16,color="green",shape="box"];4624[label="vwx199",fontsize=16,color="green",shape="box"];4625[label="vwx202",fontsize=16,color="green",shape="box"];4626[label="vwx199",fontsize=16,color="green",shape="box"];4627[label="vwx202",fontsize=16,color="green",shape="box"];4628[label="vwx199",fontsize=16,color="green",shape="box"];4629[label="vwx202",fontsize=16,color="green",shape="box"];4630[label="vwx199",fontsize=16,color="green",shape="box"];4631[label="vwx202",fontsize=16,color="green",shape="box"];4632[label="vwx199",fontsize=16,color="green",shape="box"];4633[label="vwx202",fontsize=16,color="green",shape="box"];4634[label="vwx199",fontsize=16,color="green",shape="box"];4635[label="vwx202",fontsize=16,color="green",shape="box"];4636[label="vwx199",fontsize=16,color="green",shape="box"];4637[label="vwx202",fontsize=16,color="green",shape="box"];4638[label="vwx199",fontsize=16,color="green",shape="box"];4639[label="vwx202",fontsize=16,color="green",shape="box"];4640[label="vwx199",fontsize=16,color="green",shape="box"];4641[label="compare0 (vwx276,vwx277,vwx278) (vwx279,vwx280,vwx281) True",fontsize=16,color="black",shape="box"];4641 -> 4763[label="",style="solid", color="black", weight=3]; 4642[label="GT",fontsize=16,color="green",shape="box"];4643[label="vwx285",fontsize=16,color="green",shape="box"];4644[label="vwx1580",fontsize=16,color="green",shape="box"];4645[label="vwx1570",fontsize=16,color="green",shape="box"];4646[label="vwx1580",fontsize=16,color="green",shape="box"];4647[label="vwx1570",fontsize=16,color="green",shape="box"];4648[label="vwx1580",fontsize=16,color="green",shape="box"];4649[label="vwx1570",fontsize=16,color="green",shape="box"];4650[label="vwx1580",fontsize=16,color="green",shape="box"];4651[label="vwx1570",fontsize=16,color="green",shape="box"];4652[label="vwx1580",fontsize=16,color="green",shape="box"];4653[label="vwx1570",fontsize=16,color="green",shape="box"];4654[label="vwx1580",fontsize=16,color="green",shape="box"];4655[label="vwx1570",fontsize=16,color="green",shape="box"];4656[label="vwx1580",fontsize=16,color="green",shape="box"];4657[label="vwx1570",fontsize=16,color="green",shape="box"];4658[label="vwx1580",fontsize=16,color="green",shape="box"];4659[label="vwx1570",fontsize=16,color="green",shape="box"];4660[label="vwx1580",fontsize=16,color="green",shape="box"];4661[label="vwx1570",fontsize=16,color="green",shape="box"];4662[label="vwx1580",fontsize=16,color="green",shape="box"];4663[label="vwx1570",fontsize=16,color="green",shape="box"];4664[label="vwx1580",fontsize=16,color="green",shape="box"];4665[label="vwx1570",fontsize=16,color="green",shape="box"];4666[label="vwx1580",fontsize=16,color="green",shape="box"];4667[label="vwx1570",fontsize=16,color="green",shape="box"];4668[label="vwx1580",fontsize=16,color="green",shape="box"];4669[label="vwx1570",fontsize=16,color="green",shape="box"];4670[label="vwx1580",fontsize=16,color="green",shape="box"];4671[label="vwx1570",fontsize=16,color="green",shape="box"];4672[label="vwx1580",fontsize=16,color="green",shape="box"];4673[label="vwx1570",fontsize=16,color="green",shape="box"];4674[label="vwx1580",fontsize=16,color="green",shape="box"];4675[label="vwx1570",fontsize=16,color="green",shape="box"];4676[label="vwx1580",fontsize=16,color="green",shape="box"];4677[label="vwx1570",fontsize=16,color="green",shape="box"];4678[label="vwx1580",fontsize=16,color="green",shape="box"];4679[label="vwx1570",fontsize=16,color="green",shape="box"];4680[label="vwx1580",fontsize=16,color="green",shape="box"];4681[label="vwx1570",fontsize=16,color="green",shape="box"];4682[label="vwx1580",fontsize=16,color="green",shape="box"];4683[label="vwx1570",fontsize=16,color="green",shape="box"];4684[label="vwx1580",fontsize=16,color="green",shape="box"];4685[label="vwx1570",fontsize=16,color="green",shape="box"];4686[label="vwx1580",fontsize=16,color="green",shape="box"];4687[label="vwx1570",fontsize=16,color="green",shape="box"];4688[label="vwx1580",fontsize=16,color="green",shape="box"];4689[label="vwx1570",fontsize=16,color="green",shape="box"];4690[label="vwx1580",fontsize=16,color="green",shape="box"];4691[label="vwx1570",fontsize=16,color="green",shape="box"];4692[label="vwx1580",fontsize=16,color="green",shape="box"];4693[label="vwx1570",fontsize=16,color="green",shape="box"];4694[label="vwx1580",fontsize=16,color="green",shape="box"];4695[label="vwx1570",fontsize=16,color="green",shape="box"];4696[label="vwx1580",fontsize=16,color="green",shape="box"];4697[label="vwx1570",fontsize=16,color="green",shape="box"];4698[label="vwx1580",fontsize=16,color="green",shape="box"];4699[label="vwx1570",fontsize=16,color="green",shape="box"];4700[label="vwx1580",fontsize=16,color="green",shape="box"];4701[label="vwx1570",fontsize=16,color="green",shape="box"];4702[label="vwx1580",fontsize=16,color="green",shape="box"];4703[label="vwx1570",fontsize=16,color="green",shape="box"];4704[label="vwx1580",fontsize=16,color="green",shape="box"];4705[label="vwx1570",fontsize=16,color="green",shape="box"];4706[label="vwx1580",fontsize=16,color="green",shape="box"];4707[label="vwx1570",fontsize=16,color="green",shape="box"];4708[label="vwx1580",fontsize=16,color="green",shape="box"];4709[label="vwx1570",fontsize=16,color="green",shape="box"];4710[label="vwx1580",fontsize=16,color="green",shape="box"];4711[label="vwx1570",fontsize=16,color="green",shape="box"];4712[label="vwx1580",fontsize=16,color="green",shape="box"];4713[label="vwx1570",fontsize=16,color="green",shape="box"];4714[label="vwx1580",fontsize=16,color="green",shape="box"];4715[label="vwx1570",fontsize=16,color="green",shape="box"];4716[label="vwx1580",fontsize=16,color="green",shape="box"];4717[label="vwx1570",fontsize=16,color="green",shape="box"];4718[label="vwx1580",fontsize=16,color="green",shape="box"];4719[label="vwx1570",fontsize=16,color="green",shape="box"];4720[label="vwx1580",fontsize=16,color="green",shape="box"];4721[label="vwx1570",fontsize=16,color="green",shape="box"];4722[label="vwx1580",fontsize=16,color="green",shape="box"];4723[label="vwx1570",fontsize=16,color="green",shape="box"];4724[label="vwx1580",fontsize=16,color="green",shape="box"];4725[label="vwx1570",fontsize=16,color="green",shape="box"];4726[label="vwx1580",fontsize=16,color="green",shape="box"];4727[label="vwx1570",fontsize=16,color="green",shape="box"];4728 -> 3586[label="",style="dashed", color="red", weight=0]; 4728[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4728 -> 4764[label="",style="dashed", color="magenta", weight=3]; 4728 -> 4765[label="",style="dashed", color="magenta", weight=3]; 4729 -> 3587[label="",style="dashed", color="red", weight=0]; 4729[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4729 -> 4766[label="",style="dashed", color="magenta", weight=3]; 4729 -> 4767[label="",style="dashed", color="magenta", weight=3]; 4730 -> 3588[label="",style="dashed", color="red", weight=0]; 4730[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4730 -> 4768[label="",style="dashed", color="magenta", weight=3]; 4730 -> 4769[label="",style="dashed", color="magenta", weight=3]; 4731 -> 3589[label="",style="dashed", color="red", weight=0]; 4731[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4731 -> 4770[label="",style="dashed", color="magenta", weight=3]; 4731 -> 4771[label="",style="dashed", color="magenta", weight=3]; 4732 -> 3590[label="",style="dashed", color="red", weight=0]; 4732[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4732 -> 4772[label="",style="dashed", color="magenta", weight=3]; 4732 -> 4773[label="",style="dashed", color="magenta", weight=3]; 4733 -> 3591[label="",style="dashed", color="red", weight=0]; 4733[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4733 -> 4774[label="",style="dashed", color="magenta", weight=3]; 4733 -> 4775[label="",style="dashed", color="magenta", weight=3]; 4734 -> 3592[label="",style="dashed", color="red", weight=0]; 4734[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4734 -> 4776[label="",style="dashed", color="magenta", weight=3]; 4734 -> 4777[label="",style="dashed", color="magenta", weight=3]; 4735 -> 3593[label="",style="dashed", color="red", weight=0]; 4735[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4735 -> 4778[label="",style="dashed", color="magenta", weight=3]; 4735 -> 4779[label="",style="dashed", color="magenta", weight=3]; 4736 -> 3594[label="",style="dashed", color="red", weight=0]; 4736[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4736 -> 4780[label="",style="dashed", color="magenta", weight=3]; 4736 -> 4781[label="",style="dashed", color="magenta", weight=3]; 4737 -> 3595[label="",style="dashed", color="red", weight=0]; 4737[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4737 -> 4782[label="",style="dashed", color="magenta", weight=3]; 4737 -> 4783[label="",style="dashed", color="magenta", weight=3]; 4738 -> 3596[label="",style="dashed", color="red", weight=0]; 4738[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4738 -> 4784[label="",style="dashed", color="magenta", weight=3]; 4738 -> 4785[label="",style="dashed", color="magenta", weight=3]; 4739 -> 3597[label="",style="dashed", color="red", weight=0]; 4739[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4739 -> 4786[label="",style="dashed", color="magenta", weight=3]; 4739 -> 4787[label="",style="dashed", color="magenta", weight=3]; 4740 -> 3598[label="",style="dashed", color="red", weight=0]; 4740[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4740 -> 4788[label="",style="dashed", color="magenta", weight=3]; 4740 -> 4789[label="",style="dashed", color="magenta", weight=3]; 4741 -> 3599[label="",style="dashed", color="red", weight=0]; 4741[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4741 -> 4790[label="",style="dashed", color="magenta", weight=3]; 4741 -> 4791[label="",style="dashed", color="magenta", weight=3]; 4742[label="vwx1571 <= vwx1581",fontsize=16,color="blue",shape="box"];5850[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5850[label="",style="solid", color="blue", weight=9]; 5850 -> 4792[label="",style="solid", color="blue", weight=3]; 5851[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5851[label="",style="solid", color="blue", weight=9]; 5851 -> 4793[label="",style="solid", color="blue", weight=3]; 5852[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5852[label="",style="solid", color="blue", weight=9]; 5852 -> 4794[label="",style="solid", color="blue", weight=3]; 5853[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5853[label="",style="solid", color="blue", weight=9]; 5853 -> 4795[label="",style="solid", color="blue", weight=3]; 5854[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5854[label="",style="solid", color="blue", weight=9]; 5854 -> 4796[label="",style="solid", color="blue", weight=3]; 5855[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5855[label="",style="solid", color="blue", weight=9]; 5855 -> 4797[label="",style="solid", color="blue", weight=3]; 5856[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5856[label="",style="solid", color="blue", weight=9]; 5856 -> 4798[label="",style="solid", color="blue", weight=3]; 5857[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5857[label="",style="solid", color="blue", weight=9]; 5857 -> 4799[label="",style="solid", color="blue", weight=3]; 5858[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5858[label="",style="solid", color="blue", weight=9]; 5858 -> 4800[label="",style="solid", color="blue", weight=3]; 5859[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5859[label="",style="solid", color="blue", weight=9]; 5859 -> 4801[label="",style="solid", color="blue", weight=3]; 5860[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5860[label="",style="solid", color="blue", weight=9]; 5860 -> 4802[label="",style="solid", color="blue", weight=3]; 5861[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5861[label="",style="solid", color="blue", weight=9]; 5861 -> 4803[label="",style="solid", color="blue", weight=3]; 5862[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5862[label="",style="solid", color="blue", weight=9]; 5862 -> 4804[label="",style="solid", color="blue", weight=3]; 5863[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5863[label="",style="solid", color="blue", weight=9]; 5863 -> 4805[label="",style="solid", color="blue", weight=3]; 4743[label="vwx1570 == vwx1580",fontsize=16,color="blue",shape="box"];5864[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5864[label="",style="solid", color="blue", weight=9]; 5864 -> 4806[label="",style="solid", color="blue", weight=3]; 5865[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5865[label="",style="solid", color="blue", weight=9]; 5865 -> 4807[label="",style="solid", color="blue", weight=3]; 5866[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5866[label="",style="solid", color="blue", weight=9]; 5866 -> 4808[label="",style="solid", color="blue", weight=3]; 5867[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5867[label="",style="solid", color="blue", weight=9]; 5867 -> 4809[label="",style="solid", color="blue", weight=3]; 5868[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5868[label="",style="solid", color="blue", weight=9]; 5868 -> 4810[label="",style="solid", color="blue", weight=3]; 5869[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5869[label="",style="solid", color="blue", weight=9]; 5869 -> 4811[label="",style="solid", color="blue", weight=3]; 5870[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5870[label="",style="solid", color="blue", weight=9]; 5870 -> 4812[label="",style="solid", color="blue", weight=3]; 5871[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5871[label="",style="solid", color="blue", weight=9]; 5871 -> 4813[label="",style="solid", color="blue", weight=3]; 5872[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5872[label="",style="solid", color="blue", weight=9]; 5872 -> 4814[label="",style="solid", color="blue", weight=3]; 5873[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5873[label="",style="solid", color="blue", weight=9]; 5873 -> 4815[label="",style="solid", color="blue", weight=3]; 5874[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5874[label="",style="solid", color="blue", weight=9]; 5874 -> 4816[label="",style="solid", color="blue", weight=3]; 5875[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5875[label="",style="solid", color="blue", weight=9]; 5875 -> 4817[label="",style="solid", color="blue", weight=3]; 5876[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5876[label="",style="solid", color="blue", weight=9]; 5876 -> 4818[label="",style="solid", color="blue", weight=3]; 5877[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4743 -> 5877[label="",style="solid", color="blue", weight=9]; 5877 -> 4819[label="",style="solid", color="blue", weight=3]; 4744 -> 3586[label="",style="dashed", color="red", weight=0]; 4744[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4744 -> 4820[label="",style="dashed", color="magenta", weight=3]; 4744 -> 4821[label="",style="dashed", color="magenta", weight=3]; 4745 -> 3587[label="",style="dashed", color="red", weight=0]; 4745[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4745 -> 4822[label="",style="dashed", color="magenta", weight=3]; 4745 -> 4823[label="",style="dashed", color="magenta", weight=3]; 4746 -> 3588[label="",style="dashed", color="red", weight=0]; 4746[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4746 -> 4824[label="",style="dashed", color="magenta", weight=3]; 4746 -> 4825[label="",style="dashed", color="magenta", weight=3]; 4747 -> 3589[label="",style="dashed", color="red", weight=0]; 4747[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4747 -> 4826[label="",style="dashed", color="magenta", weight=3]; 4747 -> 4827[label="",style="dashed", color="magenta", weight=3]; 4748 -> 3590[label="",style="dashed", color="red", weight=0]; 4748[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4748 -> 4828[label="",style="dashed", color="magenta", weight=3]; 4748 -> 4829[label="",style="dashed", color="magenta", weight=3]; 4749 -> 3591[label="",style="dashed", color="red", weight=0]; 4749[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4749 -> 4830[label="",style="dashed", color="magenta", weight=3]; 4749 -> 4831[label="",style="dashed", color="magenta", weight=3]; 4750 -> 3592[label="",style="dashed", color="red", weight=0]; 4750[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4750 -> 4832[label="",style="dashed", color="magenta", weight=3]; 4750 -> 4833[label="",style="dashed", color="magenta", weight=3]; 4751 -> 3593[label="",style="dashed", color="red", weight=0]; 4751[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4751 -> 4834[label="",style="dashed", color="magenta", weight=3]; 4751 -> 4835[label="",style="dashed", color="magenta", weight=3]; 4752 -> 3594[label="",style="dashed", color="red", weight=0]; 4752[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4752 -> 4836[label="",style="dashed", color="magenta", weight=3]; 4752 -> 4837[label="",style="dashed", color="magenta", weight=3]; 4753 -> 3595[label="",style="dashed", color="red", weight=0]; 4753[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4753 -> 4838[label="",style="dashed", color="magenta", weight=3]; 4753 -> 4839[label="",style="dashed", color="magenta", weight=3]; 4754 -> 3596[label="",style="dashed", color="red", weight=0]; 4754[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4754 -> 4840[label="",style="dashed", color="magenta", weight=3]; 4754 -> 4841[label="",style="dashed", color="magenta", weight=3]; 4755 -> 3597[label="",style="dashed", color="red", weight=0]; 4755[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4755 -> 4842[label="",style="dashed", color="magenta", weight=3]; 4755 -> 4843[label="",style="dashed", color="magenta", weight=3]; 4756 -> 3598[label="",style="dashed", color="red", weight=0]; 4756[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4756 -> 4844[label="",style="dashed", color="magenta", weight=3]; 4756 -> 4845[label="",style="dashed", color="magenta", weight=3]; 4757 -> 3599[label="",style="dashed", color="red", weight=0]; 4757[label="vwx1570 < vwx1580",fontsize=16,color="magenta"];4757 -> 4846[label="",style="dashed", color="magenta", weight=3]; 4757 -> 4847[label="",style="dashed", color="magenta", weight=3]; 4758 -> 4281[label="",style="dashed", color="red", weight=0]; 4758[label="vwx1571 < vwx1581 || vwx1571 == vwx1581 && vwx1572 <= vwx1582",fontsize=16,color="magenta"];4758 -> 4848[label="",style="dashed", color="magenta", weight=3]; 4758 -> 4849[label="",style="dashed", color="magenta", weight=3]; 4759[label="vwx1570 == vwx1580",fontsize=16,color="blue",shape="box"];5878[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5878[label="",style="solid", color="blue", weight=9]; 5878 -> 4850[label="",style="solid", color="blue", weight=3]; 5879[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5879[label="",style="solid", color="blue", weight=9]; 5879 -> 4851[label="",style="solid", color="blue", weight=3]; 5880[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5880[label="",style="solid", color="blue", weight=9]; 5880 -> 4852[label="",style="solid", color="blue", weight=3]; 5881[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5881[label="",style="solid", color="blue", weight=9]; 5881 -> 4853[label="",style="solid", color="blue", weight=3]; 5882[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5882[label="",style="solid", color="blue", weight=9]; 5882 -> 4854[label="",style="solid", color="blue", weight=3]; 5883[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5883[label="",style="solid", color="blue", weight=9]; 5883 -> 4855[label="",style="solid", color="blue", weight=3]; 5884[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5884[label="",style="solid", color="blue", weight=9]; 5884 -> 4856[label="",style="solid", color="blue", weight=3]; 5885[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5885[label="",style="solid", color="blue", weight=9]; 5885 -> 4857[label="",style="solid", color="blue", weight=3]; 5886[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5886[label="",style="solid", color="blue", weight=9]; 5886 -> 4858[label="",style="solid", color="blue", weight=3]; 5887[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5887[label="",style="solid", color="blue", weight=9]; 5887 -> 4859[label="",style="solid", color="blue", weight=3]; 5888[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5888[label="",style="solid", color="blue", weight=9]; 5888 -> 4860[label="",style="solid", color="blue", weight=3]; 5889[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5889[label="",style="solid", color="blue", weight=9]; 5889 -> 4861[label="",style="solid", color="blue", weight=3]; 5890[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5890[label="",style="solid", color="blue", weight=9]; 5890 -> 4862[label="",style="solid", color="blue", weight=3]; 5891[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4759 -> 5891[label="",style="solid", color="blue", weight=9]; 5891 -> 4863[label="",style="solid", color="blue", weight=3]; 4760[label="Succ (Succ (primPlusNat vwx2910 vwx3100))",fontsize=16,color="green",shape="box"];4760 -> 4864[label="",style="dashed", color="green", weight=3]; 4761[label="Succ vwx3100",fontsize=16,color="green",shape="box"];4762[label="GT",fontsize=16,color="green",shape="box"];4763[label="GT",fontsize=16,color="green",shape="box"];4764[label="vwx1580",fontsize=16,color="green",shape="box"];4765[label="vwx1570",fontsize=16,color="green",shape="box"];4766[label="vwx1580",fontsize=16,color="green",shape="box"];4767[label="vwx1570",fontsize=16,color="green",shape="box"];4768[label="vwx1580",fontsize=16,color="green",shape="box"];4769[label="vwx1570",fontsize=16,color="green",shape="box"];4770[label="vwx1580",fontsize=16,color="green",shape="box"];4771[label="vwx1570",fontsize=16,color="green",shape="box"];4772[label="vwx1580",fontsize=16,color="green",shape="box"];4773[label="vwx1570",fontsize=16,color="green",shape="box"];4774[label="vwx1580",fontsize=16,color="green",shape="box"];4775[label="vwx1570",fontsize=16,color="green",shape="box"];4776[label="vwx1580",fontsize=16,color="green",shape="box"];4777[label="vwx1570",fontsize=16,color="green",shape="box"];4778[label="vwx1580",fontsize=16,color="green",shape="box"];4779[label="vwx1570",fontsize=16,color="green",shape="box"];4780[label="vwx1580",fontsize=16,color="green",shape="box"];4781[label="vwx1570",fontsize=16,color="green",shape="box"];4782[label="vwx1580",fontsize=16,color="green",shape="box"];4783[label="vwx1570",fontsize=16,color="green",shape="box"];4784[label="vwx1580",fontsize=16,color="green",shape="box"];4785[label="vwx1570",fontsize=16,color="green",shape="box"];4786[label="vwx1580",fontsize=16,color="green",shape="box"];4787[label="vwx1570",fontsize=16,color="green",shape="box"];4788[label="vwx1580",fontsize=16,color="green",shape="box"];4789[label="vwx1570",fontsize=16,color="green",shape="box"];4790[label="vwx1580",fontsize=16,color="green",shape="box"];4791[label="vwx1570",fontsize=16,color="green",shape="box"];4792 -> 3517[label="",style="dashed", color="red", weight=0]; 4792[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4792 -> 4865[label="",style="dashed", color="magenta", weight=3]; 4792 -> 4866[label="",style="dashed", color="magenta", weight=3]; 4793 -> 3518[label="",style="dashed", color="red", weight=0]; 4793[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4793 -> 4867[label="",style="dashed", color="magenta", weight=3]; 4793 -> 4868[label="",style="dashed", color="magenta", weight=3]; 4794 -> 3519[label="",style="dashed", color="red", weight=0]; 4794[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4794 -> 4869[label="",style="dashed", color="magenta", weight=3]; 4794 -> 4870[label="",style="dashed", color="magenta", weight=3]; 4795 -> 3520[label="",style="dashed", color="red", weight=0]; 4795[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4795 -> 4871[label="",style="dashed", color="magenta", weight=3]; 4795 -> 4872[label="",style="dashed", color="magenta", weight=3]; 4796 -> 3521[label="",style="dashed", color="red", weight=0]; 4796[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4796 -> 4873[label="",style="dashed", color="magenta", weight=3]; 4796 -> 4874[label="",style="dashed", color="magenta", weight=3]; 4797 -> 3522[label="",style="dashed", color="red", weight=0]; 4797[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4797 -> 4875[label="",style="dashed", color="magenta", weight=3]; 4797 -> 4876[label="",style="dashed", color="magenta", weight=3]; 4798 -> 3523[label="",style="dashed", color="red", weight=0]; 4798[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4798 -> 4877[label="",style="dashed", color="magenta", weight=3]; 4798 -> 4878[label="",style="dashed", color="magenta", weight=3]; 4799 -> 3524[label="",style="dashed", color="red", weight=0]; 4799[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4799 -> 4879[label="",style="dashed", color="magenta", weight=3]; 4799 -> 4880[label="",style="dashed", color="magenta", weight=3]; 4800 -> 3525[label="",style="dashed", color="red", weight=0]; 4800[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4800 -> 4881[label="",style="dashed", color="magenta", weight=3]; 4800 -> 4882[label="",style="dashed", color="magenta", weight=3]; 4801 -> 3526[label="",style="dashed", color="red", weight=0]; 4801[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4801 -> 4883[label="",style="dashed", color="magenta", weight=3]; 4801 -> 4884[label="",style="dashed", color="magenta", weight=3]; 4802 -> 3527[label="",style="dashed", color="red", weight=0]; 4802[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4802 -> 4885[label="",style="dashed", color="magenta", weight=3]; 4802 -> 4886[label="",style="dashed", color="magenta", weight=3]; 4803 -> 3528[label="",style="dashed", color="red", weight=0]; 4803[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4803 -> 4887[label="",style="dashed", color="magenta", weight=3]; 4803 -> 4888[label="",style="dashed", color="magenta", weight=3]; 4804 -> 3529[label="",style="dashed", color="red", weight=0]; 4804[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4804 -> 4889[label="",style="dashed", color="magenta", weight=3]; 4804 -> 4890[label="",style="dashed", color="magenta", weight=3]; 4805 -> 3530[label="",style="dashed", color="red", weight=0]; 4805[label="vwx1571 <= vwx1581",fontsize=16,color="magenta"];4805 -> 4891[label="",style="dashed", color="magenta", weight=3]; 4805 -> 4892[label="",style="dashed", color="magenta", weight=3]; 4806 -> 2671[label="",style="dashed", color="red", weight=0]; 4806[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4806 -> 4893[label="",style="dashed", color="magenta", weight=3]; 4806 -> 4894[label="",style="dashed", color="magenta", weight=3]; 4807 -> 2664[label="",style="dashed", color="red", weight=0]; 4807[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4807 -> 4895[label="",style="dashed", color="magenta", weight=3]; 4807 -> 4896[label="",style="dashed", color="magenta", weight=3]; 4808 -> 2669[label="",style="dashed", color="red", weight=0]; 4808[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4808 -> 4897[label="",style="dashed", color="magenta", weight=3]; 4808 -> 4898[label="",style="dashed", color="magenta", weight=3]; 4809 -> 2672[label="",style="dashed", color="red", weight=0]; 4809[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4809 -> 4899[label="",style="dashed", color="magenta", weight=3]; 4809 -> 4900[label="",style="dashed", color="magenta", weight=3]; 4810 -> 2673[label="",style="dashed", color="red", weight=0]; 4810[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4810 -> 4901[label="",style="dashed", color="magenta", weight=3]; 4810 -> 4902[label="",style="dashed", color="magenta", weight=3]; 4811 -> 2668[label="",style="dashed", color="red", weight=0]; 4811[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4811 -> 4903[label="",style="dashed", color="magenta", weight=3]; 4811 -> 4904[label="",style="dashed", color="magenta", weight=3]; 4812 -> 2663[label="",style="dashed", color="red", weight=0]; 4812[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4812 -> 4905[label="",style="dashed", color="magenta", weight=3]; 4812 -> 4906[label="",style="dashed", color="magenta", weight=3]; 4813 -> 2665[label="",style="dashed", color="red", weight=0]; 4813[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4813 -> 4907[label="",style="dashed", color="magenta", weight=3]; 4813 -> 4908[label="",style="dashed", color="magenta", weight=3]; 4814 -> 2660[label="",style="dashed", color="red", weight=0]; 4814[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4814 -> 4909[label="",style="dashed", color="magenta", weight=3]; 4814 -> 4910[label="",style="dashed", color="magenta", weight=3]; 4815 -> 2667[label="",style="dashed", color="red", weight=0]; 4815[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4815 -> 4911[label="",style="dashed", color="magenta", weight=3]; 4815 -> 4912[label="",style="dashed", color="magenta", weight=3]; 4816 -> 2666[label="",style="dashed", color="red", weight=0]; 4816[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4816 -> 4913[label="",style="dashed", color="magenta", weight=3]; 4816 -> 4914[label="",style="dashed", color="magenta", weight=3]; 4817 -> 2661[label="",style="dashed", color="red", weight=0]; 4817[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4817 -> 4915[label="",style="dashed", color="magenta", weight=3]; 4817 -> 4916[label="",style="dashed", color="magenta", weight=3]; 4818 -> 2662[label="",style="dashed", color="red", weight=0]; 4818[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4818 -> 4917[label="",style="dashed", color="magenta", weight=3]; 4818 -> 4918[label="",style="dashed", color="magenta", weight=3]; 4819 -> 2670[label="",style="dashed", color="red", weight=0]; 4819[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4819 -> 4919[label="",style="dashed", color="magenta", weight=3]; 4819 -> 4920[label="",style="dashed", color="magenta", weight=3]; 4820[label="vwx1580",fontsize=16,color="green",shape="box"];4821[label="vwx1570",fontsize=16,color="green",shape="box"];4822[label="vwx1580",fontsize=16,color="green",shape="box"];4823[label="vwx1570",fontsize=16,color="green",shape="box"];4824[label="vwx1580",fontsize=16,color="green",shape="box"];4825[label="vwx1570",fontsize=16,color="green",shape="box"];4826[label="vwx1580",fontsize=16,color="green",shape="box"];4827[label="vwx1570",fontsize=16,color="green",shape="box"];4828[label="vwx1580",fontsize=16,color="green",shape="box"];4829[label="vwx1570",fontsize=16,color="green",shape="box"];4830[label="vwx1580",fontsize=16,color="green",shape="box"];4831[label="vwx1570",fontsize=16,color="green",shape="box"];4832[label="vwx1580",fontsize=16,color="green",shape="box"];4833[label="vwx1570",fontsize=16,color="green",shape="box"];4834[label="vwx1580",fontsize=16,color="green",shape="box"];4835[label="vwx1570",fontsize=16,color="green",shape="box"];4836[label="vwx1580",fontsize=16,color="green",shape="box"];4837[label="vwx1570",fontsize=16,color="green",shape="box"];4838[label="vwx1580",fontsize=16,color="green",shape="box"];4839[label="vwx1570",fontsize=16,color="green",shape="box"];4840[label="vwx1580",fontsize=16,color="green",shape="box"];4841[label="vwx1570",fontsize=16,color="green",shape="box"];4842[label="vwx1580",fontsize=16,color="green",shape="box"];4843[label="vwx1570",fontsize=16,color="green",shape="box"];4844[label="vwx1580",fontsize=16,color="green",shape="box"];4845[label="vwx1570",fontsize=16,color="green",shape="box"];4846[label="vwx1580",fontsize=16,color="green",shape="box"];4847[label="vwx1570",fontsize=16,color="green",shape="box"];4848[label="vwx1571 < vwx1581",fontsize=16,color="blue",shape="box"];5892[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5892[label="",style="solid", color="blue", weight=9]; 5892 -> 4921[label="",style="solid", color="blue", weight=3]; 5893[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5893[label="",style="solid", color="blue", weight=9]; 5893 -> 4922[label="",style="solid", color="blue", weight=3]; 5894[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5894[label="",style="solid", color="blue", weight=9]; 5894 -> 4923[label="",style="solid", color="blue", weight=3]; 5895[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5895[label="",style="solid", color="blue", weight=9]; 5895 -> 4924[label="",style="solid", color="blue", weight=3]; 5896[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5896[label="",style="solid", color="blue", weight=9]; 5896 -> 4925[label="",style="solid", color="blue", weight=3]; 5897[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5897[label="",style="solid", color="blue", weight=9]; 5897 -> 4926[label="",style="solid", color="blue", weight=3]; 5898[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5898[label="",style="solid", color="blue", weight=9]; 5898 -> 4927[label="",style="solid", color="blue", weight=3]; 5899[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5899[label="",style="solid", color="blue", weight=9]; 5899 -> 4928[label="",style="solid", color="blue", weight=3]; 5900[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5900[label="",style="solid", color="blue", weight=9]; 5900 -> 4929[label="",style="solid", color="blue", weight=3]; 5901[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5901[label="",style="solid", color="blue", weight=9]; 5901 -> 4930[label="",style="solid", color="blue", weight=3]; 5902[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5902[label="",style="solid", color="blue", weight=9]; 5902 -> 4931[label="",style="solid", color="blue", weight=3]; 5903[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5903[label="",style="solid", color="blue", weight=9]; 5903 -> 4932[label="",style="solid", color="blue", weight=3]; 5904[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5904[label="",style="solid", color="blue", weight=9]; 5904 -> 4933[label="",style="solid", color="blue", weight=3]; 5905[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4848 -> 5905[label="",style="solid", color="blue", weight=9]; 5905 -> 4934[label="",style="solid", color="blue", weight=3]; 4849 -> 3140[label="",style="dashed", color="red", weight=0]; 4849[label="vwx1571 == vwx1581 && vwx1572 <= vwx1582",fontsize=16,color="magenta"];4849 -> 4935[label="",style="dashed", color="magenta", weight=3]; 4849 -> 4936[label="",style="dashed", color="magenta", weight=3]; 4850 -> 2671[label="",style="dashed", color="red", weight=0]; 4850[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4850 -> 4937[label="",style="dashed", color="magenta", weight=3]; 4850 -> 4938[label="",style="dashed", color="magenta", weight=3]; 4851 -> 2664[label="",style="dashed", color="red", weight=0]; 4851[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4851 -> 4939[label="",style="dashed", color="magenta", weight=3]; 4851 -> 4940[label="",style="dashed", color="magenta", weight=3]; 4852 -> 2669[label="",style="dashed", color="red", weight=0]; 4852[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4852 -> 4941[label="",style="dashed", color="magenta", weight=3]; 4852 -> 4942[label="",style="dashed", color="magenta", weight=3]; 4853 -> 2672[label="",style="dashed", color="red", weight=0]; 4853[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4853 -> 4943[label="",style="dashed", color="magenta", weight=3]; 4853 -> 4944[label="",style="dashed", color="magenta", weight=3]; 4854 -> 2673[label="",style="dashed", color="red", weight=0]; 4854[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4854 -> 4945[label="",style="dashed", color="magenta", weight=3]; 4854 -> 4946[label="",style="dashed", color="magenta", weight=3]; 4855 -> 2668[label="",style="dashed", color="red", weight=0]; 4855[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4855 -> 4947[label="",style="dashed", color="magenta", weight=3]; 4855 -> 4948[label="",style="dashed", color="magenta", weight=3]; 4856 -> 2663[label="",style="dashed", color="red", weight=0]; 4856[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4856 -> 4949[label="",style="dashed", color="magenta", weight=3]; 4856 -> 4950[label="",style="dashed", color="magenta", weight=3]; 4857 -> 2665[label="",style="dashed", color="red", weight=0]; 4857[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4857 -> 4951[label="",style="dashed", color="magenta", weight=3]; 4857 -> 4952[label="",style="dashed", color="magenta", weight=3]; 4858 -> 2660[label="",style="dashed", color="red", weight=0]; 4858[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4858 -> 4953[label="",style="dashed", color="magenta", weight=3]; 4858 -> 4954[label="",style="dashed", color="magenta", weight=3]; 4859 -> 2667[label="",style="dashed", color="red", weight=0]; 4859[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4859 -> 4955[label="",style="dashed", color="magenta", weight=3]; 4859 -> 4956[label="",style="dashed", color="magenta", weight=3]; 4860 -> 2666[label="",style="dashed", color="red", weight=0]; 4860[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4860 -> 4957[label="",style="dashed", color="magenta", weight=3]; 4860 -> 4958[label="",style="dashed", color="magenta", weight=3]; 4861 -> 2661[label="",style="dashed", color="red", weight=0]; 4861[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4861 -> 4959[label="",style="dashed", color="magenta", weight=3]; 4861 -> 4960[label="",style="dashed", color="magenta", weight=3]; 4862 -> 2662[label="",style="dashed", color="red", weight=0]; 4862[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4862 -> 4961[label="",style="dashed", color="magenta", weight=3]; 4862 -> 4962[label="",style="dashed", color="magenta", weight=3]; 4863 -> 2670[label="",style="dashed", color="red", weight=0]; 4863[label="vwx1570 == vwx1580",fontsize=16,color="magenta"];4863 -> 4963[label="",style="dashed", color="magenta", weight=3]; 4863 -> 4964[label="",style="dashed", color="magenta", weight=3]; 4864[label="primPlusNat vwx2910 vwx3100",fontsize=16,color="burlywood",shape="triangle"];5906[label="vwx2910/Succ vwx29100",fontsize=10,color="white",style="solid",shape="box"];4864 -> 5906[label="",style="solid", color="burlywood", weight=9]; 5906 -> 4965[label="",style="solid", color="burlywood", weight=3]; 5907[label="vwx2910/Zero",fontsize=10,color="white",style="solid",shape="box"];4864 -> 5907[label="",style="solid", color="burlywood", weight=9]; 5907 -> 4966[label="",style="solid", color="burlywood", weight=3]; 4865[label="vwx1581",fontsize=16,color="green",shape="box"];4866[label="vwx1571",fontsize=16,color="green",shape="box"];4867[label="vwx1581",fontsize=16,color="green",shape="box"];4868[label="vwx1571",fontsize=16,color="green",shape="box"];4869[label="vwx1581",fontsize=16,color="green",shape="box"];4870[label="vwx1571",fontsize=16,color="green",shape="box"];4871[label="vwx1581",fontsize=16,color="green",shape="box"];4872[label="vwx1571",fontsize=16,color="green",shape="box"];4873[label="vwx1581",fontsize=16,color="green",shape="box"];4874[label="vwx1571",fontsize=16,color="green",shape="box"];4875[label="vwx1581",fontsize=16,color="green",shape="box"];4876[label="vwx1571",fontsize=16,color="green",shape="box"];4877[label="vwx1581",fontsize=16,color="green",shape="box"];4878[label="vwx1571",fontsize=16,color="green",shape="box"];4879[label="vwx1581",fontsize=16,color="green",shape="box"];4880[label="vwx1571",fontsize=16,color="green",shape="box"];4881[label="vwx1581",fontsize=16,color="green",shape="box"];4882[label="vwx1571",fontsize=16,color="green",shape="box"];4883[label="vwx1581",fontsize=16,color="green",shape="box"];4884[label="vwx1571",fontsize=16,color="green",shape="box"];4885[label="vwx1581",fontsize=16,color="green",shape="box"];4886[label="vwx1571",fontsize=16,color="green",shape="box"];4887[label="vwx1581",fontsize=16,color="green",shape="box"];4888[label="vwx1571",fontsize=16,color="green",shape="box"];4889[label="vwx1581",fontsize=16,color="green",shape="box"];4890[label="vwx1571",fontsize=16,color="green",shape="box"];4891[label="vwx1581",fontsize=16,color="green",shape="box"];4892[label="vwx1571",fontsize=16,color="green",shape="box"];4893[label="vwx1580",fontsize=16,color="green",shape="box"];4894[label="vwx1570",fontsize=16,color="green",shape="box"];4895[label="vwx1580",fontsize=16,color="green",shape="box"];4896[label="vwx1570",fontsize=16,color="green",shape="box"];4897[label="vwx1580",fontsize=16,color="green",shape="box"];4898[label="vwx1570",fontsize=16,color="green",shape="box"];4899[label="vwx1580",fontsize=16,color="green",shape="box"];4900[label="vwx1570",fontsize=16,color="green",shape="box"];4901[label="vwx1580",fontsize=16,color="green",shape="box"];4902[label="vwx1570",fontsize=16,color="green",shape="box"];4903[label="vwx1580",fontsize=16,color="green",shape="box"];4904[label="vwx1570",fontsize=16,color="green",shape="box"];4905[label="vwx1580",fontsize=16,color="green",shape="box"];4906[label="vwx1570",fontsize=16,color="green",shape="box"];4907[label="vwx1580",fontsize=16,color="green",shape="box"];4908[label="vwx1570",fontsize=16,color="green",shape="box"];4909[label="vwx1580",fontsize=16,color="green",shape="box"];4910[label="vwx1570",fontsize=16,color="green",shape="box"];4911[label="vwx1580",fontsize=16,color="green",shape="box"];4912[label="vwx1570",fontsize=16,color="green",shape="box"];4913[label="vwx1580",fontsize=16,color="green",shape="box"];4914[label="vwx1570",fontsize=16,color="green",shape="box"];4915[label="vwx1580",fontsize=16,color="green",shape="box"];4916[label="vwx1570",fontsize=16,color="green",shape="box"];4917[label="vwx1580",fontsize=16,color="green",shape="box"];4918[label="vwx1570",fontsize=16,color="green",shape="box"];4919[label="vwx1580",fontsize=16,color="green",shape="box"];4920[label="vwx1570",fontsize=16,color="green",shape="box"];4921 -> 3586[label="",style="dashed", color="red", weight=0]; 4921[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4921 -> 4967[label="",style="dashed", color="magenta", weight=3]; 4921 -> 4968[label="",style="dashed", color="magenta", weight=3]; 4922 -> 3587[label="",style="dashed", color="red", weight=0]; 4922[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4922 -> 4969[label="",style="dashed", color="magenta", weight=3]; 4922 -> 4970[label="",style="dashed", color="magenta", weight=3]; 4923 -> 3588[label="",style="dashed", color="red", weight=0]; 4923[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4923 -> 4971[label="",style="dashed", color="magenta", weight=3]; 4923 -> 4972[label="",style="dashed", color="magenta", weight=3]; 4924 -> 3589[label="",style="dashed", color="red", weight=0]; 4924[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4924 -> 4973[label="",style="dashed", color="magenta", weight=3]; 4924 -> 4974[label="",style="dashed", color="magenta", weight=3]; 4925 -> 3590[label="",style="dashed", color="red", weight=0]; 4925[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4925 -> 4975[label="",style="dashed", color="magenta", weight=3]; 4925 -> 4976[label="",style="dashed", color="magenta", weight=3]; 4926 -> 3591[label="",style="dashed", color="red", weight=0]; 4926[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4926 -> 4977[label="",style="dashed", color="magenta", weight=3]; 4926 -> 4978[label="",style="dashed", color="magenta", weight=3]; 4927 -> 3592[label="",style="dashed", color="red", weight=0]; 4927[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4927 -> 4979[label="",style="dashed", color="magenta", weight=3]; 4927 -> 4980[label="",style="dashed", color="magenta", weight=3]; 4928 -> 3593[label="",style="dashed", color="red", weight=0]; 4928[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4928 -> 4981[label="",style="dashed", color="magenta", weight=3]; 4928 -> 4982[label="",style="dashed", color="magenta", weight=3]; 4929 -> 3594[label="",style="dashed", color="red", weight=0]; 4929[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4929 -> 4983[label="",style="dashed", color="magenta", weight=3]; 4929 -> 4984[label="",style="dashed", color="magenta", weight=3]; 4930 -> 3595[label="",style="dashed", color="red", weight=0]; 4930[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4930 -> 4985[label="",style="dashed", color="magenta", weight=3]; 4930 -> 4986[label="",style="dashed", color="magenta", weight=3]; 4931 -> 3596[label="",style="dashed", color="red", weight=0]; 4931[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4931 -> 4987[label="",style="dashed", color="magenta", weight=3]; 4931 -> 4988[label="",style="dashed", color="magenta", weight=3]; 4932 -> 3597[label="",style="dashed", color="red", weight=0]; 4932[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4932 -> 4989[label="",style="dashed", color="magenta", weight=3]; 4932 -> 4990[label="",style="dashed", color="magenta", weight=3]; 4933 -> 3598[label="",style="dashed", color="red", weight=0]; 4933[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4933 -> 4991[label="",style="dashed", color="magenta", weight=3]; 4933 -> 4992[label="",style="dashed", color="magenta", weight=3]; 4934 -> 3599[label="",style="dashed", color="red", weight=0]; 4934[label="vwx1571 < vwx1581",fontsize=16,color="magenta"];4934 -> 4993[label="",style="dashed", color="magenta", weight=3]; 4934 -> 4994[label="",style="dashed", color="magenta", weight=3]; 4935[label="vwx1572 <= vwx1582",fontsize=16,color="blue",shape="box"];5908[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5908[label="",style="solid", color="blue", weight=9]; 5908 -> 4995[label="",style="solid", color="blue", weight=3]; 5909[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5909[label="",style="solid", color="blue", weight=9]; 5909 -> 4996[label="",style="solid", color="blue", weight=3]; 5910[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5910[label="",style="solid", color="blue", weight=9]; 5910 -> 4997[label="",style="solid", color="blue", weight=3]; 5911[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5911[label="",style="solid", color="blue", weight=9]; 5911 -> 4998[label="",style="solid", color="blue", weight=3]; 5912[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5912[label="",style="solid", color="blue", weight=9]; 5912 -> 4999[label="",style="solid", color="blue", weight=3]; 5913[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5913[label="",style="solid", color="blue", weight=9]; 5913 -> 5000[label="",style="solid", color="blue", weight=3]; 5914[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5914[label="",style="solid", color="blue", weight=9]; 5914 -> 5001[label="",style="solid", color="blue", weight=3]; 5915[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5915[label="",style="solid", color="blue", weight=9]; 5915 -> 5002[label="",style="solid", color="blue", weight=3]; 5916[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5916[label="",style="solid", color="blue", weight=9]; 5916 -> 5003[label="",style="solid", color="blue", weight=3]; 5917[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5917[label="",style="solid", color="blue", weight=9]; 5917 -> 5004[label="",style="solid", color="blue", weight=3]; 5918[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5918[label="",style="solid", color="blue", weight=9]; 5918 -> 5005[label="",style="solid", color="blue", weight=3]; 5919[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5919[label="",style="solid", color="blue", weight=9]; 5919 -> 5006[label="",style="solid", color="blue", weight=3]; 5920[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5920[label="",style="solid", color="blue", weight=9]; 5920 -> 5007[label="",style="solid", color="blue", weight=3]; 5921[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4935 -> 5921[label="",style="solid", color="blue", weight=9]; 5921 -> 5008[label="",style="solid", color="blue", weight=3]; 4936[label="vwx1571 == vwx1581",fontsize=16,color="blue",shape="box"];5922[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5922[label="",style="solid", color="blue", weight=9]; 5922 -> 5009[label="",style="solid", color="blue", weight=3]; 5923[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5923[label="",style="solid", color="blue", weight=9]; 5923 -> 5010[label="",style="solid", color="blue", weight=3]; 5924[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5924[label="",style="solid", color="blue", weight=9]; 5924 -> 5011[label="",style="solid", color="blue", weight=3]; 5925[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5925[label="",style="solid", color="blue", weight=9]; 5925 -> 5012[label="",style="solid", color="blue", weight=3]; 5926[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5926[label="",style="solid", color="blue", weight=9]; 5926 -> 5013[label="",style="solid", color="blue", weight=3]; 5927[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5927[label="",style="solid", color="blue", weight=9]; 5927 -> 5014[label="",style="solid", color="blue", weight=3]; 5928[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5928[label="",style="solid", color="blue", weight=9]; 5928 -> 5015[label="",style="solid", color="blue", weight=3]; 5929[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5929[label="",style="solid", color="blue", weight=9]; 5929 -> 5016[label="",style="solid", color="blue", weight=3]; 5930[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5930[label="",style="solid", color="blue", weight=9]; 5930 -> 5017[label="",style="solid", color="blue", weight=3]; 5931[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5931[label="",style="solid", color="blue", weight=9]; 5931 -> 5018[label="",style="solid", color="blue", weight=3]; 5932[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5932[label="",style="solid", color="blue", weight=9]; 5932 -> 5019[label="",style="solid", color="blue", weight=3]; 5933[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5933[label="",style="solid", color="blue", weight=9]; 5933 -> 5020[label="",style="solid", color="blue", weight=3]; 5934[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5934[label="",style="solid", color="blue", weight=9]; 5934 -> 5021[label="",style="solid", color="blue", weight=3]; 5935[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4936 -> 5935[label="",style="solid", color="blue", weight=9]; 5935 -> 5022[label="",style="solid", color="blue", weight=3]; 4937[label="vwx1580",fontsize=16,color="green",shape="box"];4938[label="vwx1570",fontsize=16,color="green",shape="box"];4939[label="vwx1580",fontsize=16,color="green",shape="box"];4940[label="vwx1570",fontsize=16,color="green",shape="box"];4941[label="vwx1580",fontsize=16,color="green",shape="box"];4942[label="vwx1570",fontsize=16,color="green",shape="box"];4943[label="vwx1580",fontsize=16,color="green",shape="box"];4944[label="vwx1570",fontsize=16,color="green",shape="box"];4945[label="vwx1580",fontsize=16,color="green",shape="box"];4946[label="vwx1570",fontsize=16,color="green",shape="box"];4947[label="vwx1580",fontsize=16,color="green",shape="box"];4948[label="vwx1570",fontsize=16,color="green",shape="box"];4949[label="vwx1580",fontsize=16,color="green",shape="box"];4950[label="vwx1570",fontsize=16,color="green",shape="box"];4951[label="vwx1580",fontsize=16,color="green",shape="box"];4952[label="vwx1570",fontsize=16,color="green",shape="box"];4953[label="vwx1580",fontsize=16,color="green",shape="box"];4954[label="vwx1570",fontsize=16,color="green",shape="box"];4955[label="vwx1580",fontsize=16,color="green",shape="box"];4956[label="vwx1570",fontsize=16,color="green",shape="box"];4957[label="vwx1580",fontsize=16,color="green",shape="box"];4958[label="vwx1570",fontsize=16,color="green",shape="box"];4959[label="vwx1580",fontsize=16,color="green",shape="box"];4960[label="vwx1570",fontsize=16,color="green",shape="box"];4961[label="vwx1580",fontsize=16,color="green",shape="box"];4962[label="vwx1570",fontsize=16,color="green",shape="box"];4963[label="vwx1580",fontsize=16,color="green",shape="box"];4964[label="vwx1570",fontsize=16,color="green",shape="box"];4965[label="primPlusNat (Succ vwx29100) vwx3100",fontsize=16,color="burlywood",shape="box"];5936[label="vwx3100/Succ vwx31000",fontsize=10,color="white",style="solid",shape="box"];4965 -> 5936[label="",style="solid", color="burlywood", weight=9]; 5936 -> 5023[label="",style="solid", color="burlywood", weight=3]; 5937[label="vwx3100/Zero",fontsize=10,color="white",style="solid",shape="box"];4965 -> 5937[label="",style="solid", color="burlywood", weight=9]; 5937 -> 5024[label="",style="solid", color="burlywood", weight=3]; 4966[label="primPlusNat Zero vwx3100",fontsize=16,color="burlywood",shape="box"];5938[label="vwx3100/Succ vwx31000",fontsize=10,color="white",style="solid",shape="box"];4966 -> 5938[label="",style="solid", color="burlywood", weight=9]; 5938 -> 5025[label="",style="solid", color="burlywood", weight=3]; 5939[label="vwx3100/Zero",fontsize=10,color="white",style="solid",shape="box"];4966 -> 5939[label="",style="solid", color="burlywood", weight=9]; 5939 -> 5026[label="",style="solid", color="burlywood", weight=3]; 4967[label="vwx1581",fontsize=16,color="green",shape="box"];4968[label="vwx1571",fontsize=16,color="green",shape="box"];4969[label="vwx1581",fontsize=16,color="green",shape="box"];4970[label="vwx1571",fontsize=16,color="green",shape="box"];4971[label="vwx1581",fontsize=16,color="green",shape="box"];4972[label="vwx1571",fontsize=16,color="green",shape="box"];4973[label="vwx1581",fontsize=16,color="green",shape="box"];4974[label="vwx1571",fontsize=16,color="green",shape="box"];4975[label="vwx1581",fontsize=16,color="green",shape="box"];4976[label="vwx1571",fontsize=16,color="green",shape="box"];4977[label="vwx1581",fontsize=16,color="green",shape="box"];4978[label="vwx1571",fontsize=16,color="green",shape="box"];4979[label="vwx1581",fontsize=16,color="green",shape="box"];4980[label="vwx1571",fontsize=16,color="green",shape="box"];4981[label="vwx1581",fontsize=16,color="green",shape="box"];4982[label="vwx1571",fontsize=16,color="green",shape="box"];4983[label="vwx1581",fontsize=16,color="green",shape="box"];4984[label="vwx1571",fontsize=16,color="green",shape="box"];4985[label="vwx1581",fontsize=16,color="green",shape="box"];4986[label="vwx1571",fontsize=16,color="green",shape="box"];4987[label="vwx1581",fontsize=16,color="green",shape="box"];4988[label="vwx1571",fontsize=16,color="green",shape="box"];4989[label="vwx1581",fontsize=16,color="green",shape="box"];4990[label="vwx1571",fontsize=16,color="green",shape="box"];4991[label="vwx1581",fontsize=16,color="green",shape="box"];4992[label="vwx1571",fontsize=16,color="green",shape="box"];4993[label="vwx1581",fontsize=16,color="green",shape="box"];4994[label="vwx1571",fontsize=16,color="green",shape="box"];4995 -> 3517[label="",style="dashed", color="red", weight=0]; 4995[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];4995 -> 5027[label="",style="dashed", color="magenta", weight=3]; 4995 -> 5028[label="",style="dashed", color="magenta", weight=3]; 4996 -> 3518[label="",style="dashed", color="red", weight=0]; 4996[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];4996 -> 5029[label="",style="dashed", color="magenta", weight=3]; 4996 -> 5030[label="",style="dashed", color="magenta", weight=3]; 4997 -> 3519[label="",style="dashed", color="red", weight=0]; 4997[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];4997 -> 5031[label="",style="dashed", color="magenta", weight=3]; 4997 -> 5032[label="",style="dashed", color="magenta", weight=3]; 4998 -> 3520[label="",style="dashed", color="red", weight=0]; 4998[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];4998 -> 5033[label="",style="dashed", color="magenta", weight=3]; 4998 -> 5034[label="",style="dashed", color="magenta", weight=3]; 4999 -> 3521[label="",style="dashed", color="red", weight=0]; 4999[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];4999 -> 5035[label="",style="dashed", color="magenta", weight=3]; 4999 -> 5036[label="",style="dashed", color="magenta", weight=3]; 5000 -> 3522[label="",style="dashed", color="red", weight=0]; 5000[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5000 -> 5037[label="",style="dashed", color="magenta", weight=3]; 5000 -> 5038[label="",style="dashed", color="magenta", weight=3]; 5001 -> 3523[label="",style="dashed", color="red", weight=0]; 5001[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5001 -> 5039[label="",style="dashed", color="magenta", weight=3]; 5001 -> 5040[label="",style="dashed", color="magenta", weight=3]; 5002 -> 3524[label="",style="dashed", color="red", weight=0]; 5002[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5002 -> 5041[label="",style="dashed", color="magenta", weight=3]; 5002 -> 5042[label="",style="dashed", color="magenta", weight=3]; 5003 -> 3525[label="",style="dashed", color="red", weight=0]; 5003[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5003 -> 5043[label="",style="dashed", color="magenta", weight=3]; 5003 -> 5044[label="",style="dashed", color="magenta", weight=3]; 5004 -> 3526[label="",style="dashed", color="red", weight=0]; 5004[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5004 -> 5045[label="",style="dashed", color="magenta", weight=3]; 5004 -> 5046[label="",style="dashed", color="magenta", weight=3]; 5005 -> 3527[label="",style="dashed", color="red", weight=0]; 5005[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5005 -> 5047[label="",style="dashed", color="magenta", weight=3]; 5005 -> 5048[label="",style="dashed", color="magenta", weight=3]; 5006 -> 3528[label="",style="dashed", color="red", weight=0]; 5006[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5006 -> 5049[label="",style="dashed", color="magenta", weight=3]; 5006 -> 5050[label="",style="dashed", color="magenta", weight=3]; 5007 -> 3529[label="",style="dashed", color="red", weight=0]; 5007[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5007 -> 5051[label="",style="dashed", color="magenta", weight=3]; 5007 -> 5052[label="",style="dashed", color="magenta", weight=3]; 5008 -> 3530[label="",style="dashed", color="red", weight=0]; 5008[label="vwx1572 <= vwx1582",fontsize=16,color="magenta"];5008 -> 5053[label="",style="dashed", color="magenta", weight=3]; 5008 -> 5054[label="",style="dashed", color="magenta", weight=3]; 5009 -> 2671[label="",style="dashed", color="red", weight=0]; 5009[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5009 -> 5055[label="",style="dashed", color="magenta", weight=3]; 5009 -> 5056[label="",style="dashed", color="magenta", weight=3]; 5010 -> 2664[label="",style="dashed", color="red", weight=0]; 5010[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5010 -> 5057[label="",style="dashed", color="magenta", weight=3]; 5010 -> 5058[label="",style="dashed", color="magenta", weight=3]; 5011 -> 2669[label="",style="dashed", color="red", weight=0]; 5011[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5011 -> 5059[label="",style="dashed", color="magenta", weight=3]; 5011 -> 5060[label="",style="dashed", color="magenta", weight=3]; 5012 -> 2672[label="",style="dashed", color="red", weight=0]; 5012[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5012 -> 5061[label="",style="dashed", color="magenta", weight=3]; 5012 -> 5062[label="",style="dashed", color="magenta", weight=3]; 5013 -> 2673[label="",style="dashed", color="red", weight=0]; 5013[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5013 -> 5063[label="",style="dashed", color="magenta", weight=3]; 5013 -> 5064[label="",style="dashed", color="magenta", weight=3]; 5014 -> 2668[label="",style="dashed", color="red", weight=0]; 5014[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5014 -> 5065[label="",style="dashed", color="magenta", weight=3]; 5014 -> 5066[label="",style="dashed", color="magenta", weight=3]; 5015 -> 2663[label="",style="dashed", color="red", weight=0]; 5015[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5015 -> 5067[label="",style="dashed", color="magenta", weight=3]; 5015 -> 5068[label="",style="dashed", color="magenta", weight=3]; 5016 -> 2665[label="",style="dashed", color="red", weight=0]; 5016[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5016 -> 5069[label="",style="dashed", color="magenta", weight=3]; 5016 -> 5070[label="",style="dashed", color="magenta", weight=3]; 5017 -> 2660[label="",style="dashed", color="red", weight=0]; 5017[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5017 -> 5071[label="",style="dashed", color="magenta", weight=3]; 5017 -> 5072[label="",style="dashed", color="magenta", weight=3]; 5018 -> 2667[label="",style="dashed", color="red", weight=0]; 5018[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5018 -> 5073[label="",style="dashed", color="magenta", weight=3]; 5018 -> 5074[label="",style="dashed", color="magenta", weight=3]; 5019 -> 2666[label="",style="dashed", color="red", weight=0]; 5019[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5019 -> 5075[label="",style="dashed", color="magenta", weight=3]; 5019 -> 5076[label="",style="dashed", color="magenta", weight=3]; 5020 -> 2661[label="",style="dashed", color="red", weight=0]; 5020[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5020 -> 5077[label="",style="dashed", color="magenta", weight=3]; 5020 -> 5078[label="",style="dashed", color="magenta", weight=3]; 5021 -> 2662[label="",style="dashed", color="red", weight=0]; 5021[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5021 -> 5079[label="",style="dashed", color="magenta", weight=3]; 5021 -> 5080[label="",style="dashed", color="magenta", weight=3]; 5022 -> 2670[label="",style="dashed", color="red", weight=0]; 5022[label="vwx1571 == vwx1581",fontsize=16,color="magenta"];5022 -> 5081[label="",style="dashed", color="magenta", weight=3]; 5022 -> 5082[label="",style="dashed", color="magenta", weight=3]; 5023[label="primPlusNat (Succ vwx29100) (Succ vwx31000)",fontsize=16,color="black",shape="box"];5023 -> 5083[label="",style="solid", color="black", weight=3]; 5024[label="primPlusNat (Succ vwx29100) Zero",fontsize=16,color="black",shape="box"];5024 -> 5084[label="",style="solid", color="black", weight=3]; 5025[label="primPlusNat Zero (Succ vwx31000)",fontsize=16,color="black",shape="box"];5025 -> 5085[label="",style="solid", color="black", weight=3]; 5026[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];5026 -> 5086[label="",style="solid", color="black", weight=3]; 5027[label="vwx1582",fontsize=16,color="green",shape="box"];5028[label="vwx1572",fontsize=16,color="green",shape="box"];5029[label="vwx1582",fontsize=16,color="green",shape="box"];5030[label="vwx1572",fontsize=16,color="green",shape="box"];5031[label="vwx1582",fontsize=16,color="green",shape="box"];5032[label="vwx1572",fontsize=16,color="green",shape="box"];5033[label="vwx1582",fontsize=16,color="green",shape="box"];5034[label="vwx1572",fontsize=16,color="green",shape="box"];5035[label="vwx1582",fontsize=16,color="green",shape="box"];5036[label="vwx1572",fontsize=16,color="green",shape="box"];5037[label="vwx1582",fontsize=16,color="green",shape="box"];5038[label="vwx1572",fontsize=16,color="green",shape="box"];5039[label="vwx1582",fontsize=16,color="green",shape="box"];5040[label="vwx1572",fontsize=16,color="green",shape="box"];5041[label="vwx1582",fontsize=16,color="green",shape="box"];5042[label="vwx1572",fontsize=16,color="green",shape="box"];5043[label="vwx1582",fontsize=16,color="green",shape="box"];5044[label="vwx1572",fontsize=16,color="green",shape="box"];5045[label="vwx1582",fontsize=16,color="green",shape="box"];5046[label="vwx1572",fontsize=16,color="green",shape="box"];5047[label="vwx1582",fontsize=16,color="green",shape="box"];5048[label="vwx1572",fontsize=16,color="green",shape="box"];5049[label="vwx1582",fontsize=16,color="green",shape="box"];5050[label="vwx1572",fontsize=16,color="green",shape="box"];5051[label="vwx1582",fontsize=16,color="green",shape="box"];5052[label="vwx1572",fontsize=16,color="green",shape="box"];5053[label="vwx1582",fontsize=16,color="green",shape="box"];5054[label="vwx1572",fontsize=16,color="green",shape="box"];5055[label="vwx1581",fontsize=16,color="green",shape="box"];5056[label="vwx1571",fontsize=16,color="green",shape="box"];5057[label="vwx1581",fontsize=16,color="green",shape="box"];5058[label="vwx1571",fontsize=16,color="green",shape="box"];5059[label="vwx1581",fontsize=16,color="green",shape="box"];5060[label="vwx1571",fontsize=16,color="green",shape="box"];5061[label="vwx1581",fontsize=16,color="green",shape="box"];5062[label="vwx1571",fontsize=16,color="green",shape="box"];5063[label="vwx1581",fontsize=16,color="green",shape="box"];5064[label="vwx1571",fontsize=16,color="green",shape="box"];5065[label="vwx1581",fontsize=16,color="green",shape="box"];5066[label="vwx1571",fontsize=16,color="green",shape="box"];5067[label="vwx1581",fontsize=16,color="green",shape="box"];5068[label="vwx1571",fontsize=16,color="green",shape="box"];5069[label="vwx1581",fontsize=16,color="green",shape="box"];5070[label="vwx1571",fontsize=16,color="green",shape="box"];5071[label="vwx1581",fontsize=16,color="green",shape="box"];5072[label="vwx1571",fontsize=16,color="green",shape="box"];5073[label="vwx1581",fontsize=16,color="green",shape="box"];5074[label="vwx1571",fontsize=16,color="green",shape="box"];5075[label="vwx1581",fontsize=16,color="green",shape="box"];5076[label="vwx1571",fontsize=16,color="green",shape="box"];5077[label="vwx1581",fontsize=16,color="green",shape="box"];5078[label="vwx1571",fontsize=16,color="green",shape="box"];5079[label="vwx1581",fontsize=16,color="green",shape="box"];5080[label="vwx1571",fontsize=16,color="green",shape="box"];5081[label="vwx1581",fontsize=16,color="green",shape="box"];5082[label="vwx1571",fontsize=16,color="green",shape="box"];5083[label="Succ (Succ (primPlusNat vwx29100 vwx31000))",fontsize=16,color="green",shape="box"];5083 -> 5087[label="",style="dashed", color="green", weight=3]; 5084[label="Succ vwx29100",fontsize=16,color="green",shape="box"];5085[label="Succ vwx31000",fontsize=16,color="green",shape="box"];5086[label="Zero",fontsize=16,color="green",shape="box"];5087 -> 4864[label="",style="dashed", color="red", weight=0]; 5087[label="primPlusNat vwx29100 vwx31000",fontsize=16,color="magenta"];5087 -> 5088[label="",style="dashed", color="magenta", weight=3]; 5087 -> 5089[label="",style="dashed", color="magenta", weight=3]; 5088[label="vwx31000",fontsize=16,color="green",shape="box"];5089[label="vwx29100",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vwx300, vwx400, ce, cf) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, fd), fa) -> new_esEs1(vwx300, vwx400, fd) new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), hc) -> new_esEs2(vwx301, vwx401, hc) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(ty_Maybe, eb)) -> new_esEs1(vwx301, vwx401, eb) new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, hf), hg)) -> new_esEs0(vwx300, vwx400, hf, hg) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(app(ty_Either, df), dg)) -> new_esEs(vwx301, vwx401, df, dg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vwx300, vwx400, bdh, bea, beb) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vwx300, vwx400, db, dc, dd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vwx302, vwx402, bag, bah) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vwx301, vwx401, dh, ea) new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_Either, gb), gc)) -> new_esEs(vwx300, vwx400, gb, gc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bdg), baf, bcb) -> new_esEs2(vwx300, vwx400, bdg) new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, hd), he)) -> new_esEs(vwx300, vwx400, hd, he) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx302, vwx402, bbe, bbf, bbg) new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_Maybe, cg)) -> new_esEs1(vwx300, vwx400, cg) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(vwx300, vwx400, fg, fh, ga) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx301, vwx401, ed, ee, ef) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, eg), eh), fa) -> new_esEs(vwx300, vwx400, eg, eh) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vwx300, vwx400, cc, cd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(vwx301, vwx401, bcc, bcd) new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_[], da)) -> new_esEs2(vwx300, vwx400, da) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_[], bcf), bcb) -> new_esEs2(vwx301, vwx401, bcf) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(vwx300, vwx400, bdd, bde) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], ff), fa) -> new_esEs2(vwx300, vwx400, ff) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) new_esEs1(Just(vwx300), Just(vwx400), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vwx300, vwx400, gh, ha, hb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_[], bbd)) -> new_esEs2(vwx302, vwx402, bbd) new_esEs(Left(vwx300), Left(vwx400), app(app(ty_Either, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(ty_[], ec)) -> new_esEs2(vwx301, vwx401, ec) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(vwx302, vwx402, bba, bbb) new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], gg)) -> new_esEs2(vwx300, vwx400, gg) new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_@2, gd), ge)) -> new_esEs0(vwx300, vwx400, gd, ge) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(vwx300, vwx400, bdf) new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], baa)) -> new_esEs2(vwx300, vwx400, baa) new_esEs(Left(vwx300), Left(vwx400), app(ty_[], bf), bb) -> new_esEs2(vwx300, vwx400, bf) new_esEs(Left(vwx300), Left(vwx400), app(ty_Maybe, be), bb) -> new_esEs1(vwx300, vwx400, be) new_esEs(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vwx300, vwx400, bg, bh, ca) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(vwx301, vwx401, bce) new_esEs(Left(vwx300), Left(vwx400), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vwx300, vwx400, bc, bd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vwx300, vwx400, bdb, bdc) new_esEs1(Just(vwx300), Just(vwx400), app(ty_Maybe, gf)) -> new_esEs1(vwx300, vwx400, gf) new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx300, vwx400, bab, bac, bad) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(vwx302, vwx402, bbc) new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vwx300, vwx400, fb, fc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vwx301, vwx401, bbh, bca) new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, hh)) -> new_esEs1(vwx300, vwx400, hh) 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_esEs1(Just(vwx300), Just(vwx400), app(app(ty_Either, gb), gc)) -> new_esEs(vwx300, vwx400, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_@2, gd), ge)) -> new_esEs0(vwx300, vwx400, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, hd), he)) -> new_esEs(vwx300, vwx400, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], gg)) -> new_esEs2(vwx300, vwx400, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, hf), hg)) -> new_esEs0(vwx300, vwx400, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vwx300, vwx400, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vwx300), Just(vwx400), app(ty_Maybe, gf)) -> new_esEs1(vwx300, vwx400, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx300, vwx400, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, hh)) -> new_esEs1(vwx300, vwx400, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(app(ty_Either, df), dg)) -> new_esEs(vwx301, vwx401, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, eg), eh), fa) -> new_esEs(vwx300, vwx400, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vwx301, vwx401, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vwx300, vwx400, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], ff), fa) -> new_esEs2(vwx300, vwx400, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(ty_[], ec)) -> new_esEs2(vwx301, vwx401, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(vwx300, vwx400, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx301, vwx401, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, fd), fa) -> new_esEs1(vwx300, vwx400, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vwx300, vwx301), @2(vwx400, vwx401), de, app(ty_Maybe, eb)) -> new_esEs1(vwx301, vwx401, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vwx300, vwx400, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vwx300), Left(vwx400), app(app(ty_Either, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vwx302, vwx402, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vwx300, vwx400, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vwx301, vwx401, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vwx300, vwx400, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vwx300), Left(vwx400), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vwx300, vwx400, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(vwx301, vwx401, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(vwx300, vwx400, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(vwx302, vwx402, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), hc) -> new_esEs2(vwx301, vwx401, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], baa)) -> new_esEs2(vwx300, vwx400, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_[], da)) -> new_esEs2(vwx300, vwx400, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vwx300), Left(vwx400), app(ty_[], bf), bb) -> new_esEs2(vwx300, vwx400, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bdg), baf, bcb) -> new_esEs2(vwx300, vwx400, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_[], bcf), bcb) -> new_esEs2(vwx301, vwx401, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_[], bbd)) -> new_esEs2(vwx302, vwx402, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vwx300, vwx400, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vwx300, vwx400, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_Maybe, cg)) -> new_esEs1(vwx300, vwx400, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vwx300), Left(vwx400), app(ty_Maybe, be), bb) -> new_esEs1(vwx300, vwx400, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vwx300, vwx400, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx302, vwx402, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(vwx300, vwx400, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(vwx301, vwx401, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(vwx302, vwx402, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vwx300), Succ(vwx400)) -> new_primCmpNat(vwx300, vwx400) 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_primCmpNat(Succ(vwx300), Succ(vwx400)) -> new_primCmpNat(vwx300, vwx400) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx4000), Succ(vwx3100)) -> new_primMulNat(vwx4000, Succ(vwx3100)) 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(vwx4000), Succ(vwx3100)) -> new_primMulNat(vwx4000, Succ(vwx3100)) 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_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) R is empty. Q is empty. 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_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx29100), Succ(vwx31000)) -> new_primPlusNat(vwx29100, vwx31000) 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_primPlusNat(Succ(vwx29100), Succ(vwx31000)) -> new_primPlusNat(vwx29100, vwx31000) 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_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(ty_[], ge)), gd)) -> new_lt0(vwx1570, vwx1580, ge) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(app(ty_Either, bbc), bbd)), bah), bba)) -> new_lt1(vwx1570, vwx1580, bbc, bbd) new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(app(app(ty_@3, ee), ef), eg)), dg)) -> new_ltEs3(vwx1570, vwx1580, ee, ef, eg) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(ty_[], bcd), bba) -> new_lt0(vwx1571, vwx1581, bcd) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(app(ty_@2, bbe), bbf), bah, bba) -> new_lt2(vwx1570, vwx1580, bbe, bbf) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(app(app(ty_@3, ccb), ccc), ccd), cbc, cbd) -> new_lt3(vwx198, vwx201, ccb, ccc, ccd) new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(app(ty_@2, ff), fg))) -> new_ltEs2(vwx1570, vwx1580, ff, fg) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(app(ty_Either, gf), gg)), gd)) -> new_lt1(vwx1570, vwx1580, gf, gg) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(app(app(ty_@3, bbg), bbh), bca)), bah), bba)) -> new_lt3(vwx1570, vwx1580, bbg, bbh, bca) new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(app(ty_@2, bd), be))) -> new_ltEs2(vwx1570, vwx1580, bd, be) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(ty_[], bde)) -> new_ltEs0(vwx1572, vwx1582, bde) new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(ty_[], fb))) -> new_ltEs0(vwx1570, vwx1580, fb) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(app(ty_Either, gf), gg), gd) -> new_lt1(vwx1570, vwx1580, gf, gg) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(app(ty_@2, bcg), bch)), bba)) -> new_lt2(vwx1571, vwx1581, bcg, bch) new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(ty_Maybe, fa)) -> new_ltEs(vwx1570, vwx1580, fa) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(app(ty_Either, hh), baa)) -> new_ltEs1(vwx1571, vwx1581, hh, baa) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(app(ty_@2, bdh), bea)) -> new_ltEs2(vwx1572, vwx1582, bdh, bea) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs3(vwx200, vwx203, cee, cef, ceg) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(ty_Maybe, hf))) -> new_ltEs(vwx1571, vwx1581, hf) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(ty_[], bde))) -> new_ltEs0(vwx1572, vwx1582, bde) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vwx1571, vwx1581, bad, bae, baf) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(app(ty_Either, cbf), cbg), cbc, cbd) -> new_lt1(vwx198, vwx201, cbf, cbg) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(ty_[], bbb)), bah), bba)) -> new_lt0(vwx1570, vwx1580, bbb) new_ltEs1(Left(vwx1570), Left(vwx1580), app(ty_[], dh), dg) -> new_ltEs0(vwx1570, vwx1580, dh) new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(app(ty_Either, fc), fd)) -> new_ltEs1(vwx1570, vwx1580, fc, fd) new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(app(app(ty_@3, fh), ga), gb))) -> new_ltEs3(vwx1570, vwx1580, fh, ga, gb) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(ty_Maybe, bcc), bba) -> new_lt(vwx1571, vwx1581, bcc) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs3(vwx1572, vwx1582, beb, bec, bed) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(ty_Maybe, ccf), cbd) -> new_lt(vwx199, vwx202, ccf) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(app(ty_@2, bab), bac))) -> new_ltEs2(vwx1571, vwx1581, bab, bac) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(ty_Maybe, cdg)) -> new_ltEs(vwx200, vwx203, cdg) new_ltEs(Just(vwx1570), Just(vwx1580), app(ty_[], ba)) -> new_ltEs0(vwx1570, vwx1580, ba) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(app(ty_@2, bdh), bea))) -> new_ltEs2(vwx1572, vwx1582, bdh, bea) new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(ty_[], dh)), dg)) -> new_ltEs0(vwx1570, vwx1580, dh) new_lt1(vwx211, vwx213, beg, beh) -> new_compare2(vwx211, vwx213, beg, beh) new_compare2(Right(vwx30), Right(vwx40), bfa, bfb) -> new_compare22(vwx30, vwx40, new_esEs6(vwx30, vwx40, bfb), bfa, bfb) new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(ty_[], fb)) -> new_ltEs0(vwx1570, vwx1580, fb) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(app(app(ty_@3, beb), bec), bed))) -> new_ltEs3(vwx1572, vwx1582, beb, bec, bed) new_compare1(Just(vwx30), Just(vwx40), de) -> new_compare20(vwx30, vwx40, new_esEs4(vwx30, vwx40, de), de) new_lt(vwx211, vwx213, bee) -> new_compare1(vwx211, vwx213, bee) new_compare3(@2(vwx30, vwx31), @2(vwx40, vwx41), bgg, bgh) -> new_compare23(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs8(vwx30, vwx40, bgg), new_esEs7(vwx31, vwx41, bgh)), bgg, bgh) new_compare22(vwx176, vwx177, False, ceh, app(app(ty_Either, cfc), cfd)) -> new_ltEs1(vwx176, vwx177, cfc, cfd) new_primCompAux(vwx30, vwx40, vwx152, app(app(ty_@2, cg), da)) -> new_compare3(vwx30, vwx40, cg, da) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(app(ty_@2, cbh), cca), cbc, cbd) -> new_lt2(vwx198, vwx201, cbh, cca) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(app(ty_@2, gh), ha)), gd)) -> new_lt2(vwx1570, vwx1580, gh, ha) new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(app(app(ty_@3, bhb), bhc), bhd), bha) -> new_compare4(vwx211, vwx213, bhb, bhc, bhd) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(app(ty_Either, bdf), bdg)) -> new_ltEs1(vwx1572, vwx1582, bdf, bdg) new_compare20(vwx157, vwx158, False, app(ty_[], ca)) -> new_compare(vwx157, vwx158, ca) new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(ty_Maybe, bhf)) -> new_ltEs(vwx212, vwx214, bhf) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(app(app(ty_@3, hb), hc), hd)), gd)) -> new_lt3(vwx1570, vwx1580, hb, hc, hd) new_ltEs(Just(vwx1570), Just(vwx1580), app(app(ty_Either, bb), bc)) -> new_ltEs1(vwx1570, vwx1580, bb, bc) new_ltEs1(Left(vwx1570), Left(vwx1580), app(ty_Maybe, df), dg) -> new_ltEs(vwx1570, vwx1580, df) new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vwx1570, vwx1580, h) new_ltEs1(Left(vwx1570), Left(vwx1580), app(app(app(ty_@3, ee), ef), eg), dg) -> new_ltEs3(vwx1570, vwx1580, ee, ef, eg) new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(app(ty_@2, cab), cac)) -> new_ltEs2(vwx212, vwx214, cab, cac) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(ty_Maybe, bdd))) -> new_ltEs(vwx1572, vwx1582, bdd) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(ty_[], cdh)) -> new_ltEs0(vwx200, vwx203, cdh) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(ty_Maybe, gc)), gd)) -> new_lt(vwx1570, vwx1580, gc) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(app(app(ty_@3, bda), bdb), bdc)), bba)) -> new_lt3(vwx1571, vwx1581, bda, bdb, bdc) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(ty_Maybe, hf)) -> new_ltEs(vwx1571, vwx1581, hf) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(app(app(ty_@3, hb), hc), hd), gd) -> new_lt3(vwx1570, vwx1580, hb, hc, hd) new_compare22(vwx176, vwx177, False, ceh, app(app(ty_@2, cfe), cff)) -> new_ltEs2(vwx176, vwx177, cfe, cff) new_ltEs0(vwx157, vwx158, ca) -> new_compare(vwx157, vwx158, ca) new_lt0(vwx211, vwx213, bef) -> new_compare(vwx211, vwx213, bef) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(app(app(ty_@3, bbg), bbh), bca), bah, bba) -> new_lt3(vwx1570, vwx1580, bbg, bbh, bca) new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(app(ty_Either, ea), eb)), dg)) -> new_ltEs1(vwx1570, vwx1580, ea, eb) new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(app(ty_Either, fc), fd))) -> new_ltEs1(vwx1570, vwx1580, fc, fd) new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(app(ty_Either, beg), beh), bha) -> new_compare2(vwx211, vwx213, beg, beh) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(ty_[], ccg), cbd) -> new_lt0(vwx199, vwx202, ccg) new_compare22(vwx176, vwx177, False, ceh, app(ty_Maybe, cfa)) -> new_ltEs(vwx176, vwx177, cfa) new_compare21(vwx169, vwx170, False, app(app(app(ty_@3, bgb), bgc), bgd), bfd) -> new_ltEs3(vwx169, vwx170, bgb, bgc, bgd) new_ltEs(Just(vwx1570), Just(vwx1580), app(app(ty_@2, bd), be)) -> new_ltEs2(vwx1570, vwx1580, bd, be) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(app(ty_Either, hh), baa))) -> new_ltEs1(vwx1571, vwx1581, hh, baa) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(app(ty_Either, cch), cda), cbd) -> new_lt1(vwx199, vwx202, cch, cda) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(app(app(ty_@3, cdd), cde), cdf), cbd) -> new_lt3(vwx199, vwx202, cdd, cde, cdf) new_compare21(vwx169, vwx170, False, app(ty_Maybe, bfc), bfd) -> new_ltEs(vwx169, vwx170, bfc) new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(ty_[], ba))) -> new_ltEs0(vwx1570, vwx1580, ba) new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs3(vwx212, vwx214, cad, cae, caf) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(ty_Maybe, bag), bah, bba) -> new_lt(vwx1570, vwx1580, bag) new_compare21(vwx169, vwx170, False, app(app(ty_Either, bff), bfg), bfd) -> new_ltEs1(vwx169, vwx170, bff, bfg) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(ty_[], bbb), bah, bba) -> new_lt0(vwx1570, vwx1580, bbb) new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(app(ty_@2, bge), bgf), bha) -> new_compare3(vwx211, vwx213, bge, bgf) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(ty_Maybe, bag)), bah), bba)) -> new_lt(vwx1570, vwx1580, bag) new_primCompAux(vwx30, vwx40, vwx152, app(ty_Maybe, cc)) -> new_compare1(vwx30, vwx40, cc) new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(ty_Maybe, df)), dg)) -> new_ltEs(vwx1570, vwx1580, df) new_primCompAux(vwx30, vwx40, vwx152, app(app(app(ty_@3, db), dc), dd)) -> new_compare4(vwx30, vwx40, db, dc, dd) new_compare21(vwx169, vwx170, False, app(ty_[], bfe), bfd) -> new_ltEs0(vwx169, vwx170, bfe) new_compare22(vwx176, vwx177, False, ceh, app(ty_[], cfb)) -> new_ltEs0(vwx176, vwx177, cfb) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(app(ty_@2, cdb), cdc), cbd) -> new_lt2(vwx199, vwx202, cdb, cdc) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(ty_[], ge), gd) -> new_lt0(vwx1570, vwx1580, ge) new_primCompAux(vwx30, vwx40, vwx152, app(app(ty_Either, ce), cf)) -> new_compare2(vwx30, vwx40, ce, cf) new_compare22(vwx176, vwx177, False, ceh, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs3(vwx176, vwx177, cfg, cfh, cga) new_lt2(vwx211, vwx213, bge, bgf) -> new_compare3(vwx211, vwx213, bge, bgf) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(app(ty_Either, bbc), bbd), bah, bba) -> new_lt1(vwx1570, vwx1580, bbc, bbd) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(app(ty_@2, bbe), bbf)), bah), bba)) -> new_lt2(vwx1570, vwx1580, bbe, bbf) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), cb) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, cb), cb) new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(app(ty_@2, ff), fg)) -> new_ltEs2(vwx1570, vwx1580, ff, fg) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(app(ty_@2, gh), ha), gd) -> new_lt2(vwx1570, vwx1580, gh, ha) new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(ty_[], bef), bha) -> new_compare(vwx211, vwx213, bef) new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(app(ty_Either, bhh), caa)) -> new_ltEs1(vwx212, vwx214, bhh, caa) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(app(ty_Either, bce), bcf)), bba)) -> new_lt1(vwx1571, vwx1581, bce, bcf) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(ty_Maybe, bdd)) -> new_ltEs(vwx1572, vwx1582, bdd) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(app(ty_@2, bab), bac)) -> new_ltEs2(vwx1571, vwx1581, bab, bac) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(ty_Maybe, bcc)), bba)) -> new_lt(vwx1571, vwx1581, bcc) new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(ty_Maybe, bee), bha) -> new_compare1(vwx211, vwx213, bee) new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(ty_Maybe, fa))) -> new_ltEs(vwx1570, vwx1580, fa) new_ltEs1(Left(vwx1570), Left(vwx1580), app(app(ty_Either, ea), eb), dg) -> new_ltEs1(vwx1570, vwx1580, ea, eb) new_primCompAux(vwx30, vwx40, vwx152, app(ty_[], cd)) -> new_compare(vwx30, vwx40, cd) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(ty_[], hg)) -> new_ltEs0(vwx1571, vwx1581, hg) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(ty_[], cbe), cbc, cbd) -> new_lt0(vwx198, vwx201, cbe) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(ty_[], bcd)), bba)) -> new_lt0(vwx1571, vwx1581, bcd) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(ty_[], hg))) -> new_ltEs0(vwx1571, vwx1581, hg) new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(app(ty_@2, ec), ed)), dg)) -> new_ltEs2(vwx1570, vwx1580, ec, ed) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(app(ty_@2, cec), ced)) -> new_ltEs2(vwx200, vwx203, cec, ced) new_lt3(vwx211, vwx213, bhb, bhc, bhd) -> new_compare4(vwx211, vwx213, bhb, bhc, bhd) new_compare4(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), cag, cah, cba) -> new_compare24(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs11(vwx30, vwx40, cag), new_asAs(new_esEs10(vwx31, vwx41, cah), new_esEs9(vwx32, vwx42, cba))), cag, cah, cba) new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vwx1571, vwx1581, bad, bae, baf) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(app(ty_@2, bcg), bch), bba) -> new_lt2(vwx1571, vwx1581, bcg, bch) new_ltEs(Just(vwx1570), Just(vwx1580), app(ty_Maybe, h)) -> new_ltEs(vwx1570, vwx1580, h) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), cb) -> new_compare(vwx31, vwx41, cb) new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(app(app(ty_@3, bf), bg), bh))) -> new_ltEs3(vwx1570, vwx1580, bf, bg, bh) new_ltEs(Just(vwx1570), Just(vwx1580), app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs3(vwx1570, vwx1580, bf, bg, bh) new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(app(ty_Either, bb), bc))) -> new_ltEs1(vwx1570, vwx1580, bb, bc) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(app(ty_Either, bce), bcf), bba) -> new_lt1(vwx1571, vwx1581, bce, bcf) new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(ty_[], bhg)) -> new_ltEs0(vwx212, vwx214, bhg) new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(ty_Maybe, gc), gd) -> new_lt(vwx1570, vwx1580, gc) new_compare21(vwx169, vwx170, False, app(app(ty_@2, bfh), bga), bfd) -> new_ltEs2(vwx169, vwx170, bfh, bga) new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(app(ty_Either, bdf), bdg))) -> new_ltEs1(vwx1572, vwx1582, bdf, bdg) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(app(ty_Either, cea), ceb)) -> new_ltEs1(vwx200, vwx203, cea, ceb) new_compare2(Left(vwx30), Left(vwx40), bfa, bfb) -> new_compare21(vwx30, vwx40, new_esEs5(vwx30, vwx40, bfa), bfa, bfb) new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs3(vwx1570, vwx1580, fh, ga, gb) new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(app(app(ty_@3, bda), bdb), bdc), bba) -> new_lt3(vwx1571, vwx1581, bda, bdb, bdc) new_ltEs1(Left(vwx1570), Left(vwx1580), app(app(ty_@2, ec), ed), dg) -> new_ltEs2(vwx1570, vwx1580, ec, ed) new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(ty_Maybe, cbb), cbc, cbd) -> new_lt(vwx198, vwx201, cbb) The TRS R consists of the following rules: new_esEs14(Right(vwx300), Right(vwx400), cgb, ty_@0) -> new_esEs19(vwx300, vwx400) new_ltEs6(vwx212, vwx214, app(app(ty_@2, cab), cac)) -> new_ltEs17(vwx212, vwx214, cab, cac) new_esEs14(Right(vwx300), Right(vwx400), cgb, app(ty_Maybe, dfd)) -> new_esEs17(vwx300, vwx400, dfd) new_lt5(vwx211, vwx213, ty_Ordering) -> new_lt13(vwx211, vwx213) new_esEs14(Left(vwx300), Left(vwx400), app(app(ty_Either, ddf), ddg), cgc) -> new_esEs14(vwx300, vwx400, ddf, ddg) new_primCmpInt(Neg(Succ(vwx300)), Pos(vwx40)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs34(vwx300, vwx400, app(app(ty_Either, fdc), fdd)) -> new_esEs14(vwx300, vwx400, fdc, fdd) new_lt22(vwx198, vwx201, ty_Ordering) -> new_lt13(vwx198, vwx201) new_esEs4(vwx30, vwx40, app(ty_Maybe, cgf)) -> new_esEs17(vwx30, vwx40, cgf) new_ltEs22(vwx1571, vwx1581, ty_@0) -> new_ltEs14(vwx1571, vwx1581) new_pePe(True, vwx290) -> True new_esEs31(vwx1571, vwx1581, app(ty_Maybe, bcc)) -> new_esEs17(vwx1571, vwx1581, bcc) new_esEs7(vwx31, vwx41, app(app(ty_Either, ehb), ehc)) -> new_esEs14(vwx31, vwx41, ehb, ehc) new_lt20(vwx1571, vwx1581, app(ty_Ratio, fbg)) -> new_lt10(vwx1571, vwx1581, fbg) new_esEs27(vwx211, vwx213, ty_Char) -> new_esEs16(vwx211, vwx213) new_compare15(vwx30, vwx40, app(ty_Maybe, cc)) -> new_compare8(vwx30, vwx40, cc) new_esEs33(vwx301, vwx401, ty_Bool) -> new_esEs20(vwx301, vwx401) new_compare15(vwx30, vwx40, ty_@0) -> new_compare29(vwx30, vwx40) new_ltEs23(vwx200, vwx203, ty_Integer) -> new_ltEs9(vwx200, vwx203) new_esEs13(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs23(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs14(Left(vwx300), Left(vwx400), ty_Ordering, cgc) -> new_esEs12(vwx300, vwx400) new_esEs37(vwx1570, vwx1580, ty_Ordering) -> new_esEs12(vwx1570, vwx1580) new_esEs6(vwx30, vwx40, ty_Bool) -> new_esEs20(vwx30, vwx40) new_esEs27(vwx211, vwx213, ty_Bool) -> new_esEs20(vwx211, vwx213) new_compare29(@0, @0) -> EQ new_ltEs16(Right(vwx1570), Right(vwx1580), eh, ty_@0) -> new_ltEs14(vwx1570, vwx1580) new_esEs14(Left(vwx300), Left(vwx400), app(ty_Maybe, deb), cgc) -> new_esEs17(vwx300, vwx400, deb) new_esEs29(vwx301, vwx401, ty_Integer) -> new_esEs21(vwx301, vwx401) new_compare28(Float(vwx30, Pos(vwx310)), Float(vwx40, Neg(vwx410))) -> new_compare6(new_sr(vwx30, Pos(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare28(Float(vwx30, Neg(vwx310)), Float(vwx40, Pos(vwx410))) -> new_compare6(new_sr(vwx30, Neg(vwx410)), new_sr(Pos(vwx310), vwx40)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs7(vwx31, vwx41, app(ty_Ratio, fac)) -> new_esEs25(vwx31, vwx41, fac) new_ltEs24(vwx176, vwx177, ty_Bool) -> new_ltEs12(vwx176, vwx177) new_primCmpInt(Pos(Zero), Neg(Succ(vwx400))) -> GT new_lt5(vwx211, vwx213, app(app(ty_@2, bge), bgf)) -> new_lt17(vwx211, vwx213, bge, bgf) new_compare26(vwx176, vwx177, True, ceh, fha) -> EQ new_esEs29(vwx301, vwx401, ty_@0) -> new_esEs19(vwx301, vwx401) new_ltEs16(Left(vwx1570), Left(vwx1580), ty_Bool, dg) -> new_ltEs12(vwx1570, vwx1580) new_ltEs20(vwx1572, vwx1582, ty_Float) -> new_ltEs13(vwx1572, vwx1582) new_esEs28(vwx302, vwx402, app(app(ty_Either, dge), dgf)) -> new_esEs14(vwx302, vwx402, dge, dgf) new_ltEs24(vwx176, vwx177, app(ty_Maybe, cfa)) -> new_ltEs8(vwx176, vwx177, cfa) new_ltEs22(vwx1571, vwx1581, app(ty_Ratio, fge)) -> new_ltEs11(vwx1571, vwx1581, fge) new_lt5(vwx211, vwx213, ty_Bool) -> new_lt11(vwx211, vwx213) new_esEs31(vwx1571, vwx1581, ty_Int) -> new_esEs23(vwx1571, vwx1581) new_primCmpInt(Neg(Succ(vwx300)), Neg(vwx40)) -> new_primCmpNat0(vwx40, Succ(vwx300)) new_esEs30(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_compare19(EQ, EQ) -> EQ new_esEs14(Left(vwx300), Left(vwx400), ty_Double, cgc) -> new_esEs24(vwx300, vwx400) new_ltEs8(Just(vwx1570), Just(vwx1580), ty_Int) -> new_ltEs7(vwx1570, vwx1580) new_esEs4(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_compare211(vwx157, vwx158, True, fga) -> EQ new_compare111(vwx241, vwx242, True, ffg, ffh) -> LT new_esEs34(vwx300, vwx400, app(ty_Ratio, fed)) -> new_esEs25(vwx300, vwx400, fed) new_esEs14(Right(vwx300), Right(vwx400), cgb, ty_Integer) -> new_esEs21(vwx300, vwx400) new_lt20(vwx1571, vwx1581, ty_Double) -> new_lt9(vwx1571, vwx1581) new_esEs14(Left(vwx300), Left(vwx400), ty_Bool, cgc) -> new_esEs20(vwx300, vwx400) new_ltEs16(Left(vwx1570), Left(vwx1580), ty_Float, dg) -> new_ltEs13(vwx1570, vwx1580) new_esEs26(vwx300, vwx400, app(app(ty_@2, chf), chg)) -> new_esEs15(vwx300, vwx400, chf, chg) new_lt21(vwx1570, vwx1580, ty_@0) -> new_lt15(vwx1570, vwx1580) new_lt19(vwx1570, vwx1580, app(ty_Maybe, bag)) -> new_lt7(vwx1570, vwx1580, bag) new_esEs8(vwx30, vwx40, ty_@0) -> new_esEs19(vwx30, vwx40) new_esEs39(vwx198, vwx201, ty_Integer) -> new_esEs21(vwx198, vwx201) new_esEs14(Right(vwx300), Right(vwx400), cgb, ty_Float) -> new_esEs13(vwx300, vwx400) new_lt5(vwx211, vwx213, ty_Int) -> new_lt6(vwx211, vwx213) new_esEs10(vwx31, vwx41, ty_Integer) -> new_esEs21(vwx31, vwx41) new_ltEs20(vwx1572, vwx1582, ty_Bool) -> new_ltEs12(vwx1572, vwx1582) new_esEs39(vwx198, vwx201, app(ty_Ratio, fgf)) -> new_esEs25(vwx198, vwx201, fgf) new_ltEs15(vwx157, vwx158, ca) -> new_fsEs(new_compare0(vwx157, vwx158, ca)) new_ltEs6(vwx212, vwx214, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs18(vwx212, vwx214, cad, cae, caf) new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_compare16(Double(vwx30, Pos(vwx310)), Double(vwx40, Pos(vwx410))) -> new_compare6(new_sr(vwx30, Pos(vwx410)), new_sr(Pos(vwx310), vwx40)) new_esEs10(vwx31, vwx41, ty_Int) -> new_esEs23(vwx31, vwx41) new_compare15(vwx30, vwx40, app(ty_Ratio, ecd)) -> new_compare17(vwx30, vwx40, ecd) new_esEs37(vwx1570, vwx1580, app(app(ty_@2, gh), ha)) -> new_esEs15(vwx1570, vwx1580, gh, ha) new_compare5(Char(vwx30), Char(vwx40)) -> new_primCmpNat0(vwx30, vwx40) new_lt20(vwx1571, vwx1581, app(ty_Maybe, bcc)) -> new_lt7(vwx1571, vwx1581, bcc) new_esEs7(vwx31, vwx41, app(ty_[], ehg)) -> new_esEs18(vwx31, vwx41, ehg) new_esEs32(vwx1570, vwx1580, app(app(ty_@2, bbe), bbf)) -> new_esEs15(vwx1570, vwx1580, bbe, bbf) new_lt22(vwx198, vwx201, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_lt18(vwx198, vwx201, ccb, ccc, ccd) new_esEs39(vwx198, vwx201, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs22(vwx198, vwx201, ccb, ccc, ccd) new_esEs5(vwx30, vwx40, app(app(ty_@2, dbb), dbc)) -> new_esEs15(vwx30, vwx40, dbb, dbc) new_compare19(GT, GT) -> EQ new_ltEs19(vwx169, vwx170, app(app(ty_Either, bff), bfg)) -> new_ltEs16(vwx169, vwx170, bff, bfg) new_esEs34(vwx300, vwx400, app(ty_[], fdh)) -> new_esEs18(vwx300, vwx400, fdh) new_esEs36(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_ltEs16(Left(vwx1570), Left(vwx1580), app(ty_[], dh), dg) -> new_ltEs15(vwx1570, vwx1580, dh) new_esEs33(vwx301, vwx401, ty_Char) -> new_esEs16(vwx301, vwx401) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs37(vwx1570, vwx1580, ty_Bool) -> new_esEs20(vwx1570, vwx1580) new_esEs29(vwx301, vwx401, ty_Float) -> new_esEs13(vwx301, vwx401) new_esEs9(vwx32, vwx42, ty_Int) -> new_esEs23(vwx32, vwx42) new_esEs17(Nothing, Nothing, cgf) -> True new_esEs6(vwx30, vwx40, ty_Char) -> new_esEs16(vwx30, vwx40) new_esEs37(vwx1570, vwx1580, ty_Double) -> new_esEs24(vwx1570, vwx1580) new_ltEs24(vwx176, vwx177, ty_Char) -> new_ltEs4(vwx176, vwx177) new_esEs18([], [], cgg) -> True new_lt19(vwx1570, vwx1580, app(ty_[], bbb)) -> new_lt4(vwx1570, vwx1580, bbb) new_esEs17(Nothing, Just(vwx400), cgf) -> False new_esEs17(Just(vwx300), Nothing, cgf) -> False new_ltEs16(Left(vwx1570), Left(vwx1580), app(app(ty_Either, ea), eb), dg) -> new_ltEs16(vwx1570, vwx1580, ea, eb) new_esEs28(vwx302, vwx402, app(ty_[], dhb)) -> new_esEs18(vwx302, vwx402, dhb) new_compare12(vwx276, vwx277, vwx278, vwx279, vwx280, vwx281, False, vwx283, dgb, dgc, dgd) -> new_compare13(vwx276, vwx277, vwx278, vwx279, vwx280, vwx281, vwx283, dgb, dgc, dgd) new_not(True) -> False new_esEs35(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_primCompAux00(vwx163, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs16(Right(vwx1570), Right(vwx1580), eh, ty_Ordering) -> new_ltEs5(vwx1570, vwx1580) new_ltEs24(vwx176, vwx177, ty_Float) -> new_ltEs13(vwx176, vwx177) new_esEs30(vwx300, vwx400, app(app(ty_Either, eba), ebb)) -> new_esEs14(vwx300, vwx400, eba, ebb) new_esEs10(vwx31, vwx41, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs22(vwx31, vwx41, egf, egg, egh) new_esEs6(vwx30, vwx40, ty_Double) -> new_esEs24(vwx30, vwx40) new_esEs32(vwx1570, vwx1580, ty_Ordering) -> new_esEs12(vwx1570, vwx1580) new_esEs28(vwx302, vwx402, ty_Float) -> new_esEs13(vwx302, vwx402) new_esEs8(vwx30, vwx40, ty_Float) -> new_esEs13(vwx30, vwx40) new_esEs39(vwx198, vwx201, app(ty_[], cbe)) -> new_esEs18(vwx198, vwx201, cbe) new_esEs9(vwx32, vwx42, app(ty_Maybe, efb)) -> new_esEs17(vwx32, vwx42, efb) new_ltEs6(vwx212, vwx214, ty_Bool) -> new_ltEs12(vwx212, vwx214) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, app(app(ty_Either, fc), fd)) -> new_ltEs16(vwx1570, vwx1580, fc, fd) new_esEs17(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs16(vwx300, vwx400) new_ltEs24(vwx176, vwx177, ty_Double) -> new_ltEs10(vwx176, vwx177) new_compare13(vwx276, vwx277, vwx278, vwx279, vwx280, vwx281, True, dgb, dgc, dgd) -> LT new_lt12(vwx211, vwx213) -> new_esEs12(new_compare5(vwx211, vwx213), LT) new_ltEs23(vwx200, vwx203, ty_Ordering) -> new_ltEs5(vwx200, vwx203) new_esEs17(Just(vwx300), Just(vwx400), app(ty_[], ffb)) -> new_esEs18(vwx300, vwx400, ffb) new_esEs31(vwx1571, vwx1581, ty_Integer) -> new_esEs21(vwx1571, vwx1581) new_lt23(vwx199, vwx202, app(app(app(ty_@3, cdd), cde), cdf)) -> new_lt18(vwx199, vwx202, cdd, cde, cdf) new_compare7(Left(vwx30), Left(vwx40), bfa, bfb) -> new_compare25(vwx30, vwx40, new_esEs5(vwx30, vwx40, bfa), bfa, bfb) new_esEs7(vwx31, vwx41, app(app(app(ty_@3, ehh), faa), fab)) -> new_esEs22(vwx31, vwx41, ehh, faa, fab) new_ltEs16(Left(vwx1570), Right(vwx1580), eh, dg) -> True new_esEs38(vwx199, vwx202, ty_Char) -> new_esEs16(vwx199, vwx202) new_esEs12(LT, LT) -> True new_ltEs22(vwx1571, vwx1581, ty_Ordering) -> new_ltEs5(vwx1571, vwx1581) new_ltEs10(vwx157, vwx158) -> new_fsEs(new_compare16(vwx157, vwx158)) new_ltEs19(vwx169, vwx170, ty_Bool) -> new_ltEs12(vwx169, vwx170) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_esEs8(vwx30, vwx40, app(ty_Maybe, fah)) -> new_esEs17(vwx30, vwx40, fah) new_lt20(vwx1571, vwx1581, app(ty_[], bcd)) -> new_lt4(vwx1571, vwx1581, bcd) new_esEs34(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_ltEs20(vwx1572, vwx1582, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs18(vwx1572, vwx1582, beb, bec, bed) new_esEs5(vwx30, vwx40, ty_Double) -> new_esEs24(vwx30, vwx40) new_esEs29(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_compare15(vwx30, vwx40, app(app(ty_Either, ce), cf)) -> new_compare7(vwx30, vwx40, ce, cf) new_esEs7(vwx31, vwx41, ty_@0) -> new_esEs19(vwx31, vwx41) new_compare26(vwx176, vwx177, False, ceh, fha) -> new_compare110(vwx176, vwx177, new_ltEs24(vwx176, vwx177, fha), ceh, fha) new_esEs10(vwx31, vwx41, ty_Float) -> new_esEs13(vwx31, vwx41) new_ltEs20(vwx1572, vwx1582, app(ty_Maybe, bdd)) -> new_ltEs8(vwx1572, vwx1582, bdd) new_ltEs22(vwx1571, vwx1581, app(ty_[], hg)) -> new_ltEs15(vwx1571, vwx1581, hg) new_lt23(vwx199, vwx202, ty_Bool) -> new_lt11(vwx199, vwx202) new_esEs11(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_esEs30(vwx300, vwx400, app(ty_Ratio, ecb)) -> new_esEs25(vwx300, vwx400, ecb) new_esEs11(vwx30, vwx40, app(app(ty_@2, edd), ede)) -> new_esEs15(vwx30, vwx40, edd, ede) new_ltEs22(vwx1571, vwx1581, ty_Int) -> new_ltEs7(vwx1571, vwx1581) new_primCompAux00(vwx163, GT) -> GT new_ltEs16(Right(vwx1570), Right(vwx1580), eh, app(ty_[], fb)) -> new_ltEs15(vwx1570, vwx1580, fb) new_ltEs6(vwx212, vwx214, app(ty_Maybe, bhf)) -> new_ltEs8(vwx212, vwx214, bhf) new_esEs28(vwx302, vwx402, app(ty_Ratio, dhf)) -> new_esEs25(vwx302, vwx402, dhf) new_esEs7(vwx31, vwx41, ty_Integer) -> new_esEs21(vwx31, vwx41) new_lt21(vwx1570, vwx1580, app(ty_[], ge)) -> new_lt4(vwx1570, vwx1580, ge) new_ltEs24(vwx176, vwx177, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs18(vwx176, vwx177, cfg, cfh, cga) new_ltEs19(vwx169, vwx170, ty_Float) -> new_ltEs13(vwx169, vwx170) new_esEs10(vwx31, vwx41, app(ty_Maybe, egd)) -> new_esEs17(vwx31, vwx41, egd) new_esEs33(vwx301, vwx401, app(app(ty_@2, fcc), fcd)) -> new_esEs15(vwx301, vwx401, fcc, fcd) new_esEs27(vwx211, vwx213, ty_Ordering) -> new_esEs12(vwx211, vwx213) new_esEs37(vwx1570, vwx1580, ty_Char) -> new_esEs16(vwx1570, vwx1580) new_esEs20(False, True) -> False new_esEs20(True, False) -> False new_lt22(vwx198, vwx201, ty_Bool) -> new_lt11(vwx198, vwx201) new_esEs32(vwx1570, vwx1580, ty_Char) -> new_esEs16(vwx1570, vwx1580) new_esEs31(vwx1571, vwx1581, ty_@0) -> new_esEs19(vwx1571, vwx1581) new_compare210(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, True, cce, cbc, cbd) -> EQ new_esEs30(vwx300, vwx400, ty_@0) -> new_esEs19(vwx300, vwx400) new_esEs8(vwx30, vwx40, ty_Integer) -> new_esEs21(vwx30, vwx40) new_primCmpInt(Pos(Succ(vwx300)), Neg(vwx40)) -> GT new_lt22(vwx198, vwx201, ty_@0) -> new_lt15(vwx198, vwx201) new_ltEs4(vwx157, vwx158) -> new_fsEs(new_compare5(vwx157, vwx158)) new_esEs33(vwx301, vwx401, app(ty_[], fcf)) -> new_esEs18(vwx301, vwx401, fcf) new_compare14(vwx234, vwx235, False, ecc) -> GT new_ltEs21(vwx157, vwx158, ty_Int) -> new_ltEs7(vwx157, vwx158) new_esEs18(:(vwx300, vwx301), :(vwx400, vwx401), cgg) -> new_asAs(new_esEs26(vwx300, vwx400, cgg), new_esEs18(vwx301, vwx401, cgg)) new_compare110(vwx248, vwx249, True, ece, ecf) -> LT new_ltEs20(vwx1572, vwx1582, ty_Double) -> new_ltEs10(vwx1572, vwx1582) new_esEs29(vwx301, vwx401, app(ty_Ratio, eah)) -> new_esEs25(vwx301, vwx401, eah) new_esEs27(vwx211, vwx213, app(app(ty_@2, bge), bgf)) -> new_esEs15(vwx211, vwx213, bge, bgf) new_ltEs5(LT, GT) -> True new_esEs39(vwx198, vwx201, ty_Float) -> new_esEs13(vwx198, vwx201) new_esEs14(Left(vwx300), Left(vwx400), ty_Char, cgc) -> new_esEs16(vwx300, vwx400) new_ltEs16(Left(vwx1570), Left(vwx1580), ty_Char, dg) -> new_ltEs4(vwx1570, vwx1580) new_esEs26(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_esEs17(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs5(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_primPlusNat1(Succ(vwx29100), Succ(vwx31000)) -> Succ(Succ(new_primPlusNat1(vwx29100, vwx31000))) new_ltEs23(vwx200, vwx203, ty_@0) -> new_ltEs14(vwx200, vwx203) new_esEs9(vwx32, vwx42, ty_Ordering) -> new_esEs12(vwx32, vwx42) new_esEs33(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_esEs38(vwx199, vwx202, app(ty_[], ccg)) -> new_esEs18(vwx199, vwx202, ccg) new_primCmpNat0(Zero, Succ(vwx400)) -> LT new_ltEs22(vwx1571, vwx1581, ty_Integer) -> new_ltEs9(vwx1571, vwx1581) new_lt20(vwx1571, vwx1581, ty_Integer) -> new_lt8(vwx1571, vwx1581) new_esEs9(vwx32, vwx42, app(app(ty_@2, eeh), efa)) -> new_esEs15(vwx32, vwx42, eeh, efa) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(vwx169, vwx170, ty_Double) -> new_ltEs10(vwx169, vwx170) new_esEs8(vwx30, vwx40, app(app(app(ty_@3, fbb), fbc), fbd)) -> new_esEs22(vwx30, vwx40, fbb, fbc, fbd) new_esEs14(Right(vwx300), Right(vwx400), cgb, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs22(vwx300, vwx400, dff, dfg, dfh) new_esEs8(vwx30, vwx40, app(ty_[], fba)) -> new_esEs18(vwx30, vwx40, fba) new_esEs4(vwx30, vwx40, app(app(ty_@2, cgd), cge)) -> new_esEs15(vwx30, vwx40, cgd, cge) new_primCmpNat0(Succ(vwx300), Zero) -> GT new_esEs4(vwx30, vwx40, ty_Float) -> new_esEs13(vwx30, vwx40) new_esEs38(vwx199, vwx202, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs22(vwx199, vwx202, cdd, cde, cdf) new_compare210(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, cbd) -> new_compare12(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, new_lt22(vwx198, vwx201, cce), new_asAs(new_esEs39(vwx198, vwx201, cce), new_pePe(new_lt23(vwx199, vwx202, cbc), new_asAs(new_esEs38(vwx199, vwx202, cbc), new_ltEs23(vwx200, vwx203, cbd)))), cce, cbc, cbd) new_ltEs22(vwx1571, vwx1581, app(app(ty_Either, hh), baa)) -> new_ltEs16(vwx1571, vwx1581, hh, baa) new_ltEs6(vwx212, vwx214, app(ty_[], bhg)) -> new_ltEs15(vwx212, vwx214, bhg) new_pePe(False, vwx290) -> vwx290 new_ltEs19(vwx169, vwx170, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_ltEs18(vwx169, vwx170, bgb, bgc, bgd) new_esEs20(False, False) -> True new_esEs27(vwx211, vwx213, app(app(ty_Either, beg), beh)) -> new_esEs14(vwx211, vwx213, beg, beh) new_ltEs11(vwx157, vwx158, ecg) -> new_fsEs(new_compare17(vwx157, vwx158, ecg)) new_esEs17(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs31(vwx1571, vwx1581, ty_Float) -> new_esEs13(vwx1571, vwx1581) new_ltEs23(vwx200, vwx203, app(ty_Ratio, fgh)) -> new_ltEs11(vwx200, vwx203, fgh) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, ty_Integer) -> new_ltEs9(vwx1570, vwx1580) new_lt23(vwx199, vwx202, ty_Int) -> new_lt6(vwx199, vwx202) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, app(app(ty_@2, ff), fg)) -> new_ltEs17(vwx1570, vwx1580, ff, fg) new_esEs27(vwx211, vwx213, app(ty_[], bef)) -> new_esEs18(vwx211, vwx213, bef) new_ltEs23(vwx200, vwx203, ty_Char) -> new_ltEs4(vwx200, vwx203) new_compare25(vwx169, vwx170, True, ech, bfd) -> EQ new_esEs39(vwx198, vwx201, ty_Int) -> new_esEs23(vwx198, vwx201) new_esEs31(vwx1571, vwx1581, app(app(ty_@2, bcg), bch)) -> new_esEs15(vwx1571, vwx1581, bcg, bch) new_esEs17(Just(vwx300), Just(vwx400), app(app(ty_@2, feg), feh)) -> new_esEs15(vwx300, vwx400, feg, feh) new_ltEs6(vwx212, vwx214, ty_Float) -> new_ltEs13(vwx212, vwx214) new_lt21(vwx1570, vwx1580, ty_Double) -> new_lt9(vwx1570, vwx1580) new_compare15(vwx30, vwx40, ty_Integer) -> new_compare9(vwx30, vwx40) new_ltEs21(vwx157, vwx158, ty_@0) -> new_ltEs14(vwx157, vwx158) new_lt23(vwx199, vwx202, ty_Ordering) -> new_lt13(vwx199, vwx202) new_esEs29(vwx301, vwx401, app(ty_[], ead)) -> new_esEs18(vwx301, vwx401, ead) new_ltEs8(Just(vwx1570), Just(vwx1580), ty_Ordering) -> new_ltEs5(vwx1570, vwx1580) new_esEs6(vwx30, vwx40, app(app(ty_Either, dcb), dcc)) -> new_esEs14(vwx30, vwx40, dcb, dcc) new_esEs32(vwx1570, vwx1580, app(ty_Maybe, bag)) -> new_esEs17(vwx1570, vwx1580, bag) new_esEs38(vwx199, vwx202, ty_Ordering) -> new_esEs12(vwx199, vwx202) new_esEs38(vwx199, vwx202, ty_Integer) -> new_esEs21(vwx199, vwx202) new_esEs7(vwx31, vwx41, ty_Char) -> new_esEs16(vwx31, vwx41) new_compare211(vwx157, vwx158, False, fga) -> new_compare14(vwx157, vwx158, new_ltEs21(vwx157, vwx158, fga), fga) new_compare15(vwx30, vwx40, ty_Int) -> new_compare6(vwx30, vwx40) new_esEs28(vwx302, vwx402, ty_Char) -> new_esEs16(vwx302, vwx402) new_esEs5(vwx30, vwx40, ty_Bool) -> new_esEs20(vwx30, vwx40) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_esEs5(vwx30, vwx40, app(ty_Maybe, dbd)) -> new_esEs17(vwx30, vwx40, dbd) new_esEs26(vwx300, vwx400, ty_Bool) -> new_esEs20(vwx300, vwx400) new_esEs28(vwx302, vwx402, ty_Integer) -> new_esEs21(vwx302, vwx402) new_compare16(Double(vwx30, Neg(vwx310)), Double(vwx40, Neg(vwx410))) -> new_compare6(new_sr(vwx30, Neg(vwx410)), new_sr(Neg(vwx310), vwx40)) new_esEs11(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_lt23(vwx199, vwx202, app(app(ty_Either, cch), cda)) -> new_lt16(vwx199, vwx202, cch, cda) new_esEs39(vwx198, vwx201, app(ty_Maybe, cbb)) -> new_esEs17(vwx198, vwx201, cbb) new_esEs4(vwx30, vwx40, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs22(vwx30, vwx40, cgh, cha, chb) new_ltEs20(vwx1572, vwx1582, app(app(ty_Either, bdf), bdg)) -> new_ltEs16(vwx1572, vwx1582, bdf, bdg) new_lt23(vwx199, vwx202, ty_Char) -> new_lt12(vwx199, vwx202) new_ltEs16(Left(vwx1570), Left(vwx1580), app(ty_Maybe, df), dg) -> new_ltEs8(vwx1570, vwx1580, df) new_esEs7(vwx31, vwx41, app(ty_Maybe, ehf)) -> new_esEs17(vwx31, vwx41, ehf) new_esEs31(vwx1571, vwx1581, ty_Double) -> new_esEs24(vwx1571, vwx1581) new_ltEs21(vwx157, vwx158, ty_Float) -> new_ltEs13(vwx157, vwx158) new_lt23(vwx199, vwx202, app(ty_Ratio, fgg)) -> new_lt10(vwx199, vwx202, fgg) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs19(@0, @0) -> True new_esEs34(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs14(Right(vwx300), Right(vwx400), cgb, app(app(ty_@2, dfb), dfc)) -> new_esEs15(vwx300, vwx400, dfb, dfc) new_esEs14(Right(vwx300), Right(vwx400), cgb, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs22(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), cgh, cha, chb) -> new_asAs(new_esEs30(vwx300, vwx400, cgh), new_asAs(new_esEs29(vwx301, vwx401, cha), new_esEs28(vwx302, vwx402, chb))) new_primCmpInt(Neg(Zero), Pos(Succ(vwx400))) -> LT new_ltEs8(Just(vwx1570), Just(vwx1580), ty_Bool) -> new_ltEs12(vwx1570, vwx1580) new_esEs4(vwx30, vwx40, app(ty_Ratio, chc)) -> new_esEs25(vwx30, vwx40, chc) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs18(vwx1570, vwx1580, fh, ga, gb) new_primMulInt(Pos(vwx400), Pos(vwx310)) -> Pos(new_primMulNat0(vwx400, vwx310)) new_esEs27(vwx211, vwx213, app(ty_Ratio, ddd)) -> new_esEs25(vwx211, vwx213, ddd) new_ltEs8(Just(vwx1570), Just(vwx1580), ty_Double) -> new_ltEs10(vwx1570, vwx1580) new_esEs11(vwx30, vwx40, ty_Double) -> new_esEs24(vwx30, vwx40) new_esEs28(vwx302, vwx402, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs22(vwx302, vwx402, dhc, dhd, dhe) new_compare18(True, True) -> EQ new_lt21(vwx1570, vwx1580, ty_Int) -> new_lt6(vwx1570, vwx1580) new_esEs26(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_compare15(vwx30, vwx40, app(app(app(ty_@3, db), dc), dd)) -> new_compare31(vwx30, vwx40, db, dc, dd) new_esEs34(vwx300, vwx400, ty_Double) -> new_esEs24(vwx300, vwx400) new_lt21(vwx1570, vwx1580, ty_Bool) -> new_lt11(vwx1570, vwx1580) new_lt22(vwx198, vwx201, app(ty_[], cbe)) -> new_lt4(vwx198, vwx201, cbe) new_ltEs23(vwx200, vwx203, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs18(vwx200, vwx203, cee, cef, ceg) new_ltEs22(vwx1571, vwx1581, app(app(ty_@2, bab), bac)) -> new_ltEs17(vwx1571, vwx1581, bab, bac) new_esEs28(vwx302, vwx402, ty_Bool) -> new_esEs20(vwx302, vwx402) new_esEs7(vwx31, vwx41, ty_Double) -> new_esEs24(vwx31, vwx41) new_esEs28(vwx302, vwx402, app(ty_Maybe, dha)) -> new_esEs17(vwx302, vwx402, dha) new_ltEs19(vwx169, vwx170, app(ty_Maybe, bfc)) -> new_ltEs8(vwx169, vwx170, bfc) new_ltEs23(vwx200, vwx203, ty_Float) -> new_ltEs13(vwx200, vwx203) new_primMulNat0(Succ(vwx4000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx3100)) -> Zero new_primPlusNat0(Zero, vwx3100) -> Succ(vwx3100) new_ltEs24(vwx176, vwx177, ty_Ordering) -> new_ltEs5(vwx176, vwx177) new_esEs29(vwx301, vwx401, app(app(ty_Either, dhg), dhh)) -> new_esEs14(vwx301, vwx401, dhg, dhh) new_lt19(vwx1570, vwx1580, ty_Char) -> new_lt12(vwx1570, vwx1580) new_lt19(vwx1570, vwx1580, ty_Ordering) -> new_lt13(vwx1570, vwx1580) new_esEs14(Right(vwx300), Right(vwx400), cgb, app(ty_[], dfe)) -> new_esEs18(vwx300, vwx400, dfe) new_ltEs6(vwx212, vwx214, app(ty_Ratio, dde)) -> new_ltEs11(vwx212, vwx214, dde) new_ltEs5(EQ, EQ) -> True new_ltEs16(Left(vwx1570), Left(vwx1580), ty_Int, dg) -> new_ltEs7(vwx1570, vwx1580) new_esEs31(vwx1571, vwx1581, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs22(vwx1571, vwx1581, bda, bdb, bdc) new_lt10(vwx211, vwx213, ddd) -> new_esEs12(new_compare17(vwx211, vwx213, ddd), LT) new_esEs33(vwx301, vwx401, ty_Double) -> new_esEs24(vwx301, vwx401) new_ltEs23(vwx200, vwx203, ty_Int) -> new_ltEs7(vwx200, vwx203) new_esEs5(vwx30, vwx40, ty_Integer) -> new_esEs21(vwx30, vwx40) new_compare12(vwx276, vwx277, vwx278, vwx279, vwx280, vwx281, True, vwx283, dgb, dgc, dgd) -> new_compare13(vwx276, vwx277, vwx278, vwx279, vwx280, vwx281, True, dgb, dgc, dgd) new_lt16(vwx211, vwx213, beg, beh) -> new_esEs12(new_compare7(vwx211, vwx213, beg, beh), LT) new_ltEs12(False, True) -> True new_esEs33(vwx301, vwx401, ty_@0) -> new_esEs19(vwx301, vwx401) new_esEs30(vwx300, vwx400, app(ty_[], ebf)) -> new_esEs18(vwx300, vwx400, ebf) new_ltEs6(vwx212, vwx214, ty_Integer) -> new_ltEs9(vwx212, vwx214) new_esEs29(vwx301, vwx401, app(ty_Maybe, eac)) -> new_esEs17(vwx301, vwx401, eac) new_ltEs22(vwx1571, vwx1581, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs18(vwx1571, vwx1581, bad, bae, baf) new_esEs38(vwx199, vwx202, ty_Bool) -> new_esEs20(vwx199, vwx202) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, ty_Double) -> new_ltEs10(vwx1570, vwx1580) new_esEs30(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_esEs10(vwx31, vwx41, ty_@0) -> new_esEs19(vwx31, vwx41) new_ltEs21(vwx157, vwx158, app(app(app(ty_@3, bcb), bah), bba)) -> new_ltEs18(vwx157, vwx158, bcb, bah, bba) new_esEs29(vwx301, vwx401, app(app(ty_@2, eaa), eab)) -> new_esEs15(vwx301, vwx401, eaa, eab) new_ltEs23(vwx200, vwx203, app(app(ty_@2, cec), ced)) -> new_ltEs17(vwx200, vwx203, cec, ced) new_lt20(vwx1571, vwx1581, ty_Char) -> new_lt12(vwx1571, vwx1581) new_esEs37(vwx1570, vwx1580, app(ty_Ratio, fgd)) -> new_esEs25(vwx1570, vwx1580, fgd) new_esEs31(vwx1571, vwx1581, app(ty_[], bcd)) -> new_esEs18(vwx1571, vwx1581, bcd) new_esEs38(vwx199, vwx202, app(app(ty_Either, cch), cda)) -> new_esEs14(vwx199, vwx202, cch, cda) new_esEs39(vwx198, vwx201, ty_Char) -> new_esEs16(vwx198, vwx201) new_ltEs9(vwx157, vwx158) -> new_fsEs(new_compare9(vwx157, vwx158)) new_esEs6(vwx30, vwx40, ty_Integer) -> new_esEs21(vwx30, vwx40) new_lt19(vwx1570, vwx1580, ty_Double) -> new_lt9(vwx1570, vwx1580) new_lt5(vwx211, vwx213, ty_Char) -> new_lt12(vwx211, vwx213) new_esEs34(vwx300, vwx400, ty_@0) -> new_esEs19(vwx300, vwx400) new_esEs4(vwx30, vwx40, ty_Integer) -> new_esEs21(vwx30, vwx40) new_esEs32(vwx1570, vwx1580, ty_Double) -> new_esEs24(vwx1570, vwx1580) new_lt22(vwx198, vwx201, ty_Char) -> new_lt12(vwx198, vwx201) new_primPlusNat1(Succ(vwx29100), Zero) -> Succ(vwx29100) new_primPlusNat1(Zero, Succ(vwx31000)) -> Succ(vwx31000) new_ltEs19(vwx169, vwx170, ty_@0) -> new_ltEs14(vwx169, vwx170) new_compare19(EQ, GT) -> LT new_esEs7(vwx31, vwx41, ty_Float) -> new_esEs13(vwx31, vwx41) new_esEs4(vwx30, vwx40, ty_Char) -> new_esEs16(vwx30, vwx40) new_compare11(vwx261, vwx262, vwx263, vwx264, True, vwx266, daf, dag) -> new_compare10(vwx261, vwx262, vwx263, vwx264, True, daf, dag) new_lt8(vwx211, vwx213) -> new_esEs12(new_compare9(vwx211, vwx213), LT) new_ltEs24(vwx176, vwx177, app(app(ty_@2, cfe), cff)) -> new_ltEs17(vwx176, vwx177, cfe, cff) new_esEs8(vwx30, vwx40, ty_Double) -> new_esEs24(vwx30, vwx40) new_esEs7(vwx31, vwx41, app(app(ty_@2, ehd), ehe)) -> new_esEs15(vwx31, vwx41, ehd, ehe) new_esEs39(vwx198, vwx201, ty_Bool) -> new_esEs20(vwx198, vwx201) new_esEs38(vwx199, vwx202, app(ty_Ratio, fgg)) -> new_esEs25(vwx199, vwx202, fgg) new_compare10(vwx261, vwx262, vwx263, vwx264, False, daf, dag) -> GT new_esEs6(vwx30, vwx40, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(vwx30, vwx40, dch, dda, ddb) new_esEs5(vwx30, vwx40, app(ty_[], dbe)) -> new_esEs18(vwx30, vwx40, dbe) new_ltEs20(vwx1572, vwx1582, ty_Integer) -> new_ltEs9(vwx1572, vwx1582) new_ltEs6(vwx212, vwx214, app(app(ty_Either, bhh), caa)) -> new_ltEs16(vwx212, vwx214, bhh, caa) new_esEs30(vwx300, vwx400, ty_Integer) -> new_esEs21(vwx300, vwx400) new_esEs11(vwx30, vwx40, ty_@0) -> new_esEs19(vwx30, vwx40) new_esEs14(Left(vwx300), Left(vwx400), app(ty_Ratio, deg), cgc) -> new_esEs25(vwx300, vwx400, deg) new_ltEs12(True, True) -> True new_compare18(True, False) -> GT new_ltEs20(vwx1572, vwx1582, ty_@0) -> new_ltEs14(vwx1572, vwx1582) new_esEs17(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs19(vwx300, vwx400) new_ltEs19(vwx169, vwx170, ty_Integer) -> new_ltEs9(vwx169, vwx170) new_esEs17(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs24(vwx300, vwx400) new_ltEs8(Just(vwx1570), Just(vwx1580), ty_Char) -> new_ltEs4(vwx1570, vwx1580) new_esEs6(vwx30, vwx40, app(app(ty_@2, dcd), dce)) -> new_esEs15(vwx30, vwx40, dcd, dce) new_ltEs5(LT, LT) -> True new_ltEs21(vwx157, vwx158, app(ty_Ratio, ecg)) -> new_ltEs11(vwx157, vwx158, ecg) new_esEs5(vwx30, vwx40, ty_Char) -> new_esEs16(vwx30, vwx40) new_fsEs(vwx285) -> new_not(new_esEs12(vwx285, GT)) new_esEs26(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs6(vwx30, vwx40, ty_Float) -> new_esEs13(vwx30, vwx40) new_lt9(vwx211, vwx213) -> new_esEs12(new_compare16(vwx211, vwx213), LT) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, app(ty_Ratio, eee)) -> new_ltEs11(vwx1570, vwx1580, eee) new_primMulInt(Neg(vwx400), Neg(vwx310)) -> Pos(new_primMulNat0(vwx400, vwx310)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx400))) -> new_primCmpNat0(Zero, Succ(vwx400)) new_ltEs22(vwx1571, vwx1581, ty_Float) -> new_ltEs13(vwx1571, vwx1581) new_esEs6(vwx30, vwx40, app(ty_Maybe, dcf)) -> new_esEs17(vwx30, vwx40, dcf) new_esEs37(vwx1570, vwx1580, ty_Int) -> new_esEs23(vwx1570, vwx1580) new_esEs9(vwx32, vwx42, ty_Double) -> new_esEs24(vwx32, vwx42) new_esEs6(vwx30, vwx40, app(ty_[], dcg)) -> new_esEs18(vwx30, vwx40, dcg) new_ltEs5(LT, EQ) -> True new_esEs5(vwx30, vwx40, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs22(vwx30, vwx40, dbf, dbg, dbh) new_esEs30(vwx300, vwx400, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs22(vwx300, vwx400, ebg, ebh, eca) new_compare9(Integer(vwx30), Integer(vwx40)) -> new_primCmpInt(vwx30, vwx40) new_esEs4(vwx30, vwx40, app(app(ty_Either, cgb), cgc)) -> new_esEs14(vwx30, vwx40, cgb, cgc) new_esEs30(vwx300, vwx400, app(ty_Maybe, ebe)) -> new_esEs17(vwx300, vwx400, ebe) new_ltEs21(vwx157, vwx158, app(app(ty_Either, eh), dg)) -> new_ltEs16(vwx157, vwx158, eh, dg) new_esEs14(Left(vwx300), Right(vwx400), cgb, cgc) -> False new_esEs14(Right(vwx300), Left(vwx400), cgb, cgc) -> False new_lt19(vwx1570, vwx1580, ty_Bool) -> new_lt11(vwx1570, vwx1580) new_compare15(vwx30, vwx40, app(ty_[], cd)) -> new_compare0(vwx30, vwx40, cd) new_esEs9(vwx32, vwx42, ty_@0) -> new_esEs19(vwx32, vwx42) new_esEs29(vwx301, vwx401, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs22(vwx301, vwx401, eae, eaf, eag) new_compare15(vwx30, vwx40, app(app(ty_@2, cg), da)) -> new_compare30(vwx30, vwx40, cg, da) new_esEs14(Right(vwx300), Right(vwx400), cgb, ty_Bool) -> new_esEs20(vwx300, vwx400) new_lt21(vwx1570, vwx1580, ty_Ordering) -> new_lt13(vwx1570, vwx1580) new_lt21(vwx1570, vwx1580, ty_Char) -> new_lt12(vwx1570, vwx1580) new_compare19(LT, GT) -> LT new_compare6(vwx3, vwx4) -> new_primCmpInt(vwx3, vwx4) new_ltEs24(vwx176, vwx177, ty_Int) -> new_ltEs7(vwx176, vwx177) new_esEs26(vwx300, vwx400, app(ty_Ratio, dae)) -> new_esEs25(vwx300, vwx400, dae) new_ltEs6(vwx212, vwx214, ty_@0) -> new_ltEs14(vwx212, vwx214) new_lt22(vwx198, vwx201, ty_Int) -> new_lt6(vwx198, vwx201) new_esEs39(vwx198, vwx201, app(app(ty_Either, cbf), cbg)) -> new_esEs14(vwx198, vwx201, cbf, cbg) new_esEs10(vwx31, vwx41, ty_Double) -> new_esEs24(vwx31, vwx41) new_lt20(vwx1571, vwx1581, ty_Bool) -> new_lt11(vwx1571, vwx1581) new_esEs10(vwx31, vwx41, ty_Bool) -> new_esEs20(vwx31, vwx41) new_esEs14(Left(vwx300), Left(vwx400), app(app(app(ty_@3, ded), dee), def), cgc) -> new_esEs22(vwx300, vwx400, ded, dee, def) new_esEs14(Right(vwx300), Right(vwx400), cgb, ty_Double) -> new_esEs24(vwx300, vwx400) new_esEs11(vwx30, vwx40, app(ty_[], edg)) -> new_esEs18(vwx30, vwx40, edg) new_esEs8(vwx30, vwx40, ty_Char) -> new_esEs16(vwx30, vwx40) new_ltEs22(vwx1571, vwx1581, ty_Char) -> new_ltEs4(vwx1571, vwx1581) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, ty_Bool) -> new_ltEs12(vwx1570, vwx1580) new_primMulInt(Pos(vwx400), Neg(vwx310)) -> Neg(new_primMulNat0(vwx400, vwx310)) new_primMulInt(Neg(vwx400), Pos(vwx310)) -> Neg(new_primMulNat0(vwx400, vwx310)) new_compare19(LT, EQ) -> LT new_compare7(Left(vwx30), Right(vwx40), bfa, bfb) -> LT new_esEs29(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_esEs17(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs23(vwx300, vwx400) new_lt17(vwx211, vwx213, bge, bgf) -> new_esEs12(new_compare30(vwx211, vwx213, bge, bgf), LT) new_ltEs6(vwx212, vwx214, ty_Int) -> new_ltEs7(vwx212, vwx214) new_esEs37(vwx1570, vwx1580, ty_@0) -> new_esEs19(vwx1570, vwx1580) new_lt5(vwx211, vwx213, ty_Double) -> new_lt9(vwx211, vwx213) new_esEs37(vwx1570, vwx1580, ty_Integer) -> new_esEs21(vwx1570, vwx1580) new_compare19(GT, EQ) -> GT new_esEs11(vwx30, vwx40, app(app(ty_Either, edb), edc)) -> new_esEs14(vwx30, vwx40, edb, edc) new_ltEs16(Left(vwx1570), Left(vwx1580), app(app(ty_@2, ec), ed), dg) -> new_ltEs17(vwx1570, vwx1580, ec, ed) new_esEs10(vwx31, vwx41, ty_Char) -> new_esEs16(vwx31, vwx41) new_esEs8(vwx30, vwx40, ty_Bool) -> new_esEs20(vwx30, vwx40) new_compare31(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), cag, cah, cba) -> new_compare210(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs11(vwx30, vwx40, cag), new_asAs(new_esEs10(vwx31, vwx41, cah), new_esEs9(vwx32, vwx42, cba))), cag, cah, cba) new_esEs9(vwx32, vwx42, app(ty_[], efc)) -> new_esEs18(vwx32, vwx42, efc) new_sr0(Integer(vwx400), Integer(vwx310)) -> Integer(new_primMulInt(vwx400, vwx310)) new_lt5(vwx211, vwx213, app(ty_Ratio, ddd)) -> new_lt10(vwx211, vwx213, ddd) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, ty_Char) -> new_ltEs4(vwx1570, vwx1580) new_esEs14(Right(vwx300), Right(vwx400), cgb, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs29(vwx301, vwx401, ty_Char) -> new_esEs16(vwx301, vwx401) new_ltEs23(vwx200, vwx203, app(app(ty_Either, cea), ceb)) -> new_ltEs16(vwx200, vwx203, cea, ceb) new_esEs26(vwx300, vwx400, app(ty_[], daa)) -> new_esEs18(vwx300, vwx400, daa) new_esEs8(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_esEs30(vwx300, vwx400, app(app(ty_@2, ebc), ebd)) -> new_esEs15(vwx300, vwx400, ebc, ebd) new_compare18(False, False) -> EQ new_esEs29(vwx301, vwx401, ty_Double) -> new_esEs24(vwx301, vwx401) new_esEs37(vwx1570, vwx1580, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs22(vwx1570, vwx1580, hb, hc, hd) new_lt23(vwx199, vwx202, app(ty_[], ccg)) -> new_lt4(vwx199, vwx202, ccg) new_esEs38(vwx199, vwx202, ty_Int) -> new_esEs23(vwx199, vwx202) new_lt20(vwx1571, vwx1581, app(app(app(ty_@3, bda), bdb), bdc)) -> new_lt18(vwx1571, vwx1581, bda, bdb, bdc) new_compare8(Nothing, Nothing, de) -> EQ new_esEs39(vwx198, vwx201, ty_Double) -> new_esEs24(vwx198, vwx201) new_lt5(vwx211, vwx213, app(app(ty_Either, beg), beh)) -> new_lt16(vwx211, vwx213, beg, beh) new_lt20(vwx1571, vwx1581, app(app(ty_@2, bcg), bch)) -> new_lt17(vwx1571, vwx1581, bcg, bch) new_compare15(vwx30, vwx40, ty_Bool) -> new_compare18(vwx30, vwx40) new_ltEs19(vwx169, vwx170, app(ty_[], bfe)) -> new_ltEs15(vwx169, vwx170, bfe) new_esEs32(vwx1570, vwx1580, app(app(ty_Either, bbc), bbd)) -> new_esEs14(vwx1570, vwx1580, bbc, bbd) new_esEs6(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_primCompAux0(vwx30, vwx40, vwx152, cb) -> new_primCompAux00(vwx152, new_compare15(vwx30, vwx40, cb)) new_esEs12(GT, GT) -> True new_compare17(:%(vwx30, vwx31), :%(vwx40, vwx41), ty_Int) -> new_compare6(new_sr(vwx30, vwx41), new_sr(vwx40, vwx31)) new_compare0([], :(vwx40, vwx41), cb) -> LT new_esEs31(vwx1571, vwx1581, ty_Bool) -> new_esEs20(vwx1571, vwx1581) new_esEs33(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_asAs(True, vwx229) -> vwx229 new_esEs26(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs11(vwx30, vwx40, app(ty_Ratio, eec)) -> new_esEs25(vwx30, vwx40, eec) new_esEs5(vwx30, vwx40, app(app(ty_Either, dah), dba)) -> new_esEs14(vwx30, vwx40, dah, dba) new_ltEs24(vwx176, vwx177, ty_@0) -> new_ltEs14(vwx176, vwx177) new_lt20(vwx1571, vwx1581, ty_Ordering) -> new_lt13(vwx1571, vwx1581) new_esEs4(vwx30, vwx40, ty_Bool) -> new_esEs20(vwx30, vwx40) new_lt19(vwx1570, vwx1580, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt18(vwx1570, vwx1580, bbg, bbh, bca) new_ltEs5(GT, LT) -> False new_esEs14(Left(vwx300), Left(vwx400), ty_@0, cgc) -> new_esEs19(vwx300, vwx400) new_lt21(vwx1570, vwx1580, ty_Integer) -> new_lt8(vwx1570, vwx1580) new_ltEs16(Right(vwx1570), Left(vwx1580), eh, dg) -> False new_ltEs21(vwx157, vwx158, ty_Integer) -> new_ltEs9(vwx157, vwx158) new_esEs14(Left(vwx300), Left(vwx400), app(app(ty_@2, ddh), dea), cgc) -> new_esEs15(vwx300, vwx400, ddh, dea) new_lt14(vwx211, vwx213) -> new_esEs12(new_compare28(vwx211, vwx213), LT) new_esEs27(vwx211, vwx213, ty_Integer) -> new_esEs21(vwx211, vwx213) new_esEs26(vwx300, vwx400, app(app(ty_Either, chd), che)) -> new_esEs14(vwx300, vwx400, chd, che) new_esEs5(vwx30, vwx40, ty_Float) -> new_esEs13(vwx30, vwx40) new_esEs16(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_ltEs8(Just(vwx1570), Just(vwx1580), ty_Integer) -> new_ltEs9(vwx1570, vwx1580) new_esEs5(vwx30, vwx40, ty_@0) -> new_esEs19(vwx30, vwx40) new_esEs21(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_compare111(vwx241, vwx242, False, ffg, ffh) -> GT new_esEs32(vwx1570, vwx1580, ty_@0) -> new_esEs19(vwx1570, vwx1580) new_ltEs8(Just(vwx1570), Just(vwx1580), app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs18(vwx1570, vwx1580, bf, bg, bh) new_ltEs20(vwx1572, vwx1582, app(ty_Ratio, fbh)) -> new_ltEs11(vwx1572, vwx1582, fbh) new_ltEs22(vwx1571, vwx1581, app(ty_Maybe, hf)) -> new_ltEs8(vwx1571, vwx1581, hf) new_lt5(vwx211, vwx213, ty_Float) -> new_lt14(vwx211, vwx213) new_esEs27(vwx211, vwx213, ty_Int) -> new_esEs23(vwx211, vwx213) new_compare18(False, True) -> LT new_esEs32(vwx1570, vwx1580, ty_Float) -> new_esEs13(vwx1570, vwx1580) new_esEs14(Left(vwx300), Left(vwx400), ty_Float, cgc) -> new_esEs13(vwx300, vwx400) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, ty_Float) -> new_ltEs13(vwx1570, vwx1580) new_primCmpInt(Pos(Succ(vwx300)), Pos(vwx40)) -> new_primCmpNat0(Succ(vwx300), vwx40) new_compare8(Just(vwx30), Nothing, de) -> GT new_lt5(vwx211, vwx213, app(ty_Maybe, bee)) -> new_lt7(vwx211, vwx213, bee) new_lt13(vwx211, vwx213) -> new_esEs12(new_compare19(vwx211, vwx213), LT) new_ltEs20(vwx1572, vwx1582, app(ty_[], bde)) -> new_ltEs15(vwx1572, vwx1582, bde) new_primCompAux00(vwx163, EQ) -> vwx163 new_compare10(vwx261, vwx262, vwx263, vwx264, True, daf, dag) -> LT new_compare0([], [], cb) -> EQ new_esEs12(EQ, EQ) -> True new_esEs9(vwx32, vwx42, app(ty_Ratio, efg)) -> new_esEs25(vwx32, vwx42, efg) new_sr(vwx40, vwx31) -> new_primMulInt(vwx40, vwx31) new_esEs28(vwx302, vwx402, ty_Int) -> new_esEs23(vwx302, vwx402) new_esEs26(vwx300, vwx400, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs22(vwx300, vwx400, dab, dac, dad) new_esEs33(vwx301, vwx401, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs22(vwx301, vwx401, fcg, fch, fda) new_primMulNat0(Zero, Zero) -> Zero new_esEs14(Left(vwx300), Left(vwx400), app(ty_[], dec), cgc) -> new_esEs18(vwx300, vwx400, dec) new_esEs6(vwx30, vwx40, ty_@0) -> new_esEs19(vwx30, vwx40) new_compare28(Float(vwx30, Neg(vwx310)), Float(vwx40, Neg(vwx410))) -> new_compare6(new_sr(vwx30, Neg(vwx410)), new_sr(Neg(vwx310), vwx40)) new_esEs9(vwx32, vwx42, ty_Float) -> new_esEs13(vwx32, vwx42) new_esEs8(vwx30, vwx40, app(app(ty_@2, faf), fag)) -> new_esEs15(vwx30, vwx40, faf, fag) new_ltEs14(vwx157, vwx158) -> new_fsEs(new_compare29(vwx157, vwx158)) new_compare15(vwx30, vwx40, ty_Ordering) -> new_compare19(vwx30, vwx40) new_ltEs13(vwx157, vwx158) -> new_fsEs(new_compare28(vwx157, vwx158)) new_ltEs12(True, False) -> False new_esEs11(vwx30, vwx40, ty_Float) -> new_esEs13(vwx30, vwx40) new_lt19(vwx1570, vwx1580, app(app(ty_@2, bbe), bbf)) -> new_lt17(vwx1570, vwx1580, bbe, bbf) new_esEs4(vwx30, vwx40, app(ty_[], cgg)) -> new_esEs18(vwx30, vwx40, cgg) new_esEs31(vwx1571, vwx1581, ty_Char) -> new_esEs16(vwx1571, vwx1581) new_esEs33(vwx301, vwx401, ty_Integer) -> new_esEs21(vwx301, vwx401) new_esEs27(vwx211, vwx213, ty_Float) -> new_esEs13(vwx211, vwx213) new_lt20(vwx1571, vwx1581, ty_Int) -> new_lt6(vwx1571, vwx1581) new_esEs32(vwx1570, vwx1580, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs22(vwx1570, vwx1580, bbg, bbh, bca) new_esEs34(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs4(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_esEs14(Right(vwx300), Right(vwx400), cgb, ty_Char) -> new_esEs16(vwx300, vwx400) new_ltEs19(vwx169, vwx170, app(ty_Ratio, eda)) -> new_ltEs11(vwx169, vwx170, eda) new_ltEs5(EQ, LT) -> False new_lt23(vwx199, vwx202, ty_@0) -> new_lt15(vwx199, vwx202) new_esEs32(vwx1570, vwx1580, app(ty_[], bbb)) -> new_esEs18(vwx1570, vwx1580, bbb) new_esEs28(vwx302, vwx402, app(app(ty_@2, dgg), dgh)) -> new_esEs15(vwx302, vwx402, dgg, dgh) new_compare8(Nothing, Just(vwx40), de) -> LT new_esEs34(vwx300, vwx400, app(app(ty_@2, fde), fdf)) -> new_esEs15(vwx300, vwx400, fde, fdf) new_esEs37(vwx1570, vwx1580, app(app(ty_Either, gf), gg)) -> new_esEs14(vwx1570, vwx1580, gf, gg) new_compare19(GT, LT) -> GT new_esEs27(vwx211, vwx213, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs22(vwx211, vwx213, bhb, bhc, bhd) new_esEs33(vwx301, vwx401, ty_Float) -> new_esEs13(vwx301, vwx401) new_lt5(vwx211, vwx213, ty_Integer) -> new_lt8(vwx211, vwx213) new_esEs29(vwx301, vwx401, ty_Bool) -> new_esEs20(vwx301, vwx401) new_esEs38(vwx199, vwx202, app(ty_Maybe, ccf)) -> new_esEs17(vwx199, vwx202, ccf) new_ltEs16(Left(vwx1570), Left(vwx1580), ty_Integer, dg) -> new_ltEs9(vwx1570, vwx1580) new_compare27(vwx211, vwx212, vwx213, vwx214, False, bhe, bha) -> new_compare11(vwx211, vwx212, vwx213, vwx214, new_lt5(vwx211, vwx213, bhe), new_asAs(new_esEs27(vwx211, vwx213, bhe), new_ltEs6(vwx212, vwx214, bha)), bhe, bha) new_esEs39(vwx198, vwx201, ty_Ordering) -> new_esEs12(vwx198, vwx201) new_compare7(Right(vwx30), Left(vwx40), bfa, bfb) -> GT new_compare28(Float(vwx30, Pos(vwx310)), Float(vwx40, Pos(vwx410))) -> new_compare6(new_sr(vwx30, Pos(vwx410)), new_sr(Pos(vwx310), vwx40)) new_ltEs21(vwx157, vwx158, app(ty_Maybe, fgb)) -> new_ltEs8(vwx157, vwx158, fgb) new_esEs33(vwx301, vwx401, app(ty_Maybe, fce)) -> new_esEs17(vwx301, vwx401, fce) new_ltEs21(vwx157, vwx158, app(app(ty_@2, he), gd)) -> new_ltEs17(vwx157, vwx158, he, gd) new_ltEs12(False, False) -> True new_compare27(vwx211, vwx212, vwx213, vwx214, True, bhe, bha) -> EQ new_ltEs8(Just(vwx1570), Just(vwx1580), app(ty_Maybe, h)) -> new_ltEs8(vwx1570, vwx1580, h) new_esEs27(vwx211, vwx213, app(ty_Maybe, bee)) -> new_esEs17(vwx211, vwx213, bee) new_lt22(vwx198, vwx201, app(ty_Ratio, fgf)) -> new_lt10(vwx198, vwx201, fgf) new_esEs30(vwx300, vwx400, ty_Double) -> new_esEs24(vwx300, vwx400) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_compare7(Right(vwx30), Right(vwx40), bfa, bfb) -> new_compare26(vwx30, vwx40, new_esEs6(vwx30, vwx40, bfb), bfa, bfb) new_ltEs21(vwx157, vwx158, app(ty_[], ca)) -> new_ltEs15(vwx157, vwx158, ca) new_lt19(vwx1570, vwx1580, ty_Integer) -> new_lt8(vwx1570, vwx1580) new_esEs10(vwx31, vwx41, app(app(ty_@2, egb), egc)) -> new_esEs15(vwx31, vwx41, egb, egc) new_ltEs8(Nothing, Just(vwx1580), fgb) -> True new_esEs10(vwx31, vwx41, ty_Ordering) -> new_esEs12(vwx31, vwx41) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_compare17(:%(vwx30, vwx31), :%(vwx40, vwx41), ty_Integer) -> new_compare9(new_sr0(vwx30, vwx41), new_sr0(vwx40, vwx31)) new_lt22(vwx198, vwx201, app(app(ty_Either, cbf), cbg)) -> new_lt16(vwx198, vwx201, cbf, cbg) new_lt19(vwx1570, vwx1580, ty_Int) -> new_lt6(vwx1570, vwx1580) new_esEs39(vwx198, vwx201, app(app(ty_@2, cbh), cca)) -> new_esEs15(vwx198, vwx201, cbh, cca) new_esEs30(vwx300, vwx400, ty_Bool) -> new_esEs20(vwx300, vwx400) new_ltEs24(vwx176, vwx177, app(ty_Ratio, fhb)) -> new_ltEs11(vwx176, vwx177, fhb) new_esEs31(vwx1571, vwx1581, app(app(ty_Either, bce), bcf)) -> new_esEs14(vwx1571, vwx1581, bce, bcf) new_ltEs8(Just(vwx1570), Just(vwx1580), app(app(ty_@2, bd), be)) -> new_ltEs17(vwx1570, vwx1580, bd, be) new_compare8(Just(vwx30), Just(vwx40), de) -> new_compare211(vwx30, vwx40, new_esEs4(vwx30, vwx40, de), de) new_esEs10(vwx31, vwx41, app(ty_[], ege)) -> new_esEs18(vwx31, vwx41, ege) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_esEs17(Just(vwx300), Just(vwx400), app(ty_Maybe, ffa)) -> new_esEs17(vwx300, vwx400, ffa) new_ltEs16(Left(vwx1570), Left(vwx1580), ty_@0, dg) -> new_ltEs14(vwx1570, vwx1580) new_compare15(vwx30, vwx40, ty_Double) -> new_compare16(vwx30, vwx40) new_primCmpInt(Neg(Zero), Neg(Succ(vwx400))) -> new_primCmpNat0(Succ(vwx400), Zero) new_esEs14(Left(vwx300), Left(vwx400), ty_Integer, cgc) -> new_esEs21(vwx300, vwx400) new_ltEs16(Left(vwx1570), Left(vwx1580), ty_Ordering, dg) -> new_ltEs5(vwx1570, vwx1580) new_esEs5(vwx30, vwx40, app(ty_Ratio, dca)) -> new_esEs25(vwx30, vwx40, dca) new_esEs32(vwx1570, vwx1580, ty_Integer) -> new_esEs21(vwx1570, vwx1580) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt22(vwx198, vwx201, ty_Double) -> new_lt9(vwx198, vwx201) new_esEs26(vwx300, vwx400, ty_Integer) -> new_esEs21(vwx300, vwx400) new_ltEs23(vwx200, vwx203, app(ty_Maybe, cdg)) -> new_ltEs8(vwx200, vwx203, cdg) new_esEs11(vwx30, vwx40, ty_Char) -> new_esEs16(vwx30, vwx40) new_esEs25(:%(vwx300, vwx301), :%(vwx400, vwx401), chc) -> new_asAs(new_esEs36(vwx300, vwx400, chc), new_esEs35(vwx301, vwx401, chc)) new_ltEs6(vwx212, vwx214, ty_Double) -> new_ltEs10(vwx212, vwx214) new_ltEs6(vwx212, vwx214, ty_Ordering) -> new_ltEs5(vwx212, vwx214) new_ltEs23(vwx200, vwx203, ty_Bool) -> new_ltEs12(vwx200, vwx203) new_ltEs18(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, bba) -> new_pePe(new_lt19(vwx1570, vwx1580, bcb), new_asAs(new_esEs32(vwx1570, vwx1580, bcb), new_pePe(new_lt20(vwx1571, vwx1581, bah), new_asAs(new_esEs31(vwx1571, vwx1581, bah), new_ltEs20(vwx1572, vwx1582, bba))))) new_lt6(vwx211, vwx213) -> new_esEs12(new_compare6(vwx211, vwx213), LT) new_esEs7(vwx31, vwx41, ty_Bool) -> new_esEs20(vwx31, vwx41) new_esEs30(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs34(vwx300, vwx400, ty_Bool) -> new_esEs20(vwx300, vwx400) new_lt21(vwx1570, vwx1580, app(app(ty_@2, gh), ha)) -> new_lt17(vwx1570, vwx1580, gh, ha) new_compare19(LT, LT) -> EQ new_esEs38(vwx199, vwx202, ty_Double) -> new_esEs24(vwx199, vwx202) new_esEs33(vwx301, vwx401, app(ty_Ratio, fdb)) -> new_esEs25(vwx301, vwx401, fdb) new_ltEs5(EQ, GT) -> True new_esEs6(vwx30, vwx40, app(ty_Ratio, ddc)) -> new_esEs25(vwx30, vwx40, ddc) new_ltEs7(vwx157, vwx158) -> new_fsEs(new_compare6(vwx157, vwx158)) new_esEs33(vwx301, vwx401, app(app(ty_Either, fca), fcb)) -> new_esEs14(vwx301, vwx401, fca, fcb) new_not(False) -> True new_ltEs21(vwx157, vwx158, ty_Char) -> new_ltEs4(vwx157, vwx158) new_esEs28(vwx302, vwx402, ty_Ordering) -> new_esEs12(vwx302, vwx402) new_lt19(vwx1570, vwx1580, ty_Float) -> new_lt14(vwx1570, vwx1580) new_esEs10(vwx31, vwx41, app(ty_Ratio, eha)) -> new_esEs25(vwx31, vwx41, eha) new_esEs32(vwx1570, vwx1580, ty_Bool) -> new_esEs20(vwx1570, vwx1580) new_ltEs20(vwx1572, vwx1582, app(app(ty_@2, bdh), bea)) -> new_ltEs17(vwx1572, vwx1582, bdh, bea) new_ltEs24(vwx176, vwx177, app(app(ty_Either, cfc), cfd)) -> new_ltEs16(vwx176, vwx177, cfc, cfd) new_esEs34(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_ltEs21(vwx157, vwx158, ty_Bool) -> new_ltEs12(vwx157, vwx158) new_esEs38(vwx199, vwx202, ty_@0) -> new_esEs19(vwx199, vwx202) new_lt5(vwx211, vwx213, app(ty_[], bef)) -> new_lt4(vwx211, vwx213, bef) new_esEs14(Right(vwx300), Right(vwx400), cgb, app(ty_Ratio, dga)) -> new_esEs25(vwx300, vwx400, dga) new_ltEs5(GT, GT) -> True new_compare0(:(vwx30, vwx31), [], cb) -> GT new_ltEs24(vwx176, vwx177, ty_Integer) -> new_ltEs9(vwx176, vwx177) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs17(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ffc), ffd), ffe)) -> new_esEs22(vwx300, vwx400, ffc, ffd, ffe) new_ltEs8(Just(vwx1570), Just(vwx1580), app(ty_[], ba)) -> new_ltEs15(vwx1570, vwx1580, ba) new_esEs38(vwx199, vwx202, app(app(ty_@2, cdb), cdc)) -> new_esEs15(vwx199, vwx202, cdb, cdc) new_esEs10(vwx31, vwx41, app(app(ty_Either, efh), ega)) -> new_esEs14(vwx31, vwx41, efh, ega) new_compare16(Double(vwx30, Pos(vwx310)), Double(vwx40, Neg(vwx410))) -> new_compare6(new_sr(vwx30, Pos(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare16(Double(vwx30, Neg(vwx310)), Double(vwx40, Pos(vwx410))) -> new_compare6(new_sr(vwx30, Neg(vwx410)), new_sr(Pos(vwx310), vwx40)) new_ltEs21(vwx157, vwx158, ty_Ordering) -> new_ltEs5(vwx157, vwx158) new_esEs15(@2(vwx300, vwx301), @2(vwx400, vwx401), cgd, cge) -> new_asAs(new_esEs34(vwx300, vwx400, cgd), new_esEs33(vwx301, vwx401, cge)) new_lt22(vwx198, vwx201, ty_Integer) -> new_lt8(vwx198, vwx201) new_compare11(vwx261, vwx262, vwx263, vwx264, False, vwx266, daf, dag) -> new_compare10(vwx261, vwx262, vwx263, vwx264, vwx266, daf, dag) new_esEs34(vwx300, vwx400, ty_Integer) -> new_esEs21(vwx300, vwx400) new_ltEs16(Left(vwx1570), Left(vwx1580), app(ty_Ratio, eed), dg) -> new_ltEs11(vwx1570, vwx1580, eed) new_ltEs19(vwx169, vwx170, app(app(ty_@2, bfh), bga)) -> new_ltEs17(vwx169, vwx170, bfh, bga) new_esEs26(vwx300, vwx400, app(ty_Maybe, chh)) -> new_esEs17(vwx300, vwx400, chh) new_esEs28(vwx302, vwx402, ty_Double) -> new_esEs24(vwx302, vwx402) new_lt23(vwx199, vwx202, ty_Float) -> new_lt14(vwx199, vwx202) new_esEs4(vwx30, vwx40, ty_Double) -> new_esEs24(vwx30, vwx40) new_esEs28(vwx302, vwx402, ty_@0) -> new_esEs19(vwx302, vwx402) new_esEs37(vwx1570, vwx1580, app(ty_[], ge)) -> new_esEs18(vwx1570, vwx1580, ge) new_esEs11(vwx30, vwx40, ty_Integer) -> new_esEs21(vwx30, vwx40) new_esEs34(vwx300, vwx400, app(ty_Maybe, fdg)) -> new_esEs17(vwx300, vwx400, fdg) new_esEs7(vwx31, vwx41, ty_Ordering) -> new_esEs12(vwx31, vwx41) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs14(Right(vwx300), Right(vwx400), cgb, app(app(ty_Either, deh), dfa)) -> new_esEs14(vwx300, vwx400, deh, dfa) new_primPlusNat0(Succ(vwx2910), vwx3100) -> Succ(Succ(new_primPlusNat1(vwx2910, vwx3100))) new_lt15(vwx211, vwx213) -> new_esEs12(new_compare29(vwx211, vwx213), LT) new_esEs38(vwx199, vwx202, ty_Float) -> new_esEs13(vwx199, vwx202) new_esEs9(vwx32, vwx42, app(app(app(ty_@3, efd), efe), eff)) -> new_esEs22(vwx32, vwx42, efd, efe, eff) new_lt23(vwx199, vwx202, ty_Double) -> new_lt9(vwx199, vwx202) new_ltEs19(vwx169, vwx170, ty_Int) -> new_ltEs7(vwx169, vwx170) new_esEs17(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs21(vwx300, vwx400) new_lt23(vwx199, vwx202, app(app(ty_@2, cdb), cdc)) -> new_lt17(vwx199, vwx202, cdb, cdc) new_esEs17(Just(vwx300), Just(vwx400), app(ty_Ratio, fff)) -> new_esEs25(vwx300, vwx400, fff) new_esEs31(vwx1571, vwx1581, app(ty_Ratio, fbg)) -> new_esEs25(vwx1571, vwx1581, fbg) new_esEs37(vwx1570, vwx1580, app(ty_Maybe, gc)) -> new_esEs17(vwx1570, vwx1580, gc) new_esEs11(vwx30, vwx40, app(ty_Maybe, edf)) -> new_esEs17(vwx30, vwx40, edf) new_esEs11(vwx30, vwx40, ty_Bool) -> new_esEs20(vwx30, vwx40) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs11(vwx30, vwx40, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs22(vwx30, vwx40, edh, eea, eeb) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), cb) -> new_primCompAux0(vwx30, vwx40, new_compare0(vwx31, vwx41, cb), cb) new_primPlusNat1(Zero, Zero) -> Zero new_esEs9(vwx32, vwx42, ty_Char) -> new_esEs16(vwx32, vwx42) new_ltEs8(Just(vwx1570), Just(vwx1580), ty_Float) -> new_ltEs13(vwx1570, vwx1580) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, app(ty_Maybe, fa)) -> new_ltEs8(vwx1570, vwx1580, fa) new_lt21(vwx1570, vwx1580, app(ty_Ratio, fgd)) -> new_lt10(vwx1570, vwx1580, fgd) new_lt21(vwx1570, vwx1580, app(app(ty_Either, gf), gg)) -> new_lt16(vwx1570, vwx1580, gf, gg) new_lt23(vwx199, vwx202, app(ty_Maybe, ccf)) -> new_lt7(vwx199, vwx202, ccf) new_esEs8(vwx30, vwx40, app(app(ty_Either, fad), fae)) -> new_esEs14(vwx30, vwx40, fad, fae) new_ltEs20(vwx1572, vwx1582, ty_Int) -> new_ltEs7(vwx1572, vwx1582) new_esEs36(vwx300, vwx400, ty_Integer) -> new_esEs21(vwx300, vwx400) new_lt20(vwx1571, vwx1581, ty_Float) -> new_lt14(vwx1571, vwx1581) new_esEs18(:(vwx300, vwx301), [], cgg) -> False new_esEs18([], :(vwx400, vwx401), cgg) -> False new_esEs9(vwx32, vwx42, ty_Integer) -> new_esEs21(vwx32, vwx42) new_ltEs21(vwx157, vwx158, ty_Double) -> new_ltEs10(vwx157, vwx158) new_lt18(vwx211, vwx213, bhb, bhc, bhd) -> new_esEs12(new_compare31(vwx211, vwx213, bhb, bhc, bhd), LT) new_compare13(vwx276, vwx277, vwx278, vwx279, vwx280, vwx281, False, dgb, dgc, dgd) -> GT new_esEs23(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_esEs5(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_ltEs16(Right(vwx1570), Right(vwx1580), eh, ty_Int) -> new_ltEs7(vwx1570, vwx1580) new_compare30(@2(vwx30, vwx31), @2(vwx40, vwx41), bgg, bgh) -> new_compare27(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs8(vwx30, vwx40, bgg), new_esEs7(vwx31, vwx41, bgh)), bgg, bgh) new_esEs8(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs17(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, gd) -> new_pePe(new_lt21(vwx1570, vwx1580, he), new_asAs(new_esEs37(vwx1570, vwx1580, he), new_ltEs22(vwx1571, vwx1581, gd))) new_esEs26(vwx300, vwx400, ty_Double) -> new_esEs24(vwx300, vwx400) new_esEs26(vwx300, vwx400, ty_@0) -> new_esEs19(vwx300, vwx400) new_primMulNat0(Succ(vwx4000), Succ(vwx3100)) -> new_primPlusNat0(new_primMulNat0(vwx4000, Succ(vwx3100)), vwx3100) new_esEs14(Left(vwx300), Left(vwx400), ty_Int, cgc) -> new_esEs23(vwx300, vwx400) new_lt20(vwx1571, vwx1581, app(app(ty_Either, bce), bcf)) -> new_lt16(vwx1571, vwx1581, bce, bcf) new_esEs20(True, True) -> True new_lt21(vwx1570, vwx1580, ty_Float) -> new_lt14(vwx1570, vwx1580) new_compare15(vwx30, vwx40, ty_Char) -> new_compare5(vwx30, vwx40) new_esEs34(vwx300, vwx400, app(app(app(ty_@3, fea), feb), fec)) -> new_esEs22(vwx300, vwx400, fea, feb, fec) new_ltEs23(vwx200, vwx203, app(ty_[], cdh)) -> new_ltEs15(vwx200, vwx203, cdh) new_lt11(vwx211, vwx213) -> new_esEs12(new_compare18(vwx211, vwx213), LT) new_primCmpNat0(Succ(vwx300), Succ(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_lt7(vwx211, vwx213, bee) -> new_esEs12(new_compare8(vwx211, vwx213, bee), LT) new_esEs24(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs23(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_ltEs8(Nothing, Nothing, fgb) -> True new_ltEs8(Just(vwx1570), Nothing, fgb) -> False new_ltEs19(vwx169, vwx170, ty_Char) -> new_ltEs4(vwx169, vwx170) new_compare19(EQ, LT) -> GT new_esEs31(vwx1571, vwx1581, ty_Ordering) -> new_esEs12(vwx1571, vwx1581) new_esEs17(Just(vwx300), Just(vwx400), app(app(ty_Either, fee), fef)) -> new_esEs14(vwx300, vwx400, fee, fef) new_lt22(vwx198, vwx201, ty_Float) -> new_lt14(vwx198, vwx201) new_lt22(vwx198, vwx201, app(ty_Maybe, cbb)) -> new_lt7(vwx198, vwx201, cbb) new_esEs7(vwx31, vwx41, ty_Int) -> new_esEs23(vwx31, vwx41) new_ltEs8(Just(vwx1570), Just(vwx1580), app(ty_Ratio, fgc)) -> new_ltEs11(vwx1570, vwx1580, fgc) new_ltEs23(vwx200, vwx203, ty_Double) -> new_ltEs10(vwx200, vwx203) new_esEs37(vwx1570, vwx1580, ty_Float) -> new_esEs13(vwx1570, vwx1580) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare110(vwx248, vwx249, False, ece, ecf) -> GT new_lt19(vwx1570, vwx1580, ty_@0) -> new_lt15(vwx1570, vwx1580) new_lt21(vwx1570, vwx1580, app(app(app(ty_@3, hb), hc), hd)) -> new_lt18(vwx1570, vwx1580, hb, hc, hd) new_esEs9(vwx32, vwx42, ty_Bool) -> new_esEs20(vwx32, vwx42) new_compare25(vwx169, vwx170, False, ech, bfd) -> new_compare111(vwx169, vwx170, new_ltEs19(vwx169, vwx170, ech), ech, bfd) new_ltEs20(vwx1572, vwx1582, ty_Char) -> new_ltEs4(vwx1572, vwx1582) new_primEqNat0(Zero, Zero) -> True new_compare15(vwx30, vwx40, ty_Float) -> new_compare28(vwx30, vwx40) new_lt21(vwx1570, vwx1580, app(ty_Maybe, gc)) -> new_lt7(vwx1570, vwx1580, gc) new_esEs4(vwx30, vwx40, ty_@0) -> new_esEs19(vwx30, vwx40) new_lt5(vwx211, vwx213, ty_@0) -> new_lt15(vwx211, vwx213) new_ltEs8(Just(vwx1570), Just(vwx1580), app(app(ty_Either, bb), bc)) -> new_ltEs16(vwx1570, vwx1580, bb, bc) new_compare14(vwx234, vwx235, True, ecc) -> LT new_ltEs8(Just(vwx1570), Just(vwx1580), ty_@0) -> new_ltEs14(vwx1570, vwx1580) new_esEs30(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_ltEs19(vwx169, vwx170, ty_Ordering) -> new_ltEs5(vwx169, vwx170) new_lt5(vwx211, vwx213, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt18(vwx211, vwx213, bhb, bhc, bhd) new_esEs35(vwx301, vwx401, ty_Integer) -> new_esEs21(vwx301, vwx401) new_ltEs16(Left(vwx1570), Left(vwx1580), ty_Double, dg) -> new_ltEs10(vwx1570, vwx1580) new_asAs(False, vwx229) -> False new_ltEs22(vwx1571, vwx1581, ty_Double) -> new_ltEs10(vwx1571, vwx1581) new_esEs39(vwx198, vwx201, ty_@0) -> new_esEs19(vwx198, vwx201) new_lt4(vwx211, vwx213, bef) -> new_esEs12(new_compare0(vwx211, vwx213, bef), LT) new_esEs8(vwx30, vwx40, app(ty_Ratio, fbe)) -> new_esEs25(vwx30, vwx40, fbe) new_lt23(vwx199, vwx202, ty_Integer) -> new_lt8(vwx199, vwx202) new_lt19(vwx1570, vwx1580, app(ty_Ratio, fbf)) -> new_lt10(vwx1570, vwx1580, fbf) new_ltEs5(GT, EQ) -> False new_ltEs6(vwx212, vwx214, ty_Char) -> new_ltEs4(vwx212, vwx214) new_esEs27(vwx211, vwx213, ty_Double) -> new_esEs24(vwx211, vwx213) new_ltEs20(vwx1572, vwx1582, ty_Ordering) -> new_ltEs5(vwx1572, vwx1582) new_lt20(vwx1571, vwx1581, ty_@0) -> new_lt15(vwx1571, vwx1581) new_ltEs22(vwx1571, vwx1581, ty_Bool) -> new_ltEs12(vwx1571, vwx1581) new_esEs6(vwx30, vwx40, ty_Ordering) -> new_esEs12(vwx30, vwx40) new_esEs9(vwx32, vwx42, app(app(ty_Either, eef), eeg)) -> new_esEs14(vwx32, vwx42, eef, eeg) new_esEs17(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs20(vwx300, vwx400) new_esEs27(vwx211, vwx213, ty_@0) -> new_esEs19(vwx211, vwx213) new_esEs32(vwx1570, vwx1580, ty_Int) -> new_esEs23(vwx1570, vwx1580) new_esEs32(vwx1570, vwx1580, app(ty_Ratio, fbf)) -> new_esEs25(vwx1570, vwx1580, fbf) new_ltEs16(Left(vwx1570), Left(vwx1580), app(app(app(ty_@3, ee), ef), eg), dg) -> new_ltEs18(vwx1570, vwx1580, ee, ef, eg) new_lt19(vwx1570, vwx1580, app(app(ty_Either, bbc), bbd)) -> new_lt16(vwx1570, vwx1580, bbc, bbd) new_lt22(vwx198, vwx201, app(app(ty_@2, cbh), cca)) -> new_lt17(vwx198, vwx201, cbh, cca) new_ltEs24(vwx176, vwx177, app(ty_[], cfb)) -> new_ltEs15(vwx176, vwx177, cfb) The set Q consists of the following terms: new_ltEs23(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Char) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Bool) new_esEs17(Just(x0), Just(x1), ty_Char) new_esEs32(x0, x1, ty_Float) new_lt19(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Int) new_esEs12(EQ, EQ) new_esEs9(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Int) new_compare19(LT, GT) new_compare19(GT, LT) new_esEs5(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Float) new_pePe(True, x0) new_esEs14(Left(x0), Left(x1), ty_Char, x2) new_compare8(Just(x0), Just(x1), x2) new_ltEs13(x0, x1) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs33(x0, x1, ty_@0) new_compare7(Left(x0), Right(x1), x2, x3) new_esEs17(Just(x0), Just(x1), ty_Int) new_compare7(Right(x0), Left(x1), x2, x3) new_esEs38(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Char) new_lt18(x0, x1, x2, x3, x4) new_compare30(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt21(x0, x1, ty_@0) new_primPlusNat1(Succ(x0), Zero) new_esEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_esEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare10(x0, x1, x2, x3, True, x4, x5) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt19(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Int) new_lt19(x0, x1, ty_Int) new_ltEs7(x0, x1) new_esEs5(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Char) new_compare6(x0, x1) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Double) new_esEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs34(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs39(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_compare29(@0, @0) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs10(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Int) new_lt19(x0, x1, ty_Char) new_esEs20(False, True) new_esEs20(True, False) new_esEs33(x0, x1, ty_Integer) new_ltEs9(x0, x1) new_esEs29(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs18(:(x0, x1), [], x2) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs6(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Int) new_compare0([], :(x0, x1), x2) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Just(x0), Just(x1), ty_Double) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Bool) new_compare15(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_@0) new_lt20(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Double) new_esEs11(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_esEs27(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Double) new_lt23(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs5(LT, GT) new_ltEs5(GT, LT) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Int) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs5(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1, ty_Int) new_esEs5(x0, x1, ty_@0) new_esEs14(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, ty_Bool) new_compare211(x0, x1, False, x2) new_esEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs10(x0, x1, ty_Char) new_compare27(x0, x1, x2, x3, False, x4, x5) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_@0) new_lt22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(Right(x0), Right(x1), x2, x3) new_compare15(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, x2) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Just(x0), Just(x1), ty_Ordering) new_compare0(:(x0, x1), [], x2) new_esEs11(x0, x1, ty_Double) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Integer) new_esEs14(Right(x0), Right(x1), x2, ty_Integer) new_primCompAux00(x0, EQ) new_esEs36(x0, x1, ty_Integer) new_esEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs39(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1, ty_Double) new_esEs39(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare15(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, ty_Char) new_esEs17(Nothing, Just(x0), x1) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs29(x0, x1, ty_@0) new_lt11(x0, x1) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Float) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_compare7(Left(x0), Left(x1), x2, x3) new_compare15(x0, x1, ty_Ordering) new_compare28(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCompAux00(x0, GT) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Just(x0), Just(x1), ty_Integer) new_asAs(False, x0) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs20(False, False) new_lt23(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs30(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, x2, x3, False, x4, x5) new_esEs9(x0, x1, ty_Float) new_lt21(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt21(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare0([], [], x0) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_lt19(x0, x1, ty_Bool) new_esEs13(Float(x0, x1), Float(x2, x3)) new_lt23(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_Double) new_esEs24(Double(x0, x1), Double(x2, x3)) new_esEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare26(x0, x1, False, x2, x3) new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt5(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs10(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt23(x0, x1, ty_@0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs12(GT, GT) new_primPlusNat1(Zero, Succ(x0)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs22(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs9(x0, x1, ty_Int) new_esEs14(Right(x0), Right(x1), x2, ty_Bool) new_sr0(Integer(x0), Integer(x1)) new_ltEs5(EQ, GT) new_ltEs5(GT, EQ) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs34(x0, x1, ty_Double) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, True, x2, x3) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs18([], [], x0) new_esEs5(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_compare28(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare28(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Double) new_pePe(False, x0) new_esEs39(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Left(x0), Right(x1), x2, x3) new_esEs14(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_@0) new_lt20(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs17(Just(x0), Just(x1), ty_@0) new_esEs4(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs14(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs22(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_lt15(x0, x1) new_lt20(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Integer) new_esEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Int) new_esEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2, x3) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_lt23(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_sr(x0, x1) new_lt9(x0, x1) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Int) new_compare18(True, True) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs33(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_esEs16(Char(x0), Char(x1)) new_esEs30(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Ordering) new_compare19(EQ, GT) new_compare19(GT, EQ) new_esEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs17(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_compare15(x0, x1, ty_@0) new_esEs25(:%(x0, x1), :%(x2, x3), x4) new_esEs14(Left(x0), Left(x1), ty_Integer, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs24(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs14(Right(x0), Right(x1), x2, ty_Int) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_compare8(Nothing, Nothing, x0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_esEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Char) new_primPlusNat0(Succ(x0), x1) new_ltEs23(x0, x1, ty_Double) new_lt5(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Int) new_esEs23(x0, x1) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_compare14(x0, x1, True, x2) new_ltEs4(x0, x1) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Char) new_ltEs15(x0, x1, x2) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_primMulNat0(Zero, Zero) new_lt5(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False, x2, x3) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt8(x0, x1) new_ltEs23(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, ty_Float) new_compare19(LT, LT) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_[], x2)) new_compare18(True, False) new_compare18(False, True) new_esEs7(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Float) new_compare111(x0, x1, False, x2, x3) new_ltEs18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs14(x0, x1) new_lt23(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Float) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs18([], :(x0, x1), x2) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, x2, x3, True, x4, x5, x6) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_not(True) new_esEs31(x0, x1, ty_@0) new_compare15(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs22(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, True, x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_compare0(:(x0, x1), :(x2, x3), x4) new_primCompAux00(x0, LT) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(True, True) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Double) new_lt5(x0, x1, ty_Char) new_compare8(Nothing, Just(x0), x1) new_esEs7(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1) new_esEs34(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs8(Nothing, Nothing, x0) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs7(x0, x1, ty_Char) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs12(False, True) new_esEs27(x0, x1, ty_Int) new_ltEs12(True, False) new_esEs7(x0, x1, ty_Double) new_ltEs6(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Bool) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, ty_Int) new_primCmpNat0(Succ(x0), Zero) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs21(Integer(x0), Integer(x1)) new_esEs12(LT, LT) new_compare25(x0, x1, False, x2, x3) new_compare15(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2) new_esEs32(x0, x1, ty_Char) new_lt19(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs39(x0, x1, ty_Float) new_fsEs(x0) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs6(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Double) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Double) new_ltEs5(LT, LT) new_esEs6(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_@0) new_primPlusNat0(Zero, x0) new_primCmpNat0(Zero, Succ(x0)) new_esEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs17(Just(x0), Nothing, x1) new_primEqNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs18(:(x0, x1), :(x2, x3), x4) new_ltEs5(LT, EQ) new_ltEs5(EQ, LT) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare15(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_ltEs5(GT, GT) new_ltEs8(Just(x0), Nothing, x1) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt5(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs32(x0, x1, ty_@0) new_esEs20(True, True) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_esEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_lt21(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs37(x0, x1, ty_Bool) new_compare18(False, False) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Integer) new_ltEs6(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Ordering) new_esEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs17(Just(x0), Just(x1), ty_Bool) new_lt5(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Nothing, Just(x0), x1) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare19(LT, EQ) new_compare19(EQ, LT) new_primEqNat0(Zero, Zero) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs10(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_not(False) new_esEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt22(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_@0) new_asAs(True, x0) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt16(x0, x1, x2, x3) new_esEs34(x0, x1, ty_Ordering) new_ltEs12(False, False) new_esEs34(x0, x1, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare28(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs28(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare5(Char(x0), Char(x1)) new_ltEs23(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Ordering) new_lt4(x0, x1, x2) new_compare11(x0, x1, x2, x3, False, x4, x5, x6) new_compare19(GT, GT) new_esEs34(x0, x1, ty_Bool) new_lt12(x0, x1) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare15(x0, x1, ty_Float) new_ltEs5(EQ, EQ) new_esEs19(@0, @0) new_compare19(EQ, EQ) new_lt22(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Ordering) new_compare8(Just(x0), Nothing, x1) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_lt10(x0, x1, x2) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs14(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, ty_Bool) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs17(Just(x0), Just(x1), ty_Float) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Int) new_esEs17(Nothing, Nothing, x0) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Double) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) 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_lt0(vwx211, vwx213, bef) -> new_compare(vwx211, vwx213, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare1(Just(vwx30), Just(vwx40), de) -> new_compare20(vwx30, vwx40, new_esEs4(vwx30, vwx40, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt1(vwx211, vwx213, beg, beh) -> new_compare2(vwx211, vwx213, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs3(vwx1572, vwx1582, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt2(vwx211, vwx213, bge, bgf) -> new_compare3(vwx211, vwx213, bge, bgf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt3(vwx211, vwx213, bhb, bhc, bhd) -> new_compare4(vwx211, vwx213, bhb, bhc, bhd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_compare4(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), cag, cah, cba) -> new_compare24(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs11(vwx30, vwx40, cag), new_asAs(new_esEs10(vwx31, vwx41, cah), new_esEs9(vwx32, vwx42, cba))), cag, cah, cba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vwx1571, vwx1581, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(vwx157, vwx158, ca) -> new_compare(vwx157, vwx158, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(app(ty_@2, bdh), bea)) -> new_ltEs2(vwx1572, vwx1582, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(app(ty_@2, bab), bac)) -> new_ltEs2(vwx1571, vwx1581, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(app(ty_Either, bdf), bdg)) -> new_ltEs1(vwx1572, vwx1582, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Just(vwx1570), Just(vwx1580), app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs3(vwx1570, vwx1580, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(app(ty_Either, hh), baa)) -> new_ltEs1(vwx1571, vwx1581, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Just(vwx1570), Just(vwx1580), app(app(ty_@2, bd), be)) -> new_ltEs2(vwx1570, vwx1580, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Just(vwx1570), Just(vwx1580), app(app(ty_Either, bb), bc)) -> new_ltEs1(vwx1570, vwx1580, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt(vwx211, vwx213, bee) -> new_compare1(vwx211, vwx213, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(ty_Maybe, bdd)) -> new_ltEs(vwx1572, vwx1582, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(ty_Maybe, hf)) -> new_ltEs(vwx1571, vwx1581, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Just(vwx1570), Just(vwx1580), app(ty_Maybe, h)) -> new_ltEs(vwx1570, vwx1580, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Just(vwx1570), Just(vwx1580), app(ty_[], ba)) -> new_ltEs0(vwx1570, vwx1580, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(app(ty_Either, gf), gg), gd) -> new_lt1(vwx1570, vwx1580, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare22(vwx176, vwx177, False, ceh, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs3(vwx176, vwx177, cfg, cfh, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vwx176, vwx177, False, ceh, app(app(ty_@2, cfe), cff)) -> new_ltEs2(vwx176, vwx177, cfe, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vwx176, vwx177, False, ceh, app(app(ty_Either, cfc), cfd)) -> new_ltEs1(vwx176, vwx177, cfc, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vwx176, vwx177, False, ceh, app(ty_Maybe, cfa)) -> new_ltEs(vwx176, vwx177, cfa) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vwx176, vwx177, False, ceh, app(ty_[], cfb)) -> new_ltEs0(vwx176, vwx177, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(ty_Maybe, gc), gd) -> new_lt(vwx1570, vwx1580, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs3(vwx212, vwx214, cad, cae, caf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(app(ty_@2, cab), cac)) -> new_ltEs2(vwx212, vwx214, cab, cac) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(app(ty_Either, bhh), caa)) -> new_ltEs1(vwx212, vwx214, bhh, caa) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(ty_Maybe, bhf)) -> new_ltEs(vwx212, vwx214, bhf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(app(ty_Either, beg), beh), bha) -> new_compare2(vwx211, vwx213, beg, beh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(vwx30, vwx40, vwx152, app(app(ty_Either, ce), cf)) -> new_compare2(vwx30, vwx40, ce, cf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(ty_Maybe, bee), bha) -> new_compare1(vwx211, vwx213, bee) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_primCompAux(vwx30, vwx40, vwx152, app(ty_Maybe, cc)) -> new_compare1(vwx30, vwx40, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(app(ty_@2, bge), bgf), bha) -> new_compare3(vwx211, vwx213, bge, bgf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(vwx30, vwx40, vwx152, app(app(ty_@2, cg), da)) -> new_compare3(vwx30, vwx40, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx30), Right(vwx40), bfa, bfb) -> new_compare22(vwx30, vwx40, new_esEs6(vwx30, vwx40, bfb), bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare2(Left(vwx30), Left(vwx40), bfa, bfb) -> new_compare21(vwx30, vwx40, new_esEs5(vwx30, vwx40, bfa), bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare3(@2(vwx30, vwx31), @2(vwx40, vwx41), bgg, bgh) -> new_compare23(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs8(vwx30, vwx40, bgg), new_esEs7(vwx31, vwx41, bgh)), bgg, bgh) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), cb) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, cb), cb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), cb) -> new_compare(vwx31, vwx41, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, bah, app(ty_[], bde)) -> new_ltEs0(vwx1572, vwx1582, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), he, app(ty_[], hg)) -> new_ltEs0(vwx1571, vwx1581, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, bhe, app(ty_[], bhg)) -> new_ltEs0(vwx212, vwx214, bhg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(ty_[], ge), gd) -> new_lt0(vwx1570, vwx1580, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(app(ty_@2, gh), ha), gd) -> new_lt2(vwx1570, vwx1580, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), app(app(app(ty_@3, hb), hc), hd), gd) -> new_lt3(vwx1570, vwx1580, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare20(vwx157, vwx158, False, app(ty_[], ca)) -> new_compare(vwx157, vwx158, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(ty_[], bef), bha) -> new_compare(vwx211, vwx213, bef) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare23(vwx211, vwx212, vwx213, vwx214, False, app(app(app(ty_@3, bhb), bhc), bhd), bha) -> new_compare4(vwx211, vwx213, bhb, bhc, bhd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_primCompAux(vwx30, vwx40, vwx152, app(ty_[], cd)) -> new_compare(vwx30, vwx40, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx30, vwx40, vwx152, app(app(app(ty_@3, db), dc), dd)) -> new_compare4(vwx30, vwx40, db, dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs3(vwx200, vwx203, cee, cef, ceg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare21(vwx169, vwx170, False, app(app(app(ty_@3, bgb), bgc), bgd), bfd) -> new_ltEs3(vwx169, vwx170, bgb, bgc, bgd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(app(ty_@2, cec), ced)) -> new_ltEs2(vwx200, vwx203, cec, ced) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(vwx169, vwx170, False, app(app(ty_@2, bfh), bga), bfd) -> new_ltEs2(vwx169, vwx170, bfh, bga) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(app(ty_Either, cea), ceb)) -> new_ltEs1(vwx200, vwx203, cea, ceb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(vwx169, vwx170, False, app(app(ty_Either, bff), bfg), bfd) -> new_ltEs1(vwx169, vwx170, bff, bfg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(ty_Maybe, cdg)) -> new_ltEs(vwx200, vwx203, cdg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare21(vwx169, vwx170, False, app(ty_Maybe, bfc), bfd) -> new_ltEs(vwx169, vwx170, bfc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, cbc, app(ty_[], cdh)) -> new_ltEs0(vwx200, vwx203, cdh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare21(vwx169, vwx170, False, app(ty_[], bfe), bfd) -> new_ltEs0(vwx169, vwx170, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(app(ty_Either, bbc), bbd), bah, bba) -> new_lt1(vwx1570, vwx1580, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(app(ty_Either, bce), bcf), bba) -> new_lt1(vwx1571, vwx1581, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(ty_Maybe, bcc), bba) -> new_lt(vwx1571, vwx1581, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(ty_Maybe, bag), bah, bba) -> new_lt(vwx1570, vwx1580, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(ty_[], bcd), bba) -> new_lt0(vwx1571, vwx1581, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(ty_[], bbb), bah, bba) -> new_lt0(vwx1570, vwx1580, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(app(ty_@2, bbe), bbf), bah, bba) -> new_lt2(vwx1570, vwx1580, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(app(ty_@2, bcg), bch), bba) -> new_lt2(vwx1571, vwx1581, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), app(app(app(ty_@3, bbg), bbh), bca), bah, bba) -> new_lt3(vwx1570, vwx1580, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), bcb, app(app(app(ty_@3, bda), bdb), bdc), bba) -> new_lt3(vwx1571, vwx1581, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Left(vwx1570), Left(vwx1580), app(app(app(ty_@3, ee), ef), eg), dg) -> new_ltEs3(vwx1570, vwx1580, ee, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs3(vwx1570, vwx1580, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(app(app(ty_@3, ee), ef), eg)), dg)) -> new_ltEs3(vwx1570, vwx1580, ee, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(app(app(ty_@3, fh), ga), gb))) -> new_ltEs3(vwx1570, vwx1580, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(app(app(ty_@3, beb), bec), bed))) -> new_ltEs3(vwx1572, vwx1582, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vwx1571, vwx1581, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(app(app(ty_@3, bf), bg), bh))) -> new_ltEs3(vwx1570, vwx1580, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(app(ty_@2, ff), fg)) -> new_ltEs2(vwx1570, vwx1580, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vwx1570), Left(vwx1580), app(app(ty_@2, ec), ed), dg) -> new_ltEs2(vwx1570, vwx1580, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(app(ty_@2, ff), fg))) -> new_ltEs2(vwx1570, vwx1580, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(app(ty_@2, bd), be))) -> new_ltEs2(vwx1570, vwx1580, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(app(ty_@2, bab), bac))) -> new_ltEs2(vwx1571, vwx1581, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(app(ty_@2, bdh), bea))) -> new_ltEs2(vwx1572, vwx1582, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(app(ty_@2, ec), ed)), dg)) -> new_ltEs2(vwx1570, vwx1580, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(app(ty_Either, fc), fd)) -> new_ltEs1(vwx1570, vwx1580, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vwx1570), Left(vwx1580), app(app(ty_Either, ea), eb), dg) -> new_ltEs1(vwx1570, vwx1580, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(app(ty_Either, ea), eb)), dg)) -> new_ltEs1(vwx1570, vwx1580, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(app(ty_Either, fc), fd))) -> new_ltEs1(vwx1570, vwx1580, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(app(ty_Either, hh), baa))) -> new_ltEs1(vwx1571, vwx1581, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(app(ty_Either, bb), bc))) -> new_ltEs1(vwx1570, vwx1580, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(app(ty_Either, bdf), bdg))) -> new_ltEs1(vwx1572, vwx1582, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(ty_Maybe, fa)) -> new_ltEs(vwx1570, vwx1580, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vwx1570), Left(vwx1580), app(ty_Maybe, df), dg) -> new_ltEs(vwx1570, vwx1580, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Left(vwx1570), Left(vwx1580), app(ty_[], dh), dg) -> new_ltEs0(vwx1570, vwx1580, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(vwx1570), Right(vwx1580), eh, app(ty_[], fb)) -> new_ltEs0(vwx1570, vwx1580, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(ty_Maybe, hf))) -> new_ltEs(vwx1571, vwx1581, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vwx1570, vwx1580, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(ty_Maybe, bdd))) -> new_ltEs(vwx1572, vwx1582, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(ty_Maybe, df)), dg)) -> new_ltEs(vwx1570, vwx1580, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(ty_Maybe, fa))) -> new_ltEs(vwx1570, vwx1580, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(app(ty_Either, bbc), bbd)), bah), bba)) -> new_lt1(vwx1570, vwx1580, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(app(ty_Either, gf), gg)), gd)) -> new_lt1(vwx1570, vwx1580, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(app(ty_Either, bce), bcf)), bba)) -> new_lt1(vwx1571, vwx1581, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(app(ty_Either, cbf), cbg), cbc, cbd) -> new_lt1(vwx198, vwx201, cbf, cbg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(app(ty_Either, cch), cda), cbd) -> new_lt1(vwx199, vwx202, cch, cda) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(ty_Maybe, gc)), gd)) -> new_lt(vwx1570, vwx1580, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(ty_Maybe, bag)), bah), bba)) -> new_lt(vwx1570, vwx1580, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(ty_Maybe, bcc)), bba)) -> new_lt(vwx1571, vwx1581, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vwx1570), Right(vwx1580), False, app(app(ty_Either, eh), app(ty_[], fb))) -> new_ltEs0(vwx1570, vwx1580, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), bah), app(ty_[], bde))) -> new_ltEs0(vwx1572, vwx1582, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx1570), Left(vwx1580), False, app(app(ty_Either, app(ty_[], dh)), dg)) -> new_ltEs0(vwx1570, vwx1580, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx1570), Just(vwx1580), False, app(ty_Maybe, app(ty_[], ba))) -> new_ltEs0(vwx1570, vwx1580, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, he), app(ty_[], hg))) -> new_ltEs0(vwx1571, vwx1581, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(ty_[], ge)), gd)) -> new_lt0(vwx1570, vwx1580, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(ty_[], bbb)), bah), bba)) -> new_lt0(vwx1570, vwx1580, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(ty_[], bcd)), bba)) -> new_lt0(vwx1571, vwx1581, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(app(ty_@2, bcg), bch)), bba)) -> new_lt2(vwx1571, vwx1581, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(app(ty_@2, gh), ha)), gd)) -> new_lt2(vwx1570, vwx1580, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(app(ty_@2, bbe), bbf)), bah), bba)) -> new_lt2(vwx1570, vwx1580, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, app(app(app(ty_@3, bbg), bbh), bca)), bah), bba)) -> new_lt3(vwx1570, vwx1580, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx1570, vwx1571), @2(vwx1580, vwx1581), False, app(app(ty_@2, app(app(app(ty_@3, hb), hc), hd)), gd)) -> new_lt3(vwx1570, vwx1580, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx1570, vwx1571, vwx1572), @3(vwx1580, vwx1581, vwx1582), False, app(app(app(ty_@3, bcb), app(app(app(ty_@3, bda), bdb), bdc)), bba)) -> new_lt3(vwx1571, vwx1581, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(ty_Maybe, ccf), cbd) -> new_lt(vwx199, vwx202, ccf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(ty_Maybe, cbb), cbc, cbd) -> new_lt(vwx198, vwx201, cbb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(ty_[], ccg), cbd) -> new_lt0(vwx199, vwx202, ccg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(ty_[], cbe), cbc, cbd) -> new_lt0(vwx198, vwx201, cbe) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(app(ty_@2, cbh), cca), cbc, cbd) -> new_lt2(vwx198, vwx201, cbh, cca) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(app(ty_@2, cdb), cdc), cbd) -> new_lt2(vwx199, vwx202, cdb, cdc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, app(app(app(ty_@3, ccb), ccc), ccd), cbc, cbd) -> new_lt3(vwx198, vwx201, ccb, ccc, ccd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare24(vwx198, vwx199, vwx200, vwx201, vwx202, vwx203, False, cce, app(app(app(ty_@3, cdd), cde), cdf), cbd) -> new_lt3(vwx199, vwx202, cdd, cde, cdf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 ---------------------------------------- (32) YES