/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, 0 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, 111 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES (33) QDP (34) QDPSizeChangeProof [EQUIVALENT, 0 ms] (35) YES ---------------------------------------- (0) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = case cmp x y of { GT-> y : insertBy cmp x ys'; _-> x : ys; } ; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case cmp x y of { GT -> y : insertBy cmp x ys'; _ -> x : ys} " is transformed to "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; " ---------------------------------------- (2) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. Binding Reductions: The bind variable of the following binding Pattern "ys@(vuu : vuv)" is replaced by the following term "vuu : vuv" ---------------------------------------- (6) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "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 vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; " "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vvw vvx = gcd3 vvw vvx; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; ; gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; } ; " "gcd1 True vvw vvx = error []; gcd1 vvy vvz vwu = gcd0 vvz vwu; " "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; gcd2 vwv vww vwx = gcd0 vww vwx; " "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; gcd3 vwy vwz = gcd0 vwy vwz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; ; gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'1 True x vuw = x; gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vxu vxv = gcd vxu vxv; " "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); " "reduce2Reduce1 vxu vxv x y True = error []; reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];2710[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 6[label="",style="solid", color="burlywood", weight=3]; 2711[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8 -> 10[label="",style="dashed", color="red", weight=0]; 8[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare vxw3 vxw40)",fontsize=16,color="magenta"];8 -> 11[label="",style="dashed", color="magenta", weight=3]; 8 -> 12[label="",style="dashed", color="magenta", weight=3]; 8 -> 13[label="",style="dashed", color="magenta", weight=3]; 8 -> 14[label="",style="dashed", color="magenta", weight=3]; 9[label="vxw3 : []",fontsize=16,color="green",shape="box"];11[label="vxw40",fontsize=16,color="green",shape="box"];12[label="vxw3",fontsize=16,color="green",shape="box"];13[label="vxw41",fontsize=16,color="green",shape="box"];14[label="compare vxw3 vxw40",fontsize=16,color="blue",shape="box"];2712[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2712[label="",style="solid", color="blue", weight=9]; 2712 -> 15[label="",style="solid", color="blue", weight=3]; 2713[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2713[label="",style="solid", color="blue", weight=9]; 2713 -> 16[label="",style="solid", color="blue", weight=3]; 2714[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2714[label="",style="solid", color="blue", weight=9]; 2714 -> 17[label="",style="solid", color="blue", weight=3]; 2715[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2715[label="",style="solid", color="blue", weight=9]; 2715 -> 18[label="",style="solid", color="blue", weight=3]; 2716[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2716[label="",style="solid", color="blue", weight=9]; 2716 -> 19[label="",style="solid", color="blue", weight=3]; 2717[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2717[label="",style="solid", color="blue", weight=9]; 2717 -> 20[label="",style="solid", color="blue", weight=3]; 2718[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2718[label="",style="solid", color="blue", weight=9]; 2718 -> 21[label="",style="solid", color="blue", weight=3]; 2719[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2719[label="",style="solid", color="blue", weight=9]; 2719 -> 22[label="",style="solid", color="blue", weight=3]; 2720[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2720[label="",style="solid", color="blue", weight=9]; 2720 -> 23[label="",style="solid", color="blue", weight=3]; 2721[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2721[label="",style="solid", color="blue", weight=9]; 2721 -> 24[label="",style="solid", color="blue", weight=3]; 2722[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2722[label="",style="solid", color="blue", weight=9]; 2722 -> 25[label="",style="solid", color="blue", weight=3]; 2723[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2723[label="",style="solid", color="blue", weight=9]; 2723 -> 26[label="",style="solid", color="blue", weight=3]; 2724[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2724[label="",style="solid", color="blue", weight=9]; 2724 -> 27[label="",style="solid", color="blue", weight=3]; 2725[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];14 -> 2725[label="",style="solid", color="blue", weight=9]; 2725 -> 28[label="",style="solid", color="blue", weight=3]; 10[label="List.insertBy0 vxw10 compare vxw11 vxw12 (vxw10 : vxw12) vxw13",fontsize=16,color="burlywood",shape="triangle"];2726[label="vxw13/LT",fontsize=10,color="white",style="solid",shape="box"];10 -> 2726[label="",style="solid", color="burlywood", weight=9]; 2726 -> 29[label="",style="solid", color="burlywood", weight=3]; 2727[label="vxw13/EQ",fontsize=10,color="white",style="solid",shape="box"];10 -> 2727[label="",style="solid", color="burlywood", weight=9]; 2727 -> 30[label="",style="solid", color="burlywood", weight=3]; 2728[label="vxw13/GT",fontsize=10,color="white",style="solid",shape="box"];10 -> 2728[label="",style="solid", color="burlywood", weight=9]; 2728 -> 31[label="",style="solid", color="burlywood", weight=3]; 15[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];15 -> 32[label="",style="solid", color="black", weight=3]; 16[label="compare vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2729[label="vxw3/Integer vxw30",fontsize=10,color="white",style="solid",shape="box"];16 -> 2729[label="",style="solid", color="burlywood", weight=9]; 2729 -> 33[label="",style="solid", color="burlywood", weight=3]; 17[label="compare vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2730[label="vxw3/vxw30 : vxw31",fontsize=10,color="white",style="solid",shape="box"];17 -> 2730[label="",style="solid", color="burlywood", weight=9]; 2730 -> 34[label="",style="solid", color="burlywood", weight=3]; 2731[label="vxw3/[]",fontsize=10,color="white",style="solid",shape="box"];17 -> 2731[label="",style="solid", color="burlywood", weight=9]; 2731 -> 35[label="",style="solid", color="burlywood", weight=3]; 18[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];18 -> 36[label="",style="solid", color="black", weight=3]; 19[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];19 -> 37[label="",style="solid", color="black", weight=3]; 20[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];20 -> 38[label="",style="solid", color="black", weight=3]; 21[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];21 -> 39[label="",style="solid", color="black", weight=3]; 22[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];22 -> 40[label="",style="solid", color="black", weight=3]; 23[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];23 -> 41[label="",style="solid", color="black", weight=3]; 24[label="compare vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2732[label="vxw3/vxw30 :% vxw31",fontsize=10,color="white",style="solid",shape="box"];24 -> 2732[label="",style="solid", color="burlywood", weight=9]; 2732 -> 42[label="",style="solid", color="burlywood", weight=3]; 25[label="compare vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2733[label="vxw3/()",fontsize=10,color="white",style="solid",shape="box"];25 -> 2733[label="",style="solid", color="burlywood", weight=9]; 2733 -> 43[label="",style="solid", color="burlywood", weight=3]; 26[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];26 -> 44[label="",style="solid", color="black", weight=3]; 27[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];27 -> 45[label="",style="solid", color="black", weight=3]; 28[label="compare vxw3 vxw40",fontsize=16,color="black",shape="triangle"];28 -> 46[label="",style="solid", color="black", weight=3]; 29[label="List.insertBy0 vxw10 compare vxw11 vxw12 (vxw10 : vxw12) LT",fontsize=16,color="black",shape="box"];29 -> 47[label="",style="solid", color="black", weight=3]; 30[label="List.insertBy0 vxw10 compare vxw11 vxw12 (vxw10 : vxw12) EQ",fontsize=16,color="black",shape="box"];30 -> 48[label="",style="solid", color="black", weight=3]; 31[label="List.insertBy0 vxw10 compare vxw11 vxw12 (vxw10 : vxw12) GT",fontsize=16,color="black",shape="box"];31 -> 49[label="",style="solid", color="black", weight=3]; 32[label="primCmpChar vxw3 vxw40",fontsize=16,color="burlywood",shape="box"];2734[label="vxw3/Char vxw30",fontsize=10,color="white",style="solid",shape="box"];32 -> 2734[label="",style="solid", color="burlywood", weight=9]; 2734 -> 50[label="",style="solid", color="burlywood", weight=3]; 33[label="compare (Integer vxw30) vxw40",fontsize=16,color="burlywood",shape="box"];2735[label="vxw40/Integer vxw400",fontsize=10,color="white",style="solid",shape="box"];33 -> 2735[label="",style="solid", color="burlywood", weight=9]; 2735 -> 51[label="",style="solid", color="burlywood", weight=3]; 34[label="compare (vxw30 : vxw31) vxw40",fontsize=16,color="burlywood",shape="box"];2736[label="vxw40/vxw400 : vxw401",fontsize=10,color="white",style="solid",shape="box"];34 -> 2736[label="",style="solid", color="burlywood", weight=9]; 2736 -> 52[label="",style="solid", color="burlywood", weight=3]; 2737[label="vxw40/[]",fontsize=10,color="white",style="solid",shape="box"];34 -> 2737[label="",style="solid", color="burlywood", weight=9]; 2737 -> 53[label="",style="solid", color="burlywood", weight=3]; 35[label="compare [] vxw40",fontsize=16,color="burlywood",shape="box"];2738[label="vxw40/vxw400 : vxw401",fontsize=10,color="white",style="solid",shape="box"];35 -> 2738[label="",style="solid", color="burlywood", weight=9]; 2738 -> 54[label="",style="solid", color="burlywood", weight=3]; 2739[label="vxw40/[]",fontsize=10,color="white",style="solid",shape="box"];35 -> 2739[label="",style="solid", color="burlywood", weight=9]; 2739 -> 55[label="",style="solid", color="burlywood", weight=3]; 36[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];36 -> 56[label="",style="solid", color="black", weight=3]; 37[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];37 -> 57[label="",style="solid", color="black", weight=3]; 38[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];38 -> 58[label="",style="solid", color="black", weight=3]; 39[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];39 -> 59[label="",style="solid", color="black", weight=3]; 40[label="primCmpInt vxw3 vxw40",fontsize=16,color="burlywood",shape="triangle"];2740[label="vxw3/Pos vxw30",fontsize=10,color="white",style="solid",shape="box"];40 -> 2740[label="",style="solid", color="burlywood", weight=9]; 2740 -> 60[label="",style="solid", color="burlywood", weight=3]; 2741[label="vxw3/Neg vxw30",fontsize=10,color="white",style="solid",shape="box"];40 -> 2741[label="",style="solid", color="burlywood", weight=9]; 2741 -> 61[label="",style="solid", color="burlywood", weight=3]; 41[label="primCmpFloat vxw3 vxw40",fontsize=16,color="burlywood",shape="box"];2742[label="vxw3/Float vxw30 vxw31",fontsize=10,color="white",style="solid",shape="box"];41 -> 2742[label="",style="solid", color="burlywood", weight=9]; 2742 -> 62[label="",style="solid", color="burlywood", weight=3]; 42[label="compare (vxw30 :% vxw31) vxw40",fontsize=16,color="burlywood",shape="box"];2743[label="vxw40/vxw400 :% vxw401",fontsize=10,color="white",style="solid",shape="box"];42 -> 2743[label="",style="solid", color="burlywood", weight=9]; 2743 -> 63[label="",style="solid", color="burlywood", weight=3]; 43[label="compare () vxw40",fontsize=16,color="burlywood",shape="box"];2744[label="vxw40/()",fontsize=10,color="white",style="solid",shape="box"];43 -> 2744[label="",style="solid", color="burlywood", weight=9]; 2744 -> 64[label="",style="solid", color="burlywood", weight=3]; 44[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];44 -> 65[label="",style="solid", color="black", weight=3]; 45[label="primCmpDouble vxw3 vxw40",fontsize=16,color="burlywood",shape="box"];2745[label="vxw3/Double vxw30 vxw31",fontsize=10,color="white",style="solid",shape="box"];45 -> 2745[label="",style="solid", color="burlywood", weight=9]; 2745 -> 66[label="",style="solid", color="burlywood", weight=3]; 46[label="compare3 vxw3 vxw40",fontsize=16,color="black",shape="box"];46 -> 67[label="",style="solid", color="black", weight=3]; 47[label="vxw11 : vxw10 : vxw12",fontsize=16,color="green",shape="box"];48[label="vxw11 : vxw10 : vxw12",fontsize=16,color="green",shape="box"];49[label="vxw10 : List.insertBy compare vxw11 vxw12",fontsize=16,color="green",shape="box"];49 -> 68[label="",style="dashed", color="green", weight=3]; 50[label="primCmpChar (Char vxw30) vxw40",fontsize=16,color="burlywood",shape="box"];2746[label="vxw40/Char vxw400",fontsize=10,color="white",style="solid",shape="box"];50 -> 2746[label="",style="solid", color="burlywood", weight=9]; 2746 -> 69[label="",style="solid", color="burlywood", weight=3]; 51[label="compare (Integer vxw30) (Integer vxw400)",fontsize=16,color="black",shape="box"];51 -> 70[label="",style="solid", color="black", weight=3]; 52[label="compare (vxw30 : vxw31) (vxw400 : vxw401)",fontsize=16,color="black",shape="box"];52 -> 71[label="",style="solid", color="black", weight=3]; 53[label="compare (vxw30 : vxw31) []",fontsize=16,color="black",shape="box"];53 -> 72[label="",style="solid", color="black", weight=3]; 54[label="compare [] (vxw400 : vxw401)",fontsize=16,color="black",shape="box"];54 -> 73[label="",style="solid", color="black", weight=3]; 55[label="compare [] []",fontsize=16,color="black",shape="box"];55 -> 74[label="",style="solid", color="black", weight=3]; 56[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2747[label="vxw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];56 -> 2747[label="",style="solid", color="burlywood", weight=9]; 2747 -> 75[label="",style="solid", color="burlywood", weight=3]; 2748[label="vxw3/Just vxw30",fontsize=10,color="white",style="solid",shape="box"];56 -> 2748[label="",style="solid", color="burlywood", weight=9]; 2748 -> 76[label="",style="solid", color="burlywood", weight=3]; 57[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2749[label="vxw3/(vxw30,vxw31)",fontsize=10,color="white",style="solid",shape="box"];57 -> 2749[label="",style="solid", color="burlywood", weight=9]; 2749 -> 77[label="",style="solid", color="burlywood", weight=3]; 58[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2750[label="vxw3/LT",fontsize=10,color="white",style="solid",shape="box"];58 -> 2750[label="",style="solid", color="burlywood", weight=9]; 2750 -> 78[label="",style="solid", color="burlywood", weight=3]; 2751[label="vxw3/EQ",fontsize=10,color="white",style="solid",shape="box"];58 -> 2751[label="",style="solid", color="burlywood", weight=9]; 2751 -> 79[label="",style="solid", color="burlywood", weight=3]; 2752[label="vxw3/GT",fontsize=10,color="white",style="solid",shape="box"];58 -> 2752[label="",style="solid", color="burlywood", weight=9]; 2752 -> 80[label="",style="solid", color="burlywood", weight=3]; 59[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2753[label="vxw3/(vxw30,vxw31,vxw32)",fontsize=10,color="white",style="solid",shape="box"];59 -> 2753[label="",style="solid", color="burlywood", weight=9]; 2753 -> 81[label="",style="solid", color="burlywood", weight=3]; 60[label="primCmpInt (Pos vxw30) vxw40",fontsize=16,color="burlywood",shape="box"];2754[label="vxw30/Succ vxw300",fontsize=10,color="white",style="solid",shape="box"];60 -> 2754[label="",style="solid", color="burlywood", weight=9]; 2754 -> 82[label="",style="solid", color="burlywood", weight=3]; 2755[label="vxw30/Zero",fontsize=10,color="white",style="solid",shape="box"];60 -> 2755[label="",style="solid", color="burlywood", weight=9]; 2755 -> 83[label="",style="solid", color="burlywood", weight=3]; 61[label="primCmpInt (Neg vxw30) vxw40",fontsize=16,color="burlywood",shape="box"];2756[label="vxw30/Succ vxw300",fontsize=10,color="white",style="solid",shape="box"];61 -> 2756[label="",style="solid", color="burlywood", weight=9]; 2756 -> 84[label="",style="solid", color="burlywood", weight=3]; 2757[label="vxw30/Zero",fontsize=10,color="white",style="solid",shape="box"];61 -> 2757[label="",style="solid", color="burlywood", weight=9]; 2757 -> 85[label="",style="solid", color="burlywood", weight=3]; 62[label="primCmpFloat (Float vxw30 vxw31) vxw40",fontsize=16,color="burlywood",shape="box"];2758[label="vxw31/Pos vxw310",fontsize=10,color="white",style="solid",shape="box"];62 -> 2758[label="",style="solid", color="burlywood", weight=9]; 2758 -> 86[label="",style="solid", color="burlywood", weight=3]; 2759[label="vxw31/Neg vxw310",fontsize=10,color="white",style="solid",shape="box"];62 -> 2759[label="",style="solid", color="burlywood", weight=9]; 2759 -> 87[label="",style="solid", color="burlywood", weight=3]; 63[label="compare (vxw30 :% vxw31) (vxw400 :% vxw401)",fontsize=16,color="black",shape="box"];63 -> 88[label="",style="solid", color="black", weight=3]; 64[label="compare () ()",fontsize=16,color="black",shape="box"];64 -> 89[label="",style="solid", color="black", weight=3]; 65[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2760[label="vxw3/Left vxw30",fontsize=10,color="white",style="solid",shape="box"];65 -> 2760[label="",style="solid", color="burlywood", weight=9]; 2760 -> 90[label="",style="solid", color="burlywood", weight=3]; 2761[label="vxw3/Right vxw30",fontsize=10,color="white",style="solid",shape="box"];65 -> 2761[label="",style="solid", color="burlywood", weight=9]; 2761 -> 91[label="",style="solid", color="burlywood", weight=3]; 66[label="primCmpDouble (Double vxw30 vxw31) vxw40",fontsize=16,color="burlywood",shape="box"];2762[label="vxw31/Pos vxw310",fontsize=10,color="white",style="solid",shape="box"];66 -> 2762[label="",style="solid", color="burlywood", weight=9]; 2762 -> 92[label="",style="solid", color="burlywood", weight=3]; 2763[label="vxw31/Neg vxw310",fontsize=10,color="white",style="solid",shape="box"];66 -> 2763[label="",style="solid", color="burlywood", weight=9]; 2763 -> 93[label="",style="solid", color="burlywood", weight=3]; 67[label="compare2 vxw3 vxw40 (vxw3 == vxw40)",fontsize=16,color="burlywood",shape="box"];2764[label="vxw3/False",fontsize=10,color="white",style="solid",shape="box"];67 -> 2764[label="",style="solid", color="burlywood", weight=9]; 2764 -> 94[label="",style="solid", color="burlywood", weight=3]; 2765[label="vxw3/True",fontsize=10,color="white",style="solid",shape="box"];67 -> 2765[label="",style="solid", color="burlywood", weight=9]; 2765 -> 95[label="",style="solid", color="burlywood", weight=3]; 68 -> 5[label="",style="dashed", color="red", weight=0]; 68[label="List.insertBy compare vxw11 vxw12",fontsize=16,color="magenta"];68 -> 96[label="",style="dashed", color="magenta", weight=3]; 68 -> 97[label="",style="dashed", color="magenta", weight=3]; 69[label="primCmpChar (Char vxw30) (Char vxw400)",fontsize=16,color="black",shape="box"];69 -> 98[label="",style="solid", color="black", weight=3]; 70 -> 40[label="",style="dashed", color="red", weight=0]; 70[label="primCmpInt vxw30 vxw400",fontsize=16,color="magenta"];70 -> 99[label="",style="dashed", color="magenta", weight=3]; 70 -> 100[label="",style="dashed", color="magenta", weight=3]; 71 -> 101[label="",style="dashed", color="red", weight=0]; 71[label="primCompAux vxw30 vxw400 (compare vxw31 vxw401)",fontsize=16,color="magenta"];71 -> 102[label="",style="dashed", color="magenta", weight=3]; 72[label="GT",fontsize=16,color="green",shape="box"];73[label="LT",fontsize=16,color="green",shape="box"];74[label="EQ",fontsize=16,color="green",shape="box"];75[label="compare2 Nothing vxw40 (Nothing == vxw40)",fontsize=16,color="burlywood",shape="box"];2766[label="vxw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];75 -> 2766[label="",style="solid", color="burlywood", weight=9]; 2766 -> 103[label="",style="solid", color="burlywood", weight=3]; 2767[label="vxw40/Just vxw400",fontsize=10,color="white",style="solid",shape="box"];75 -> 2767[label="",style="solid", color="burlywood", weight=9]; 2767 -> 104[label="",style="solid", color="burlywood", weight=3]; 76[label="compare2 (Just vxw30) vxw40 (Just vxw30 == vxw40)",fontsize=16,color="burlywood",shape="box"];2768[label="vxw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];76 -> 2768[label="",style="solid", color="burlywood", weight=9]; 2768 -> 105[label="",style="solid", color="burlywood", weight=3]; 2769[label="vxw40/Just vxw400",fontsize=10,color="white",style="solid",shape="box"];76 -> 2769[label="",style="solid", color="burlywood", weight=9]; 2769 -> 106[label="",style="solid", color="burlywood", weight=3]; 77[label="compare2 (vxw30,vxw31) vxw40 ((vxw30,vxw31) == vxw40)",fontsize=16,color="burlywood",shape="box"];2770[label="vxw40/(vxw400,vxw401)",fontsize=10,color="white",style="solid",shape="box"];77 -> 2770[label="",style="solid", color="burlywood", weight=9]; 2770 -> 107[label="",style="solid", color="burlywood", weight=3]; 78[label="compare2 LT vxw40 (LT == vxw40)",fontsize=16,color="burlywood",shape="box"];2771[label="vxw40/LT",fontsize=10,color="white",style="solid",shape="box"];78 -> 2771[label="",style="solid", color="burlywood", weight=9]; 2771 -> 108[label="",style="solid", color="burlywood", weight=3]; 2772[label="vxw40/EQ",fontsize=10,color="white",style="solid",shape="box"];78 -> 2772[label="",style="solid", color="burlywood", weight=9]; 2772 -> 109[label="",style="solid", color="burlywood", weight=3]; 2773[label="vxw40/GT",fontsize=10,color="white",style="solid",shape="box"];78 -> 2773[label="",style="solid", color="burlywood", weight=9]; 2773 -> 110[label="",style="solid", color="burlywood", weight=3]; 79[label="compare2 EQ vxw40 (EQ == vxw40)",fontsize=16,color="burlywood",shape="box"];2774[label="vxw40/LT",fontsize=10,color="white",style="solid",shape="box"];79 -> 2774[label="",style="solid", color="burlywood", weight=9]; 2774 -> 111[label="",style="solid", color="burlywood", weight=3]; 2775[label="vxw40/EQ",fontsize=10,color="white",style="solid",shape="box"];79 -> 2775[label="",style="solid", color="burlywood", weight=9]; 2775 -> 112[label="",style="solid", color="burlywood", weight=3]; 2776[label="vxw40/GT",fontsize=10,color="white",style="solid",shape="box"];79 -> 2776[label="",style="solid", color="burlywood", weight=9]; 2776 -> 113[label="",style="solid", color="burlywood", weight=3]; 80[label="compare2 GT vxw40 (GT == vxw40)",fontsize=16,color="burlywood",shape="box"];2777[label="vxw40/LT",fontsize=10,color="white",style="solid",shape="box"];80 -> 2777[label="",style="solid", color="burlywood", weight=9]; 2777 -> 114[label="",style="solid", color="burlywood", weight=3]; 2778[label="vxw40/EQ",fontsize=10,color="white",style="solid",shape="box"];80 -> 2778[label="",style="solid", color="burlywood", weight=9]; 2778 -> 115[label="",style="solid", color="burlywood", weight=3]; 2779[label="vxw40/GT",fontsize=10,color="white",style="solid",shape="box"];80 -> 2779[label="",style="solid", color="burlywood", weight=9]; 2779 -> 116[label="",style="solid", color="burlywood", weight=3]; 81[label="compare2 (vxw30,vxw31,vxw32) vxw40 ((vxw30,vxw31,vxw32) == vxw40)",fontsize=16,color="burlywood",shape="box"];2780[label="vxw40/(vxw400,vxw401,vxw402)",fontsize=10,color="white",style="solid",shape="box"];81 -> 2780[label="",style="solid", color="burlywood", weight=9]; 2780 -> 117[label="",style="solid", color="burlywood", weight=3]; 82[label="primCmpInt (Pos (Succ vxw300)) vxw40",fontsize=16,color="burlywood",shape="box"];2781[label="vxw40/Pos vxw400",fontsize=10,color="white",style="solid",shape="box"];82 -> 2781[label="",style="solid", color="burlywood", weight=9]; 2781 -> 118[label="",style="solid", color="burlywood", weight=3]; 2782[label="vxw40/Neg vxw400",fontsize=10,color="white",style="solid",shape="box"];82 -> 2782[label="",style="solid", color="burlywood", weight=9]; 2782 -> 119[label="",style="solid", color="burlywood", weight=3]; 83[label="primCmpInt (Pos Zero) vxw40",fontsize=16,color="burlywood",shape="box"];2783[label="vxw40/Pos vxw400",fontsize=10,color="white",style="solid",shape="box"];83 -> 2783[label="",style="solid", color="burlywood", weight=9]; 2783 -> 120[label="",style="solid", color="burlywood", weight=3]; 2784[label="vxw40/Neg vxw400",fontsize=10,color="white",style="solid",shape="box"];83 -> 2784[label="",style="solid", color="burlywood", weight=9]; 2784 -> 121[label="",style="solid", color="burlywood", weight=3]; 84[label="primCmpInt (Neg (Succ vxw300)) vxw40",fontsize=16,color="burlywood",shape="box"];2785[label="vxw40/Pos vxw400",fontsize=10,color="white",style="solid",shape="box"];84 -> 2785[label="",style="solid", color="burlywood", weight=9]; 2785 -> 122[label="",style="solid", color="burlywood", weight=3]; 2786[label="vxw40/Neg vxw400",fontsize=10,color="white",style="solid",shape="box"];84 -> 2786[label="",style="solid", color="burlywood", weight=9]; 2786 -> 123[label="",style="solid", color="burlywood", weight=3]; 85[label="primCmpInt (Neg Zero) vxw40",fontsize=16,color="burlywood",shape="box"];2787[label="vxw40/Pos vxw400",fontsize=10,color="white",style="solid",shape="box"];85 -> 2787[label="",style="solid", color="burlywood", weight=9]; 2787 -> 124[label="",style="solid", color="burlywood", weight=3]; 2788[label="vxw40/Neg vxw400",fontsize=10,color="white",style="solid",shape="box"];85 -> 2788[label="",style="solid", color="burlywood", weight=9]; 2788 -> 125[label="",style="solid", color="burlywood", weight=3]; 86[label="primCmpFloat (Float vxw30 (Pos vxw310)) vxw40",fontsize=16,color="burlywood",shape="box"];2789[label="vxw40/Float vxw400 vxw401",fontsize=10,color="white",style="solid",shape="box"];86 -> 2789[label="",style="solid", color="burlywood", weight=9]; 2789 -> 126[label="",style="solid", color="burlywood", weight=3]; 87[label="primCmpFloat (Float vxw30 (Neg vxw310)) vxw40",fontsize=16,color="burlywood",shape="box"];2790[label="vxw40/Float vxw400 vxw401",fontsize=10,color="white",style="solid",shape="box"];87 -> 2790[label="",style="solid", color="burlywood", weight=9]; 2790 -> 127[label="",style="solid", color="burlywood", weight=3]; 88[label="compare (vxw30 * vxw401) (vxw400 * vxw31)",fontsize=16,color="blue",shape="box"];2791[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];88 -> 2791[label="",style="solid", color="blue", weight=9]; 2791 -> 128[label="",style="solid", color="blue", weight=3]; 2792[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];88 -> 2792[label="",style="solid", color="blue", weight=9]; 2792 -> 129[label="",style="solid", color="blue", weight=3]; 89[label="EQ",fontsize=16,color="green",shape="box"];90[label="compare2 (Left vxw30) vxw40 (Left vxw30 == vxw40)",fontsize=16,color="burlywood",shape="box"];2793[label="vxw40/Left vxw400",fontsize=10,color="white",style="solid",shape="box"];90 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 130[label="",style="solid", color="burlywood", weight=3]; 2794[label="vxw40/Right vxw400",fontsize=10,color="white",style="solid",shape="box"];90 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 131[label="",style="solid", color="burlywood", weight=3]; 91[label="compare2 (Right vxw30) vxw40 (Right vxw30 == vxw40)",fontsize=16,color="burlywood",shape="box"];2795[label="vxw40/Left vxw400",fontsize=10,color="white",style="solid",shape="box"];91 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 132[label="",style="solid", color="burlywood", weight=3]; 2796[label="vxw40/Right vxw400",fontsize=10,color="white",style="solid",shape="box"];91 -> 2796[label="",style="solid", color="burlywood", weight=9]; 2796 -> 133[label="",style="solid", color="burlywood", weight=3]; 92[label="primCmpDouble (Double vxw30 (Pos vxw310)) vxw40",fontsize=16,color="burlywood",shape="box"];2797[label="vxw40/Double vxw400 vxw401",fontsize=10,color="white",style="solid",shape="box"];92 -> 2797[label="",style="solid", color="burlywood", weight=9]; 2797 -> 134[label="",style="solid", color="burlywood", weight=3]; 93[label="primCmpDouble (Double vxw30 (Neg vxw310)) vxw40",fontsize=16,color="burlywood",shape="box"];2798[label="vxw40/Double vxw400 vxw401",fontsize=10,color="white",style="solid",shape="box"];93 -> 2798[label="",style="solid", color="burlywood", weight=9]; 2798 -> 135[label="",style="solid", color="burlywood", weight=3]; 94[label="compare2 False vxw40 (False == vxw40)",fontsize=16,color="burlywood",shape="box"];2799[label="vxw40/False",fontsize=10,color="white",style="solid",shape="box"];94 -> 2799[label="",style="solid", color="burlywood", weight=9]; 2799 -> 136[label="",style="solid", color="burlywood", weight=3]; 2800[label="vxw40/True",fontsize=10,color="white",style="solid",shape="box"];94 -> 2800[label="",style="solid", color="burlywood", weight=9]; 2800 -> 137[label="",style="solid", color="burlywood", weight=3]; 95[label="compare2 True vxw40 (True == vxw40)",fontsize=16,color="burlywood",shape="box"];2801[label="vxw40/False",fontsize=10,color="white",style="solid",shape="box"];95 -> 2801[label="",style="solid", color="burlywood", weight=9]; 2801 -> 138[label="",style="solid", color="burlywood", weight=3]; 2802[label="vxw40/True",fontsize=10,color="white",style="solid",shape="box"];95 -> 2802[label="",style="solid", color="burlywood", weight=9]; 2802 -> 139[label="",style="solid", color="burlywood", weight=3]; 96[label="vxw11",fontsize=16,color="green",shape="box"];97[label="vxw12",fontsize=16,color="green",shape="box"];98[label="primCmpNat vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2803[label="vxw30/Succ vxw300",fontsize=10,color="white",style="solid",shape="box"];98 -> 2803[label="",style="solid", color="burlywood", weight=9]; 2803 -> 140[label="",style="solid", color="burlywood", weight=3]; 2804[label="vxw30/Zero",fontsize=10,color="white",style="solid",shape="box"];98 -> 2804[label="",style="solid", color="burlywood", weight=9]; 2804 -> 141[label="",style="solid", color="burlywood", weight=3]; 99[label="vxw30",fontsize=16,color="green",shape="box"];100[label="vxw400",fontsize=16,color="green",shape="box"];102 -> 17[label="",style="dashed", color="red", weight=0]; 102[label="compare vxw31 vxw401",fontsize=16,color="magenta"];102 -> 142[label="",style="dashed", color="magenta", weight=3]; 102 -> 143[label="",style="dashed", color="magenta", weight=3]; 101[label="primCompAux vxw30 vxw400 vxw14",fontsize=16,color="black",shape="triangle"];101 -> 144[label="",style="solid", color="black", weight=3]; 103[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];103 -> 145[label="",style="solid", color="black", weight=3]; 104[label="compare2 Nothing (Just vxw400) (Nothing == Just vxw400)",fontsize=16,color="black",shape="box"];104 -> 146[label="",style="solid", color="black", weight=3]; 105[label="compare2 (Just vxw30) Nothing (Just vxw30 == Nothing)",fontsize=16,color="black",shape="box"];105 -> 147[label="",style="solid", color="black", weight=3]; 106[label="compare2 (Just vxw30) (Just vxw400) (Just vxw30 == Just vxw400)",fontsize=16,color="black",shape="box"];106 -> 148[label="",style="solid", color="black", weight=3]; 107[label="compare2 (vxw30,vxw31) (vxw400,vxw401) ((vxw30,vxw31) == (vxw400,vxw401))",fontsize=16,color="black",shape="box"];107 -> 149[label="",style="solid", color="black", weight=3]; 108[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];108 -> 150[label="",style="solid", color="black", weight=3]; 109[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];109 -> 151[label="",style="solid", color="black", weight=3]; 110[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];110 -> 152[label="",style="solid", color="black", weight=3]; 111[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];111 -> 153[label="",style="solid", color="black", weight=3]; 112[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];112 -> 154[label="",style="solid", color="black", weight=3]; 113[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];113 -> 155[label="",style="solid", color="black", weight=3]; 114[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];114 -> 156[label="",style="solid", color="black", weight=3]; 115[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];115 -> 157[label="",style="solid", color="black", weight=3]; 116[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];116 -> 158[label="",style="solid", color="black", weight=3]; 117[label="compare2 (vxw30,vxw31,vxw32) (vxw400,vxw401,vxw402) ((vxw30,vxw31,vxw32) == (vxw400,vxw401,vxw402))",fontsize=16,color="black",shape="box"];117 -> 159[label="",style="solid", color="black", weight=3]; 118[label="primCmpInt (Pos (Succ vxw300)) (Pos vxw400)",fontsize=16,color="black",shape="box"];118 -> 160[label="",style="solid", color="black", weight=3]; 119[label="primCmpInt (Pos (Succ vxw300)) (Neg vxw400)",fontsize=16,color="black",shape="box"];119 -> 161[label="",style="solid", color="black", weight=3]; 120[label="primCmpInt (Pos Zero) (Pos vxw400)",fontsize=16,color="burlywood",shape="box"];2805[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];120 -> 2805[label="",style="solid", color="burlywood", weight=9]; 2805 -> 162[label="",style="solid", color="burlywood", weight=3]; 2806[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];120 -> 2806[label="",style="solid", color="burlywood", weight=9]; 2806 -> 163[label="",style="solid", color="burlywood", weight=3]; 121[label="primCmpInt (Pos Zero) (Neg vxw400)",fontsize=16,color="burlywood",shape="box"];2807[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];121 -> 2807[label="",style="solid", color="burlywood", weight=9]; 2807 -> 164[label="",style="solid", color="burlywood", weight=3]; 2808[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];121 -> 2808[label="",style="solid", color="burlywood", weight=9]; 2808 -> 165[label="",style="solid", color="burlywood", weight=3]; 122[label="primCmpInt (Neg (Succ vxw300)) (Pos vxw400)",fontsize=16,color="black",shape="box"];122 -> 166[label="",style="solid", color="black", weight=3]; 123[label="primCmpInt (Neg (Succ vxw300)) (Neg vxw400)",fontsize=16,color="black",shape="box"];123 -> 167[label="",style="solid", color="black", weight=3]; 124[label="primCmpInt (Neg Zero) (Pos vxw400)",fontsize=16,color="burlywood",shape="box"];2809[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];124 -> 2809[label="",style="solid", color="burlywood", weight=9]; 2809 -> 168[label="",style="solid", color="burlywood", weight=3]; 2810[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];124 -> 2810[label="",style="solid", color="burlywood", weight=9]; 2810 -> 169[label="",style="solid", color="burlywood", weight=3]; 125[label="primCmpInt (Neg Zero) (Neg vxw400)",fontsize=16,color="burlywood",shape="box"];2811[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];125 -> 2811[label="",style="solid", color="burlywood", weight=9]; 2811 -> 170[label="",style="solid", color="burlywood", weight=3]; 2812[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];125 -> 2812[label="",style="solid", color="burlywood", weight=9]; 2812 -> 171[label="",style="solid", color="burlywood", weight=3]; 126[label="primCmpFloat (Float vxw30 (Pos vxw310)) (Float vxw400 vxw401)",fontsize=16,color="burlywood",shape="box"];2813[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];126 -> 2813[label="",style="solid", color="burlywood", weight=9]; 2813 -> 172[label="",style="solid", color="burlywood", weight=3]; 2814[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];126 -> 2814[label="",style="solid", color="burlywood", weight=9]; 2814 -> 173[label="",style="solid", color="burlywood", weight=3]; 127[label="primCmpFloat (Float vxw30 (Neg vxw310)) (Float vxw400 vxw401)",fontsize=16,color="burlywood",shape="box"];2815[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];127 -> 2815[label="",style="solid", color="burlywood", weight=9]; 2815 -> 174[label="",style="solid", color="burlywood", weight=3]; 2816[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];127 -> 2816[label="",style="solid", color="burlywood", weight=9]; 2816 -> 175[label="",style="solid", color="burlywood", weight=3]; 128 -> 16[label="",style="dashed", color="red", weight=0]; 128[label="compare (vxw30 * vxw401) (vxw400 * vxw31)",fontsize=16,color="magenta"];128 -> 176[label="",style="dashed", color="magenta", weight=3]; 128 -> 177[label="",style="dashed", color="magenta", weight=3]; 129 -> 22[label="",style="dashed", color="red", weight=0]; 129[label="compare (vxw30 * vxw401) (vxw400 * vxw31)",fontsize=16,color="magenta"];129 -> 178[label="",style="dashed", color="magenta", weight=3]; 129 -> 179[label="",style="dashed", color="magenta", weight=3]; 130[label="compare2 (Left vxw30) (Left vxw400) (Left vxw30 == Left vxw400)",fontsize=16,color="black",shape="box"];130 -> 180[label="",style="solid", color="black", weight=3]; 131[label="compare2 (Left vxw30) (Right vxw400) (Left vxw30 == Right vxw400)",fontsize=16,color="black",shape="box"];131 -> 181[label="",style="solid", color="black", weight=3]; 132[label="compare2 (Right vxw30) (Left vxw400) (Right vxw30 == Left vxw400)",fontsize=16,color="black",shape="box"];132 -> 182[label="",style="solid", color="black", weight=3]; 133[label="compare2 (Right vxw30) (Right vxw400) (Right vxw30 == Right vxw400)",fontsize=16,color="black",shape="box"];133 -> 183[label="",style="solid", color="black", weight=3]; 134[label="primCmpDouble (Double vxw30 (Pos vxw310)) (Double vxw400 vxw401)",fontsize=16,color="burlywood",shape="box"];2817[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];134 -> 2817[label="",style="solid", color="burlywood", weight=9]; 2817 -> 184[label="",style="solid", color="burlywood", weight=3]; 2818[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];134 -> 2818[label="",style="solid", color="burlywood", weight=9]; 2818 -> 185[label="",style="solid", color="burlywood", weight=3]; 135[label="primCmpDouble (Double vxw30 (Neg vxw310)) (Double vxw400 vxw401)",fontsize=16,color="burlywood",shape="box"];2819[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];135 -> 2819[label="",style="solid", color="burlywood", weight=9]; 2819 -> 186[label="",style="solid", color="burlywood", weight=3]; 2820[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];135 -> 2820[label="",style="solid", color="burlywood", weight=9]; 2820 -> 187[label="",style="solid", color="burlywood", weight=3]; 136[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];136 -> 188[label="",style="solid", color="black", weight=3]; 137[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];137 -> 189[label="",style="solid", color="black", weight=3]; 138[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];138 -> 190[label="",style="solid", color="black", weight=3]; 139[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];139 -> 191[label="",style="solid", color="black", weight=3]; 140[label="primCmpNat (Succ vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2821[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];140 -> 2821[label="",style="solid", color="burlywood", weight=9]; 2821 -> 192[label="",style="solid", color="burlywood", weight=3]; 2822[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];140 -> 2822[label="",style="solid", color="burlywood", weight=9]; 2822 -> 193[label="",style="solid", color="burlywood", weight=3]; 141[label="primCmpNat Zero vxw400",fontsize=16,color="burlywood",shape="box"];2823[label="vxw400/Succ vxw4000",fontsize=10,color="white",style="solid",shape="box"];141 -> 2823[label="",style="solid", color="burlywood", weight=9]; 2823 -> 194[label="",style="solid", color="burlywood", weight=3]; 2824[label="vxw400/Zero",fontsize=10,color="white",style="solid",shape="box"];141 -> 2824[label="",style="solid", color="burlywood", weight=9]; 2824 -> 195[label="",style="solid", color="burlywood", weight=3]; 142[label="vxw31",fontsize=16,color="green",shape="box"];143[label="vxw401",fontsize=16,color="green",shape="box"];144 -> 196[label="",style="dashed", color="red", weight=0]; 144[label="primCompAux0 vxw14 (compare vxw30 vxw400)",fontsize=16,color="magenta"];144 -> 197[label="",style="dashed", color="magenta", weight=3]; 144 -> 198[label="",style="dashed", color="magenta", weight=3]; 145[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];145 -> 199[label="",style="solid", color="black", weight=3]; 146[label="compare2 Nothing (Just vxw400) False",fontsize=16,color="black",shape="box"];146 -> 200[label="",style="solid", color="black", weight=3]; 147[label="compare2 (Just vxw30) Nothing False",fontsize=16,color="black",shape="box"];147 -> 201[label="",style="solid", color="black", weight=3]; 148 -> 202[label="",style="dashed", color="red", weight=0]; 148[label="compare2 (Just vxw30) (Just vxw400) (vxw30 == vxw400)",fontsize=16,color="magenta"];148 -> 203[label="",style="dashed", color="magenta", weight=3]; 148 -> 204[label="",style="dashed", color="magenta", weight=3]; 148 -> 205[label="",style="dashed", color="magenta", weight=3]; 149 -> 667[label="",style="dashed", color="red", weight=0]; 149[label="compare2 (vxw30,vxw31) (vxw400,vxw401) (vxw30 == vxw400 && vxw31 == vxw401)",fontsize=16,color="magenta"];149 -> 668[label="",style="dashed", color="magenta", weight=3]; 149 -> 669[label="",style="dashed", color="magenta", weight=3]; 149 -> 670[label="",style="dashed", color="magenta", weight=3]; 149 -> 671[label="",style="dashed", color="magenta", weight=3]; 149 -> 672[label="",style="dashed", color="magenta", weight=3]; 150[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];150 -> 212[label="",style="solid", color="black", weight=3]; 151[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];151 -> 213[label="",style="solid", color="black", weight=3]; 152[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];152 -> 214[label="",style="solid", color="black", weight=3]; 153[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];153 -> 215[label="",style="solid", color="black", weight=3]; 154[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];154 -> 216[label="",style="solid", color="black", weight=3]; 155[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];155 -> 217[label="",style="solid", color="black", weight=3]; 156[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];156 -> 218[label="",style="solid", color="black", weight=3]; 157[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];157 -> 219[label="",style="solid", color="black", weight=3]; 158[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];158 -> 220[label="",style="solid", color="black", weight=3]; 159 -> 714[label="",style="dashed", color="red", weight=0]; 159[label="compare2 (vxw30,vxw31,vxw32) (vxw400,vxw401,vxw402) (vxw30 == vxw400 && vxw31 == vxw401 && vxw32 == vxw402)",fontsize=16,color="magenta"];159 -> 715[label="",style="dashed", color="magenta", weight=3]; 159 -> 716[label="",style="dashed", color="magenta", weight=3]; 159 -> 717[label="",style="dashed", color="magenta", weight=3]; 159 -> 718[label="",style="dashed", color="magenta", weight=3]; 159 -> 719[label="",style="dashed", color="magenta", weight=3]; 159 -> 720[label="",style="dashed", color="magenta", weight=3]; 159 -> 721[label="",style="dashed", color="magenta", weight=3]; 160 -> 98[label="",style="dashed", color="red", weight=0]; 160[label="primCmpNat (Succ vxw300) vxw400",fontsize=16,color="magenta"];160 -> 229[label="",style="dashed", color="magenta", weight=3]; 160 -> 230[label="",style="dashed", color="magenta", weight=3]; 161[label="GT",fontsize=16,color="green",shape="box"];162[label="primCmpInt (Pos Zero) (Pos (Succ vxw4000))",fontsize=16,color="black",shape="box"];162 -> 231[label="",style="solid", color="black", weight=3]; 163[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];163 -> 232[label="",style="solid", color="black", weight=3]; 164[label="primCmpInt (Pos Zero) (Neg (Succ vxw4000))",fontsize=16,color="black",shape="box"];164 -> 233[label="",style="solid", color="black", weight=3]; 165[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];165 -> 234[label="",style="solid", color="black", weight=3]; 166[label="LT",fontsize=16,color="green",shape="box"];167 -> 98[label="",style="dashed", color="red", weight=0]; 167[label="primCmpNat vxw400 (Succ vxw300)",fontsize=16,color="magenta"];167 -> 235[label="",style="dashed", color="magenta", weight=3]; 167 -> 236[label="",style="dashed", color="magenta", weight=3]; 168[label="primCmpInt (Neg Zero) (Pos (Succ vxw4000))",fontsize=16,color="black",shape="box"];168 -> 237[label="",style="solid", color="black", weight=3]; 169[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];169 -> 238[label="",style="solid", color="black", weight=3]; 170[label="primCmpInt (Neg Zero) (Neg (Succ vxw4000))",fontsize=16,color="black",shape="box"];170 -> 239[label="",style="solid", color="black", weight=3]; 171[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];171 -> 240[label="",style="solid", color="black", weight=3]; 172[label="primCmpFloat (Float vxw30 (Pos vxw310)) (Float vxw400 (Pos vxw4010))",fontsize=16,color="black",shape="box"];172 -> 241[label="",style="solid", color="black", weight=3]; 173[label="primCmpFloat (Float vxw30 (Pos vxw310)) (Float vxw400 (Neg vxw4010))",fontsize=16,color="black",shape="box"];173 -> 242[label="",style="solid", color="black", weight=3]; 174[label="primCmpFloat (Float vxw30 (Neg vxw310)) (Float vxw400 (Pos vxw4010))",fontsize=16,color="black",shape="box"];174 -> 243[label="",style="solid", color="black", weight=3]; 175[label="primCmpFloat (Float vxw30 (Neg vxw310)) (Float vxw400 (Neg vxw4010))",fontsize=16,color="black",shape="box"];175 -> 244[label="",style="solid", color="black", weight=3]; 176[label="vxw30 * vxw401",fontsize=16,color="burlywood",shape="triangle"];2825[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];176 -> 2825[label="",style="solid", color="burlywood", weight=9]; 2825 -> 245[label="",style="solid", color="burlywood", weight=3]; 177 -> 176[label="",style="dashed", color="red", weight=0]; 177[label="vxw400 * vxw31",fontsize=16,color="magenta"];177 -> 246[label="",style="dashed", color="magenta", weight=3]; 177 -> 247[label="",style="dashed", color="magenta", weight=3]; 178[label="vxw30 * vxw401",fontsize=16,color="black",shape="triangle"];178 -> 248[label="",style="solid", color="black", weight=3]; 179 -> 178[label="",style="dashed", color="red", weight=0]; 179[label="vxw400 * vxw31",fontsize=16,color="magenta"];179 -> 249[label="",style="dashed", color="magenta", weight=3]; 179 -> 250[label="",style="dashed", color="magenta", weight=3]; 180 -> 251[label="",style="dashed", color="red", weight=0]; 180[label="compare2 (Left vxw30) (Left vxw400) (vxw30 == vxw400)",fontsize=16,color="magenta"];180 -> 252[label="",style="dashed", color="magenta", weight=3]; 180 -> 253[label="",style="dashed", color="magenta", weight=3]; 180 -> 254[label="",style="dashed", color="magenta", weight=3]; 181[label="compare2 (Left vxw30) (Right vxw400) False",fontsize=16,color="black",shape="box"];181 -> 255[label="",style="solid", color="black", weight=3]; 182[label="compare2 (Right vxw30) (Left vxw400) False",fontsize=16,color="black",shape="box"];182 -> 256[label="",style="solid", color="black", weight=3]; 183 -> 257[label="",style="dashed", color="red", weight=0]; 183[label="compare2 (Right vxw30) (Right vxw400) (vxw30 == vxw400)",fontsize=16,color="magenta"];183 -> 258[label="",style="dashed", color="magenta", weight=3]; 183 -> 259[label="",style="dashed", color="magenta", weight=3]; 183 -> 260[label="",style="dashed", color="magenta", weight=3]; 184[label="primCmpDouble (Double vxw30 (Pos vxw310)) (Double vxw400 (Pos vxw4010))",fontsize=16,color="black",shape="box"];184 -> 261[label="",style="solid", color="black", weight=3]; 185[label="primCmpDouble (Double vxw30 (Pos vxw310)) (Double vxw400 (Neg vxw4010))",fontsize=16,color="black",shape="box"];185 -> 262[label="",style="solid", color="black", weight=3]; 186[label="primCmpDouble (Double vxw30 (Neg vxw310)) (Double vxw400 (Pos vxw4010))",fontsize=16,color="black",shape="box"];186 -> 263[label="",style="solid", color="black", weight=3]; 187[label="primCmpDouble (Double vxw30 (Neg vxw310)) (Double vxw400 (Neg vxw4010))",fontsize=16,color="black",shape="box"];187 -> 264[label="",style="solid", color="black", weight=3]; 188[label="compare2 False False True",fontsize=16,color="black",shape="box"];188 -> 265[label="",style="solid", color="black", weight=3]; 189[label="compare2 False True False",fontsize=16,color="black",shape="box"];189 -> 266[label="",style="solid", color="black", weight=3]; 190[label="compare2 True False False",fontsize=16,color="black",shape="box"];190 -> 267[label="",style="solid", color="black", weight=3]; 191[label="compare2 True True True",fontsize=16,color="black",shape="box"];191 -> 268[label="",style="solid", color="black", weight=3]; 192[label="primCmpNat (Succ vxw300) (Succ vxw4000)",fontsize=16,color="black",shape="box"];192 -> 269[label="",style="solid", color="black", weight=3]; 193[label="primCmpNat (Succ vxw300) Zero",fontsize=16,color="black",shape="box"];193 -> 270[label="",style="solid", color="black", weight=3]; 194[label="primCmpNat Zero (Succ vxw4000)",fontsize=16,color="black",shape="box"];194 -> 271[label="",style="solid", color="black", weight=3]; 195[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];195 -> 272[label="",style="solid", color="black", weight=3]; 197[label="vxw14",fontsize=16,color="green",shape="box"];198[label="compare vxw30 vxw400",fontsize=16,color="blue",shape="box"];2826[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2826[label="",style="solid", color="blue", weight=9]; 2826 -> 273[label="",style="solid", color="blue", weight=3]; 2827[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2827[label="",style="solid", color="blue", weight=9]; 2827 -> 274[label="",style="solid", color="blue", weight=3]; 2828[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 275[label="",style="solid", color="blue", weight=3]; 2829[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2829[label="",style="solid", color="blue", weight=9]; 2829 -> 276[label="",style="solid", color="blue", weight=3]; 2830[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2830[label="",style="solid", color="blue", weight=9]; 2830 -> 277[label="",style="solid", color="blue", weight=3]; 2831[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 278[label="",style="solid", color="blue", weight=3]; 2832[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 279[label="",style="solid", color="blue", weight=3]; 2833[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 280[label="",style="solid", color="blue", weight=3]; 2834[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2834[label="",style="solid", color="blue", weight=9]; 2834 -> 281[label="",style="solid", color="blue", weight=3]; 2835[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 282[label="",style="solid", color="blue", weight=3]; 2836[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 283[label="",style="solid", color="blue", weight=3]; 2837[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 284[label="",style="solid", color="blue", weight=3]; 2838[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2838[label="",style="solid", color="blue", weight=9]; 2838 -> 285[label="",style="solid", color="blue", weight=3]; 2839[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];198 -> 2839[label="",style="solid", color="blue", weight=9]; 2839 -> 286[label="",style="solid", color="blue", weight=3]; 196[label="primCompAux0 vxw18 vxw19",fontsize=16,color="burlywood",shape="triangle"];2840[label="vxw19/LT",fontsize=10,color="white",style="solid",shape="box"];196 -> 2840[label="",style="solid", color="burlywood", weight=9]; 2840 -> 287[label="",style="solid", color="burlywood", weight=3]; 2841[label="vxw19/EQ",fontsize=10,color="white",style="solid",shape="box"];196 -> 2841[label="",style="solid", color="burlywood", weight=9]; 2841 -> 288[label="",style="solid", color="burlywood", weight=3]; 2842[label="vxw19/GT",fontsize=10,color="white",style="solid",shape="box"];196 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 289[label="",style="solid", color="burlywood", weight=3]; 199[label="EQ",fontsize=16,color="green",shape="box"];200[label="compare1 Nothing (Just vxw400) (Nothing <= Just vxw400)",fontsize=16,color="black",shape="box"];200 -> 290[label="",style="solid", color="black", weight=3]; 201[label="compare1 (Just vxw30) Nothing (Just vxw30 <= Nothing)",fontsize=16,color="black",shape="box"];201 -> 291[label="",style="solid", color="black", weight=3]; 203[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2843[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2843[label="",style="solid", color="blue", weight=9]; 2843 -> 292[label="",style="solid", color="blue", weight=3]; 2844[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2844[label="",style="solid", color="blue", weight=9]; 2844 -> 293[label="",style="solid", color="blue", weight=3]; 2845[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2845[label="",style="solid", color="blue", weight=9]; 2845 -> 294[label="",style="solid", color="blue", weight=3]; 2846[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2846[label="",style="solid", color="blue", weight=9]; 2846 -> 295[label="",style="solid", color="blue", weight=3]; 2847[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2847[label="",style="solid", color="blue", weight=9]; 2847 -> 296[label="",style="solid", color="blue", weight=3]; 2848[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2848[label="",style="solid", color="blue", weight=9]; 2848 -> 297[label="",style="solid", color="blue", weight=3]; 2849[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2849[label="",style="solid", color="blue", weight=9]; 2849 -> 298[label="",style="solid", color="blue", weight=3]; 2850[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2850[label="",style="solid", color="blue", weight=9]; 2850 -> 299[label="",style="solid", color="blue", weight=3]; 2851[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2851[label="",style="solid", color="blue", weight=9]; 2851 -> 300[label="",style="solid", color="blue", weight=3]; 2852[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2852[label="",style="solid", color="blue", weight=9]; 2852 -> 301[label="",style="solid", color="blue", weight=3]; 2853[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2853[label="",style="solid", color="blue", weight=9]; 2853 -> 302[label="",style="solid", color="blue", weight=3]; 2854[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2854[label="",style="solid", color="blue", weight=9]; 2854 -> 303[label="",style="solid", color="blue", weight=3]; 2855[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2855[label="",style="solid", color="blue", weight=9]; 2855 -> 304[label="",style="solid", color="blue", weight=3]; 2856[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];203 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 305[label="",style="solid", color="blue", weight=3]; 204[label="vxw30",fontsize=16,color="green",shape="box"];205[label="vxw400",fontsize=16,color="green",shape="box"];202[label="compare2 (Just vxw24) (Just vxw25) vxw26",fontsize=16,color="burlywood",shape="triangle"];2857[label="vxw26/False",fontsize=10,color="white",style="solid",shape="box"];202 -> 2857[label="",style="solid", color="burlywood", weight=9]; 2857 -> 306[label="",style="solid", color="burlywood", weight=3]; 2858[label="vxw26/True",fontsize=10,color="white",style="solid",shape="box"];202 -> 2858[label="",style="solid", color="burlywood", weight=9]; 2858 -> 307[label="",style="solid", color="burlywood", weight=3]; 668 -> 746[label="",style="dashed", color="red", weight=0]; 668[label="vxw30 == vxw400 && vxw31 == vxw401",fontsize=16,color="magenta"];668 -> 747[label="",style="dashed", color="magenta", weight=3]; 668 -> 748[label="",style="dashed", color="magenta", weight=3]; 669[label="vxw30",fontsize=16,color="green",shape="box"];670[label="vxw400",fontsize=16,color="green",shape="box"];671[label="vxw401",fontsize=16,color="green",shape="box"];672[label="vxw31",fontsize=16,color="green",shape="box"];667[label="compare2 (vxw73,vxw74) (vxw75,vxw76) vxw77",fontsize=16,color="burlywood",shape="triangle"];2859[label="vxw77/False",fontsize=10,color="white",style="solid",shape="box"];667 -> 2859[label="",style="solid", color="burlywood", weight=9]; 2859 -> 692[label="",style="solid", color="burlywood", weight=3]; 2860[label="vxw77/True",fontsize=10,color="white",style="solid",shape="box"];667 -> 2860[label="",style="solid", color="burlywood", weight=9]; 2860 -> 693[label="",style="solid", color="burlywood", weight=3]; 212[label="EQ",fontsize=16,color="green",shape="box"];213[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];213 -> 324[label="",style="solid", color="black", weight=3]; 214[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];214 -> 325[label="",style="solid", color="black", weight=3]; 215[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];215 -> 326[label="",style="solid", color="black", weight=3]; 216[label="EQ",fontsize=16,color="green",shape="box"];217[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];217 -> 327[label="",style="solid", color="black", weight=3]; 218[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];218 -> 328[label="",style="solid", color="black", weight=3]; 219[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];219 -> 329[label="",style="solid", color="black", weight=3]; 220[label="EQ",fontsize=16,color="green",shape="box"];715[label="vxw401",fontsize=16,color="green",shape="box"];716[label="vxw31",fontsize=16,color="green",shape="box"];717[label="vxw402",fontsize=16,color="green",shape="box"];718[label="vxw30",fontsize=16,color="green",shape="box"];719 -> 746[label="",style="dashed", color="red", weight=0]; 719[label="vxw30 == vxw400 && vxw31 == vxw401 && vxw32 == vxw402",fontsize=16,color="magenta"];719 -> 749[label="",style="dashed", color="magenta", weight=3]; 719 -> 750[label="",style="dashed", color="magenta", weight=3]; 720[label="vxw32",fontsize=16,color="green",shape="box"];721[label="vxw400",fontsize=16,color="green",shape="box"];714[label="compare2 (vxw46,vxw47,vxw48) (vxw49,vxw50,vxw51) vxw85",fontsize=16,color="burlywood",shape="triangle"];2861[label="vxw85/False",fontsize=10,color="white",style="solid",shape="box"];714 -> 2861[label="",style="solid", color="burlywood", weight=9]; 2861 -> 730[label="",style="solid", color="burlywood", weight=3]; 2862[label="vxw85/True",fontsize=10,color="white",style="solid",shape="box"];714 -> 2862[label="",style="solid", color="burlywood", weight=9]; 2862 -> 731[label="",style="solid", color="burlywood", weight=3]; 229[label="Succ vxw300",fontsize=16,color="green",shape="box"];230[label="vxw400",fontsize=16,color="green",shape="box"];231 -> 98[label="",style="dashed", color="red", weight=0]; 231[label="primCmpNat Zero (Succ vxw4000)",fontsize=16,color="magenta"];231 -> 346[label="",style="dashed", color="magenta", weight=3]; 231 -> 347[label="",style="dashed", color="magenta", weight=3]; 232[label="EQ",fontsize=16,color="green",shape="box"];233[label="GT",fontsize=16,color="green",shape="box"];234[label="EQ",fontsize=16,color="green",shape="box"];235[label="vxw400",fontsize=16,color="green",shape="box"];236[label="Succ vxw300",fontsize=16,color="green",shape="box"];237[label="LT",fontsize=16,color="green",shape="box"];238[label="EQ",fontsize=16,color="green",shape="box"];239 -> 98[label="",style="dashed", color="red", weight=0]; 239[label="primCmpNat (Succ vxw4000) Zero",fontsize=16,color="magenta"];239 -> 348[label="",style="dashed", color="magenta", weight=3]; 239 -> 349[label="",style="dashed", color="magenta", weight=3]; 240[label="EQ",fontsize=16,color="green",shape="box"];241 -> 22[label="",style="dashed", color="red", weight=0]; 241[label="compare (vxw30 * Pos vxw4010) (Pos vxw310 * vxw400)",fontsize=16,color="magenta"];241 -> 350[label="",style="dashed", color="magenta", weight=3]; 241 -> 351[label="",style="dashed", color="magenta", weight=3]; 242 -> 22[label="",style="dashed", color="red", weight=0]; 242[label="compare (vxw30 * Pos vxw4010) (Neg vxw310 * vxw400)",fontsize=16,color="magenta"];242 -> 352[label="",style="dashed", color="magenta", weight=3]; 242 -> 353[label="",style="dashed", color="magenta", weight=3]; 243 -> 22[label="",style="dashed", color="red", weight=0]; 243[label="compare (vxw30 * Neg vxw4010) (Pos vxw310 * vxw400)",fontsize=16,color="magenta"];243 -> 354[label="",style="dashed", color="magenta", weight=3]; 243 -> 355[label="",style="dashed", color="magenta", weight=3]; 244 -> 22[label="",style="dashed", color="red", weight=0]; 244[label="compare (vxw30 * Neg vxw4010) (Neg vxw310 * vxw400)",fontsize=16,color="magenta"];244 -> 356[label="",style="dashed", color="magenta", weight=3]; 244 -> 357[label="",style="dashed", color="magenta", weight=3]; 245[label="Integer vxw300 * vxw401",fontsize=16,color="burlywood",shape="box"];2863[label="vxw401/Integer vxw4010",fontsize=10,color="white",style="solid",shape="box"];245 -> 2863[label="",style="solid", color="burlywood", weight=9]; 2863 -> 358[label="",style="solid", color="burlywood", weight=3]; 246[label="vxw31",fontsize=16,color="green",shape="box"];247[label="vxw400",fontsize=16,color="green",shape="box"];248[label="primMulInt vxw30 vxw401",fontsize=16,color="burlywood",shape="triangle"];2864[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];248 -> 2864[label="",style="solid", color="burlywood", weight=9]; 2864 -> 359[label="",style="solid", color="burlywood", weight=3]; 2865[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];248 -> 2865[label="",style="solid", color="burlywood", weight=9]; 2865 -> 360[label="",style="solid", color="burlywood", weight=3]; 249[label="vxw31",fontsize=16,color="green",shape="box"];250[label="vxw400",fontsize=16,color="green",shape="box"];252[label="vxw400",fontsize=16,color="green",shape="box"];253[label="vxw30",fontsize=16,color="green",shape="box"];254[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2866[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 361[label="",style="solid", color="blue", weight=3]; 2867[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 362[label="",style="solid", color="blue", weight=3]; 2868[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 363[label="",style="solid", color="blue", weight=3]; 2869[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2869[label="",style="solid", color="blue", weight=9]; 2869 -> 364[label="",style="solid", color="blue", weight=3]; 2870[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2870[label="",style="solid", color="blue", weight=9]; 2870 -> 365[label="",style="solid", color="blue", weight=3]; 2871[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2871[label="",style="solid", color="blue", weight=9]; 2871 -> 366[label="",style="solid", color="blue", weight=3]; 2872[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2872[label="",style="solid", color="blue", weight=9]; 2872 -> 367[label="",style="solid", color="blue", weight=3]; 2873[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2873[label="",style="solid", color="blue", weight=9]; 2873 -> 368[label="",style="solid", color="blue", weight=3]; 2874[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2874[label="",style="solid", color="blue", weight=9]; 2874 -> 369[label="",style="solid", color="blue", weight=3]; 2875[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2875[label="",style="solid", color="blue", weight=9]; 2875 -> 370[label="",style="solid", color="blue", weight=3]; 2876[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 371[label="",style="solid", color="blue", weight=3]; 2877[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 372[label="",style="solid", color="blue", weight=3]; 2878[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2878[label="",style="solid", color="blue", weight=9]; 2878 -> 373[label="",style="solid", color="blue", weight=3]; 2879[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2879[label="",style="solid", color="blue", weight=9]; 2879 -> 374[label="",style="solid", color="blue", weight=3]; 251[label="compare2 (Left vxw57) (Left vxw58) vxw59",fontsize=16,color="burlywood",shape="triangle"];2880[label="vxw59/False",fontsize=10,color="white",style="solid",shape="box"];251 -> 2880[label="",style="solid", color="burlywood", weight=9]; 2880 -> 375[label="",style="solid", color="burlywood", weight=3]; 2881[label="vxw59/True",fontsize=10,color="white",style="solid",shape="box"];251 -> 2881[label="",style="solid", color="burlywood", weight=9]; 2881 -> 376[label="",style="solid", color="burlywood", weight=3]; 255[label="compare1 (Left vxw30) (Right vxw400) (Left vxw30 <= Right vxw400)",fontsize=16,color="black",shape="box"];255 -> 377[label="",style="solid", color="black", weight=3]; 256[label="compare1 (Right vxw30) (Left vxw400) (Right vxw30 <= Left vxw400)",fontsize=16,color="black",shape="box"];256 -> 378[label="",style="solid", color="black", weight=3]; 258[label="vxw400",fontsize=16,color="green",shape="box"];259[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2882[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2882[label="",style="solid", color="blue", weight=9]; 2882 -> 379[label="",style="solid", color="blue", weight=3]; 2883[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 380[label="",style="solid", color="blue", weight=3]; 2884[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2884[label="",style="solid", color="blue", weight=9]; 2884 -> 381[label="",style="solid", color="blue", weight=3]; 2885[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 382[label="",style="solid", color="blue", weight=3]; 2886[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 383[label="",style="solid", color="blue", weight=3]; 2887[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 384[label="",style="solid", color="blue", weight=3]; 2888[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 385[label="",style="solid", color="blue", weight=3]; 2889[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 386[label="",style="solid", color="blue", weight=3]; 2890[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2890[label="",style="solid", color="blue", weight=9]; 2890 -> 387[label="",style="solid", color="blue", weight=3]; 2891[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 388[label="",style="solid", color="blue", weight=3]; 2892[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 389[label="",style="solid", color="blue", weight=3]; 2893[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 390[label="",style="solid", color="blue", weight=3]; 2894[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2894[label="",style="solid", color="blue", weight=9]; 2894 -> 391[label="",style="solid", color="blue", weight=3]; 2895[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];259 -> 2895[label="",style="solid", color="blue", weight=9]; 2895 -> 392[label="",style="solid", color="blue", weight=3]; 260[label="vxw30",fontsize=16,color="green",shape="box"];257[label="compare2 (Right vxw64) (Right vxw65) vxw66",fontsize=16,color="burlywood",shape="triangle"];2896[label="vxw66/False",fontsize=10,color="white",style="solid",shape="box"];257 -> 2896[label="",style="solid", color="burlywood", weight=9]; 2896 -> 393[label="",style="solid", color="burlywood", weight=3]; 2897[label="vxw66/True",fontsize=10,color="white",style="solid",shape="box"];257 -> 2897[label="",style="solid", color="burlywood", weight=9]; 2897 -> 394[label="",style="solid", color="burlywood", weight=3]; 261 -> 22[label="",style="dashed", color="red", weight=0]; 261[label="compare (vxw30 * Pos vxw4010) (Pos vxw310 * vxw400)",fontsize=16,color="magenta"];261 -> 395[label="",style="dashed", color="magenta", weight=3]; 261 -> 396[label="",style="dashed", color="magenta", weight=3]; 262 -> 22[label="",style="dashed", color="red", weight=0]; 262[label="compare (vxw30 * Pos vxw4010) (Neg vxw310 * vxw400)",fontsize=16,color="magenta"];262 -> 397[label="",style="dashed", color="magenta", weight=3]; 262 -> 398[label="",style="dashed", color="magenta", weight=3]; 263 -> 22[label="",style="dashed", color="red", weight=0]; 263[label="compare (vxw30 * Neg vxw4010) (Pos vxw310 * vxw400)",fontsize=16,color="magenta"];263 -> 399[label="",style="dashed", color="magenta", weight=3]; 263 -> 400[label="",style="dashed", color="magenta", weight=3]; 264 -> 22[label="",style="dashed", color="red", weight=0]; 264[label="compare (vxw30 * Neg vxw4010) (Neg vxw310 * vxw400)",fontsize=16,color="magenta"];264 -> 401[label="",style="dashed", color="magenta", weight=3]; 264 -> 402[label="",style="dashed", color="magenta", weight=3]; 265[label="EQ",fontsize=16,color="green",shape="box"];266[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];266 -> 403[label="",style="solid", color="black", weight=3]; 267[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];267 -> 404[label="",style="solid", color="black", weight=3]; 268[label="EQ",fontsize=16,color="green",shape="box"];269 -> 98[label="",style="dashed", color="red", weight=0]; 269[label="primCmpNat vxw300 vxw4000",fontsize=16,color="magenta"];269 -> 405[label="",style="dashed", color="magenta", weight=3]; 269 -> 406[label="",style="dashed", color="magenta", weight=3]; 270[label="GT",fontsize=16,color="green",shape="box"];271[label="LT",fontsize=16,color="green",shape="box"];272[label="EQ",fontsize=16,color="green",shape="box"];273 -> 15[label="",style="dashed", color="red", weight=0]; 273[label="compare vxw30 vxw400",fontsize=16,color="magenta"];273 -> 407[label="",style="dashed", color="magenta", weight=3]; 273 -> 408[label="",style="dashed", color="magenta", weight=3]; 274 -> 16[label="",style="dashed", color="red", weight=0]; 274[label="compare vxw30 vxw400",fontsize=16,color="magenta"];274 -> 409[label="",style="dashed", color="magenta", weight=3]; 274 -> 410[label="",style="dashed", color="magenta", weight=3]; 275 -> 17[label="",style="dashed", color="red", weight=0]; 275[label="compare vxw30 vxw400",fontsize=16,color="magenta"];275 -> 411[label="",style="dashed", color="magenta", weight=3]; 275 -> 412[label="",style="dashed", color="magenta", weight=3]; 276 -> 18[label="",style="dashed", color="red", weight=0]; 276[label="compare vxw30 vxw400",fontsize=16,color="magenta"];276 -> 413[label="",style="dashed", color="magenta", weight=3]; 276 -> 414[label="",style="dashed", color="magenta", weight=3]; 277 -> 19[label="",style="dashed", color="red", weight=0]; 277[label="compare vxw30 vxw400",fontsize=16,color="magenta"];277 -> 415[label="",style="dashed", color="magenta", weight=3]; 277 -> 416[label="",style="dashed", color="magenta", weight=3]; 278 -> 20[label="",style="dashed", color="red", weight=0]; 278[label="compare vxw30 vxw400",fontsize=16,color="magenta"];278 -> 417[label="",style="dashed", color="magenta", weight=3]; 278 -> 418[label="",style="dashed", color="magenta", weight=3]; 279 -> 21[label="",style="dashed", color="red", weight=0]; 279[label="compare vxw30 vxw400",fontsize=16,color="magenta"];279 -> 419[label="",style="dashed", color="magenta", weight=3]; 279 -> 420[label="",style="dashed", color="magenta", weight=3]; 280 -> 22[label="",style="dashed", color="red", weight=0]; 280[label="compare vxw30 vxw400",fontsize=16,color="magenta"];280 -> 421[label="",style="dashed", color="magenta", weight=3]; 280 -> 422[label="",style="dashed", color="magenta", weight=3]; 281 -> 23[label="",style="dashed", color="red", weight=0]; 281[label="compare vxw30 vxw400",fontsize=16,color="magenta"];281 -> 423[label="",style="dashed", color="magenta", weight=3]; 281 -> 424[label="",style="dashed", color="magenta", weight=3]; 282 -> 24[label="",style="dashed", color="red", weight=0]; 282[label="compare vxw30 vxw400",fontsize=16,color="magenta"];282 -> 425[label="",style="dashed", color="magenta", weight=3]; 282 -> 426[label="",style="dashed", color="magenta", weight=3]; 283 -> 25[label="",style="dashed", color="red", weight=0]; 283[label="compare vxw30 vxw400",fontsize=16,color="magenta"];283 -> 427[label="",style="dashed", color="magenta", weight=3]; 283 -> 428[label="",style="dashed", color="magenta", weight=3]; 284 -> 26[label="",style="dashed", color="red", weight=0]; 284[label="compare vxw30 vxw400",fontsize=16,color="magenta"];284 -> 429[label="",style="dashed", color="magenta", weight=3]; 284 -> 430[label="",style="dashed", color="magenta", weight=3]; 285 -> 27[label="",style="dashed", color="red", weight=0]; 285[label="compare vxw30 vxw400",fontsize=16,color="magenta"];285 -> 431[label="",style="dashed", color="magenta", weight=3]; 285 -> 432[label="",style="dashed", color="magenta", weight=3]; 286 -> 28[label="",style="dashed", color="red", weight=0]; 286[label="compare vxw30 vxw400",fontsize=16,color="magenta"];286 -> 433[label="",style="dashed", color="magenta", weight=3]; 286 -> 434[label="",style="dashed", color="magenta", weight=3]; 287[label="primCompAux0 vxw18 LT",fontsize=16,color="black",shape="box"];287 -> 435[label="",style="solid", color="black", weight=3]; 288[label="primCompAux0 vxw18 EQ",fontsize=16,color="black",shape="box"];288 -> 436[label="",style="solid", color="black", weight=3]; 289[label="primCompAux0 vxw18 GT",fontsize=16,color="black",shape="box"];289 -> 437[label="",style="solid", color="black", weight=3]; 290[label="compare1 Nothing (Just vxw400) True",fontsize=16,color="black",shape="box"];290 -> 438[label="",style="solid", color="black", weight=3]; 291[label="compare1 (Just vxw30) Nothing False",fontsize=16,color="black",shape="box"];291 -> 439[label="",style="solid", color="black", weight=3]; 292[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];292 -> 440[label="",style="solid", color="black", weight=3]; 293[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2898[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];293 -> 2898[label="",style="solid", color="burlywood", weight=9]; 2898 -> 441[label="",style="solid", color="burlywood", weight=3]; 294[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2899[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];294 -> 2899[label="",style="solid", color="burlywood", weight=9]; 2899 -> 442[label="",style="solid", color="burlywood", weight=3]; 295[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2900[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];295 -> 2900[label="",style="solid", color="burlywood", weight=9]; 2900 -> 443[label="",style="solid", color="burlywood", weight=3]; 296[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];296 -> 444[label="",style="solid", color="black", weight=3]; 297[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2901[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];297 -> 2901[label="",style="solid", color="burlywood", weight=9]; 2901 -> 445[label="",style="solid", color="burlywood", weight=3]; 2902[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];297 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 446[label="",style="solid", color="burlywood", weight=3]; 298[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2903[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];298 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 447[label="",style="solid", color="burlywood", weight=3]; 299[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];299 -> 448[label="",style="solid", color="black", weight=3]; 300[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2904[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];300 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 449[label="",style="solid", color="burlywood", weight=3]; 301[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];301 -> 450[label="",style="solid", color="black", weight=3]; 302[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2905[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];302 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 451[label="",style="solid", color="burlywood", weight=3]; 2906[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];302 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 452[label="",style="solid", color="burlywood", weight=3]; 303[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2907[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];303 -> 2907[label="",style="solid", color="burlywood", weight=9]; 2907 -> 453[label="",style="solid", color="burlywood", weight=3]; 2908[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];303 -> 2908[label="",style="solid", color="burlywood", weight=9]; 2908 -> 454[label="",style="solid", color="burlywood", weight=3]; 304[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2909[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];304 -> 2909[label="",style="solid", color="burlywood", weight=9]; 2909 -> 455[label="",style="solid", color="burlywood", weight=3]; 2910[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];304 -> 2910[label="",style="solid", color="burlywood", weight=9]; 2910 -> 456[label="",style="solid", color="burlywood", weight=3]; 2911[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];304 -> 2911[label="",style="solid", color="burlywood", weight=9]; 2911 -> 457[label="",style="solid", color="burlywood", weight=3]; 305[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2912[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];305 -> 2912[label="",style="solid", color="burlywood", weight=9]; 2912 -> 458[label="",style="solid", color="burlywood", weight=3]; 2913[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];305 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 459[label="",style="solid", color="burlywood", weight=3]; 306[label="compare2 (Just vxw24) (Just vxw25) False",fontsize=16,color="black",shape="box"];306 -> 460[label="",style="solid", color="black", weight=3]; 307[label="compare2 (Just vxw24) (Just vxw25) True",fontsize=16,color="black",shape="box"];307 -> 461[label="",style="solid", color="black", weight=3]; 747[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2914[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2914[label="",style="solid", color="blue", weight=9]; 2914 -> 755[label="",style="solid", color="blue", weight=3]; 2915[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 756[label="",style="solid", color="blue", weight=3]; 2916[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 757[label="",style="solid", color="blue", weight=3]; 2917[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 758[label="",style="solid", color="blue", weight=3]; 2918[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 759[label="",style="solid", color="blue", weight=3]; 2919[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2919[label="",style="solid", color="blue", weight=9]; 2919 -> 760[label="",style="solid", color="blue", weight=3]; 2920[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2920[label="",style="solid", color="blue", weight=9]; 2920 -> 761[label="",style="solid", color="blue", weight=3]; 2921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2921[label="",style="solid", color="blue", weight=9]; 2921 -> 762[label="",style="solid", color="blue", weight=3]; 2922[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2922[label="",style="solid", color="blue", weight=9]; 2922 -> 763[label="",style="solid", color="blue", weight=3]; 2923[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2923[label="",style="solid", color="blue", weight=9]; 2923 -> 764[label="",style="solid", color="blue", weight=3]; 2924[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2924[label="",style="solid", color="blue", weight=9]; 2924 -> 765[label="",style="solid", color="blue", weight=3]; 2925[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2925[label="",style="solid", color="blue", weight=9]; 2925 -> 766[label="",style="solid", color="blue", weight=3]; 2926[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2926[label="",style="solid", color="blue", weight=9]; 2926 -> 767[label="",style="solid", color="blue", weight=3]; 2927[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];747 -> 2927[label="",style="solid", color="blue", weight=9]; 2927 -> 768[label="",style="solid", color="blue", weight=3]; 748[label="vxw31 == vxw401",fontsize=16,color="blue",shape="box"];2928[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2928[label="",style="solid", color="blue", weight=9]; 2928 -> 769[label="",style="solid", color="blue", weight=3]; 2929[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2929[label="",style="solid", color="blue", weight=9]; 2929 -> 770[label="",style="solid", color="blue", weight=3]; 2930[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2930[label="",style="solid", color="blue", weight=9]; 2930 -> 771[label="",style="solid", color="blue", weight=3]; 2931[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2931[label="",style="solid", color="blue", weight=9]; 2931 -> 772[label="",style="solid", color="blue", weight=3]; 2932[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 773[label="",style="solid", color="blue", weight=3]; 2933[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 774[label="",style="solid", color="blue", weight=3]; 2934[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 775[label="",style="solid", color="blue", weight=3]; 2935[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 776[label="",style="solid", color="blue", weight=3]; 2936[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 777[label="",style="solid", color="blue", weight=3]; 2937[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 778[label="",style="solid", color="blue", weight=3]; 2938[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 779[label="",style="solid", color="blue", weight=3]; 2939[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 780[label="",style="solid", color="blue", weight=3]; 2940[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 781[label="",style="solid", color="blue", weight=3]; 2941[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 782[label="",style="solid", color="blue", weight=3]; 746[label="vxw90 && vxw91",fontsize=16,color="burlywood",shape="triangle"];2942[label="vxw90/False",fontsize=10,color="white",style="solid",shape="box"];746 -> 2942[label="",style="solid", color="burlywood", weight=9]; 2942 -> 783[label="",style="solid", color="burlywood", weight=3]; 2943[label="vxw90/True",fontsize=10,color="white",style="solid",shape="box"];746 -> 2943[label="",style="solid", color="burlywood", weight=9]; 2943 -> 784[label="",style="solid", color="burlywood", weight=3]; 692[label="compare2 (vxw73,vxw74) (vxw75,vxw76) False",fontsize=16,color="black",shape="box"];692 -> 785[label="",style="solid", color="black", weight=3]; 693[label="compare2 (vxw73,vxw74) (vxw75,vxw76) True",fontsize=16,color="black",shape="box"];693 -> 786[label="",style="solid", color="black", weight=3]; 324[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];324 -> 492[label="",style="solid", color="black", weight=3]; 325[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];325 -> 493[label="",style="solid", color="black", weight=3]; 326[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];326 -> 494[label="",style="solid", color="black", weight=3]; 327[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];327 -> 495[label="",style="solid", color="black", weight=3]; 328[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];328 -> 496[label="",style="solid", color="black", weight=3]; 329[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];329 -> 497[label="",style="solid", color="black", weight=3]; 749[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2944[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 787[label="",style="solid", color="blue", weight=3]; 2945[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 788[label="",style="solid", color="blue", weight=3]; 2946[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 789[label="",style="solid", color="blue", weight=3]; 2947[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 790[label="",style="solid", color="blue", weight=3]; 2948[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 791[label="",style="solid", color="blue", weight=3]; 2949[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 792[label="",style="solid", color="blue", weight=3]; 2950[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 793[label="",style="solid", color="blue", weight=3]; 2951[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 794[label="",style="solid", color="blue", weight=3]; 2952[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 795[label="",style="solid", color="blue", weight=3]; 2953[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 796[label="",style="solid", color="blue", weight=3]; 2954[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 797[label="",style="solid", color="blue", weight=3]; 2955[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2955[label="",style="solid", color="blue", weight=9]; 2955 -> 798[label="",style="solid", color="blue", weight=3]; 2956[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 799[label="",style="solid", color="blue", weight=3]; 2957[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2957[label="",style="solid", color="blue", weight=9]; 2957 -> 800[label="",style="solid", color="blue", weight=3]; 750 -> 746[label="",style="dashed", color="red", weight=0]; 750[label="vxw31 == vxw401 && vxw32 == vxw402",fontsize=16,color="magenta"];750 -> 801[label="",style="dashed", color="magenta", weight=3]; 750 -> 802[label="",style="dashed", color="magenta", weight=3]; 730[label="compare2 (vxw46,vxw47,vxw48) (vxw49,vxw50,vxw51) False",fontsize=16,color="black",shape="box"];730 -> 803[label="",style="solid", color="black", weight=3]; 731[label="compare2 (vxw46,vxw47,vxw48) (vxw49,vxw50,vxw51) True",fontsize=16,color="black",shape="box"];731 -> 804[label="",style="solid", color="black", weight=3]; 346[label="Zero",fontsize=16,color="green",shape="box"];347[label="Succ vxw4000",fontsize=16,color="green",shape="box"];348[label="Succ vxw4000",fontsize=16,color="green",shape="box"];349[label="Zero",fontsize=16,color="green",shape="box"];350 -> 178[label="",style="dashed", color="red", weight=0]; 350[label="vxw30 * Pos vxw4010",fontsize=16,color="magenta"];350 -> 528[label="",style="dashed", color="magenta", weight=3]; 350 -> 529[label="",style="dashed", color="magenta", weight=3]; 351 -> 178[label="",style="dashed", color="red", weight=0]; 351[label="Pos vxw310 * vxw400",fontsize=16,color="magenta"];351 -> 530[label="",style="dashed", color="magenta", weight=3]; 351 -> 531[label="",style="dashed", color="magenta", weight=3]; 352 -> 178[label="",style="dashed", color="red", weight=0]; 352[label="vxw30 * Pos vxw4010",fontsize=16,color="magenta"];352 -> 532[label="",style="dashed", color="magenta", weight=3]; 352 -> 533[label="",style="dashed", color="magenta", weight=3]; 353 -> 178[label="",style="dashed", color="red", weight=0]; 353[label="Neg vxw310 * vxw400",fontsize=16,color="magenta"];353 -> 534[label="",style="dashed", color="magenta", weight=3]; 353 -> 535[label="",style="dashed", color="magenta", weight=3]; 354 -> 178[label="",style="dashed", color="red", weight=0]; 354[label="vxw30 * Neg vxw4010",fontsize=16,color="magenta"];354 -> 536[label="",style="dashed", color="magenta", weight=3]; 354 -> 537[label="",style="dashed", color="magenta", weight=3]; 355 -> 178[label="",style="dashed", color="red", weight=0]; 355[label="Pos vxw310 * vxw400",fontsize=16,color="magenta"];355 -> 538[label="",style="dashed", color="magenta", weight=3]; 355 -> 539[label="",style="dashed", color="magenta", weight=3]; 356 -> 178[label="",style="dashed", color="red", weight=0]; 356[label="vxw30 * Neg vxw4010",fontsize=16,color="magenta"];356 -> 540[label="",style="dashed", color="magenta", weight=3]; 356 -> 541[label="",style="dashed", color="magenta", weight=3]; 357 -> 178[label="",style="dashed", color="red", weight=0]; 357[label="Neg vxw310 * vxw400",fontsize=16,color="magenta"];357 -> 542[label="",style="dashed", color="magenta", weight=3]; 357 -> 543[label="",style="dashed", color="magenta", weight=3]; 358[label="Integer vxw300 * Integer vxw4010",fontsize=16,color="black",shape="box"];358 -> 544[label="",style="solid", color="black", weight=3]; 359[label="primMulInt (Pos vxw300) vxw401",fontsize=16,color="burlywood",shape="box"];2958[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];359 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 545[label="",style="solid", color="burlywood", weight=3]; 2959[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];359 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 546[label="",style="solid", color="burlywood", weight=3]; 360[label="primMulInt (Neg vxw300) vxw401",fontsize=16,color="burlywood",shape="box"];2960[label="vxw401/Pos vxw4010",fontsize=10,color="white",style="solid",shape="box"];360 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 547[label="",style="solid", color="burlywood", weight=3]; 2961[label="vxw401/Neg vxw4010",fontsize=10,color="white",style="solid",shape="box"];360 -> 2961[label="",style="solid", color="burlywood", weight=9]; 2961 -> 548[label="",style="solid", color="burlywood", weight=3]; 361 -> 292[label="",style="dashed", color="red", weight=0]; 361[label="vxw30 == vxw400",fontsize=16,color="magenta"];361 -> 549[label="",style="dashed", color="magenta", weight=3]; 361 -> 550[label="",style="dashed", color="magenta", weight=3]; 362 -> 293[label="",style="dashed", color="red", weight=0]; 362[label="vxw30 == vxw400",fontsize=16,color="magenta"];362 -> 551[label="",style="dashed", color="magenta", weight=3]; 362 -> 552[label="",style="dashed", color="magenta", weight=3]; 363 -> 294[label="",style="dashed", color="red", weight=0]; 363[label="vxw30 == vxw400",fontsize=16,color="magenta"];363 -> 553[label="",style="dashed", color="magenta", weight=3]; 363 -> 554[label="",style="dashed", color="magenta", weight=3]; 364 -> 295[label="",style="dashed", color="red", weight=0]; 364[label="vxw30 == vxw400",fontsize=16,color="magenta"];364 -> 555[label="",style="dashed", color="magenta", weight=3]; 364 -> 556[label="",style="dashed", color="magenta", weight=3]; 365 -> 296[label="",style="dashed", color="red", weight=0]; 365[label="vxw30 == vxw400",fontsize=16,color="magenta"];365 -> 557[label="",style="dashed", color="magenta", weight=3]; 365 -> 558[label="",style="dashed", color="magenta", weight=3]; 366 -> 297[label="",style="dashed", color="red", weight=0]; 366[label="vxw30 == vxw400",fontsize=16,color="magenta"];366 -> 559[label="",style="dashed", color="magenta", weight=3]; 366 -> 560[label="",style="dashed", color="magenta", weight=3]; 367 -> 298[label="",style="dashed", color="red", weight=0]; 367[label="vxw30 == vxw400",fontsize=16,color="magenta"];367 -> 561[label="",style="dashed", color="magenta", weight=3]; 367 -> 562[label="",style="dashed", color="magenta", weight=3]; 368 -> 299[label="",style="dashed", color="red", weight=0]; 368[label="vxw30 == vxw400",fontsize=16,color="magenta"];368 -> 563[label="",style="dashed", color="magenta", weight=3]; 368 -> 564[label="",style="dashed", color="magenta", weight=3]; 369 -> 300[label="",style="dashed", color="red", weight=0]; 369[label="vxw30 == vxw400",fontsize=16,color="magenta"];369 -> 565[label="",style="dashed", color="magenta", weight=3]; 369 -> 566[label="",style="dashed", color="magenta", weight=3]; 370 -> 301[label="",style="dashed", color="red", weight=0]; 370[label="vxw30 == vxw400",fontsize=16,color="magenta"];370 -> 567[label="",style="dashed", color="magenta", weight=3]; 370 -> 568[label="",style="dashed", color="magenta", weight=3]; 371 -> 302[label="",style="dashed", color="red", weight=0]; 371[label="vxw30 == vxw400",fontsize=16,color="magenta"];371 -> 569[label="",style="dashed", color="magenta", weight=3]; 371 -> 570[label="",style="dashed", color="magenta", weight=3]; 372 -> 303[label="",style="dashed", color="red", weight=0]; 372[label="vxw30 == vxw400",fontsize=16,color="magenta"];372 -> 571[label="",style="dashed", color="magenta", weight=3]; 372 -> 572[label="",style="dashed", color="magenta", weight=3]; 373 -> 304[label="",style="dashed", color="red", weight=0]; 373[label="vxw30 == vxw400",fontsize=16,color="magenta"];373 -> 573[label="",style="dashed", color="magenta", weight=3]; 373 -> 574[label="",style="dashed", color="magenta", weight=3]; 374 -> 305[label="",style="dashed", color="red", weight=0]; 374[label="vxw30 == vxw400",fontsize=16,color="magenta"];374 -> 575[label="",style="dashed", color="magenta", weight=3]; 374 -> 576[label="",style="dashed", color="magenta", weight=3]; 375[label="compare2 (Left vxw57) (Left vxw58) False",fontsize=16,color="black",shape="box"];375 -> 577[label="",style="solid", color="black", weight=3]; 376[label="compare2 (Left vxw57) (Left vxw58) True",fontsize=16,color="black",shape="box"];376 -> 578[label="",style="solid", color="black", weight=3]; 377[label="compare1 (Left vxw30) (Right vxw400) True",fontsize=16,color="black",shape="box"];377 -> 579[label="",style="solid", color="black", weight=3]; 378[label="compare1 (Right vxw30) (Left vxw400) False",fontsize=16,color="black",shape="box"];378 -> 580[label="",style="solid", color="black", weight=3]; 379 -> 292[label="",style="dashed", color="red", weight=0]; 379[label="vxw30 == vxw400",fontsize=16,color="magenta"];379 -> 581[label="",style="dashed", color="magenta", weight=3]; 379 -> 582[label="",style="dashed", color="magenta", weight=3]; 380 -> 293[label="",style="dashed", color="red", weight=0]; 380[label="vxw30 == vxw400",fontsize=16,color="magenta"];380 -> 583[label="",style="dashed", color="magenta", weight=3]; 380 -> 584[label="",style="dashed", color="magenta", weight=3]; 381 -> 294[label="",style="dashed", color="red", weight=0]; 381[label="vxw30 == vxw400",fontsize=16,color="magenta"];381 -> 585[label="",style="dashed", color="magenta", weight=3]; 381 -> 586[label="",style="dashed", color="magenta", weight=3]; 382 -> 295[label="",style="dashed", color="red", weight=0]; 382[label="vxw30 == vxw400",fontsize=16,color="magenta"];382 -> 587[label="",style="dashed", color="magenta", weight=3]; 382 -> 588[label="",style="dashed", color="magenta", weight=3]; 383 -> 296[label="",style="dashed", color="red", weight=0]; 383[label="vxw30 == vxw400",fontsize=16,color="magenta"];383 -> 589[label="",style="dashed", color="magenta", weight=3]; 383 -> 590[label="",style="dashed", color="magenta", weight=3]; 384 -> 297[label="",style="dashed", color="red", weight=0]; 384[label="vxw30 == vxw400",fontsize=16,color="magenta"];384 -> 591[label="",style="dashed", color="magenta", weight=3]; 384 -> 592[label="",style="dashed", color="magenta", weight=3]; 385 -> 298[label="",style="dashed", color="red", weight=0]; 385[label="vxw30 == vxw400",fontsize=16,color="magenta"];385 -> 593[label="",style="dashed", color="magenta", weight=3]; 385 -> 594[label="",style="dashed", color="magenta", weight=3]; 386 -> 299[label="",style="dashed", color="red", weight=0]; 386[label="vxw30 == vxw400",fontsize=16,color="magenta"];386 -> 595[label="",style="dashed", color="magenta", weight=3]; 386 -> 596[label="",style="dashed", color="magenta", weight=3]; 387 -> 300[label="",style="dashed", color="red", weight=0]; 387[label="vxw30 == vxw400",fontsize=16,color="magenta"];387 -> 597[label="",style="dashed", color="magenta", weight=3]; 387 -> 598[label="",style="dashed", color="magenta", weight=3]; 388 -> 301[label="",style="dashed", color="red", weight=0]; 388[label="vxw30 == vxw400",fontsize=16,color="magenta"];388 -> 599[label="",style="dashed", color="magenta", weight=3]; 388 -> 600[label="",style="dashed", color="magenta", weight=3]; 389 -> 302[label="",style="dashed", color="red", weight=0]; 389[label="vxw30 == vxw400",fontsize=16,color="magenta"];389 -> 601[label="",style="dashed", color="magenta", weight=3]; 389 -> 602[label="",style="dashed", color="magenta", weight=3]; 390 -> 303[label="",style="dashed", color="red", weight=0]; 390[label="vxw30 == vxw400",fontsize=16,color="magenta"];390 -> 603[label="",style="dashed", color="magenta", weight=3]; 390 -> 604[label="",style="dashed", color="magenta", weight=3]; 391 -> 304[label="",style="dashed", color="red", weight=0]; 391[label="vxw30 == vxw400",fontsize=16,color="magenta"];391 -> 605[label="",style="dashed", color="magenta", weight=3]; 391 -> 606[label="",style="dashed", color="magenta", weight=3]; 392 -> 305[label="",style="dashed", color="red", weight=0]; 392[label="vxw30 == vxw400",fontsize=16,color="magenta"];392 -> 607[label="",style="dashed", color="magenta", weight=3]; 392 -> 608[label="",style="dashed", color="magenta", weight=3]; 393[label="compare2 (Right vxw64) (Right vxw65) False",fontsize=16,color="black",shape="box"];393 -> 609[label="",style="solid", color="black", weight=3]; 394[label="compare2 (Right vxw64) (Right vxw65) True",fontsize=16,color="black",shape="box"];394 -> 610[label="",style="solid", color="black", weight=3]; 395 -> 178[label="",style="dashed", color="red", weight=0]; 395[label="vxw30 * Pos vxw4010",fontsize=16,color="magenta"];395 -> 611[label="",style="dashed", color="magenta", weight=3]; 395 -> 612[label="",style="dashed", color="magenta", weight=3]; 396 -> 178[label="",style="dashed", color="red", weight=0]; 396[label="Pos vxw310 * vxw400",fontsize=16,color="magenta"];396 -> 613[label="",style="dashed", color="magenta", weight=3]; 396 -> 614[label="",style="dashed", color="magenta", weight=3]; 397 -> 178[label="",style="dashed", color="red", weight=0]; 397[label="vxw30 * Pos vxw4010",fontsize=16,color="magenta"];397 -> 615[label="",style="dashed", color="magenta", weight=3]; 397 -> 616[label="",style="dashed", color="magenta", weight=3]; 398 -> 178[label="",style="dashed", color="red", weight=0]; 398[label="Neg vxw310 * vxw400",fontsize=16,color="magenta"];398 -> 617[label="",style="dashed", color="magenta", weight=3]; 398 -> 618[label="",style="dashed", color="magenta", weight=3]; 399 -> 178[label="",style="dashed", color="red", weight=0]; 399[label="vxw30 * Neg vxw4010",fontsize=16,color="magenta"];399 -> 619[label="",style="dashed", color="magenta", weight=3]; 399 -> 620[label="",style="dashed", color="magenta", weight=3]; 400 -> 178[label="",style="dashed", color="red", weight=0]; 400[label="Pos vxw310 * vxw400",fontsize=16,color="magenta"];400 -> 621[label="",style="dashed", color="magenta", weight=3]; 400 -> 622[label="",style="dashed", color="magenta", weight=3]; 401 -> 178[label="",style="dashed", color="red", weight=0]; 401[label="vxw30 * Neg vxw4010",fontsize=16,color="magenta"];401 -> 623[label="",style="dashed", color="magenta", weight=3]; 401 -> 624[label="",style="dashed", color="magenta", weight=3]; 402 -> 178[label="",style="dashed", color="red", weight=0]; 402[label="Neg vxw310 * vxw400",fontsize=16,color="magenta"];402 -> 625[label="",style="dashed", color="magenta", weight=3]; 402 -> 626[label="",style="dashed", color="magenta", weight=3]; 403[label="compare1 False True True",fontsize=16,color="black",shape="box"];403 -> 627[label="",style="solid", color="black", weight=3]; 404[label="compare1 True False False",fontsize=16,color="black",shape="box"];404 -> 628[label="",style="solid", color="black", weight=3]; 405[label="vxw300",fontsize=16,color="green",shape="box"];406[label="vxw4000",fontsize=16,color="green",shape="box"];407[label="vxw30",fontsize=16,color="green",shape="box"];408[label="vxw400",fontsize=16,color="green",shape="box"];409[label="vxw30",fontsize=16,color="green",shape="box"];410[label="vxw400",fontsize=16,color="green",shape="box"];411[label="vxw30",fontsize=16,color="green",shape="box"];412[label="vxw400",fontsize=16,color="green",shape="box"];413[label="vxw30",fontsize=16,color="green",shape="box"];414[label="vxw400",fontsize=16,color="green",shape="box"];415[label="vxw30",fontsize=16,color="green",shape="box"];416[label="vxw400",fontsize=16,color="green",shape="box"];417[label="vxw30",fontsize=16,color="green",shape="box"];418[label="vxw400",fontsize=16,color="green",shape="box"];419[label="vxw30",fontsize=16,color="green",shape="box"];420[label="vxw400",fontsize=16,color="green",shape="box"];421[label="vxw30",fontsize=16,color="green",shape="box"];422[label="vxw400",fontsize=16,color="green",shape="box"];423[label="vxw30",fontsize=16,color="green",shape="box"];424[label="vxw400",fontsize=16,color="green",shape="box"];425[label="vxw30",fontsize=16,color="green",shape="box"];426[label="vxw400",fontsize=16,color="green",shape="box"];427[label="vxw30",fontsize=16,color="green",shape="box"];428[label="vxw400",fontsize=16,color="green",shape="box"];429[label="vxw30",fontsize=16,color="green",shape="box"];430[label="vxw400",fontsize=16,color="green",shape="box"];431[label="vxw30",fontsize=16,color="green",shape="box"];432[label="vxw400",fontsize=16,color="green",shape="box"];433[label="vxw30",fontsize=16,color="green",shape="box"];434[label="vxw400",fontsize=16,color="green",shape="box"];435[label="LT",fontsize=16,color="green",shape="box"];436[label="vxw18",fontsize=16,color="green",shape="box"];437[label="GT",fontsize=16,color="green",shape="box"];438[label="LT",fontsize=16,color="green",shape="box"];439[label="compare0 (Just vxw30) Nothing otherwise",fontsize=16,color="black",shape="box"];439 -> 629[label="",style="solid", color="black", weight=3]; 440[label="primEqFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2962[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];440 -> 2962[label="",style="solid", color="burlywood", weight=9]; 2962 -> 630[label="",style="solid", color="burlywood", weight=3]; 441[label="(vxw300,vxw301) == vxw400",fontsize=16,color="burlywood",shape="box"];2963[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];441 -> 2963[label="",style="solid", color="burlywood", weight=9]; 2963 -> 631[label="",style="solid", color="burlywood", weight=3]; 442[label="Integer vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2964[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];442 -> 2964[label="",style="solid", color="burlywood", weight=9]; 2964 -> 632[label="",style="solid", color="burlywood", weight=3]; 443[label="vxw300 :% vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];2965[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];443 -> 2965[label="",style="solid", color="burlywood", weight=9]; 2965 -> 633[label="",style="solid", color="burlywood", weight=3]; 444[label="primEqChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2966[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];444 -> 2966[label="",style="solid", color="burlywood", weight=9]; 2966 -> 634[label="",style="solid", color="burlywood", weight=3]; 445[label="False == vxw400",fontsize=16,color="burlywood",shape="box"];2967[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];445 -> 2967[label="",style="solid", color="burlywood", weight=9]; 2967 -> 635[label="",style="solid", color="burlywood", weight=3]; 2968[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];445 -> 2968[label="",style="solid", color="burlywood", weight=9]; 2968 -> 636[label="",style="solid", color="burlywood", weight=3]; 446[label="True == vxw400",fontsize=16,color="burlywood",shape="box"];2969[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];446 -> 2969[label="",style="solid", color="burlywood", weight=9]; 2969 -> 637[label="",style="solid", color="burlywood", weight=3]; 2970[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];446 -> 2970[label="",style="solid", color="burlywood", weight=9]; 2970 -> 638[label="",style="solid", color="burlywood", weight=3]; 447[label="(vxw300,vxw301,vxw302) == vxw400",fontsize=16,color="burlywood",shape="box"];2971[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];447 -> 2971[label="",style="solid", color="burlywood", weight=9]; 2971 -> 639[label="",style="solid", color="burlywood", weight=3]; 448[label="primEqInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2972[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];448 -> 2972[label="",style="solid", color="burlywood", weight=9]; 2972 -> 640[label="",style="solid", color="burlywood", weight=3]; 2973[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];448 -> 2973[label="",style="solid", color="burlywood", weight=9]; 2973 -> 641[label="",style="solid", color="burlywood", weight=3]; 449[label="() == vxw400",fontsize=16,color="burlywood",shape="box"];2974[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];449 -> 2974[label="",style="solid", color="burlywood", weight=9]; 2974 -> 642[label="",style="solid", color="burlywood", weight=3]; 450[label="primEqDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2975[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];450 -> 2975[label="",style="solid", color="burlywood", weight=9]; 2975 -> 643[label="",style="solid", color="burlywood", weight=3]; 451[label="vxw300 : vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];2976[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];451 -> 2976[label="",style="solid", color="burlywood", weight=9]; 2976 -> 644[label="",style="solid", color="burlywood", weight=3]; 2977[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];451 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 645[label="",style="solid", color="burlywood", weight=3]; 452[label="[] == vxw400",fontsize=16,color="burlywood",shape="box"];2978[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];452 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 646[label="",style="solid", color="burlywood", weight=3]; 2979[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];452 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 647[label="",style="solid", color="burlywood", weight=3]; 453[label="Nothing == vxw400",fontsize=16,color="burlywood",shape="box"];2980[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];453 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 648[label="",style="solid", color="burlywood", weight=3]; 2981[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];453 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 649[label="",style="solid", color="burlywood", weight=3]; 454[label="Just vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2982[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];454 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 650[label="",style="solid", color="burlywood", weight=3]; 2983[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];454 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 651[label="",style="solid", color="burlywood", weight=3]; 455[label="LT == vxw400",fontsize=16,color="burlywood",shape="box"];2984[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];455 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 652[label="",style="solid", color="burlywood", weight=3]; 2985[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];455 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 653[label="",style="solid", color="burlywood", weight=3]; 2986[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];455 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 654[label="",style="solid", color="burlywood", weight=3]; 456[label="EQ == vxw400",fontsize=16,color="burlywood",shape="box"];2987[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];456 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 655[label="",style="solid", color="burlywood", weight=3]; 2988[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];456 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 656[label="",style="solid", color="burlywood", weight=3]; 2989[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];456 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 657[label="",style="solid", color="burlywood", weight=3]; 457[label="GT == vxw400",fontsize=16,color="burlywood",shape="box"];2990[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];457 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 658[label="",style="solid", color="burlywood", weight=3]; 2991[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];457 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 659[label="",style="solid", color="burlywood", weight=3]; 2992[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];457 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 660[label="",style="solid", color="burlywood", weight=3]; 458[label="Left vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2993[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];458 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 661[label="",style="solid", color="burlywood", weight=3]; 2994[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];458 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 662[label="",style="solid", color="burlywood", weight=3]; 459[label="Right vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2995[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];459 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 663[label="",style="solid", color="burlywood", weight=3]; 2996[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];459 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 664[label="",style="solid", color="burlywood", weight=3]; 460 -> 852[label="",style="dashed", color="red", weight=0]; 460[label="compare1 (Just vxw24) (Just vxw25) (Just vxw24 <= Just vxw25)",fontsize=16,color="magenta"];460 -> 853[label="",style="dashed", color="magenta", weight=3]; 460 -> 854[label="",style="dashed", color="magenta", weight=3]; 460 -> 855[label="",style="dashed", color="magenta", weight=3]; 461[label="EQ",fontsize=16,color="green",shape="box"];755 -> 292[label="",style="dashed", color="red", weight=0]; 755[label="vxw30 == vxw400",fontsize=16,color="magenta"];755 -> 859[label="",style="dashed", color="magenta", weight=3]; 755 -> 860[label="",style="dashed", color="magenta", weight=3]; 756 -> 293[label="",style="dashed", color="red", weight=0]; 756[label="vxw30 == vxw400",fontsize=16,color="magenta"];756 -> 861[label="",style="dashed", color="magenta", weight=3]; 756 -> 862[label="",style="dashed", color="magenta", weight=3]; 757 -> 294[label="",style="dashed", color="red", weight=0]; 757[label="vxw30 == vxw400",fontsize=16,color="magenta"];757 -> 863[label="",style="dashed", color="magenta", weight=3]; 757 -> 864[label="",style="dashed", color="magenta", weight=3]; 758 -> 295[label="",style="dashed", color="red", weight=0]; 758[label="vxw30 == vxw400",fontsize=16,color="magenta"];758 -> 865[label="",style="dashed", color="magenta", weight=3]; 758 -> 866[label="",style="dashed", color="magenta", weight=3]; 759 -> 296[label="",style="dashed", color="red", weight=0]; 759[label="vxw30 == vxw400",fontsize=16,color="magenta"];759 -> 867[label="",style="dashed", color="magenta", weight=3]; 759 -> 868[label="",style="dashed", color="magenta", weight=3]; 760 -> 297[label="",style="dashed", color="red", weight=0]; 760[label="vxw30 == vxw400",fontsize=16,color="magenta"];760 -> 869[label="",style="dashed", color="magenta", weight=3]; 760 -> 870[label="",style="dashed", color="magenta", weight=3]; 761 -> 298[label="",style="dashed", color="red", weight=0]; 761[label="vxw30 == vxw400",fontsize=16,color="magenta"];761 -> 871[label="",style="dashed", color="magenta", weight=3]; 761 -> 872[label="",style="dashed", color="magenta", weight=3]; 762 -> 299[label="",style="dashed", color="red", weight=0]; 762[label="vxw30 == vxw400",fontsize=16,color="magenta"];762 -> 873[label="",style="dashed", color="magenta", weight=3]; 762 -> 874[label="",style="dashed", color="magenta", weight=3]; 763 -> 300[label="",style="dashed", color="red", weight=0]; 763[label="vxw30 == vxw400",fontsize=16,color="magenta"];763 -> 875[label="",style="dashed", color="magenta", weight=3]; 763 -> 876[label="",style="dashed", color="magenta", weight=3]; 764 -> 301[label="",style="dashed", color="red", weight=0]; 764[label="vxw30 == vxw400",fontsize=16,color="magenta"];764 -> 877[label="",style="dashed", color="magenta", weight=3]; 764 -> 878[label="",style="dashed", color="magenta", weight=3]; 765 -> 302[label="",style="dashed", color="red", weight=0]; 765[label="vxw30 == vxw400",fontsize=16,color="magenta"];765 -> 879[label="",style="dashed", color="magenta", weight=3]; 765 -> 880[label="",style="dashed", color="magenta", weight=3]; 766 -> 303[label="",style="dashed", color="red", weight=0]; 766[label="vxw30 == vxw400",fontsize=16,color="magenta"];766 -> 881[label="",style="dashed", color="magenta", weight=3]; 766 -> 882[label="",style="dashed", color="magenta", weight=3]; 767 -> 304[label="",style="dashed", color="red", weight=0]; 767[label="vxw30 == vxw400",fontsize=16,color="magenta"];767 -> 883[label="",style="dashed", color="magenta", weight=3]; 767 -> 884[label="",style="dashed", color="magenta", weight=3]; 768 -> 305[label="",style="dashed", color="red", weight=0]; 768[label="vxw30 == vxw400",fontsize=16,color="magenta"];768 -> 885[label="",style="dashed", color="magenta", weight=3]; 768 -> 886[label="",style="dashed", color="magenta", weight=3]; 769 -> 292[label="",style="dashed", color="red", weight=0]; 769[label="vxw31 == vxw401",fontsize=16,color="magenta"];769 -> 887[label="",style="dashed", color="magenta", weight=3]; 769 -> 888[label="",style="dashed", color="magenta", weight=3]; 770 -> 293[label="",style="dashed", color="red", weight=0]; 770[label="vxw31 == vxw401",fontsize=16,color="magenta"];770 -> 889[label="",style="dashed", color="magenta", weight=3]; 770 -> 890[label="",style="dashed", color="magenta", weight=3]; 771 -> 294[label="",style="dashed", color="red", weight=0]; 771[label="vxw31 == vxw401",fontsize=16,color="magenta"];771 -> 891[label="",style="dashed", color="magenta", weight=3]; 771 -> 892[label="",style="dashed", color="magenta", weight=3]; 772 -> 295[label="",style="dashed", color="red", weight=0]; 772[label="vxw31 == vxw401",fontsize=16,color="magenta"];772 -> 893[label="",style="dashed", color="magenta", weight=3]; 772 -> 894[label="",style="dashed", color="magenta", weight=3]; 773 -> 296[label="",style="dashed", color="red", weight=0]; 773[label="vxw31 == vxw401",fontsize=16,color="magenta"];773 -> 895[label="",style="dashed", color="magenta", weight=3]; 773 -> 896[label="",style="dashed", color="magenta", weight=3]; 774 -> 297[label="",style="dashed", color="red", weight=0]; 774[label="vxw31 == vxw401",fontsize=16,color="magenta"];774 -> 897[label="",style="dashed", color="magenta", weight=3]; 774 -> 898[label="",style="dashed", color="magenta", weight=3]; 775 -> 298[label="",style="dashed", color="red", weight=0]; 775[label="vxw31 == vxw401",fontsize=16,color="magenta"];775 -> 899[label="",style="dashed", color="magenta", weight=3]; 775 -> 900[label="",style="dashed", color="magenta", weight=3]; 776 -> 299[label="",style="dashed", color="red", weight=0]; 776[label="vxw31 == vxw401",fontsize=16,color="magenta"];776 -> 901[label="",style="dashed", color="magenta", weight=3]; 776 -> 902[label="",style="dashed", color="magenta", weight=3]; 777 -> 300[label="",style="dashed", color="red", weight=0]; 777[label="vxw31 == vxw401",fontsize=16,color="magenta"];777 -> 903[label="",style="dashed", color="magenta", weight=3]; 777 -> 904[label="",style="dashed", color="magenta", weight=3]; 778 -> 301[label="",style="dashed", color="red", weight=0]; 778[label="vxw31 == vxw401",fontsize=16,color="magenta"];778 -> 905[label="",style="dashed", color="magenta", weight=3]; 778 -> 906[label="",style="dashed", color="magenta", weight=3]; 779 -> 302[label="",style="dashed", color="red", weight=0]; 779[label="vxw31 == vxw401",fontsize=16,color="magenta"];779 -> 907[label="",style="dashed", color="magenta", weight=3]; 779 -> 908[label="",style="dashed", color="magenta", weight=3]; 780 -> 303[label="",style="dashed", color="red", weight=0]; 780[label="vxw31 == vxw401",fontsize=16,color="magenta"];780 -> 909[label="",style="dashed", color="magenta", weight=3]; 780 -> 910[label="",style="dashed", color="magenta", weight=3]; 781 -> 304[label="",style="dashed", color="red", weight=0]; 781[label="vxw31 == vxw401",fontsize=16,color="magenta"];781 -> 911[label="",style="dashed", color="magenta", weight=3]; 781 -> 912[label="",style="dashed", color="magenta", weight=3]; 782 -> 305[label="",style="dashed", color="red", weight=0]; 782[label="vxw31 == vxw401",fontsize=16,color="magenta"];782 -> 913[label="",style="dashed", color="magenta", weight=3]; 782 -> 914[label="",style="dashed", color="magenta", weight=3]; 783[label="False && vxw91",fontsize=16,color="black",shape="box"];783 -> 915[label="",style="solid", color="black", weight=3]; 784[label="True && vxw91",fontsize=16,color="black",shape="box"];784 -> 916[label="",style="solid", color="black", weight=3]; 785[label="compare1 (vxw73,vxw74) (vxw75,vxw76) ((vxw73,vxw74) <= (vxw75,vxw76))",fontsize=16,color="black",shape="box"];785 -> 917[label="",style="solid", color="black", weight=3]; 786[label="EQ",fontsize=16,color="green",shape="box"];492[label="LT",fontsize=16,color="green",shape="box"];493[label="LT",fontsize=16,color="green",shape="box"];494[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];494 -> 710[label="",style="solid", color="black", weight=3]; 495[label="LT",fontsize=16,color="green",shape="box"];496[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];496 -> 711[label="",style="solid", color="black", weight=3]; 497[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];497 -> 712[label="",style="solid", color="black", weight=3]; 787 -> 292[label="",style="dashed", color="red", weight=0]; 787[label="vxw30 == vxw400",fontsize=16,color="magenta"];787 -> 918[label="",style="dashed", color="magenta", weight=3]; 787 -> 919[label="",style="dashed", color="magenta", weight=3]; 788 -> 293[label="",style="dashed", color="red", weight=0]; 788[label="vxw30 == vxw400",fontsize=16,color="magenta"];788 -> 920[label="",style="dashed", color="magenta", weight=3]; 788 -> 921[label="",style="dashed", color="magenta", weight=3]; 789 -> 294[label="",style="dashed", color="red", weight=0]; 789[label="vxw30 == vxw400",fontsize=16,color="magenta"];789 -> 922[label="",style="dashed", color="magenta", weight=3]; 789 -> 923[label="",style="dashed", color="magenta", weight=3]; 790 -> 295[label="",style="dashed", color="red", weight=0]; 790[label="vxw30 == vxw400",fontsize=16,color="magenta"];790 -> 924[label="",style="dashed", color="magenta", weight=3]; 790 -> 925[label="",style="dashed", color="magenta", weight=3]; 791 -> 296[label="",style="dashed", color="red", weight=0]; 791[label="vxw30 == vxw400",fontsize=16,color="magenta"];791 -> 926[label="",style="dashed", color="magenta", weight=3]; 791 -> 927[label="",style="dashed", color="magenta", weight=3]; 792 -> 297[label="",style="dashed", color="red", weight=0]; 792[label="vxw30 == vxw400",fontsize=16,color="magenta"];792 -> 928[label="",style="dashed", color="magenta", weight=3]; 792 -> 929[label="",style="dashed", color="magenta", weight=3]; 793 -> 298[label="",style="dashed", color="red", weight=0]; 793[label="vxw30 == vxw400",fontsize=16,color="magenta"];793 -> 930[label="",style="dashed", color="magenta", weight=3]; 793 -> 931[label="",style="dashed", color="magenta", weight=3]; 794 -> 299[label="",style="dashed", color="red", weight=0]; 794[label="vxw30 == vxw400",fontsize=16,color="magenta"];794 -> 932[label="",style="dashed", color="magenta", weight=3]; 794 -> 933[label="",style="dashed", color="magenta", weight=3]; 795 -> 300[label="",style="dashed", color="red", weight=0]; 795[label="vxw30 == vxw400",fontsize=16,color="magenta"];795 -> 934[label="",style="dashed", color="magenta", weight=3]; 795 -> 935[label="",style="dashed", color="magenta", weight=3]; 796 -> 301[label="",style="dashed", color="red", weight=0]; 796[label="vxw30 == vxw400",fontsize=16,color="magenta"];796 -> 936[label="",style="dashed", color="magenta", weight=3]; 796 -> 937[label="",style="dashed", color="magenta", weight=3]; 797 -> 302[label="",style="dashed", color="red", weight=0]; 797[label="vxw30 == vxw400",fontsize=16,color="magenta"];797 -> 938[label="",style="dashed", color="magenta", weight=3]; 797 -> 939[label="",style="dashed", color="magenta", weight=3]; 798 -> 303[label="",style="dashed", color="red", weight=0]; 798[label="vxw30 == vxw400",fontsize=16,color="magenta"];798 -> 940[label="",style="dashed", color="magenta", weight=3]; 798 -> 941[label="",style="dashed", color="magenta", weight=3]; 799 -> 304[label="",style="dashed", color="red", weight=0]; 799[label="vxw30 == vxw400",fontsize=16,color="magenta"];799 -> 942[label="",style="dashed", color="magenta", weight=3]; 799 -> 943[label="",style="dashed", color="magenta", weight=3]; 800 -> 305[label="",style="dashed", color="red", weight=0]; 800[label="vxw30 == vxw400",fontsize=16,color="magenta"];800 -> 944[label="",style="dashed", color="magenta", weight=3]; 800 -> 945[label="",style="dashed", color="magenta", weight=3]; 801[label="vxw31 == vxw401",fontsize=16,color="blue",shape="box"];2997[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 2997[label="",style="solid", color="blue", weight=9]; 2997 -> 946[label="",style="solid", color="blue", weight=3]; 2998[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 2998[label="",style="solid", color="blue", weight=9]; 2998 -> 947[label="",style="solid", color="blue", weight=3]; 2999[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 2999[label="",style="solid", color="blue", weight=9]; 2999 -> 948[label="",style="solid", color="blue", weight=3]; 3000[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3000[label="",style="solid", color="blue", weight=9]; 3000 -> 949[label="",style="solid", color="blue", weight=3]; 3001[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3001[label="",style="solid", color="blue", weight=9]; 3001 -> 950[label="",style="solid", color="blue", weight=3]; 3002[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3002[label="",style="solid", color="blue", weight=9]; 3002 -> 951[label="",style="solid", color="blue", weight=3]; 3003[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3003[label="",style="solid", color="blue", weight=9]; 3003 -> 952[label="",style="solid", color="blue", weight=3]; 3004[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3004[label="",style="solid", color="blue", weight=9]; 3004 -> 953[label="",style="solid", color="blue", weight=3]; 3005[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3005[label="",style="solid", color="blue", weight=9]; 3005 -> 954[label="",style="solid", color="blue", weight=3]; 3006[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3006[label="",style="solid", color="blue", weight=9]; 3006 -> 955[label="",style="solid", color="blue", weight=3]; 3007[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3007[label="",style="solid", color="blue", weight=9]; 3007 -> 956[label="",style="solid", color="blue", weight=3]; 3008[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3008[label="",style="solid", color="blue", weight=9]; 3008 -> 957[label="",style="solid", color="blue", weight=3]; 3009[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3009[label="",style="solid", color="blue", weight=9]; 3009 -> 958[label="",style="solid", color="blue", weight=3]; 3010[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];801 -> 3010[label="",style="solid", color="blue", weight=9]; 3010 -> 959[label="",style="solid", color="blue", weight=3]; 802[label="vxw32 == vxw402",fontsize=16,color="blue",shape="box"];3011[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 960[label="",style="solid", color="blue", weight=3]; 3012[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 961[label="",style="solid", color="blue", weight=3]; 3013[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 962[label="",style="solid", color="blue", weight=3]; 3014[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 963[label="",style="solid", color="blue", weight=3]; 3015[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 964[label="",style="solid", color="blue", weight=3]; 3016[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 965[label="",style="solid", color="blue", weight=3]; 3017[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 966[label="",style="solid", color="blue", weight=3]; 3018[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 967[label="",style="solid", color="blue", weight=3]; 3019[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 968[label="",style="solid", color="blue", weight=3]; 3020[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 969[label="",style="solid", color="blue", weight=3]; 3021[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 970[label="",style="solid", color="blue", weight=3]; 3022[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 971[label="",style="solid", color="blue", weight=3]; 3023[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 972[label="",style="solid", color="blue", weight=3]; 3024[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 973[label="",style="solid", color="blue", weight=3]; 803[label="compare1 (vxw46,vxw47,vxw48) (vxw49,vxw50,vxw51) ((vxw46,vxw47,vxw48) <= (vxw49,vxw50,vxw51))",fontsize=16,color="black",shape="box"];803 -> 974[label="",style="solid", color="black", weight=3]; 804[label="EQ",fontsize=16,color="green",shape="box"];528[label="Pos vxw4010",fontsize=16,color="green",shape="box"];529[label="vxw30",fontsize=16,color="green",shape="box"];530[label="vxw400",fontsize=16,color="green",shape="box"];531[label="Pos vxw310",fontsize=16,color="green",shape="box"];532[label="Pos vxw4010",fontsize=16,color="green",shape="box"];533[label="vxw30",fontsize=16,color="green",shape="box"];534[label="vxw400",fontsize=16,color="green",shape="box"];535[label="Neg vxw310",fontsize=16,color="green",shape="box"];536[label="Neg vxw4010",fontsize=16,color="green",shape="box"];537[label="vxw30",fontsize=16,color="green",shape="box"];538[label="vxw400",fontsize=16,color="green",shape="box"];539[label="Pos vxw310",fontsize=16,color="green",shape="box"];540[label="Neg vxw4010",fontsize=16,color="green",shape="box"];541[label="vxw30",fontsize=16,color="green",shape="box"];542[label="vxw400",fontsize=16,color="green",shape="box"];543[label="Neg vxw310",fontsize=16,color="green",shape="box"];544[label="Integer (primMulInt vxw300 vxw4010)",fontsize=16,color="green",shape="box"];544 -> 805[label="",style="dashed", color="green", weight=3]; 545[label="primMulInt (Pos vxw300) (Pos vxw4010)",fontsize=16,color="black",shape="box"];545 -> 806[label="",style="solid", color="black", weight=3]; 546[label="primMulInt (Pos vxw300) (Neg vxw4010)",fontsize=16,color="black",shape="box"];546 -> 807[label="",style="solid", color="black", weight=3]; 547[label="primMulInt (Neg vxw300) (Pos vxw4010)",fontsize=16,color="black",shape="box"];547 -> 808[label="",style="solid", color="black", weight=3]; 548[label="primMulInt (Neg vxw300) (Neg vxw4010)",fontsize=16,color="black",shape="box"];548 -> 809[label="",style="solid", color="black", weight=3]; 549[label="vxw30",fontsize=16,color="green",shape="box"];550[label="vxw400",fontsize=16,color="green",shape="box"];551[label="vxw30",fontsize=16,color="green",shape="box"];552[label="vxw400",fontsize=16,color="green",shape="box"];553[label="vxw30",fontsize=16,color="green",shape="box"];554[label="vxw400",fontsize=16,color="green",shape="box"];555[label="vxw30",fontsize=16,color="green",shape="box"];556[label="vxw400",fontsize=16,color="green",shape="box"];557[label="vxw30",fontsize=16,color="green",shape="box"];558[label="vxw400",fontsize=16,color="green",shape="box"];559[label="vxw30",fontsize=16,color="green",shape="box"];560[label="vxw400",fontsize=16,color="green",shape="box"];561[label="vxw30",fontsize=16,color="green",shape="box"];562[label="vxw400",fontsize=16,color="green",shape="box"];563[label="vxw30",fontsize=16,color="green",shape="box"];564[label="vxw400",fontsize=16,color="green",shape="box"];565[label="vxw30",fontsize=16,color="green",shape="box"];566[label="vxw400",fontsize=16,color="green",shape="box"];567[label="vxw30",fontsize=16,color="green",shape="box"];568[label="vxw400",fontsize=16,color="green",shape="box"];569[label="vxw30",fontsize=16,color="green",shape="box"];570[label="vxw400",fontsize=16,color="green",shape="box"];571[label="vxw30",fontsize=16,color="green",shape="box"];572[label="vxw400",fontsize=16,color="green",shape="box"];573[label="vxw30",fontsize=16,color="green",shape="box"];574[label="vxw400",fontsize=16,color="green",shape="box"];575[label="vxw30",fontsize=16,color="green",shape="box"];576[label="vxw400",fontsize=16,color="green",shape="box"];577 -> 987[label="",style="dashed", color="red", weight=0]; 577[label="compare1 (Left vxw57) (Left vxw58) (Left vxw57 <= Left vxw58)",fontsize=16,color="magenta"];577 -> 988[label="",style="dashed", color="magenta", weight=3]; 577 -> 989[label="",style="dashed", color="magenta", weight=3]; 577 -> 990[label="",style="dashed", color="magenta", weight=3]; 578[label="EQ",fontsize=16,color="green",shape="box"];579[label="LT",fontsize=16,color="green",shape="box"];580[label="compare0 (Right vxw30) (Left vxw400) otherwise",fontsize=16,color="black",shape="box"];580 -> 811[label="",style="solid", color="black", weight=3]; 581[label="vxw30",fontsize=16,color="green",shape="box"];582[label="vxw400",fontsize=16,color="green",shape="box"];583[label="vxw30",fontsize=16,color="green",shape="box"];584[label="vxw400",fontsize=16,color="green",shape="box"];585[label="vxw30",fontsize=16,color="green",shape="box"];586[label="vxw400",fontsize=16,color="green",shape="box"];587[label="vxw30",fontsize=16,color="green",shape="box"];588[label="vxw400",fontsize=16,color="green",shape="box"];589[label="vxw30",fontsize=16,color="green",shape="box"];590[label="vxw400",fontsize=16,color="green",shape="box"];591[label="vxw30",fontsize=16,color="green",shape="box"];592[label="vxw400",fontsize=16,color="green",shape="box"];593[label="vxw30",fontsize=16,color="green",shape="box"];594[label="vxw400",fontsize=16,color="green",shape="box"];595[label="vxw30",fontsize=16,color="green",shape="box"];596[label="vxw400",fontsize=16,color="green",shape="box"];597[label="vxw30",fontsize=16,color="green",shape="box"];598[label="vxw400",fontsize=16,color="green",shape="box"];599[label="vxw30",fontsize=16,color="green",shape="box"];600[label="vxw400",fontsize=16,color="green",shape="box"];601[label="vxw30",fontsize=16,color="green",shape="box"];602[label="vxw400",fontsize=16,color="green",shape="box"];603[label="vxw30",fontsize=16,color="green",shape="box"];604[label="vxw400",fontsize=16,color="green",shape="box"];605[label="vxw30",fontsize=16,color="green",shape="box"];606[label="vxw400",fontsize=16,color="green",shape="box"];607[label="vxw30",fontsize=16,color="green",shape="box"];608[label="vxw400",fontsize=16,color="green",shape="box"];609 -> 1058[label="",style="dashed", color="red", weight=0]; 609[label="compare1 (Right vxw64) (Right vxw65) (Right vxw64 <= Right vxw65)",fontsize=16,color="magenta"];609 -> 1059[label="",style="dashed", color="magenta", weight=3]; 609 -> 1060[label="",style="dashed", color="magenta", weight=3]; 609 -> 1061[label="",style="dashed", color="magenta", weight=3]; 610[label="EQ",fontsize=16,color="green",shape="box"];611[label="Pos vxw4010",fontsize=16,color="green",shape="box"];612[label="vxw30",fontsize=16,color="green",shape="box"];613[label="vxw400",fontsize=16,color="green",shape="box"];614[label="Pos vxw310",fontsize=16,color="green",shape="box"];615[label="Pos vxw4010",fontsize=16,color="green",shape="box"];616[label="vxw30",fontsize=16,color="green",shape="box"];617[label="vxw400",fontsize=16,color="green",shape="box"];618[label="Neg vxw310",fontsize=16,color="green",shape="box"];619[label="Neg vxw4010",fontsize=16,color="green",shape="box"];620[label="vxw30",fontsize=16,color="green",shape="box"];621[label="vxw400",fontsize=16,color="green",shape="box"];622[label="Pos vxw310",fontsize=16,color="green",shape="box"];623[label="Neg vxw4010",fontsize=16,color="green",shape="box"];624[label="vxw30",fontsize=16,color="green",shape="box"];625[label="vxw400",fontsize=16,color="green",shape="box"];626[label="Neg vxw310",fontsize=16,color="green",shape="box"];627[label="LT",fontsize=16,color="green",shape="box"];628[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];628 -> 813[label="",style="solid", color="black", weight=3]; 629[label="compare0 (Just vxw30) Nothing True",fontsize=16,color="black",shape="box"];629 -> 814[label="",style="solid", color="black", weight=3]; 630[label="primEqFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];3025[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];630 -> 3025[label="",style="solid", color="burlywood", weight=9]; 3025 -> 815[label="",style="solid", color="burlywood", weight=3]; 631[label="(vxw300,vxw301) == (vxw4000,vxw4001)",fontsize=16,color="black",shape="box"];631 -> 816[label="",style="solid", color="black", weight=3]; 632[label="Integer vxw300 == Integer vxw4000",fontsize=16,color="black",shape="box"];632 -> 817[label="",style="solid", color="black", weight=3]; 633[label="vxw300 :% vxw301 == vxw4000 :% vxw4001",fontsize=16,color="black",shape="box"];633 -> 818[label="",style="solid", color="black", weight=3]; 634[label="primEqChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];3026[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];634 -> 3026[label="",style="solid", color="burlywood", weight=9]; 3026 -> 819[label="",style="solid", color="burlywood", weight=3]; 635[label="False == False",fontsize=16,color="black",shape="box"];635 -> 820[label="",style="solid", color="black", weight=3]; 636[label="False == True",fontsize=16,color="black",shape="box"];636 -> 821[label="",style="solid", color="black", weight=3]; 637[label="True == False",fontsize=16,color="black",shape="box"];637 -> 822[label="",style="solid", color="black", weight=3]; 638[label="True == True",fontsize=16,color="black",shape="box"];638 -> 823[label="",style="solid", color="black", weight=3]; 639[label="(vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002)",fontsize=16,color="black",shape="box"];639 -> 824[label="",style="solid", color="black", weight=3]; 640[label="primEqInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];3027[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];640 -> 3027[label="",style="solid", color="burlywood", weight=9]; 3027 -> 825[label="",style="solid", color="burlywood", weight=3]; 3028[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];640 -> 3028[label="",style="solid", color="burlywood", weight=9]; 3028 -> 826[label="",style="solid", color="burlywood", weight=3]; 641[label="primEqInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];3029[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];641 -> 3029[label="",style="solid", color="burlywood", weight=9]; 3029 -> 827[label="",style="solid", color="burlywood", weight=3]; 3030[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];641 -> 3030[label="",style="solid", color="burlywood", weight=9]; 3030 -> 828[label="",style="solid", color="burlywood", weight=3]; 642[label="() == ()",fontsize=16,color="black",shape="box"];642 -> 829[label="",style="solid", color="black", weight=3]; 643[label="primEqDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];3031[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];643 -> 3031[label="",style="solid", color="burlywood", weight=9]; 3031 -> 830[label="",style="solid", color="burlywood", weight=3]; 644[label="vxw300 : vxw301 == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];644 -> 831[label="",style="solid", color="black", weight=3]; 645[label="vxw300 : vxw301 == []",fontsize=16,color="black",shape="box"];645 -> 832[label="",style="solid", color="black", weight=3]; 646[label="[] == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];646 -> 833[label="",style="solid", color="black", weight=3]; 647[label="[] == []",fontsize=16,color="black",shape="box"];647 -> 834[label="",style="solid", color="black", weight=3]; 648[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];648 -> 835[label="",style="solid", color="black", weight=3]; 649[label="Nothing == Just vxw4000",fontsize=16,color="black",shape="box"];649 -> 836[label="",style="solid", color="black", weight=3]; 650[label="Just vxw300 == Nothing",fontsize=16,color="black",shape="box"];650 -> 837[label="",style="solid", color="black", weight=3]; 651[label="Just vxw300 == Just vxw4000",fontsize=16,color="black",shape="box"];651 -> 838[label="",style="solid", color="black", weight=3]; 652[label="LT == LT",fontsize=16,color="black",shape="box"];652 -> 839[label="",style="solid", color="black", weight=3]; 653[label="LT == EQ",fontsize=16,color="black",shape="box"];653 -> 840[label="",style="solid", color="black", weight=3]; 654[label="LT == GT",fontsize=16,color="black",shape="box"];654 -> 841[label="",style="solid", color="black", weight=3]; 655[label="EQ == LT",fontsize=16,color="black",shape="box"];655 -> 842[label="",style="solid", color="black", weight=3]; 656[label="EQ == EQ",fontsize=16,color="black",shape="box"];656 -> 843[label="",style="solid", color="black", weight=3]; 657[label="EQ == GT",fontsize=16,color="black",shape="box"];657 -> 844[label="",style="solid", color="black", weight=3]; 658[label="GT == LT",fontsize=16,color="black",shape="box"];658 -> 845[label="",style="solid", color="black", weight=3]; 659[label="GT == EQ",fontsize=16,color="black",shape="box"];659 -> 846[label="",style="solid", color="black", weight=3]; 660[label="GT == GT",fontsize=16,color="black",shape="box"];660 -> 847[label="",style="solid", color="black", weight=3]; 661[label="Left vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];661 -> 848[label="",style="solid", color="black", weight=3]; 662[label="Left vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];662 -> 849[label="",style="solid", color="black", weight=3]; 663[label="Right vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];663 -> 850[label="",style="solid", color="black", weight=3]; 664[label="Right vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];664 -> 851[label="",style="solid", color="black", weight=3]; 853[label="vxw25",fontsize=16,color="green",shape="box"];854[label="vxw24",fontsize=16,color="green",shape="box"];855[label="Just vxw24 <= Just vxw25",fontsize=16,color="black",shape="box"];855 -> 975[label="",style="solid", color="black", weight=3]; 852[label="compare1 (Just vxw96) (Just vxw97) vxw98",fontsize=16,color="burlywood",shape="triangle"];3032[label="vxw98/False",fontsize=10,color="white",style="solid",shape="box"];852 -> 3032[label="",style="solid", color="burlywood", weight=9]; 3032 -> 976[label="",style="solid", color="burlywood", weight=3]; 3033[label="vxw98/True",fontsize=10,color="white",style="solid",shape="box"];852 -> 3033[label="",style="solid", color="burlywood", weight=9]; 3033 -> 977[label="",style="solid", color="burlywood", weight=3]; 859[label="vxw30",fontsize=16,color="green",shape="box"];860[label="vxw400",fontsize=16,color="green",shape="box"];861[label="vxw30",fontsize=16,color="green",shape="box"];862[label="vxw400",fontsize=16,color="green",shape="box"];863[label="vxw30",fontsize=16,color="green",shape="box"];864[label="vxw400",fontsize=16,color="green",shape="box"];865[label="vxw30",fontsize=16,color="green",shape="box"];866[label="vxw400",fontsize=16,color="green",shape="box"];867[label="vxw30",fontsize=16,color="green",shape="box"];868[label="vxw400",fontsize=16,color="green",shape="box"];869[label="vxw30",fontsize=16,color="green",shape="box"];870[label="vxw400",fontsize=16,color="green",shape="box"];871[label="vxw30",fontsize=16,color="green",shape="box"];872[label="vxw400",fontsize=16,color="green",shape="box"];873[label="vxw30",fontsize=16,color="green",shape="box"];874[label="vxw400",fontsize=16,color="green",shape="box"];875[label="vxw30",fontsize=16,color="green",shape="box"];876[label="vxw400",fontsize=16,color="green",shape="box"];877[label="vxw30",fontsize=16,color="green",shape="box"];878[label="vxw400",fontsize=16,color="green",shape="box"];879[label="vxw30",fontsize=16,color="green",shape="box"];880[label="vxw400",fontsize=16,color="green",shape="box"];881[label="vxw30",fontsize=16,color="green",shape="box"];882[label="vxw400",fontsize=16,color="green",shape="box"];883[label="vxw30",fontsize=16,color="green",shape="box"];884[label="vxw400",fontsize=16,color="green",shape="box"];885[label="vxw30",fontsize=16,color="green",shape="box"];886[label="vxw400",fontsize=16,color="green",shape="box"];887[label="vxw31",fontsize=16,color="green",shape="box"];888[label="vxw401",fontsize=16,color="green",shape="box"];889[label="vxw31",fontsize=16,color="green",shape="box"];890[label="vxw401",fontsize=16,color="green",shape="box"];891[label="vxw31",fontsize=16,color="green",shape="box"];892[label="vxw401",fontsize=16,color="green",shape="box"];893[label="vxw31",fontsize=16,color="green",shape="box"];894[label="vxw401",fontsize=16,color="green",shape="box"];895[label="vxw31",fontsize=16,color="green",shape="box"];896[label="vxw401",fontsize=16,color="green",shape="box"];897[label="vxw31",fontsize=16,color="green",shape="box"];898[label="vxw401",fontsize=16,color="green",shape="box"];899[label="vxw31",fontsize=16,color="green",shape="box"];900[label="vxw401",fontsize=16,color="green",shape="box"];901[label="vxw31",fontsize=16,color="green",shape="box"];902[label="vxw401",fontsize=16,color="green",shape="box"];903[label="vxw31",fontsize=16,color="green",shape="box"];904[label="vxw401",fontsize=16,color="green",shape="box"];905[label="vxw31",fontsize=16,color="green",shape="box"];906[label="vxw401",fontsize=16,color="green",shape="box"];907[label="vxw31",fontsize=16,color="green",shape="box"];908[label="vxw401",fontsize=16,color="green",shape="box"];909[label="vxw31",fontsize=16,color="green",shape="box"];910[label="vxw401",fontsize=16,color="green",shape="box"];911[label="vxw31",fontsize=16,color="green",shape="box"];912[label="vxw401",fontsize=16,color="green",shape="box"];913[label="vxw31",fontsize=16,color="green",shape="box"];914[label="vxw401",fontsize=16,color="green",shape="box"];915[label="False",fontsize=16,color="green",shape="box"];916[label="vxw91",fontsize=16,color="green",shape="box"];917 -> 1150[label="",style="dashed", color="red", weight=0]; 917[label="compare1 (vxw73,vxw74) (vxw75,vxw76) (vxw73 < vxw75 || vxw73 == vxw75 && vxw74 <= vxw76)",fontsize=16,color="magenta"];917 -> 1151[label="",style="dashed", color="magenta", weight=3]; 917 -> 1152[label="",style="dashed", color="magenta", weight=3]; 917 -> 1153[label="",style="dashed", color="magenta", weight=3]; 917 -> 1154[label="",style="dashed", color="magenta", weight=3]; 917 -> 1155[label="",style="dashed", color="magenta", weight=3]; 917 -> 1156[label="",style="dashed", color="magenta", weight=3]; 710[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];710 -> 978[label="",style="solid", color="black", weight=3]; 711[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];711 -> 979[label="",style="solid", color="black", weight=3]; 712[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];712 -> 980[label="",style="solid", color="black", weight=3]; 918[label="vxw30",fontsize=16,color="green",shape="box"];919[label="vxw400",fontsize=16,color="green",shape="box"];920[label="vxw30",fontsize=16,color="green",shape="box"];921[label="vxw400",fontsize=16,color="green",shape="box"];922[label="vxw30",fontsize=16,color="green",shape="box"];923[label="vxw400",fontsize=16,color="green",shape="box"];924[label="vxw30",fontsize=16,color="green",shape="box"];925[label="vxw400",fontsize=16,color="green",shape="box"];926[label="vxw30",fontsize=16,color="green",shape="box"];927[label="vxw400",fontsize=16,color="green",shape="box"];928[label="vxw30",fontsize=16,color="green",shape="box"];929[label="vxw400",fontsize=16,color="green",shape="box"];930[label="vxw30",fontsize=16,color="green",shape="box"];931[label="vxw400",fontsize=16,color="green",shape="box"];932[label="vxw30",fontsize=16,color="green",shape="box"];933[label="vxw400",fontsize=16,color="green",shape="box"];934[label="vxw30",fontsize=16,color="green",shape="box"];935[label="vxw400",fontsize=16,color="green",shape="box"];936[label="vxw30",fontsize=16,color="green",shape="box"];937[label="vxw400",fontsize=16,color="green",shape="box"];938[label="vxw30",fontsize=16,color="green",shape="box"];939[label="vxw400",fontsize=16,color="green",shape="box"];940[label="vxw30",fontsize=16,color="green",shape="box"];941[label="vxw400",fontsize=16,color="green",shape="box"];942[label="vxw30",fontsize=16,color="green",shape="box"];943[label="vxw400",fontsize=16,color="green",shape="box"];944[label="vxw30",fontsize=16,color="green",shape="box"];945[label="vxw400",fontsize=16,color="green",shape="box"];946 -> 292[label="",style="dashed", color="red", weight=0]; 946[label="vxw31 == vxw401",fontsize=16,color="magenta"];946 -> 996[label="",style="dashed", color="magenta", weight=3]; 946 -> 997[label="",style="dashed", color="magenta", weight=3]; 947 -> 293[label="",style="dashed", color="red", weight=0]; 947[label="vxw31 == vxw401",fontsize=16,color="magenta"];947 -> 998[label="",style="dashed", color="magenta", weight=3]; 947 -> 999[label="",style="dashed", color="magenta", weight=3]; 948 -> 294[label="",style="dashed", color="red", weight=0]; 948[label="vxw31 == vxw401",fontsize=16,color="magenta"];948 -> 1000[label="",style="dashed", color="magenta", weight=3]; 948 -> 1001[label="",style="dashed", color="magenta", weight=3]; 949 -> 295[label="",style="dashed", color="red", weight=0]; 949[label="vxw31 == vxw401",fontsize=16,color="magenta"];949 -> 1002[label="",style="dashed", color="magenta", weight=3]; 949 -> 1003[label="",style="dashed", color="magenta", weight=3]; 950 -> 296[label="",style="dashed", color="red", weight=0]; 950[label="vxw31 == vxw401",fontsize=16,color="magenta"];950 -> 1004[label="",style="dashed", color="magenta", weight=3]; 950 -> 1005[label="",style="dashed", color="magenta", weight=3]; 951 -> 297[label="",style="dashed", color="red", weight=0]; 951[label="vxw31 == vxw401",fontsize=16,color="magenta"];951 -> 1006[label="",style="dashed", color="magenta", weight=3]; 951 -> 1007[label="",style="dashed", color="magenta", weight=3]; 952 -> 298[label="",style="dashed", color="red", weight=0]; 952[label="vxw31 == vxw401",fontsize=16,color="magenta"];952 -> 1008[label="",style="dashed", color="magenta", weight=3]; 952 -> 1009[label="",style="dashed", color="magenta", weight=3]; 953 -> 299[label="",style="dashed", color="red", weight=0]; 953[label="vxw31 == vxw401",fontsize=16,color="magenta"];953 -> 1010[label="",style="dashed", color="magenta", weight=3]; 953 -> 1011[label="",style="dashed", color="magenta", weight=3]; 954 -> 300[label="",style="dashed", color="red", weight=0]; 954[label="vxw31 == vxw401",fontsize=16,color="magenta"];954 -> 1012[label="",style="dashed", color="magenta", weight=3]; 954 -> 1013[label="",style="dashed", color="magenta", weight=3]; 955 -> 301[label="",style="dashed", color="red", weight=0]; 955[label="vxw31 == vxw401",fontsize=16,color="magenta"];955 -> 1014[label="",style="dashed", color="magenta", weight=3]; 955 -> 1015[label="",style="dashed", color="magenta", weight=3]; 956 -> 302[label="",style="dashed", color="red", weight=0]; 956[label="vxw31 == vxw401",fontsize=16,color="magenta"];956 -> 1016[label="",style="dashed", color="magenta", weight=3]; 956 -> 1017[label="",style="dashed", color="magenta", weight=3]; 957 -> 303[label="",style="dashed", color="red", weight=0]; 957[label="vxw31 == vxw401",fontsize=16,color="magenta"];957 -> 1018[label="",style="dashed", color="magenta", weight=3]; 957 -> 1019[label="",style="dashed", color="magenta", weight=3]; 958 -> 304[label="",style="dashed", color="red", weight=0]; 958[label="vxw31 == vxw401",fontsize=16,color="magenta"];958 -> 1020[label="",style="dashed", color="magenta", weight=3]; 958 -> 1021[label="",style="dashed", color="magenta", weight=3]; 959 -> 305[label="",style="dashed", color="red", weight=0]; 959[label="vxw31 == vxw401",fontsize=16,color="magenta"];959 -> 1022[label="",style="dashed", color="magenta", weight=3]; 959 -> 1023[label="",style="dashed", color="magenta", weight=3]; 960 -> 292[label="",style="dashed", color="red", weight=0]; 960[label="vxw32 == vxw402",fontsize=16,color="magenta"];960 -> 1024[label="",style="dashed", color="magenta", weight=3]; 960 -> 1025[label="",style="dashed", color="magenta", weight=3]; 961 -> 293[label="",style="dashed", color="red", weight=0]; 961[label="vxw32 == vxw402",fontsize=16,color="magenta"];961 -> 1026[label="",style="dashed", color="magenta", weight=3]; 961 -> 1027[label="",style="dashed", color="magenta", weight=3]; 962 -> 294[label="",style="dashed", color="red", weight=0]; 962[label="vxw32 == vxw402",fontsize=16,color="magenta"];962 -> 1028[label="",style="dashed", color="magenta", weight=3]; 962 -> 1029[label="",style="dashed", color="magenta", weight=3]; 963 -> 295[label="",style="dashed", color="red", weight=0]; 963[label="vxw32 == vxw402",fontsize=16,color="magenta"];963 -> 1030[label="",style="dashed", color="magenta", weight=3]; 963 -> 1031[label="",style="dashed", color="magenta", weight=3]; 964 -> 296[label="",style="dashed", color="red", weight=0]; 964[label="vxw32 == vxw402",fontsize=16,color="magenta"];964 -> 1032[label="",style="dashed", color="magenta", weight=3]; 964 -> 1033[label="",style="dashed", color="magenta", weight=3]; 965 -> 297[label="",style="dashed", color="red", weight=0]; 965[label="vxw32 == vxw402",fontsize=16,color="magenta"];965 -> 1034[label="",style="dashed", color="magenta", weight=3]; 965 -> 1035[label="",style="dashed", color="magenta", weight=3]; 966 -> 298[label="",style="dashed", color="red", weight=0]; 966[label="vxw32 == vxw402",fontsize=16,color="magenta"];966 -> 1036[label="",style="dashed", color="magenta", weight=3]; 966 -> 1037[label="",style="dashed", color="magenta", weight=3]; 967 -> 299[label="",style="dashed", color="red", weight=0]; 967[label="vxw32 == vxw402",fontsize=16,color="magenta"];967 -> 1038[label="",style="dashed", color="magenta", weight=3]; 967 -> 1039[label="",style="dashed", color="magenta", weight=3]; 968 -> 300[label="",style="dashed", color="red", weight=0]; 968[label="vxw32 == vxw402",fontsize=16,color="magenta"];968 -> 1040[label="",style="dashed", color="magenta", weight=3]; 968 -> 1041[label="",style="dashed", color="magenta", weight=3]; 969 -> 301[label="",style="dashed", color="red", weight=0]; 969[label="vxw32 == vxw402",fontsize=16,color="magenta"];969 -> 1042[label="",style="dashed", color="magenta", weight=3]; 969 -> 1043[label="",style="dashed", color="magenta", weight=3]; 970 -> 302[label="",style="dashed", color="red", weight=0]; 970[label="vxw32 == vxw402",fontsize=16,color="magenta"];970 -> 1044[label="",style="dashed", color="magenta", weight=3]; 970 -> 1045[label="",style="dashed", color="magenta", weight=3]; 971 -> 303[label="",style="dashed", color="red", weight=0]; 971[label="vxw32 == vxw402",fontsize=16,color="magenta"];971 -> 1046[label="",style="dashed", color="magenta", weight=3]; 971 -> 1047[label="",style="dashed", color="magenta", weight=3]; 972 -> 304[label="",style="dashed", color="red", weight=0]; 972[label="vxw32 == vxw402",fontsize=16,color="magenta"];972 -> 1048[label="",style="dashed", color="magenta", weight=3]; 972 -> 1049[label="",style="dashed", color="magenta", weight=3]; 973 -> 305[label="",style="dashed", color="red", weight=0]; 973[label="vxw32 == vxw402",fontsize=16,color="magenta"];973 -> 1050[label="",style="dashed", color="magenta", weight=3]; 973 -> 1051[label="",style="dashed", color="magenta", weight=3]; 974 -> 1183[label="",style="dashed", color="red", weight=0]; 974[label="compare1 (vxw46,vxw47,vxw48) (vxw49,vxw50,vxw51) (vxw46 < vxw49 || vxw46 == vxw49 && (vxw47 < vxw50 || vxw47 == vxw50 && vxw48 <= vxw51))",fontsize=16,color="magenta"];974 -> 1184[label="",style="dashed", color="magenta", weight=3]; 974 -> 1185[label="",style="dashed", color="magenta", weight=3]; 974 -> 1186[label="",style="dashed", color="magenta", weight=3]; 974 -> 1187[label="",style="dashed", color="magenta", weight=3]; 974 -> 1188[label="",style="dashed", color="magenta", weight=3]; 974 -> 1189[label="",style="dashed", color="magenta", weight=3]; 974 -> 1190[label="",style="dashed", color="magenta", weight=3]; 974 -> 1191[label="",style="dashed", color="magenta", weight=3]; 805 -> 248[label="",style="dashed", color="red", weight=0]; 805[label="primMulInt vxw300 vxw4010",fontsize=16,color="magenta"];805 -> 981[label="",style="dashed", color="magenta", weight=3]; 805 -> 982[label="",style="dashed", color="magenta", weight=3]; 806[label="Pos (primMulNat vxw300 vxw4010)",fontsize=16,color="green",shape="box"];806 -> 983[label="",style="dashed", color="green", weight=3]; 807[label="Neg (primMulNat vxw300 vxw4010)",fontsize=16,color="green",shape="box"];807 -> 984[label="",style="dashed", color="green", weight=3]; 808[label="Neg (primMulNat vxw300 vxw4010)",fontsize=16,color="green",shape="box"];808 -> 985[label="",style="dashed", color="green", weight=3]; 809[label="Pos (primMulNat vxw300 vxw4010)",fontsize=16,color="green",shape="box"];809 -> 986[label="",style="dashed", color="green", weight=3]; 988[label="vxw57",fontsize=16,color="green",shape="box"];989[label="vxw58",fontsize=16,color="green",shape="box"];990[label="Left vxw57 <= Left vxw58",fontsize=16,color="black",shape="box"];990 -> 1054[label="",style="solid", color="black", weight=3]; 987[label="compare1 (Left vxw103) (Left vxw104) vxw105",fontsize=16,color="burlywood",shape="triangle"];3034[label="vxw105/False",fontsize=10,color="white",style="solid",shape="box"];987 -> 3034[label="",style="solid", color="burlywood", weight=9]; 3034 -> 1055[label="",style="solid", color="burlywood", weight=3]; 3035[label="vxw105/True",fontsize=10,color="white",style="solid",shape="box"];987 -> 3035[label="",style="solid", color="burlywood", weight=9]; 3035 -> 1056[label="",style="solid", color="burlywood", weight=3]; 811[label="compare0 (Right vxw30) (Left vxw400) True",fontsize=16,color="black",shape="box"];811 -> 1057[label="",style="solid", color="black", weight=3]; 1059[label="vxw65",fontsize=16,color="green",shape="box"];1060[label="vxw64",fontsize=16,color="green",shape="box"];1061[label="Right vxw64 <= Right vxw65",fontsize=16,color="black",shape="box"];1061 -> 1065[label="",style="solid", color="black", weight=3]; 1058[label="compare1 (Right vxw113) (Right vxw114) vxw115",fontsize=16,color="burlywood",shape="triangle"];3036[label="vxw115/False",fontsize=10,color="white",style="solid",shape="box"];1058 -> 3036[label="",style="solid", color="burlywood", weight=9]; 3036 -> 1066[label="",style="solid", color="burlywood", weight=3]; 3037[label="vxw115/True",fontsize=10,color="white",style="solid",shape="box"];1058 -> 3037[label="",style="solid", color="burlywood", weight=9]; 3037 -> 1067[label="",style="solid", color="burlywood", weight=3]; 813[label="compare0 True False True",fontsize=16,color="black",shape="box"];813 -> 1068[label="",style="solid", color="black", weight=3]; 814[label="GT",fontsize=16,color="green",shape="box"];815[label="primEqFloat (Float vxw300 vxw301) (Float vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];815 -> 1069[label="",style="solid", color="black", weight=3]; 816 -> 746[label="",style="dashed", color="red", weight=0]; 816[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];816 -> 1070[label="",style="dashed", color="magenta", weight=3]; 816 -> 1071[label="",style="dashed", color="magenta", weight=3]; 817 -> 448[label="",style="dashed", color="red", weight=0]; 817[label="primEqInt vxw300 vxw4000",fontsize=16,color="magenta"];817 -> 1072[label="",style="dashed", color="magenta", weight=3]; 817 -> 1073[label="",style="dashed", color="magenta", weight=3]; 818 -> 746[label="",style="dashed", color="red", weight=0]; 818[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];818 -> 1074[label="",style="dashed", color="magenta", weight=3]; 818 -> 1075[label="",style="dashed", color="magenta", weight=3]; 819[label="primEqChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];819 -> 1076[label="",style="solid", color="black", weight=3]; 820[label="True",fontsize=16,color="green",shape="box"];821[label="False",fontsize=16,color="green",shape="box"];822[label="False",fontsize=16,color="green",shape="box"];823[label="True",fontsize=16,color="green",shape="box"];824 -> 746[label="",style="dashed", color="red", weight=0]; 824[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];824 -> 1077[label="",style="dashed", color="magenta", weight=3]; 824 -> 1078[label="",style="dashed", color="magenta", weight=3]; 825[label="primEqInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];3038[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];825 -> 3038[label="",style="solid", color="burlywood", weight=9]; 3038 -> 1079[label="",style="solid", color="burlywood", weight=3]; 3039[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];825 -> 3039[label="",style="solid", color="burlywood", weight=9]; 3039 -> 1080[label="",style="solid", color="burlywood", weight=3]; 826[label="primEqInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];3040[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];826 -> 3040[label="",style="solid", color="burlywood", weight=9]; 3040 -> 1081[label="",style="solid", color="burlywood", weight=3]; 3041[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];826 -> 3041[label="",style="solid", color="burlywood", weight=9]; 3041 -> 1082[label="",style="solid", color="burlywood", weight=3]; 827[label="primEqInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];3042[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];827 -> 3042[label="",style="solid", color="burlywood", weight=9]; 3042 -> 1083[label="",style="solid", color="burlywood", weight=3]; 3043[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];827 -> 3043[label="",style="solid", color="burlywood", weight=9]; 3043 -> 1084[label="",style="solid", color="burlywood", weight=3]; 828[label="primEqInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];3044[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];828 -> 3044[label="",style="solid", color="burlywood", weight=9]; 3044 -> 1085[label="",style="solid", color="burlywood", weight=3]; 3045[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];828 -> 3045[label="",style="solid", color="burlywood", weight=9]; 3045 -> 1086[label="",style="solid", color="burlywood", weight=3]; 829[label="True",fontsize=16,color="green",shape="box"];830[label="primEqDouble (Double vxw300 vxw301) (Double vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];830 -> 1087[label="",style="solid", color="black", weight=3]; 831 -> 746[label="",style="dashed", color="red", weight=0]; 831[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];831 -> 1088[label="",style="dashed", color="magenta", weight=3]; 831 -> 1089[label="",style="dashed", color="magenta", weight=3]; 832[label="False",fontsize=16,color="green",shape="box"];833[label="False",fontsize=16,color="green",shape="box"];834[label="True",fontsize=16,color="green",shape="box"];835[label="True",fontsize=16,color="green",shape="box"];836[label="False",fontsize=16,color="green",shape="box"];837[label="False",fontsize=16,color="green",shape="box"];838[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3046[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 1090[label="",style="solid", color="blue", weight=3]; 3047[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 1091[label="",style="solid", color="blue", weight=3]; 3048[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 1092[label="",style="solid", color="blue", weight=3]; 3049[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 1093[label="",style="solid", color="blue", weight=3]; 3050[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 1094[label="",style="solid", color="blue", weight=3]; 3051[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 1095[label="",style="solid", color="blue", weight=3]; 3052[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 1096[label="",style="solid", color="blue", weight=3]; 3053[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 1097[label="",style="solid", color="blue", weight=3]; 3054[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 1098[label="",style="solid", color="blue", weight=3]; 3055[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3055[label="",style="solid", color="blue", weight=9]; 3055 -> 1099[label="",style="solid", color="blue", weight=3]; 3056[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3056[label="",style="solid", color="blue", weight=9]; 3056 -> 1100[label="",style="solid", color="blue", weight=3]; 3057[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 1101[label="",style="solid", color="blue", weight=3]; 3058[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 1102[label="",style="solid", color="blue", weight=3]; 3059[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 1103[label="",style="solid", color="blue", weight=3]; 839[label="True",fontsize=16,color="green",shape="box"];840[label="False",fontsize=16,color="green",shape="box"];841[label="False",fontsize=16,color="green",shape="box"];842[label="False",fontsize=16,color="green",shape="box"];843[label="True",fontsize=16,color="green",shape="box"];844[label="False",fontsize=16,color="green",shape="box"];845[label="False",fontsize=16,color="green",shape="box"];846[label="False",fontsize=16,color="green",shape="box"];847[label="True",fontsize=16,color="green",shape="box"];848[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3060[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 1104[label="",style="solid", color="blue", weight=3]; 3061[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 1105[label="",style="solid", color="blue", weight=3]; 3062[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 1106[label="",style="solid", color="blue", weight=3]; 3063[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 1107[label="",style="solid", color="blue", weight=3]; 3064[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 1108[label="",style="solid", color="blue", weight=3]; 3065[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 1109[label="",style="solid", color="blue", weight=3]; 3066[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1110[label="",style="solid", color="blue", weight=3]; 3067[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1111[label="",style="solid", color="blue", weight=3]; 3068[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1112[label="",style="solid", color="blue", weight=3]; 3069[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1113[label="",style="solid", color="blue", weight=3]; 3070[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1114[label="",style="solid", color="blue", weight=3]; 3071[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 1115[label="",style="solid", color="blue", weight=3]; 3072[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 1116[label="",style="solid", color="blue", weight=3]; 3073[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];848 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 1117[label="",style="solid", color="blue", weight=3]; 849[label="False",fontsize=16,color="green",shape="box"];850[label="False",fontsize=16,color="green",shape="box"];851[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3074[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 1118[label="",style="solid", color="blue", weight=3]; 3075[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 1119[label="",style="solid", color="blue", weight=3]; 3076[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 1120[label="",style="solid", color="blue", weight=3]; 3077[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 1121[label="",style="solid", color="blue", weight=3]; 3078[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 1122[label="",style="solid", color="blue", weight=3]; 3079[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 1123[label="",style="solid", color="blue", weight=3]; 3080[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 1124[label="",style="solid", color="blue", weight=3]; 3081[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 1125[label="",style="solid", color="blue", weight=3]; 3082[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3082[label="",style="solid", color="blue", weight=9]; 3082 -> 1126[label="",style="solid", color="blue", weight=3]; 3083[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 1127[label="",style="solid", color="blue", weight=3]; 3084[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 1128[label="",style="solid", color="blue", weight=3]; 3085[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 1129[label="",style="solid", color="blue", weight=3]; 3086[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 1130[label="",style="solid", color="blue", weight=3]; 3087[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];851 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 1131[label="",style="solid", color="blue", weight=3]; 975[label="vxw24 <= vxw25",fontsize=16,color="blue",shape="box"];3088[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 1132[label="",style="solid", color="blue", weight=3]; 3089[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 1133[label="",style="solid", color="blue", weight=3]; 3090[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 1134[label="",style="solid", color="blue", weight=3]; 3091[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 1135[label="",style="solid", color="blue", weight=3]; 3092[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 1136[label="",style="solid", color="blue", weight=3]; 3093[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 1137[label="",style="solid", color="blue", weight=3]; 3094[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 1138[label="",style="solid", color="blue", weight=3]; 3095[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 1139[label="",style="solid", color="blue", weight=3]; 3096[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 1140[label="",style="solid", color="blue", weight=3]; 3097[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 1141[label="",style="solid", color="blue", weight=3]; 3098[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 1142[label="",style="solid", color="blue", weight=3]; 3099[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 1143[label="",style="solid", color="blue", weight=3]; 3100[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 1144[label="",style="solid", color="blue", weight=3]; 3101[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1145[label="",style="solid", color="blue", weight=3]; 976[label="compare1 (Just vxw96) (Just vxw97) False",fontsize=16,color="black",shape="box"];976 -> 1146[label="",style="solid", color="black", weight=3]; 977[label="compare1 (Just vxw96) (Just vxw97) True",fontsize=16,color="black",shape="box"];977 -> 1147[label="",style="solid", color="black", weight=3]; 1151[label="vxw75",fontsize=16,color="green",shape="box"];1152[label="vxw76",fontsize=16,color="green",shape="box"];1153[label="vxw74",fontsize=16,color="green",shape="box"];1154 -> 746[label="",style="dashed", color="red", weight=0]; 1154[label="vxw73 == vxw75 && vxw74 <= vxw76",fontsize=16,color="magenta"];1154 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1154 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1155[label="vxw73 < vxw75",fontsize=16,color="blue",shape="box"];3102[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1165[label="",style="solid", color="blue", weight=3]; 3103[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1166[label="",style="solid", color="blue", weight=3]; 3104[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1167[label="",style="solid", color="blue", weight=3]; 3105[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1168[label="",style="solid", color="blue", weight=3]; 3106[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1169[label="",style="solid", color="blue", weight=3]; 3107[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1170[label="",style="solid", color="blue", weight=3]; 3108[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1171[label="",style="solid", color="blue", weight=3]; 3109[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1172[label="",style="solid", color="blue", weight=3]; 3110[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1173[label="",style="solid", color="blue", weight=3]; 3111[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1174[label="",style="solid", color="blue", weight=3]; 3112[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1175[label="",style="solid", color="blue", weight=3]; 3113[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1176[label="",style="solid", color="blue", weight=3]; 3114[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 1177[label="",style="solid", color="blue", weight=3]; 3115[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1155 -> 3115[label="",style="solid", color="blue", weight=9]; 3115 -> 1178[label="",style="solid", color="blue", weight=3]; 1156[label="vxw73",fontsize=16,color="green",shape="box"];1150[label="compare1 (vxw123,vxw124) (vxw125,vxw126) (vxw127 || vxw128)",fontsize=16,color="burlywood",shape="triangle"];3116[label="vxw127/False",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 1179[label="",style="solid", color="burlywood", weight=3]; 3117[label="vxw127/True",fontsize=10,color="white",style="solid",shape="box"];1150 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 1180[label="",style="solid", color="burlywood", weight=3]; 978[label="GT",fontsize=16,color="green",shape="box"];979[label="GT",fontsize=16,color="green",shape="box"];980[label="GT",fontsize=16,color="green",shape="box"];996[label="vxw31",fontsize=16,color="green",shape="box"];997[label="vxw401",fontsize=16,color="green",shape="box"];998[label="vxw31",fontsize=16,color="green",shape="box"];999[label="vxw401",fontsize=16,color="green",shape="box"];1000[label="vxw31",fontsize=16,color="green",shape="box"];1001[label="vxw401",fontsize=16,color="green",shape="box"];1002[label="vxw31",fontsize=16,color="green",shape="box"];1003[label="vxw401",fontsize=16,color="green",shape="box"];1004[label="vxw31",fontsize=16,color="green",shape="box"];1005[label="vxw401",fontsize=16,color="green",shape="box"];1006[label="vxw31",fontsize=16,color="green",shape="box"];1007[label="vxw401",fontsize=16,color="green",shape="box"];1008[label="vxw31",fontsize=16,color="green",shape="box"];1009[label="vxw401",fontsize=16,color="green",shape="box"];1010[label="vxw31",fontsize=16,color="green",shape="box"];1011[label="vxw401",fontsize=16,color="green",shape="box"];1012[label="vxw31",fontsize=16,color="green",shape="box"];1013[label="vxw401",fontsize=16,color="green",shape="box"];1014[label="vxw31",fontsize=16,color="green",shape="box"];1015[label="vxw401",fontsize=16,color="green",shape="box"];1016[label="vxw31",fontsize=16,color="green",shape="box"];1017[label="vxw401",fontsize=16,color="green",shape="box"];1018[label="vxw31",fontsize=16,color="green",shape="box"];1019[label="vxw401",fontsize=16,color="green",shape="box"];1020[label="vxw31",fontsize=16,color="green",shape="box"];1021[label="vxw401",fontsize=16,color="green",shape="box"];1022[label="vxw31",fontsize=16,color="green",shape="box"];1023[label="vxw401",fontsize=16,color="green",shape="box"];1024[label="vxw32",fontsize=16,color="green",shape="box"];1025[label="vxw402",fontsize=16,color="green",shape="box"];1026[label="vxw32",fontsize=16,color="green",shape="box"];1027[label="vxw402",fontsize=16,color="green",shape="box"];1028[label="vxw32",fontsize=16,color="green",shape="box"];1029[label="vxw402",fontsize=16,color="green",shape="box"];1030[label="vxw32",fontsize=16,color="green",shape="box"];1031[label="vxw402",fontsize=16,color="green",shape="box"];1032[label="vxw32",fontsize=16,color="green",shape="box"];1033[label="vxw402",fontsize=16,color="green",shape="box"];1034[label="vxw32",fontsize=16,color="green",shape="box"];1035[label="vxw402",fontsize=16,color="green",shape="box"];1036[label="vxw32",fontsize=16,color="green",shape="box"];1037[label="vxw402",fontsize=16,color="green",shape="box"];1038[label="vxw32",fontsize=16,color="green",shape="box"];1039[label="vxw402",fontsize=16,color="green",shape="box"];1040[label="vxw32",fontsize=16,color="green",shape="box"];1041[label="vxw402",fontsize=16,color="green",shape="box"];1042[label="vxw32",fontsize=16,color="green",shape="box"];1043[label="vxw402",fontsize=16,color="green",shape="box"];1044[label="vxw32",fontsize=16,color="green",shape="box"];1045[label="vxw402",fontsize=16,color="green",shape="box"];1046[label="vxw32",fontsize=16,color="green",shape="box"];1047[label="vxw402",fontsize=16,color="green",shape="box"];1048[label="vxw32",fontsize=16,color="green",shape="box"];1049[label="vxw402",fontsize=16,color="green",shape="box"];1050[label="vxw32",fontsize=16,color="green",shape="box"];1051[label="vxw402",fontsize=16,color="green",shape="box"];1184[label="vxw46",fontsize=16,color="green",shape="box"];1185[label="vxw46 < vxw49",fontsize=16,color="blue",shape="box"];3118[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3118[label="",style="solid", color="blue", weight=9]; 3118 -> 1200[label="",style="solid", color="blue", weight=3]; 3119[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 1201[label="",style="solid", color="blue", weight=3]; 3120[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 1202[label="",style="solid", color="blue", weight=3]; 3121[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 1203[label="",style="solid", color="blue", weight=3]; 3122[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 1204[label="",style="solid", color="blue", weight=3]; 3123[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 1205[label="",style="solid", color="blue", weight=3]; 3124[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 1206[label="",style="solid", color="blue", weight=3]; 3125[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 1207[label="",style="solid", color="blue", weight=3]; 3126[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 1208[label="",style="solid", color="blue", weight=3]; 3127[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 1209[label="",style="solid", color="blue", weight=3]; 3128[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 1210[label="",style="solid", color="blue", weight=3]; 3129[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 1211[label="",style="solid", color="blue", weight=3]; 3130[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 1212[label="",style="solid", color="blue", weight=3]; 3131[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 1213[label="",style="solid", color="blue", weight=3]; 1186[label="vxw50",fontsize=16,color="green",shape="box"];1187[label="vxw51",fontsize=16,color="green",shape="box"];1188[label="vxw49",fontsize=16,color="green",shape="box"];1189 -> 746[label="",style="dashed", color="red", weight=0]; 1189[label="vxw46 == vxw49 && (vxw47 < vxw50 || vxw47 == vxw50 && vxw48 <= vxw51)",fontsize=16,color="magenta"];1189 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1190[label="vxw47",fontsize=16,color="green",shape="box"];1191[label="vxw48",fontsize=16,color="green",shape="box"];1183[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) (vxw144 || vxw145)",fontsize=16,color="burlywood",shape="triangle"];3132[label="vxw144/False",fontsize=10,color="white",style="solid",shape="box"];1183 -> 3132[label="",style="solid", color="burlywood", weight=9]; 3132 -> 1216[label="",style="solid", color="burlywood", weight=3]; 3133[label="vxw144/True",fontsize=10,color="white",style="solid",shape="box"];1183 -> 3133[label="",style="solid", color="burlywood", weight=9]; 3133 -> 1217[label="",style="solid", color="burlywood", weight=3]; 981[label="vxw4010",fontsize=16,color="green",shape="box"];982[label="vxw300",fontsize=16,color="green",shape="box"];983[label="primMulNat vxw300 vxw4010",fontsize=16,color="burlywood",shape="triangle"];3134[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];983 -> 3134[label="",style="solid", color="burlywood", weight=9]; 3134 -> 1218[label="",style="solid", color="burlywood", weight=3]; 3135[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];983 -> 3135[label="",style="solid", color="burlywood", weight=9]; 3135 -> 1219[label="",style="solid", color="burlywood", weight=3]; 984 -> 983[label="",style="dashed", color="red", weight=0]; 984[label="primMulNat vxw300 vxw4010",fontsize=16,color="magenta"];984 -> 1220[label="",style="dashed", color="magenta", weight=3]; 985 -> 983[label="",style="dashed", color="red", weight=0]; 985[label="primMulNat vxw300 vxw4010",fontsize=16,color="magenta"];985 -> 1221[label="",style="dashed", color="magenta", weight=3]; 986 -> 983[label="",style="dashed", color="red", weight=0]; 986[label="primMulNat vxw300 vxw4010",fontsize=16,color="magenta"];986 -> 1222[label="",style="dashed", color="magenta", weight=3]; 986 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1054[label="vxw57 <= vxw58",fontsize=16,color="blue",shape="box"];3136[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 1224[label="",style="solid", color="blue", weight=3]; 3137[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 1225[label="",style="solid", color="blue", weight=3]; 3138[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 1226[label="",style="solid", color="blue", weight=3]; 3139[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 1227[label="",style="solid", color="blue", weight=3]; 3140[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 1228[label="",style="solid", color="blue", weight=3]; 3141[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 1229[label="",style="solid", color="blue", weight=3]; 3142[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 1230[label="",style="solid", color="blue", weight=3]; 3143[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 1231[label="",style="solid", color="blue", weight=3]; 3144[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 1232[label="",style="solid", color="blue", weight=3]; 3145[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 1233[label="",style="solid", color="blue", weight=3]; 3146[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1234[label="",style="solid", color="blue", weight=3]; 3147[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1235[label="",style="solid", color="blue", weight=3]; 3148[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 1236[label="",style="solid", color="blue", weight=3]; 3149[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 1237[label="",style="solid", color="blue", weight=3]; 1055[label="compare1 (Left vxw103) (Left vxw104) False",fontsize=16,color="black",shape="box"];1055 -> 1238[label="",style="solid", color="black", weight=3]; 1056[label="compare1 (Left vxw103) (Left vxw104) True",fontsize=16,color="black",shape="box"];1056 -> 1239[label="",style="solid", color="black", weight=3]; 1057[label="GT",fontsize=16,color="green",shape="box"];1065[label="vxw64 <= vxw65",fontsize=16,color="blue",shape="box"];3150[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 1240[label="",style="solid", color="blue", weight=3]; 3151[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1241[label="",style="solid", color="blue", weight=3]; 3152[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1242[label="",style="solid", color="blue", weight=3]; 3153[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 1243[label="",style="solid", color="blue", weight=3]; 3154[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 1244[label="",style="solid", color="blue", weight=3]; 3155[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1245[label="",style="solid", color="blue", weight=3]; 3156[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1246[label="",style="solid", color="blue", weight=3]; 3157[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1247[label="",style="solid", color="blue", weight=3]; 3158[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1248[label="",style="solid", color="blue", weight=3]; 3159[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1249[label="",style="solid", color="blue", weight=3]; 3160[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1250[label="",style="solid", color="blue", weight=3]; 3161[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1251[label="",style="solid", color="blue", weight=3]; 3162[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1252[label="",style="solid", color="blue", weight=3]; 3163[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1253[label="",style="solid", color="blue", weight=3]; 1066[label="compare1 (Right vxw113) (Right vxw114) False",fontsize=16,color="black",shape="box"];1066 -> 1254[label="",style="solid", color="black", weight=3]; 1067[label="compare1 (Right vxw113) (Right vxw114) True",fontsize=16,color="black",shape="box"];1067 -> 1255[label="",style="solid", color="black", weight=3]; 1068[label="GT",fontsize=16,color="green",shape="box"];1069 -> 299[label="",style="dashed", color="red", weight=0]; 1069[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];1069 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1069 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1070[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3164[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1258[label="",style="solid", color="blue", weight=3]; 3165[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1259[label="",style="solid", color="blue", weight=3]; 3166[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1260[label="",style="solid", color="blue", weight=3]; 3167[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1261[label="",style="solid", color="blue", weight=3]; 3168[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1262[label="",style="solid", color="blue", weight=3]; 3169[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 1263[label="",style="solid", color="blue", weight=3]; 3170[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 1264[label="",style="solid", color="blue", weight=3]; 3171[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3171[label="",style="solid", color="blue", weight=9]; 3171 -> 1265[label="",style="solid", color="blue", weight=3]; 3172[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3172[label="",style="solid", color="blue", weight=9]; 3172 -> 1266[label="",style="solid", color="blue", weight=3]; 3173[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 1267[label="",style="solid", color="blue", weight=3]; 3174[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 1268[label="",style="solid", color="blue", weight=3]; 3175[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3175[label="",style="solid", color="blue", weight=9]; 3175 -> 1269[label="",style="solid", color="blue", weight=3]; 3176[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3176[label="",style="solid", color="blue", weight=9]; 3176 -> 1270[label="",style="solid", color="blue", weight=3]; 3177[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1271[label="",style="solid", color="blue", weight=3]; 1071[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3178[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1272[label="",style="solid", color="blue", weight=3]; 3179[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1273[label="",style="solid", color="blue", weight=3]; 3180[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1274[label="",style="solid", color="blue", weight=3]; 3181[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1275[label="",style="solid", color="blue", weight=3]; 3182[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1276[label="",style="solid", color="blue", weight=3]; 3183[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 1277[label="",style="solid", color="blue", weight=3]; 3184[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1278[label="",style="solid", color="blue", weight=3]; 3185[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1279[label="",style="solid", color="blue", weight=3]; 3186[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1280[label="",style="solid", color="blue", weight=3]; 3187[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1281[label="",style="solid", color="blue", weight=3]; 3188[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1282[label="",style="solid", color="blue", weight=3]; 3189[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1283[label="",style="solid", color="blue", weight=3]; 3190[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1284[label="",style="solid", color="blue", weight=3]; 3191[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1285[label="",style="solid", color="blue", weight=3]; 1072[label="vxw300",fontsize=16,color="green",shape="box"];1073[label="vxw4000",fontsize=16,color="green",shape="box"];1074[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3192[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1074 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1286[label="",style="solid", color="blue", weight=3]; 3193[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1074 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1287[label="",style="solid", color="blue", weight=3]; 1075[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3194[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1075 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1288[label="",style="solid", color="blue", weight=3]; 3195[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1075 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1289[label="",style="solid", color="blue", weight=3]; 1076[label="primEqNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];3196[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];1076 -> 3196[label="",style="solid", color="burlywood", weight=9]; 3196 -> 1290[label="",style="solid", color="burlywood", weight=3]; 3197[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1076 -> 3197[label="",style="solid", color="burlywood", weight=9]; 3197 -> 1291[label="",style="solid", color="burlywood", weight=3]; 1077[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3198[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1292[label="",style="solid", color="blue", weight=3]; 3199[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1293[label="",style="solid", color="blue", weight=3]; 3200[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1294[label="",style="solid", color="blue", weight=3]; 3201[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1295[label="",style="solid", color="blue", weight=3]; 3202[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1296[label="",style="solid", color="blue", weight=3]; 3203[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1297[label="",style="solid", color="blue", weight=3]; 3204[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1298[label="",style="solid", color="blue", weight=3]; 3205[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1299[label="",style="solid", color="blue", weight=3]; 3206[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1300[label="",style="solid", color="blue", weight=3]; 3207[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1301[label="",style="solid", color="blue", weight=3]; 3208[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1302[label="",style="solid", color="blue", weight=3]; 3209[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1303[label="",style="solid", color="blue", weight=3]; 3210[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1304[label="",style="solid", color="blue", weight=3]; 3211[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1305[label="",style="solid", color="blue", weight=3]; 1078 -> 746[label="",style="dashed", color="red", weight=0]; 1078[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];1078 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1078 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1079[label="primEqInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];3212[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3212[label="",style="solid", color="burlywood", weight=9]; 3212 -> 1308[label="",style="solid", color="burlywood", weight=3]; 3213[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3213[label="",style="solid", color="burlywood", weight=9]; 3213 -> 1309[label="",style="solid", color="burlywood", weight=3]; 1080[label="primEqInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];1080 -> 1310[label="",style="solid", color="black", weight=3]; 1081[label="primEqInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];3214[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3214[label="",style="solid", color="burlywood", weight=9]; 3214 -> 1311[label="",style="solid", color="burlywood", weight=3]; 3215[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3215[label="",style="solid", color="burlywood", weight=9]; 3215 -> 1312[label="",style="solid", color="burlywood", weight=3]; 1082[label="primEqInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];3216[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3216[label="",style="solid", color="burlywood", weight=9]; 3216 -> 1313[label="",style="solid", color="burlywood", weight=3]; 3217[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3217[label="",style="solid", color="burlywood", weight=9]; 3217 -> 1314[label="",style="solid", color="burlywood", weight=3]; 1083[label="primEqInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];1083 -> 1315[label="",style="solid", color="black", weight=3]; 1084[label="primEqInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];3218[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3218[label="",style="solid", color="burlywood", weight=9]; 3218 -> 1316[label="",style="solid", color="burlywood", weight=3]; 3219[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 1317[label="",style="solid", color="burlywood", weight=3]; 1085[label="primEqInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];3220[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1085 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 1318[label="",style="solid", color="burlywood", weight=3]; 3221[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1085 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 1319[label="",style="solid", color="burlywood", weight=3]; 1086[label="primEqInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];3222[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1086 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 1320[label="",style="solid", color="burlywood", weight=3]; 3223[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1086 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 1321[label="",style="solid", color="burlywood", weight=3]; 1087 -> 299[label="",style="dashed", color="red", weight=0]; 1087[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];1087 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1087 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1088[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3224[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1324[label="",style="solid", color="blue", weight=3]; 3225[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1325[label="",style="solid", color="blue", weight=3]; 3226[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1326[label="",style="solid", color="blue", weight=3]; 3227[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1327[label="",style="solid", color="blue", weight=3]; 3228[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3228[label="",style="solid", color="blue", weight=9]; 3228 -> 1328[label="",style="solid", color="blue", weight=3]; 3229[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3229[label="",style="solid", color="blue", weight=9]; 3229 -> 1329[label="",style="solid", color="blue", weight=3]; 3230[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3230[label="",style="solid", color="blue", weight=9]; 3230 -> 1330[label="",style="solid", color="blue", weight=3]; 3231[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3231[label="",style="solid", color="blue", weight=9]; 3231 -> 1331[label="",style="solid", color="blue", weight=3]; 3232[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3232[label="",style="solid", color="blue", weight=9]; 3232 -> 1332[label="",style="solid", color="blue", weight=3]; 3233[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3233[label="",style="solid", color="blue", weight=9]; 3233 -> 1333[label="",style="solid", color="blue", weight=3]; 3234[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1334[label="",style="solid", color="blue", weight=3]; 3235[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1335[label="",style="solid", color="blue", weight=3]; 3236[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1336[label="",style="solid", color="blue", weight=3]; 3237[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1337[label="",style="solid", color="blue", weight=3]; 1089 -> 302[label="",style="dashed", color="red", weight=0]; 1089[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1089 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1090 -> 292[label="",style="dashed", color="red", weight=0]; 1090[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1090 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1091 -> 293[label="",style="dashed", color="red", weight=0]; 1091[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1091 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1092 -> 294[label="",style="dashed", color="red", weight=0]; 1092[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1092 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1093 -> 295[label="",style="dashed", color="red", weight=0]; 1093[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1093 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1094 -> 296[label="",style="dashed", color="red", weight=0]; 1094[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1094 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1095 -> 297[label="",style="dashed", color="red", weight=0]; 1095[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1095 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1096 -> 298[label="",style="dashed", color="red", weight=0]; 1096[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1096 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1097 -> 299[label="",style="dashed", color="red", weight=0]; 1097[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1097 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1098 -> 300[label="",style="dashed", color="red", weight=0]; 1098[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1098 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1099 -> 301[label="",style="dashed", color="red", weight=0]; 1099[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1099 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1100 -> 302[label="",style="dashed", color="red", weight=0]; 1100[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1100 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1101 -> 303[label="",style="dashed", color="red", weight=0]; 1101[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1101 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1102 -> 304[label="",style="dashed", color="red", weight=0]; 1102[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1102 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1103 -> 305[label="",style="dashed", color="red", weight=0]; 1103[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1103 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1104 -> 292[label="",style="dashed", color="red", weight=0]; 1104[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1104 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1104 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1105 -> 293[label="",style="dashed", color="red", weight=0]; 1105[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1105 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1105 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1106 -> 294[label="",style="dashed", color="red", weight=0]; 1106[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1106 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1106 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1107 -> 295[label="",style="dashed", color="red", weight=0]; 1107[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1107 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1107 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1108 -> 296[label="",style="dashed", color="red", weight=0]; 1108[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1108 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1109 -> 297[label="",style="dashed", color="red", weight=0]; 1109[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1109 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1109 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1110 -> 298[label="",style="dashed", color="red", weight=0]; 1110[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1110 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1110 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1111 -> 299[label="",style="dashed", color="red", weight=0]; 1111[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1111 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1111 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1112 -> 300[label="",style="dashed", color="red", weight=0]; 1112[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1112 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1112 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1113 -> 301[label="",style="dashed", color="red", weight=0]; 1113[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1113 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1114 -> 302[label="",style="dashed", color="red", weight=0]; 1114[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1114 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1115 -> 303[label="",style="dashed", color="red", weight=0]; 1115[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1115 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1116 -> 304[label="",style="dashed", color="red", weight=0]; 1116[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1116 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1117 -> 305[label="",style="dashed", color="red", weight=0]; 1117[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1117 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1117 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1118 -> 292[label="",style="dashed", color="red", weight=0]; 1118[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1118 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1118 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1119 -> 293[label="",style="dashed", color="red", weight=0]; 1119[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1119 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1120 -> 294[label="",style="dashed", color="red", weight=0]; 1120[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1120 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1121 -> 295[label="",style="dashed", color="red", weight=0]; 1121[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1121 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1122 -> 296[label="",style="dashed", color="red", weight=0]; 1122[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1122 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1123 -> 297[label="",style="dashed", color="red", weight=0]; 1123[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1123 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1124 -> 298[label="",style="dashed", color="red", weight=0]; 1124[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1124 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1125 -> 299[label="",style="dashed", color="red", weight=0]; 1125[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1125 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1126 -> 300[label="",style="dashed", color="red", weight=0]; 1126[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1126 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1127 -> 301[label="",style="dashed", color="red", weight=0]; 1127[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1127 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1128 -> 302[label="",style="dashed", color="red", weight=0]; 1128[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1128 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1129 -> 303[label="",style="dashed", color="red", weight=0]; 1129[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1129 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1130 -> 304[label="",style="dashed", color="red", weight=0]; 1130[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1130 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1131 -> 305[label="",style="dashed", color="red", weight=0]; 1131[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1131 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1132[label="vxw24 <= vxw25",fontsize=16,color="black",shape="triangle"];1132 -> 1424[label="",style="solid", color="black", weight=3]; 1133[label="vxw24 <= vxw25",fontsize=16,color="black",shape="triangle"];1133 -> 1425[label="",style="solid", color="black", weight=3]; 1134[label="vxw24 <= vxw25",fontsize=16,color="black",shape="triangle"];1134 -> 1426[label="",style="solid", color="black", weight=3]; 1135[label="vxw24 <= vxw25",fontsize=16,color="burlywood",shape="triangle"];3238[label="vxw24/Nothing",fontsize=10,color="white",style="solid",shape="box"];1135 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 1427[label="",style="solid", color="burlywood", weight=3]; 3239[label="vxw24/Just vxw240",fontsize=10,color="white",style="solid",shape="box"];1135 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 1428[label="",style="solid", color="burlywood", weight=3]; 1136[label="vxw24 <= vxw25",fontsize=16,color="burlywood",shape="triangle"];3240[label="vxw24/(vxw240,vxw241)",fontsize=10,color="white",style="solid",shape="box"];1136 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 1429[label="",style="solid", color="burlywood", weight=3]; 1137[label="vxw24 <= vxw25",fontsize=16,color="burlywood",shape="triangle"];3241[label="vxw24/LT",fontsize=10,color="white",style="solid",shape="box"];1137 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 1430[label="",style="solid", color="burlywood", weight=3]; 3242[label="vxw24/EQ",fontsize=10,color="white",style="solid",shape="box"];1137 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 1431[label="",style="solid", color="burlywood", weight=3]; 3243[label="vxw24/GT",fontsize=10,color="white",style="solid",shape="box"];1137 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 1432[label="",style="solid", color="burlywood", weight=3]; 1138[label="vxw24 <= vxw25",fontsize=16,color="burlywood",shape="triangle"];3244[label="vxw24/(vxw240,vxw241,vxw242)",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 1433[label="",style="solid", color="burlywood", weight=3]; 1139[label="vxw24 <= vxw25",fontsize=16,color="black",shape="triangle"];1139 -> 1434[label="",style="solid", color="black", weight=3]; 1140[label="vxw24 <= vxw25",fontsize=16,color="black",shape="triangle"];1140 -> 1435[label="",style="solid", color="black", weight=3]; 1141[label="vxw24 <= vxw25",fontsize=16,color="black",shape="triangle"];1141 -> 1436[label="",style="solid", color="black", weight=3]; 1142[label="vxw24 <= vxw25",fontsize=16,color="black",shape="triangle"];1142 -> 1437[label="",style="solid", color="black", weight=3]; 1143[label="vxw24 <= vxw25",fontsize=16,color="burlywood",shape="triangle"];3245[label="vxw24/Left vxw240",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 1438[label="",style="solid", color="burlywood", weight=3]; 3246[label="vxw24/Right vxw240",fontsize=10,color="white",style="solid",shape="box"];1143 -> 3246[label="",style="solid", color="burlywood", weight=9]; 3246 -> 1439[label="",style="solid", color="burlywood", weight=3]; 1144[label="vxw24 <= vxw25",fontsize=16,color="black",shape="triangle"];1144 -> 1440[label="",style="solid", color="black", weight=3]; 1145[label="vxw24 <= vxw25",fontsize=16,color="burlywood",shape="triangle"];3247[label="vxw24/False",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3247[label="",style="solid", color="burlywood", weight=9]; 3247 -> 1441[label="",style="solid", color="burlywood", weight=3]; 3248[label="vxw24/True",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3248[label="",style="solid", color="burlywood", weight=9]; 3248 -> 1442[label="",style="solid", color="burlywood", weight=3]; 1146[label="compare0 (Just vxw96) (Just vxw97) otherwise",fontsize=16,color="black",shape="box"];1146 -> 1443[label="",style="solid", color="black", weight=3]; 1147[label="LT",fontsize=16,color="green",shape="box"];1163[label="vxw73 == vxw75",fontsize=16,color="blue",shape="box"];3249[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1444[label="",style="solid", color="blue", weight=3]; 3250[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1445[label="",style="solid", color="blue", weight=3]; 3251[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1446[label="",style="solid", color="blue", weight=3]; 3252[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1447[label="",style="solid", color="blue", weight=3]; 3253[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1448[label="",style="solid", color="blue", weight=3]; 3254[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1449[label="",style="solid", color="blue", weight=3]; 3255[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1450[label="",style="solid", color="blue", weight=3]; 3256[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1451[label="",style="solid", color="blue", weight=3]; 3257[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1452[label="",style="solid", color="blue", weight=3]; 3258[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 1453[label="",style="solid", color="blue", weight=3]; 3259[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 1454[label="",style="solid", color="blue", weight=3]; 3260[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 1455[label="",style="solid", color="blue", weight=3]; 3261[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 1456[label="",style="solid", color="blue", weight=3]; 3262[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1163 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 1457[label="",style="solid", color="blue", weight=3]; 1164[label="vxw74 <= vxw76",fontsize=16,color="blue",shape="box"];3263[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1458[label="",style="solid", color="blue", weight=3]; 3264[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1459[label="",style="solid", color="blue", weight=3]; 3265[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1460[label="",style="solid", color="blue", weight=3]; 3266[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1461[label="",style="solid", color="blue", weight=3]; 3267[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1462[label="",style="solid", color="blue", weight=3]; 3268[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1463[label="",style="solid", color="blue", weight=3]; 3269[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1464[label="",style="solid", color="blue", weight=3]; 3270[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1465[label="",style="solid", color="blue", weight=3]; 3271[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1466[label="",style="solid", color="blue", weight=3]; 3272[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1467[label="",style="solid", color="blue", weight=3]; 3273[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1468[label="",style="solid", color="blue", weight=3]; 3274[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1469[label="",style="solid", color="blue", weight=3]; 3275[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1470[label="",style="solid", color="blue", weight=3]; 3276[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1471[label="",style="solid", color="blue", weight=3]; 1165[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1165 -> 1472[label="",style="solid", color="black", weight=3]; 1166[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1166 -> 1473[label="",style="solid", color="black", weight=3]; 1167[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1167 -> 1474[label="",style="solid", color="black", weight=3]; 1168[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1168 -> 1475[label="",style="solid", color="black", weight=3]; 1169[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1169 -> 1476[label="",style="solid", color="black", weight=3]; 1170[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1170 -> 1477[label="",style="solid", color="black", weight=3]; 1171[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1171 -> 1478[label="",style="solid", color="black", weight=3]; 1172[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1172 -> 1479[label="",style="solid", color="black", weight=3]; 1173[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1173 -> 1480[label="",style="solid", color="black", weight=3]; 1174[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1174 -> 1481[label="",style="solid", color="black", weight=3]; 1175[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1175 -> 1482[label="",style="solid", color="black", weight=3]; 1176[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1176 -> 1483[label="",style="solid", color="black", weight=3]; 1177[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1177 -> 1484[label="",style="solid", color="black", weight=3]; 1178[label="vxw73 < vxw75",fontsize=16,color="black",shape="triangle"];1178 -> 1485[label="",style="solid", color="black", weight=3]; 1179[label="compare1 (vxw123,vxw124) (vxw125,vxw126) (False || vxw128)",fontsize=16,color="black",shape="box"];1179 -> 1486[label="",style="solid", color="black", weight=3]; 1180[label="compare1 (vxw123,vxw124) (vxw125,vxw126) (True || vxw128)",fontsize=16,color="black",shape="box"];1180 -> 1487[label="",style="solid", color="black", weight=3]; 1200 -> 1165[label="",style="dashed", color="red", weight=0]; 1200[label="vxw46 < vxw49",fontsize=16,color="magenta"];1200 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1166[label="",style="dashed", color="red", weight=0]; 1201[label="vxw46 < vxw49",fontsize=16,color="magenta"];1201 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1167[label="",style="dashed", color="red", weight=0]; 1202[label="vxw46 < vxw49",fontsize=16,color="magenta"];1202 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1168[label="",style="dashed", color="red", weight=0]; 1203[label="vxw46 < vxw49",fontsize=16,color="magenta"];1203 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1169[label="",style="dashed", color="red", weight=0]; 1204[label="vxw46 < vxw49",fontsize=16,color="magenta"];1204 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1170[label="",style="dashed", color="red", weight=0]; 1205[label="vxw46 < vxw49",fontsize=16,color="magenta"];1205 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1171[label="",style="dashed", color="red", weight=0]; 1206[label="vxw46 < vxw49",fontsize=16,color="magenta"];1206 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1172[label="",style="dashed", color="red", weight=0]; 1207[label="vxw46 < vxw49",fontsize=16,color="magenta"];1207 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1173[label="",style="dashed", color="red", weight=0]; 1208[label="vxw46 < vxw49",fontsize=16,color="magenta"];1208 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1174[label="",style="dashed", color="red", weight=0]; 1209[label="vxw46 < vxw49",fontsize=16,color="magenta"];1209 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1175[label="",style="dashed", color="red", weight=0]; 1210[label="vxw46 < vxw49",fontsize=16,color="magenta"];1210 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1176[label="",style="dashed", color="red", weight=0]; 1211[label="vxw46 < vxw49",fontsize=16,color="magenta"];1211 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1177[label="",style="dashed", color="red", weight=0]; 1212[label="vxw46 < vxw49",fontsize=16,color="magenta"];1212 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1178[label="",style="dashed", color="red", weight=0]; 1213[label="vxw46 < vxw49",fontsize=16,color="magenta"];1213 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1214[label="vxw46 == vxw49",fontsize=16,color="blue",shape="box"];3277[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1516[label="",style="solid", color="blue", weight=3]; 3278[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1517[label="",style="solid", color="blue", weight=3]; 3279[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1518[label="",style="solid", color="blue", weight=3]; 3280[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1519[label="",style="solid", color="blue", weight=3]; 3281[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1520[label="",style="solid", color="blue", weight=3]; 3282[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 1521[label="",style="solid", color="blue", weight=3]; 3283[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 1522[label="",style="solid", color="blue", weight=3]; 3284[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1523[label="",style="solid", color="blue", weight=3]; 3285[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1524[label="",style="solid", color="blue", weight=3]; 3286[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 1525[label="",style="solid", color="blue", weight=3]; 3287[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 1526[label="",style="solid", color="blue", weight=3]; 3288[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 1527[label="",style="solid", color="blue", weight=3]; 3289[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 1528[label="",style="solid", color="blue", weight=3]; 3290[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1529[label="",style="solid", color="blue", weight=3]; 1215 -> 1918[label="",style="dashed", color="red", weight=0]; 1215[label="vxw47 < vxw50 || vxw47 == vxw50 && vxw48 <= vxw51",fontsize=16,color="magenta"];1215 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1216[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) (False || vxw145)",fontsize=16,color="black",shape="box"];1216 -> 1532[label="",style="solid", color="black", weight=3]; 1217[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) (True || vxw145)",fontsize=16,color="black",shape="box"];1217 -> 1533[label="",style="solid", color="black", weight=3]; 1218[label="primMulNat (Succ vxw3000) vxw4010",fontsize=16,color="burlywood",shape="box"];3291[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 1534[label="",style="solid", color="burlywood", weight=3]; 3292[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 1535[label="",style="solid", color="burlywood", weight=3]; 1219[label="primMulNat Zero vxw4010",fontsize=16,color="burlywood",shape="box"];3293[label="vxw4010/Succ vxw40100",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 1536[label="",style="solid", color="burlywood", weight=3]; 3294[label="vxw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 1537[label="",style="solid", color="burlywood", weight=3]; 1220[label="vxw4010",fontsize=16,color="green",shape="box"];1221[label="vxw300",fontsize=16,color="green",shape="box"];1222[label="vxw300",fontsize=16,color="green",shape="box"];1223[label="vxw4010",fontsize=16,color="green",shape="box"];1224 -> 1132[label="",style="dashed", color="red", weight=0]; 1224[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1224 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1133[label="",style="dashed", color="red", weight=0]; 1225[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1225 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1134[label="",style="dashed", color="red", weight=0]; 1226[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1226 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1135[label="",style="dashed", color="red", weight=0]; 1227[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1227 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1136[label="",style="dashed", color="red", weight=0]; 1228[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1228 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1137[label="",style="dashed", color="red", weight=0]; 1229[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1229 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1138[label="",style="dashed", color="red", weight=0]; 1230[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1230 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1139[label="",style="dashed", color="red", weight=0]; 1231[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1231 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1140[label="",style="dashed", color="red", weight=0]; 1232[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1232 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1141[label="",style="dashed", color="red", weight=0]; 1233[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1233 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1142[label="",style="dashed", color="red", weight=0]; 1234[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1234 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1143[label="",style="dashed", color="red", weight=0]; 1235[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1235 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1144[label="",style="dashed", color="red", weight=0]; 1236[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1236 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1145[label="",style="dashed", color="red", weight=0]; 1237[label="vxw57 <= vxw58",fontsize=16,color="magenta"];1237 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1238[label="compare0 (Left vxw103) (Left vxw104) otherwise",fontsize=16,color="black",shape="box"];1238 -> 1566[label="",style="solid", color="black", weight=3]; 1239[label="LT",fontsize=16,color="green",shape="box"];1240 -> 1132[label="",style="dashed", color="red", weight=0]; 1240[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1240 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1133[label="",style="dashed", color="red", weight=0]; 1241[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1241 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1134[label="",style="dashed", color="red", weight=0]; 1242[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1242 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1135[label="",style="dashed", color="red", weight=0]; 1243[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1243 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1136[label="",style="dashed", color="red", weight=0]; 1244[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1244 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1137[label="",style="dashed", color="red", weight=0]; 1245[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1245 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1246 -> 1138[label="",style="dashed", color="red", weight=0]; 1246[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1246 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1246 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1139[label="",style="dashed", color="red", weight=0]; 1247[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1247 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1140[label="",style="dashed", color="red", weight=0]; 1248[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1248 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1141[label="",style="dashed", color="red", weight=0]; 1249[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1249 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1142[label="",style="dashed", color="red", weight=0]; 1250[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1250 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1143[label="",style="dashed", color="red", weight=0]; 1251[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1251 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1144[label="",style="dashed", color="red", weight=0]; 1252[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1252 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1145[label="",style="dashed", color="red", weight=0]; 1253[label="vxw64 <= vxw65",fontsize=16,color="magenta"];1253 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1254[label="compare0 (Right vxw113) (Right vxw114) otherwise",fontsize=16,color="black",shape="box"];1254 -> 1595[label="",style="solid", color="black", weight=3]; 1255[label="LT",fontsize=16,color="green",shape="box"];1256 -> 178[label="",style="dashed", color="red", weight=0]; 1256[label="vxw300 * vxw4001",fontsize=16,color="magenta"];1256 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1256 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1257 -> 178[label="",style="dashed", color="red", weight=0]; 1257[label="vxw301 * vxw4000",fontsize=16,color="magenta"];1257 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1257 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1258 -> 292[label="",style="dashed", color="red", weight=0]; 1258[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1258 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1259 -> 293[label="",style="dashed", color="red", weight=0]; 1259[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1259 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1260 -> 294[label="",style="dashed", color="red", weight=0]; 1260[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1260 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1261 -> 295[label="",style="dashed", color="red", weight=0]; 1261[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1261 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1262 -> 296[label="",style="dashed", color="red", weight=0]; 1262[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1262 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1263 -> 297[label="",style="dashed", color="red", weight=0]; 1263[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1263 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1264 -> 298[label="",style="dashed", color="red", weight=0]; 1264[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1264 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1265 -> 299[label="",style="dashed", color="red", weight=0]; 1265[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1265 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1266 -> 300[label="",style="dashed", color="red", weight=0]; 1266[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1266 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1267 -> 301[label="",style="dashed", color="red", weight=0]; 1267[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1267 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1268 -> 302[label="",style="dashed", color="red", weight=0]; 1268[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1268 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1269 -> 303[label="",style="dashed", color="red", weight=0]; 1269[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1269 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1270 -> 304[label="",style="dashed", color="red", weight=0]; 1270[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1270 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1271 -> 305[label="",style="dashed", color="red", weight=0]; 1271[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1271 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1272 -> 292[label="",style="dashed", color="red", weight=0]; 1272[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1272 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1273 -> 293[label="",style="dashed", color="red", weight=0]; 1273[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1273 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1274 -> 294[label="",style="dashed", color="red", weight=0]; 1274[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1274 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1275 -> 295[label="",style="dashed", color="red", weight=0]; 1275[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1275 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1276 -> 296[label="",style="dashed", color="red", weight=0]; 1276[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1276 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1277 -> 297[label="",style="dashed", color="red", weight=0]; 1277[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1277 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1278 -> 298[label="",style="dashed", color="red", weight=0]; 1278[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1278 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1279 -> 299[label="",style="dashed", color="red", weight=0]; 1279[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1279 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1279 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1280 -> 300[label="",style="dashed", color="red", weight=0]; 1280[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1280 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1281 -> 301[label="",style="dashed", color="red", weight=0]; 1281[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1281 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1281 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1282 -> 302[label="",style="dashed", color="red", weight=0]; 1282[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1282 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1282 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1283 -> 303[label="",style="dashed", color="red", weight=0]; 1283[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1283 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1283 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1284 -> 304[label="",style="dashed", color="red", weight=0]; 1284[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1284 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1284 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1285 -> 305[label="",style="dashed", color="red", weight=0]; 1285[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1285 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1285 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1286 -> 294[label="",style="dashed", color="red", weight=0]; 1286[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1286 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1286 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1287 -> 299[label="",style="dashed", color="red", weight=0]; 1287[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1287 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1287 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1288 -> 294[label="",style="dashed", color="red", weight=0]; 1288[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1288 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1288 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1289 -> 299[label="",style="dashed", color="red", weight=0]; 1289[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1289 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1289 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1290[label="primEqNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];3295[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1290 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 1664[label="",style="solid", color="burlywood", weight=3]; 3296[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1290 -> 3296[label="",style="solid", color="burlywood", weight=9]; 3296 -> 1665[label="",style="solid", color="burlywood", weight=3]; 1291[label="primEqNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];3297[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];1291 -> 3297[label="",style="solid", color="burlywood", weight=9]; 3297 -> 1666[label="",style="solid", color="burlywood", weight=3]; 3298[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1291 -> 3298[label="",style="solid", color="burlywood", weight=9]; 3298 -> 1667[label="",style="solid", color="burlywood", weight=3]; 1292 -> 292[label="",style="dashed", color="red", weight=0]; 1292[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1292 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1292 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1293 -> 293[label="",style="dashed", color="red", weight=0]; 1293[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1293 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1293 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1294 -> 294[label="",style="dashed", color="red", weight=0]; 1294[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1294 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1295 -> 295[label="",style="dashed", color="red", weight=0]; 1295[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1295 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1296 -> 296[label="",style="dashed", color="red", weight=0]; 1296[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1296 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1297 -> 297[label="",style="dashed", color="red", weight=0]; 1297[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1297 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1298 -> 298[label="",style="dashed", color="red", weight=0]; 1298[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1298 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1299 -> 299[label="",style="dashed", color="red", weight=0]; 1299[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1299 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1300 -> 300[label="",style="dashed", color="red", weight=0]; 1300[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1300 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1301 -> 301[label="",style="dashed", color="red", weight=0]; 1301[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1301 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1302 -> 302[label="",style="dashed", color="red", weight=0]; 1302[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1302 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1303 -> 303[label="",style="dashed", color="red", weight=0]; 1303[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1303 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1304 -> 304[label="",style="dashed", color="red", weight=0]; 1304[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1304 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1305 -> 305[label="",style="dashed", color="red", weight=0]; 1305[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1305 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1306[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3299[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1696[label="",style="solid", color="blue", weight=3]; 3300[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1697[label="",style="solid", color="blue", weight=3]; 3301[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1698[label="",style="solid", color="blue", weight=3]; 3302[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1699[label="",style="solid", color="blue", weight=3]; 3303[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1700[label="",style="solid", color="blue", weight=3]; 3304[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1701[label="",style="solid", color="blue", weight=3]; 3305[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1702[label="",style="solid", color="blue", weight=3]; 3306[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1703[label="",style="solid", color="blue", weight=3]; 3307[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1704[label="",style="solid", color="blue", weight=3]; 3308[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1705[label="",style="solid", color="blue", weight=3]; 3309[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 1706[label="",style="solid", color="blue", weight=3]; 3310[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1707[label="",style="solid", color="blue", weight=3]; 3311[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1708[label="",style="solid", color="blue", weight=3]; 3312[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1709[label="",style="solid", color="blue", weight=3]; 1307[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];3313[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1710[label="",style="solid", color="blue", weight=3]; 3314[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1711[label="",style="solid", color="blue", weight=3]; 3315[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1712[label="",style="solid", color="blue", weight=3]; 3316[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 1713[label="",style="solid", color="blue", weight=3]; 3317[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 1714[label="",style="solid", color="blue", weight=3]; 3318[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 1715[label="",style="solid", color="blue", weight=3]; 3319[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 1716[label="",style="solid", color="blue", weight=3]; 3320[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 1717[label="",style="solid", color="blue", weight=3]; 3321[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 1718[label="",style="solid", color="blue", weight=3]; 3322[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 1719[label="",style="solid", color="blue", weight=3]; 3323[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 1720[label="",style="solid", color="blue", weight=3]; 3324[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 1721[label="",style="solid", color="blue", weight=3]; 3325[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 1722[label="",style="solid", color="blue", weight=3]; 3326[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 1723[label="",style="solid", color="blue", weight=3]; 1308[label="primEqInt (Pos (Succ vxw3000)) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];1308 -> 1724[label="",style="solid", color="black", weight=3]; 1309[label="primEqInt (Pos (Succ vxw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1309 -> 1725[label="",style="solid", color="black", weight=3]; 1310[label="False",fontsize=16,color="green",shape="box"];1311[label="primEqInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];1311 -> 1726[label="",style="solid", color="black", weight=3]; 1312[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1312 -> 1727[label="",style="solid", color="black", weight=3]; 1313[label="primEqInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];1313 -> 1728[label="",style="solid", color="black", weight=3]; 1314[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1314 -> 1729[label="",style="solid", color="black", weight=3]; 1315[label="False",fontsize=16,color="green",shape="box"];1316[label="primEqInt (Neg (Succ vxw3000)) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];1316 -> 1730[label="",style="solid", color="black", weight=3]; 1317[label="primEqInt (Neg (Succ vxw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1317 -> 1731[label="",style="solid", color="black", weight=3]; 1318[label="primEqInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];1318 -> 1732[label="",style="solid", color="black", weight=3]; 1319[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1319 -> 1733[label="",style="solid", color="black", weight=3]; 1320[label="primEqInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];1320 -> 1734[label="",style="solid", color="black", weight=3]; 1321[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1321 -> 1735[label="",style="solid", color="black", weight=3]; 1322 -> 178[label="",style="dashed", color="red", weight=0]; 1322[label="vxw300 * vxw4001",fontsize=16,color="magenta"];1322 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1323 -> 178[label="",style="dashed", color="red", weight=0]; 1323[label="vxw301 * vxw4000",fontsize=16,color="magenta"];1323 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1324 -> 292[label="",style="dashed", color="red", weight=0]; 1324[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1324 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1325 -> 293[label="",style="dashed", color="red", weight=0]; 1325[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1325 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1326 -> 294[label="",style="dashed", color="red", weight=0]; 1326[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1326 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1326 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1327 -> 295[label="",style="dashed", color="red", weight=0]; 1327[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1327 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1328 -> 296[label="",style="dashed", color="red", weight=0]; 1328[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1328 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1329 -> 297[label="",style="dashed", color="red", weight=0]; 1329[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1329 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1330 -> 298[label="",style="dashed", color="red", weight=0]; 1330[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1330 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1331 -> 299[label="",style="dashed", color="red", weight=0]; 1331[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1331 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1332 -> 300[label="",style="dashed", color="red", weight=0]; 1332[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1332 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1333 -> 301[label="",style="dashed", color="red", weight=0]; 1333[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1333 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1334 -> 302[label="",style="dashed", color="red", weight=0]; 1334[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1334 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1335 -> 303[label="",style="dashed", color="red", weight=0]; 1335[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1335 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1336 -> 304[label="",style="dashed", color="red", weight=0]; 1336[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1336 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1337 -> 305[label="",style="dashed", color="red", weight=0]; 1337[label="vxw300 == vxw4000",fontsize=16,color="magenta"];1337 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1338[label="vxw301",fontsize=16,color="green",shape="box"];1339[label="vxw4001",fontsize=16,color="green",shape="box"];1340[label="vxw300",fontsize=16,color="green",shape="box"];1341[label="vxw4000",fontsize=16,color="green",shape="box"];1342[label="vxw300",fontsize=16,color="green",shape="box"];1343[label="vxw4000",fontsize=16,color="green",shape="box"];1344[label="vxw300",fontsize=16,color="green",shape="box"];1345[label="vxw4000",fontsize=16,color="green",shape="box"];1346[label="vxw300",fontsize=16,color="green",shape="box"];1347[label="vxw4000",fontsize=16,color="green",shape="box"];1348[label="vxw300",fontsize=16,color="green",shape="box"];1349[label="vxw4000",fontsize=16,color="green",shape="box"];1350[label="vxw300",fontsize=16,color="green",shape="box"];1351[label="vxw4000",fontsize=16,color="green",shape="box"];1352[label="vxw300",fontsize=16,color="green",shape="box"];1353[label="vxw4000",fontsize=16,color="green",shape="box"];1354[label="vxw300",fontsize=16,color="green",shape="box"];1355[label="vxw4000",fontsize=16,color="green",shape="box"];1356[label="vxw300",fontsize=16,color="green",shape="box"];1357[label="vxw4000",fontsize=16,color="green",shape="box"];1358[label="vxw300",fontsize=16,color="green",shape="box"];1359[label="vxw4000",fontsize=16,color="green",shape="box"];1360[label="vxw300",fontsize=16,color="green",shape="box"];1361[label="vxw4000",fontsize=16,color="green",shape="box"];1362[label="vxw300",fontsize=16,color="green",shape="box"];1363[label="vxw4000",fontsize=16,color="green",shape="box"];1364[label="vxw300",fontsize=16,color="green",shape="box"];1365[label="vxw4000",fontsize=16,color="green",shape="box"];1366[label="vxw300",fontsize=16,color="green",shape="box"];1367[label="vxw4000",fontsize=16,color="green",shape="box"];1368[label="vxw300",fontsize=16,color="green",shape="box"];1369[label="vxw4000",fontsize=16,color="green",shape="box"];1370[label="vxw300",fontsize=16,color="green",shape="box"];1371[label="vxw4000",fontsize=16,color="green",shape="box"];1372[label="vxw300",fontsize=16,color="green",shape="box"];1373[label="vxw4000",fontsize=16,color="green",shape="box"];1374[label="vxw300",fontsize=16,color="green",shape="box"];1375[label="vxw4000",fontsize=16,color="green",shape="box"];1376[label="vxw300",fontsize=16,color="green",shape="box"];1377[label="vxw4000",fontsize=16,color="green",shape="box"];1378[label="vxw300",fontsize=16,color="green",shape="box"];1379[label="vxw4000",fontsize=16,color="green",shape="box"];1380[label="vxw300",fontsize=16,color="green",shape="box"];1381[label="vxw4000",fontsize=16,color="green",shape="box"];1382[label="vxw300",fontsize=16,color="green",shape="box"];1383[label="vxw4000",fontsize=16,color="green",shape="box"];1384[label="vxw300",fontsize=16,color="green",shape="box"];1385[label="vxw4000",fontsize=16,color="green",shape="box"];1386[label="vxw300",fontsize=16,color="green",shape="box"];1387[label="vxw4000",fontsize=16,color="green",shape="box"];1388[label="vxw300",fontsize=16,color="green",shape="box"];1389[label="vxw4000",fontsize=16,color="green",shape="box"];1390[label="vxw300",fontsize=16,color="green",shape="box"];1391[label="vxw4000",fontsize=16,color="green",shape="box"];1392[label="vxw300",fontsize=16,color="green",shape="box"];1393[label="vxw4000",fontsize=16,color="green",shape="box"];1394[label="vxw300",fontsize=16,color="green",shape="box"];1395[label="vxw4000",fontsize=16,color="green",shape="box"];1396[label="vxw300",fontsize=16,color="green",shape="box"];1397[label="vxw4000",fontsize=16,color="green",shape="box"];1398[label="vxw300",fontsize=16,color="green",shape="box"];1399[label="vxw4000",fontsize=16,color="green",shape="box"];1400[label="vxw300",fontsize=16,color="green",shape="box"];1401[label="vxw4000",fontsize=16,color="green",shape="box"];1402[label="vxw300",fontsize=16,color="green",shape="box"];1403[label="vxw4000",fontsize=16,color="green",shape="box"];1404[label="vxw300",fontsize=16,color="green",shape="box"];1405[label="vxw4000",fontsize=16,color="green",shape="box"];1406[label="vxw300",fontsize=16,color="green",shape="box"];1407[label="vxw4000",fontsize=16,color="green",shape="box"];1408[label="vxw300",fontsize=16,color="green",shape="box"];1409[label="vxw4000",fontsize=16,color="green",shape="box"];1410[label="vxw300",fontsize=16,color="green",shape="box"];1411[label="vxw4000",fontsize=16,color="green",shape="box"];1412[label="vxw300",fontsize=16,color="green",shape="box"];1413[label="vxw4000",fontsize=16,color="green",shape="box"];1414[label="vxw300",fontsize=16,color="green",shape="box"];1415[label="vxw4000",fontsize=16,color="green",shape="box"];1416[label="vxw300",fontsize=16,color="green",shape="box"];1417[label="vxw4000",fontsize=16,color="green",shape="box"];1418[label="vxw300",fontsize=16,color="green",shape="box"];1419[label="vxw4000",fontsize=16,color="green",shape="box"];1420[label="vxw300",fontsize=16,color="green",shape="box"];1421[label="vxw4000",fontsize=16,color="green",shape="box"];1422[label="vxw300",fontsize=16,color="green",shape="box"];1423[label="vxw4000",fontsize=16,color="green",shape="box"];1424 -> 1768[label="",style="dashed", color="red", weight=0]; 1424[label="compare vxw24 vxw25 /= GT",fontsize=16,color="magenta"];1424 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1768[label="",style="dashed", color="red", weight=0]; 1425[label="compare vxw24 vxw25 /= GT",fontsize=16,color="magenta"];1425 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1768[label="",style="dashed", color="red", weight=0]; 1426[label="compare vxw24 vxw25 /= GT",fontsize=16,color="magenta"];1426 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1427[label="Nothing <= vxw25",fontsize=16,color="burlywood",shape="box"];3327[label="vxw25/Nothing",fontsize=10,color="white",style="solid",shape="box"];1427 -> 3327[label="",style="solid", color="burlywood", weight=9]; 3327 -> 1777[label="",style="solid", color="burlywood", weight=3]; 3328[label="vxw25/Just vxw250",fontsize=10,color="white",style="solid",shape="box"];1427 -> 3328[label="",style="solid", color="burlywood", weight=9]; 3328 -> 1778[label="",style="solid", color="burlywood", weight=3]; 1428[label="Just vxw240 <= vxw25",fontsize=16,color="burlywood",shape="box"];3329[label="vxw25/Nothing",fontsize=10,color="white",style="solid",shape="box"];1428 -> 3329[label="",style="solid", color="burlywood", weight=9]; 3329 -> 1779[label="",style="solid", color="burlywood", weight=3]; 3330[label="vxw25/Just vxw250",fontsize=10,color="white",style="solid",shape="box"];1428 -> 3330[label="",style="solid", color="burlywood", weight=9]; 3330 -> 1780[label="",style="solid", color="burlywood", weight=3]; 1429[label="(vxw240,vxw241) <= vxw25",fontsize=16,color="burlywood",shape="box"];3331[label="vxw25/(vxw250,vxw251)",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3331[label="",style="solid", color="burlywood", weight=9]; 3331 -> 1781[label="",style="solid", color="burlywood", weight=3]; 1430[label="LT <= vxw25",fontsize=16,color="burlywood",shape="box"];3332[label="vxw25/LT",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3332[label="",style="solid", color="burlywood", weight=9]; 3332 -> 1782[label="",style="solid", color="burlywood", weight=3]; 3333[label="vxw25/EQ",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3333[label="",style="solid", color="burlywood", weight=9]; 3333 -> 1783[label="",style="solid", color="burlywood", weight=3]; 3334[label="vxw25/GT",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3334[label="",style="solid", color="burlywood", weight=9]; 3334 -> 1784[label="",style="solid", color="burlywood", weight=3]; 1431[label="EQ <= vxw25",fontsize=16,color="burlywood",shape="box"];3335[label="vxw25/LT",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3335[label="",style="solid", color="burlywood", weight=9]; 3335 -> 1785[label="",style="solid", color="burlywood", weight=3]; 3336[label="vxw25/EQ",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3336[label="",style="solid", color="burlywood", weight=9]; 3336 -> 1786[label="",style="solid", color="burlywood", weight=3]; 3337[label="vxw25/GT",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3337[label="",style="solid", color="burlywood", weight=9]; 3337 -> 1787[label="",style="solid", color="burlywood", weight=3]; 1432[label="GT <= vxw25",fontsize=16,color="burlywood",shape="box"];3338[label="vxw25/LT",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3338[label="",style="solid", color="burlywood", weight=9]; 3338 -> 1788[label="",style="solid", color="burlywood", weight=3]; 3339[label="vxw25/EQ",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3339[label="",style="solid", color="burlywood", weight=9]; 3339 -> 1789[label="",style="solid", color="burlywood", weight=3]; 3340[label="vxw25/GT",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3340[label="",style="solid", color="burlywood", weight=9]; 3340 -> 1790[label="",style="solid", color="burlywood", weight=3]; 1433[label="(vxw240,vxw241,vxw242) <= vxw25",fontsize=16,color="burlywood",shape="box"];3341[label="vxw25/(vxw250,vxw251,vxw252)",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3341[label="",style="solid", color="burlywood", weight=9]; 3341 -> 1791[label="",style="solid", color="burlywood", weight=3]; 1434 -> 1768[label="",style="dashed", color="red", weight=0]; 1434[label="compare vxw24 vxw25 /= GT",fontsize=16,color="magenta"];1434 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1768[label="",style="dashed", color="red", weight=0]; 1435[label="compare vxw24 vxw25 /= GT",fontsize=16,color="magenta"];1435 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1768[label="",style="dashed", color="red", weight=0]; 1436[label="compare vxw24 vxw25 /= GT",fontsize=16,color="magenta"];1436 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1768[label="",style="dashed", color="red", weight=0]; 1437[label="compare vxw24 vxw25 /= GT",fontsize=16,color="magenta"];1437 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1438[label="Left vxw240 <= vxw25",fontsize=16,color="burlywood",shape="box"];3342[label="vxw25/Left vxw250",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3342[label="",style="solid", color="burlywood", weight=9]; 3342 -> 1792[label="",style="solid", color="burlywood", weight=3]; 3343[label="vxw25/Right vxw250",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3343[label="",style="solid", color="burlywood", weight=9]; 3343 -> 1793[label="",style="solid", color="burlywood", weight=3]; 1439[label="Right vxw240 <= vxw25",fontsize=16,color="burlywood",shape="box"];3344[label="vxw25/Left vxw250",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3344[label="",style="solid", color="burlywood", weight=9]; 3344 -> 1794[label="",style="solid", color="burlywood", weight=3]; 3345[label="vxw25/Right vxw250",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3345[label="",style="solid", color="burlywood", weight=9]; 3345 -> 1795[label="",style="solid", color="burlywood", weight=3]; 1440 -> 1768[label="",style="dashed", color="red", weight=0]; 1440[label="compare vxw24 vxw25 /= GT",fontsize=16,color="magenta"];1440 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1441[label="False <= vxw25",fontsize=16,color="burlywood",shape="box"];3346[label="vxw25/False",fontsize=10,color="white",style="solid",shape="box"];1441 -> 3346[label="",style="solid", color="burlywood", weight=9]; 3346 -> 1796[label="",style="solid", color="burlywood", weight=3]; 3347[label="vxw25/True",fontsize=10,color="white",style="solid",shape="box"];1441 -> 3347[label="",style="solid", color="burlywood", weight=9]; 3347 -> 1797[label="",style="solid", color="burlywood", weight=3]; 1442[label="True <= vxw25",fontsize=16,color="burlywood",shape="box"];3348[label="vxw25/False",fontsize=10,color="white",style="solid",shape="box"];1442 -> 3348[label="",style="solid", color="burlywood", weight=9]; 3348 -> 1798[label="",style="solid", color="burlywood", weight=3]; 3349[label="vxw25/True",fontsize=10,color="white",style="solid",shape="box"];1442 -> 3349[label="",style="solid", color="burlywood", weight=9]; 3349 -> 1799[label="",style="solid", color="burlywood", weight=3]; 1443[label="compare0 (Just vxw96) (Just vxw97) True",fontsize=16,color="black",shape="box"];1443 -> 1800[label="",style="solid", color="black", weight=3]; 1444 -> 296[label="",style="dashed", color="red", weight=0]; 1444[label="vxw73 == vxw75",fontsize=16,color="magenta"];1444 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1445 -> 294[label="",style="dashed", color="red", weight=0]; 1445[label="vxw73 == vxw75",fontsize=16,color="magenta"];1445 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1446 -> 302[label="",style="dashed", color="red", weight=0]; 1446[label="vxw73 == vxw75",fontsize=16,color="magenta"];1446 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1447 -> 303[label="",style="dashed", color="red", weight=0]; 1447[label="vxw73 == vxw75",fontsize=16,color="magenta"];1447 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1448 -> 293[label="",style="dashed", color="red", weight=0]; 1448[label="vxw73 == vxw75",fontsize=16,color="magenta"];1448 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1449 -> 304[label="",style="dashed", color="red", weight=0]; 1449[label="vxw73 == vxw75",fontsize=16,color="magenta"];1449 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1450 -> 298[label="",style="dashed", color="red", weight=0]; 1450[label="vxw73 == vxw75",fontsize=16,color="magenta"];1450 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1451 -> 299[label="",style="dashed", color="red", weight=0]; 1451[label="vxw73 == vxw75",fontsize=16,color="magenta"];1451 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1452 -> 292[label="",style="dashed", color="red", weight=0]; 1452[label="vxw73 == vxw75",fontsize=16,color="magenta"];1452 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1453 -> 295[label="",style="dashed", color="red", weight=0]; 1453[label="vxw73 == vxw75",fontsize=16,color="magenta"];1453 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1454 -> 300[label="",style="dashed", color="red", weight=0]; 1454[label="vxw73 == vxw75",fontsize=16,color="magenta"];1454 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1455 -> 305[label="",style="dashed", color="red", weight=0]; 1455[label="vxw73 == vxw75",fontsize=16,color="magenta"];1455 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1456 -> 301[label="",style="dashed", color="red", weight=0]; 1456[label="vxw73 == vxw75",fontsize=16,color="magenta"];1456 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1457 -> 297[label="",style="dashed", color="red", weight=0]; 1457[label="vxw73 == vxw75",fontsize=16,color="magenta"];1457 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1132[label="",style="dashed", color="red", weight=0]; 1458[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1458 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1133[label="",style="dashed", color="red", weight=0]; 1459[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1459 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1134[label="",style="dashed", color="red", weight=0]; 1460[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1460 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1135[label="",style="dashed", color="red", weight=0]; 1461[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1461 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1136[label="",style="dashed", color="red", weight=0]; 1462[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1462 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1137[label="",style="dashed", color="red", weight=0]; 1463[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1463 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1138[label="",style="dashed", color="red", weight=0]; 1464[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1464 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1139[label="",style="dashed", color="red", weight=0]; 1465[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1465 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1140[label="",style="dashed", color="red", weight=0]; 1466[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1466 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1141[label="",style="dashed", color="red", weight=0]; 1467[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1467 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1142[label="",style="dashed", color="red", weight=0]; 1468[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1468 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1143[label="",style="dashed", color="red", weight=0]; 1469[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1469 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1144[label="",style="dashed", color="red", weight=0]; 1470[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1470 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1145[label="",style="dashed", color="red", weight=0]; 1471[label="vxw74 <= vxw76",fontsize=16,color="magenta"];1471 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1472 -> 304[label="",style="dashed", color="red", weight=0]; 1472[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1472 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1473 -> 304[label="",style="dashed", color="red", weight=0]; 1473[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1473 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1474 -> 304[label="",style="dashed", color="red", weight=0]; 1474[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1474 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1475 -> 304[label="",style="dashed", color="red", weight=0]; 1475[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1475 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1476 -> 304[label="",style="dashed", color="red", weight=0]; 1476[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1476 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1477 -> 304[label="",style="dashed", color="red", weight=0]; 1477[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1477 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1478 -> 304[label="",style="dashed", color="red", weight=0]; 1478[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1478 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1479 -> 304[label="",style="dashed", color="red", weight=0]; 1479[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1479 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1480 -> 304[label="",style="dashed", color="red", weight=0]; 1480[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1480 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1481 -> 304[label="",style="dashed", color="red", weight=0]; 1481[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1481 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1482 -> 304[label="",style="dashed", color="red", weight=0]; 1482[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1482 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1483 -> 304[label="",style="dashed", color="red", weight=0]; 1483[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1483 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1484 -> 304[label="",style="dashed", color="red", weight=0]; 1484[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1484 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1485 -> 304[label="",style="dashed", color="red", weight=0]; 1485[label="compare vxw73 vxw75 == LT",fontsize=16,color="magenta"];1485 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1486[label="compare1 (vxw123,vxw124) (vxw125,vxw126) vxw128",fontsize=16,color="burlywood",shape="triangle"];3350[label="vxw128/False",fontsize=10,color="white",style="solid",shape="box"];1486 -> 3350[label="",style="solid", color="burlywood", weight=9]; 3350 -> 1885[label="",style="solid", color="burlywood", weight=3]; 3351[label="vxw128/True",fontsize=10,color="white",style="solid",shape="box"];1486 -> 3351[label="",style="solid", color="burlywood", weight=9]; 3351 -> 1886[label="",style="solid", color="burlywood", weight=3]; 1487 -> 1486[label="",style="dashed", color="red", weight=0]; 1487[label="compare1 (vxw123,vxw124) (vxw125,vxw126) True",fontsize=16,color="magenta"];1487 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1488[label="vxw46",fontsize=16,color="green",shape="box"];1489[label="vxw49",fontsize=16,color="green",shape="box"];1490[label="vxw46",fontsize=16,color="green",shape="box"];1491[label="vxw49",fontsize=16,color="green",shape="box"];1492[label="vxw46",fontsize=16,color="green",shape="box"];1493[label="vxw49",fontsize=16,color="green",shape="box"];1494[label="vxw46",fontsize=16,color="green",shape="box"];1495[label="vxw49",fontsize=16,color="green",shape="box"];1496[label="vxw46",fontsize=16,color="green",shape="box"];1497[label="vxw49",fontsize=16,color="green",shape="box"];1498[label="vxw46",fontsize=16,color="green",shape="box"];1499[label="vxw49",fontsize=16,color="green",shape="box"];1500[label="vxw46",fontsize=16,color="green",shape="box"];1501[label="vxw49",fontsize=16,color="green",shape="box"];1502[label="vxw46",fontsize=16,color="green",shape="box"];1503[label="vxw49",fontsize=16,color="green",shape="box"];1504[label="vxw46",fontsize=16,color="green",shape="box"];1505[label="vxw49",fontsize=16,color="green",shape="box"];1506[label="vxw46",fontsize=16,color="green",shape="box"];1507[label="vxw49",fontsize=16,color="green",shape="box"];1508[label="vxw46",fontsize=16,color="green",shape="box"];1509[label="vxw49",fontsize=16,color="green",shape="box"];1510[label="vxw46",fontsize=16,color="green",shape="box"];1511[label="vxw49",fontsize=16,color="green",shape="box"];1512[label="vxw46",fontsize=16,color="green",shape="box"];1513[label="vxw49",fontsize=16,color="green",shape="box"];1514[label="vxw46",fontsize=16,color="green",shape="box"];1515[label="vxw49",fontsize=16,color="green",shape="box"];1516 -> 296[label="",style="dashed", color="red", weight=0]; 1516[label="vxw46 == vxw49",fontsize=16,color="magenta"];1516 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1517 -> 294[label="",style="dashed", color="red", weight=0]; 1517[label="vxw46 == vxw49",fontsize=16,color="magenta"];1517 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1518 -> 302[label="",style="dashed", color="red", weight=0]; 1518[label="vxw46 == vxw49",fontsize=16,color="magenta"];1518 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1519 -> 303[label="",style="dashed", color="red", weight=0]; 1519[label="vxw46 == vxw49",fontsize=16,color="magenta"];1519 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1520 -> 293[label="",style="dashed", color="red", weight=0]; 1520[label="vxw46 == vxw49",fontsize=16,color="magenta"];1520 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1521 -> 304[label="",style="dashed", color="red", weight=0]; 1521[label="vxw46 == vxw49",fontsize=16,color="magenta"];1521 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1522 -> 298[label="",style="dashed", color="red", weight=0]; 1522[label="vxw46 == vxw49",fontsize=16,color="magenta"];1522 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1523 -> 299[label="",style="dashed", color="red", weight=0]; 1523[label="vxw46 == vxw49",fontsize=16,color="magenta"];1523 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1524 -> 292[label="",style="dashed", color="red", weight=0]; 1524[label="vxw46 == vxw49",fontsize=16,color="magenta"];1524 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1525 -> 295[label="",style="dashed", color="red", weight=0]; 1525[label="vxw46 == vxw49",fontsize=16,color="magenta"];1525 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1526 -> 300[label="",style="dashed", color="red", weight=0]; 1526[label="vxw46 == vxw49",fontsize=16,color="magenta"];1526 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1527 -> 305[label="",style="dashed", color="red", weight=0]; 1527[label="vxw46 == vxw49",fontsize=16,color="magenta"];1527 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1528 -> 301[label="",style="dashed", color="red", weight=0]; 1528[label="vxw46 == vxw49",fontsize=16,color="magenta"];1528 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1529 -> 297[label="",style="dashed", color="red", weight=0]; 1529[label="vxw46 == vxw49",fontsize=16,color="magenta"];1529 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1919[label="vxw47 < vxw50",fontsize=16,color="blue",shape="box"];3352[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1923[label="",style="solid", color="blue", weight=3]; 3353[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1924[label="",style="solid", color="blue", weight=3]; 3354[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1925[label="",style="solid", color="blue", weight=3]; 3355[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1926[label="",style="solid", color="blue", weight=3]; 3356[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1927[label="",style="solid", color="blue", weight=3]; 3357[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1928[label="",style="solid", color="blue", weight=3]; 3358[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1929[label="",style="solid", color="blue", weight=3]; 3359[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1930[label="",style="solid", color="blue", weight=3]; 3360[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1931[label="",style="solid", color="blue", weight=3]; 3361[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 1932[label="",style="solid", color="blue", weight=3]; 3362[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 1933[label="",style="solid", color="blue", weight=3]; 3363[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 1934[label="",style="solid", color="blue", weight=3]; 3364[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 1935[label="",style="solid", color="blue", weight=3]; 3365[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 1936[label="",style="solid", color="blue", weight=3]; 1920 -> 746[label="",style="dashed", color="red", weight=0]; 1920[label="vxw47 == vxw50 && vxw48 <= vxw51",fontsize=16,color="magenta"];1920 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1920 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1918[label="vxw151 || vxw152",fontsize=16,color="burlywood",shape="triangle"];3366[label="vxw151/False",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3366[label="",style="solid", color="burlywood", weight=9]; 3366 -> 1939[label="",style="solid", color="burlywood", weight=3]; 3367[label="vxw151/True",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3367[label="",style="solid", color="burlywood", weight=9]; 3367 -> 1940[label="",style="solid", color="burlywood", weight=3]; 1532[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) vxw145",fontsize=16,color="burlywood",shape="triangle"];3368[label="vxw145/False",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3368[label="",style="solid", color="burlywood", weight=9]; 3368 -> 1941[label="",style="solid", color="burlywood", weight=3]; 3369[label="vxw145/True",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3369[label="",style="solid", color="burlywood", weight=9]; 3369 -> 1942[label="",style="solid", color="burlywood", weight=3]; 1533 -> 1532[label="",style="dashed", color="red", weight=0]; 1533[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) True",fontsize=16,color="magenta"];1533 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1534[label="primMulNat (Succ vxw3000) (Succ vxw40100)",fontsize=16,color="black",shape="box"];1534 -> 1944[label="",style="solid", color="black", weight=3]; 1535[label="primMulNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];1535 -> 1945[label="",style="solid", color="black", weight=3]; 1536[label="primMulNat Zero (Succ vxw40100)",fontsize=16,color="black",shape="box"];1536 -> 1946[label="",style="solid", color="black", weight=3]; 1537[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1537 -> 1947[label="",style="solid", color="black", weight=3]; 1538[label="vxw57",fontsize=16,color="green",shape="box"];1539[label="vxw58",fontsize=16,color="green",shape="box"];1540[label="vxw57",fontsize=16,color="green",shape="box"];1541[label="vxw58",fontsize=16,color="green",shape="box"];1542[label="vxw57",fontsize=16,color="green",shape="box"];1543[label="vxw58",fontsize=16,color="green",shape="box"];1544[label="vxw57",fontsize=16,color="green",shape="box"];1545[label="vxw58",fontsize=16,color="green",shape="box"];1546[label="vxw57",fontsize=16,color="green",shape="box"];1547[label="vxw58",fontsize=16,color="green",shape="box"];1548[label="vxw57",fontsize=16,color="green",shape="box"];1549[label="vxw58",fontsize=16,color="green",shape="box"];1550[label="vxw57",fontsize=16,color="green",shape="box"];1551[label="vxw58",fontsize=16,color="green",shape="box"];1552[label="vxw57",fontsize=16,color="green",shape="box"];1553[label="vxw58",fontsize=16,color="green",shape="box"];1554[label="vxw57",fontsize=16,color="green",shape="box"];1555[label="vxw58",fontsize=16,color="green",shape="box"];1556[label="vxw57",fontsize=16,color="green",shape="box"];1557[label="vxw58",fontsize=16,color="green",shape="box"];1558[label="vxw57",fontsize=16,color="green",shape="box"];1559[label="vxw58",fontsize=16,color="green",shape="box"];1560[label="vxw57",fontsize=16,color="green",shape="box"];1561[label="vxw58",fontsize=16,color="green",shape="box"];1562[label="vxw57",fontsize=16,color="green",shape="box"];1563[label="vxw58",fontsize=16,color="green",shape="box"];1564[label="vxw57",fontsize=16,color="green",shape="box"];1565[label="vxw58",fontsize=16,color="green",shape="box"];1566[label="compare0 (Left vxw103) (Left vxw104) True",fontsize=16,color="black",shape="box"];1566 -> 1948[label="",style="solid", color="black", weight=3]; 1567[label="vxw64",fontsize=16,color="green",shape="box"];1568[label="vxw65",fontsize=16,color="green",shape="box"];1569[label="vxw64",fontsize=16,color="green",shape="box"];1570[label="vxw65",fontsize=16,color="green",shape="box"];1571[label="vxw64",fontsize=16,color="green",shape="box"];1572[label="vxw65",fontsize=16,color="green",shape="box"];1573[label="vxw64",fontsize=16,color="green",shape="box"];1574[label="vxw65",fontsize=16,color="green",shape="box"];1575[label="vxw64",fontsize=16,color="green",shape="box"];1576[label="vxw65",fontsize=16,color="green",shape="box"];1577[label="vxw64",fontsize=16,color="green",shape="box"];1578[label="vxw65",fontsize=16,color="green",shape="box"];1579[label="vxw64",fontsize=16,color="green",shape="box"];1580[label="vxw65",fontsize=16,color="green",shape="box"];1581[label="vxw64",fontsize=16,color="green",shape="box"];1582[label="vxw65",fontsize=16,color="green",shape="box"];1583[label="vxw64",fontsize=16,color="green",shape="box"];1584[label="vxw65",fontsize=16,color="green",shape="box"];1585[label="vxw64",fontsize=16,color="green",shape="box"];1586[label="vxw65",fontsize=16,color="green",shape="box"];1587[label="vxw64",fontsize=16,color="green",shape="box"];1588[label="vxw65",fontsize=16,color="green",shape="box"];1589[label="vxw64",fontsize=16,color="green",shape="box"];1590[label="vxw65",fontsize=16,color="green",shape="box"];1591[label="vxw64",fontsize=16,color="green",shape="box"];1592[label="vxw65",fontsize=16,color="green",shape="box"];1593[label="vxw64",fontsize=16,color="green",shape="box"];1594[label="vxw65",fontsize=16,color="green",shape="box"];1595[label="compare0 (Right vxw113) (Right vxw114) True",fontsize=16,color="black",shape="box"];1595 -> 1949[label="",style="solid", color="black", weight=3]; 1596[label="vxw4001",fontsize=16,color="green",shape="box"];1597[label="vxw300",fontsize=16,color="green",shape="box"];1598[label="vxw4000",fontsize=16,color="green",shape="box"];1599[label="vxw301",fontsize=16,color="green",shape="box"];1600[label="vxw300",fontsize=16,color="green",shape="box"];1601[label="vxw4000",fontsize=16,color="green",shape="box"];1602[label="vxw300",fontsize=16,color="green",shape="box"];1603[label="vxw4000",fontsize=16,color="green",shape="box"];1604[label="vxw300",fontsize=16,color="green",shape="box"];1605[label="vxw4000",fontsize=16,color="green",shape="box"];1606[label="vxw300",fontsize=16,color="green",shape="box"];1607[label="vxw4000",fontsize=16,color="green",shape="box"];1608[label="vxw300",fontsize=16,color="green",shape="box"];1609[label="vxw4000",fontsize=16,color="green",shape="box"];1610[label="vxw300",fontsize=16,color="green",shape="box"];1611[label="vxw4000",fontsize=16,color="green",shape="box"];1612[label="vxw300",fontsize=16,color="green",shape="box"];1613[label="vxw4000",fontsize=16,color="green",shape="box"];1614[label="vxw300",fontsize=16,color="green",shape="box"];1615[label="vxw4000",fontsize=16,color="green",shape="box"];1616[label="vxw300",fontsize=16,color="green",shape="box"];1617[label="vxw4000",fontsize=16,color="green",shape="box"];1618[label="vxw300",fontsize=16,color="green",shape="box"];1619[label="vxw4000",fontsize=16,color="green",shape="box"];1620[label="vxw300",fontsize=16,color="green",shape="box"];1621[label="vxw4000",fontsize=16,color="green",shape="box"];1622[label="vxw300",fontsize=16,color="green",shape="box"];1623[label="vxw4000",fontsize=16,color="green",shape="box"];1624[label="vxw300",fontsize=16,color="green",shape="box"];1625[label="vxw4000",fontsize=16,color="green",shape="box"];1626[label="vxw300",fontsize=16,color="green",shape="box"];1627[label="vxw4000",fontsize=16,color="green",shape="box"];1628[label="vxw301",fontsize=16,color="green",shape="box"];1629[label="vxw4001",fontsize=16,color="green",shape="box"];1630[label="vxw301",fontsize=16,color="green",shape="box"];1631[label="vxw4001",fontsize=16,color="green",shape="box"];1632[label="vxw301",fontsize=16,color="green",shape="box"];1633[label="vxw4001",fontsize=16,color="green",shape="box"];1634[label="vxw301",fontsize=16,color="green",shape="box"];1635[label="vxw4001",fontsize=16,color="green",shape="box"];1636[label="vxw301",fontsize=16,color="green",shape="box"];1637[label="vxw4001",fontsize=16,color="green",shape="box"];1638[label="vxw301",fontsize=16,color="green",shape="box"];1639[label="vxw4001",fontsize=16,color="green",shape="box"];1640[label="vxw301",fontsize=16,color="green",shape="box"];1641[label="vxw4001",fontsize=16,color="green",shape="box"];1642[label="vxw301",fontsize=16,color="green",shape="box"];1643[label="vxw4001",fontsize=16,color="green",shape="box"];1644[label="vxw301",fontsize=16,color="green",shape="box"];1645[label="vxw4001",fontsize=16,color="green",shape="box"];1646[label="vxw301",fontsize=16,color="green",shape="box"];1647[label="vxw4001",fontsize=16,color="green",shape="box"];1648[label="vxw301",fontsize=16,color="green",shape="box"];1649[label="vxw4001",fontsize=16,color="green",shape="box"];1650[label="vxw301",fontsize=16,color="green",shape="box"];1651[label="vxw4001",fontsize=16,color="green",shape="box"];1652[label="vxw301",fontsize=16,color="green",shape="box"];1653[label="vxw4001",fontsize=16,color="green",shape="box"];1654[label="vxw301",fontsize=16,color="green",shape="box"];1655[label="vxw4001",fontsize=16,color="green",shape="box"];1656[label="vxw300",fontsize=16,color="green",shape="box"];1657[label="vxw4000",fontsize=16,color="green",shape="box"];1658[label="vxw300",fontsize=16,color="green",shape="box"];1659[label="vxw4000",fontsize=16,color="green",shape="box"];1660[label="vxw301",fontsize=16,color="green",shape="box"];1661[label="vxw4001",fontsize=16,color="green",shape="box"];1662[label="vxw301",fontsize=16,color="green",shape="box"];1663[label="vxw4001",fontsize=16,color="green",shape="box"];1664[label="primEqNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];1664 -> 1950[label="",style="solid", color="black", weight=3]; 1665[label="primEqNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];1665 -> 1951[label="",style="solid", color="black", weight=3]; 1666[label="primEqNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];1666 -> 1952[label="",style="solid", color="black", weight=3]; 1667[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1667 -> 1953[label="",style="solid", color="black", weight=3]; 1668[label="vxw300",fontsize=16,color="green",shape="box"];1669[label="vxw4000",fontsize=16,color="green",shape="box"];1670[label="vxw300",fontsize=16,color="green",shape="box"];1671[label="vxw4000",fontsize=16,color="green",shape="box"];1672[label="vxw300",fontsize=16,color="green",shape="box"];1673[label="vxw4000",fontsize=16,color="green",shape="box"];1674[label="vxw300",fontsize=16,color="green",shape="box"];1675[label="vxw4000",fontsize=16,color="green",shape="box"];1676[label="vxw300",fontsize=16,color="green",shape="box"];1677[label="vxw4000",fontsize=16,color="green",shape="box"];1678[label="vxw300",fontsize=16,color="green",shape="box"];1679[label="vxw4000",fontsize=16,color="green",shape="box"];1680[label="vxw300",fontsize=16,color="green",shape="box"];1681[label="vxw4000",fontsize=16,color="green",shape="box"];1682[label="vxw300",fontsize=16,color="green",shape="box"];1683[label="vxw4000",fontsize=16,color="green",shape="box"];1684[label="vxw300",fontsize=16,color="green",shape="box"];1685[label="vxw4000",fontsize=16,color="green",shape="box"];1686[label="vxw300",fontsize=16,color="green",shape="box"];1687[label="vxw4000",fontsize=16,color="green",shape="box"];1688[label="vxw300",fontsize=16,color="green",shape="box"];1689[label="vxw4000",fontsize=16,color="green",shape="box"];1690[label="vxw300",fontsize=16,color="green",shape="box"];1691[label="vxw4000",fontsize=16,color="green",shape="box"];1692[label="vxw300",fontsize=16,color="green",shape="box"];1693[label="vxw4000",fontsize=16,color="green",shape="box"];1694[label="vxw300",fontsize=16,color="green",shape="box"];1695[label="vxw4000",fontsize=16,color="green",shape="box"];1696 -> 292[label="",style="dashed", color="red", weight=0]; 1696[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1696 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1696 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1697 -> 293[label="",style="dashed", color="red", weight=0]; 1697[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1697 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1697 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1698 -> 294[label="",style="dashed", color="red", weight=0]; 1698[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1698 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1698 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1699 -> 295[label="",style="dashed", color="red", weight=0]; 1699[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1699 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1699 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1700 -> 296[label="",style="dashed", color="red", weight=0]; 1700[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1700 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1700 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1701 -> 297[label="",style="dashed", color="red", weight=0]; 1701[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1701 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1701 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1702 -> 298[label="",style="dashed", color="red", weight=0]; 1702[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1702 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1702 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1703 -> 299[label="",style="dashed", color="red", weight=0]; 1703[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1703 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1703 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1704 -> 300[label="",style="dashed", color="red", weight=0]; 1704[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1704 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1704 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1705 -> 301[label="",style="dashed", color="red", weight=0]; 1705[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1705 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1705 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1706 -> 302[label="",style="dashed", color="red", weight=0]; 1706[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1706 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1706 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1707 -> 303[label="",style="dashed", color="red", weight=0]; 1707[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1707 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1707 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1708 -> 304[label="",style="dashed", color="red", weight=0]; 1708[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1708 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1708 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1709 -> 305[label="",style="dashed", color="red", weight=0]; 1709[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1709 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1709 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1710 -> 292[label="",style="dashed", color="red", weight=0]; 1710[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1710 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1710 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1711 -> 293[label="",style="dashed", color="red", weight=0]; 1711[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1711 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1712 -> 294[label="",style="dashed", color="red", weight=0]; 1712[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1712 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1712 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1713 -> 295[label="",style="dashed", color="red", weight=0]; 1713[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1713 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1713 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1714 -> 296[label="",style="dashed", color="red", weight=0]; 1714[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1714 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1714 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1715 -> 297[label="",style="dashed", color="red", weight=0]; 1715[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1715 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1715 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1716 -> 298[label="",style="dashed", color="red", weight=0]; 1716[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1716 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1716 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1717 -> 299[label="",style="dashed", color="red", weight=0]; 1717[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1717 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1717 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1718 -> 300[label="",style="dashed", color="red", weight=0]; 1718[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1718 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1718 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1719 -> 301[label="",style="dashed", color="red", weight=0]; 1719[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1719 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1719 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1720 -> 302[label="",style="dashed", color="red", weight=0]; 1720[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1720 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1720 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1721 -> 303[label="",style="dashed", color="red", weight=0]; 1721[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1721 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1721 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1722 -> 304[label="",style="dashed", color="red", weight=0]; 1722[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1722 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1722 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1723 -> 305[label="",style="dashed", color="red", weight=0]; 1723[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1723 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1723 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1076[label="",style="dashed", color="red", weight=0]; 1724[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];1724 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1724 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1725[label="False",fontsize=16,color="green",shape="box"];1726[label="False",fontsize=16,color="green",shape="box"];1727[label="True",fontsize=16,color="green",shape="box"];1728[label="False",fontsize=16,color="green",shape="box"];1729[label="True",fontsize=16,color="green",shape="box"];1730 -> 1076[label="",style="dashed", color="red", weight=0]; 1730[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];1730 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1730 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1731[label="False",fontsize=16,color="green",shape="box"];1732[label="False",fontsize=16,color="green",shape="box"];1733[label="True",fontsize=16,color="green",shape="box"];1734[label="False",fontsize=16,color="green",shape="box"];1735[label="True",fontsize=16,color="green",shape="box"];1736[label="vxw4001",fontsize=16,color="green",shape="box"];1737[label="vxw300",fontsize=16,color="green",shape="box"];1738[label="vxw4000",fontsize=16,color="green",shape="box"];1739[label="vxw301",fontsize=16,color="green",shape="box"];1740[label="vxw300",fontsize=16,color="green",shape="box"];1741[label="vxw4000",fontsize=16,color="green",shape="box"];1742[label="vxw300",fontsize=16,color="green",shape="box"];1743[label="vxw4000",fontsize=16,color="green",shape="box"];1744[label="vxw300",fontsize=16,color="green",shape="box"];1745[label="vxw4000",fontsize=16,color="green",shape="box"];1746[label="vxw300",fontsize=16,color="green",shape="box"];1747[label="vxw4000",fontsize=16,color="green",shape="box"];1748[label="vxw300",fontsize=16,color="green",shape="box"];1749[label="vxw4000",fontsize=16,color="green",shape="box"];1750[label="vxw300",fontsize=16,color="green",shape="box"];1751[label="vxw4000",fontsize=16,color="green",shape="box"];1752[label="vxw300",fontsize=16,color="green",shape="box"];1753[label="vxw4000",fontsize=16,color="green",shape="box"];1754[label="vxw300",fontsize=16,color="green",shape="box"];1755[label="vxw4000",fontsize=16,color="green",shape="box"];1756[label="vxw300",fontsize=16,color="green",shape="box"];1757[label="vxw4000",fontsize=16,color="green",shape="box"];1758[label="vxw300",fontsize=16,color="green",shape="box"];1759[label="vxw4000",fontsize=16,color="green",shape="box"];1760[label="vxw300",fontsize=16,color="green",shape="box"];1761[label="vxw4000",fontsize=16,color="green",shape="box"];1762[label="vxw300",fontsize=16,color="green",shape="box"];1763[label="vxw4000",fontsize=16,color="green",shape="box"];1764[label="vxw300",fontsize=16,color="green",shape="box"];1765[label="vxw4000",fontsize=16,color="green",shape="box"];1766[label="vxw300",fontsize=16,color="green",shape="box"];1767[label="vxw4000",fontsize=16,color="green",shape="box"];1769 -> 15[label="",style="dashed", color="red", weight=0]; 1769[label="compare vxw24 vxw25",fontsize=16,color="magenta"];1769 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1769 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1768[label="vxw147 /= GT",fontsize=16,color="black",shape="triangle"];1768 -> 2016[label="",style="solid", color="black", weight=3]; 1770 -> 16[label="",style="dashed", color="red", weight=0]; 1770[label="compare vxw24 vxw25",fontsize=16,color="magenta"];1770 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1770 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1771 -> 17[label="",style="dashed", color="red", weight=0]; 1771[label="compare vxw24 vxw25",fontsize=16,color="magenta"];1771 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1771 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1777[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1777 -> 2021[label="",style="solid", color="black", weight=3]; 1778[label="Nothing <= Just vxw250",fontsize=16,color="black",shape="box"];1778 -> 2022[label="",style="solid", color="black", weight=3]; 1779[label="Just vxw240 <= Nothing",fontsize=16,color="black",shape="box"];1779 -> 2023[label="",style="solid", color="black", weight=3]; 1780[label="Just vxw240 <= Just vxw250",fontsize=16,color="black",shape="box"];1780 -> 2024[label="",style="solid", color="black", weight=3]; 1781[label="(vxw240,vxw241) <= (vxw250,vxw251)",fontsize=16,color="black",shape="box"];1781 -> 2025[label="",style="solid", color="black", weight=3]; 1782[label="LT <= LT",fontsize=16,color="black",shape="box"];1782 -> 2026[label="",style="solid", color="black", weight=3]; 1783[label="LT <= EQ",fontsize=16,color="black",shape="box"];1783 -> 2027[label="",style="solid", color="black", weight=3]; 1784[label="LT <= GT",fontsize=16,color="black",shape="box"];1784 -> 2028[label="",style="solid", color="black", weight=3]; 1785[label="EQ <= LT",fontsize=16,color="black",shape="box"];1785 -> 2029[label="",style="solid", color="black", weight=3]; 1786[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1786 -> 2030[label="",style="solid", color="black", weight=3]; 1787[label="EQ <= GT",fontsize=16,color="black",shape="box"];1787 -> 2031[label="",style="solid", color="black", weight=3]; 1788[label="GT <= LT",fontsize=16,color="black",shape="box"];1788 -> 2032[label="",style="solid", color="black", weight=3]; 1789[label="GT <= EQ",fontsize=16,color="black",shape="box"];1789 -> 2033[label="",style="solid", color="black", weight=3]; 1790[label="GT <= GT",fontsize=16,color="black",shape="box"];1790 -> 2034[label="",style="solid", color="black", weight=3]; 1791[label="(vxw240,vxw241,vxw242) <= (vxw250,vxw251,vxw252)",fontsize=16,color="black",shape="box"];1791 -> 2035[label="",style="solid", color="black", weight=3]; 1772 -> 22[label="",style="dashed", color="red", weight=0]; 1772[label="compare vxw24 vxw25",fontsize=16,color="magenta"];1772 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1772 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1773 -> 23[label="",style="dashed", color="red", weight=0]; 1773[label="compare vxw24 vxw25",fontsize=16,color="magenta"];1773 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1773 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1774 -> 24[label="",style="dashed", color="red", weight=0]; 1774[label="compare vxw24 vxw25",fontsize=16,color="magenta"];1774 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1774 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1775 -> 25[label="",style="dashed", color="red", weight=0]; 1775[label="compare vxw24 vxw25",fontsize=16,color="magenta"];1775 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1775 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1792[label="Left vxw240 <= Left vxw250",fontsize=16,color="black",shape="box"];1792 -> 2044[label="",style="solid", color="black", weight=3]; 1793[label="Left vxw240 <= Right vxw250",fontsize=16,color="black",shape="box"];1793 -> 2045[label="",style="solid", color="black", weight=3]; 1794[label="Right vxw240 <= Left vxw250",fontsize=16,color="black",shape="box"];1794 -> 2046[label="",style="solid", color="black", weight=3]; 1795[label="Right vxw240 <= Right vxw250",fontsize=16,color="black",shape="box"];1795 -> 2047[label="",style="solid", color="black", weight=3]; 1776 -> 27[label="",style="dashed", color="red", weight=0]; 1776[label="compare vxw24 vxw25",fontsize=16,color="magenta"];1776 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1776 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1796[label="False <= False",fontsize=16,color="black",shape="box"];1796 -> 2050[label="",style="solid", color="black", weight=3]; 1797[label="False <= True",fontsize=16,color="black",shape="box"];1797 -> 2051[label="",style="solid", color="black", weight=3]; 1798[label="True <= False",fontsize=16,color="black",shape="box"];1798 -> 2052[label="",style="solid", color="black", weight=3]; 1799[label="True <= True",fontsize=16,color="black",shape="box"];1799 -> 2053[label="",style="solid", color="black", weight=3]; 1800[label="GT",fontsize=16,color="green",shape="box"];1801[label="vxw73",fontsize=16,color="green",shape="box"];1802[label="vxw75",fontsize=16,color="green",shape="box"];1803[label="vxw73",fontsize=16,color="green",shape="box"];1804[label="vxw75",fontsize=16,color="green",shape="box"];1805[label="vxw73",fontsize=16,color="green",shape="box"];1806[label="vxw75",fontsize=16,color="green",shape="box"];1807[label="vxw73",fontsize=16,color="green",shape="box"];1808[label="vxw75",fontsize=16,color="green",shape="box"];1809[label="vxw73",fontsize=16,color="green",shape="box"];1810[label="vxw75",fontsize=16,color="green",shape="box"];1811[label="vxw73",fontsize=16,color="green",shape="box"];1812[label="vxw75",fontsize=16,color="green",shape="box"];1813[label="vxw73",fontsize=16,color="green",shape="box"];1814[label="vxw75",fontsize=16,color="green",shape="box"];1815[label="vxw73",fontsize=16,color="green",shape="box"];1816[label="vxw75",fontsize=16,color="green",shape="box"];1817[label="vxw73",fontsize=16,color="green",shape="box"];1818[label="vxw75",fontsize=16,color="green",shape="box"];1819[label="vxw73",fontsize=16,color="green",shape="box"];1820[label="vxw75",fontsize=16,color="green",shape="box"];1821[label="vxw73",fontsize=16,color="green",shape="box"];1822[label="vxw75",fontsize=16,color="green",shape="box"];1823[label="vxw73",fontsize=16,color="green",shape="box"];1824[label="vxw75",fontsize=16,color="green",shape="box"];1825[label="vxw73",fontsize=16,color="green",shape="box"];1826[label="vxw75",fontsize=16,color="green",shape="box"];1827[label="vxw73",fontsize=16,color="green",shape="box"];1828[label="vxw75",fontsize=16,color="green",shape="box"];1829[label="vxw74",fontsize=16,color="green",shape="box"];1830[label="vxw76",fontsize=16,color="green",shape="box"];1831[label="vxw74",fontsize=16,color="green",shape="box"];1832[label="vxw76",fontsize=16,color="green",shape="box"];1833[label="vxw74",fontsize=16,color="green",shape="box"];1834[label="vxw76",fontsize=16,color="green",shape="box"];1835[label="vxw74",fontsize=16,color="green",shape="box"];1836[label="vxw76",fontsize=16,color="green",shape="box"];1837[label="vxw74",fontsize=16,color="green",shape="box"];1838[label="vxw76",fontsize=16,color="green",shape="box"];1839[label="vxw74",fontsize=16,color="green",shape="box"];1840[label="vxw76",fontsize=16,color="green",shape="box"];1841[label="vxw74",fontsize=16,color="green",shape="box"];1842[label="vxw76",fontsize=16,color="green",shape="box"];1843[label="vxw74",fontsize=16,color="green",shape="box"];1844[label="vxw76",fontsize=16,color="green",shape="box"];1845[label="vxw74",fontsize=16,color="green",shape="box"];1846[label="vxw76",fontsize=16,color="green",shape="box"];1847[label="vxw74",fontsize=16,color="green",shape="box"];1848[label="vxw76",fontsize=16,color="green",shape="box"];1849[label="vxw74",fontsize=16,color="green",shape="box"];1850[label="vxw76",fontsize=16,color="green",shape="box"];1851[label="vxw74",fontsize=16,color="green",shape="box"];1852[label="vxw76",fontsize=16,color="green",shape="box"];1853[label="vxw74",fontsize=16,color="green",shape="box"];1854[label="vxw76",fontsize=16,color="green",shape="box"];1855[label="vxw74",fontsize=16,color="green",shape="box"];1856[label="vxw76",fontsize=16,color="green",shape="box"];1857 -> 15[label="",style="dashed", color="red", weight=0]; 1857[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1857 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1857 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1858[label="LT",fontsize=16,color="green",shape="box"];1859 -> 16[label="",style="dashed", color="red", weight=0]; 1859[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1859 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1859 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1860[label="LT",fontsize=16,color="green",shape="box"];1861 -> 17[label="",style="dashed", color="red", weight=0]; 1861[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1861 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1862[label="LT",fontsize=16,color="green",shape="box"];1863 -> 18[label="",style="dashed", color="red", weight=0]; 1863[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1863 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1864[label="LT",fontsize=16,color="green",shape="box"];1865 -> 19[label="",style="dashed", color="red", weight=0]; 1865[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1865 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1865 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1866[label="LT",fontsize=16,color="green",shape="box"];1867 -> 20[label="",style="dashed", color="red", weight=0]; 1867[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1867 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1868[label="LT",fontsize=16,color="green",shape="box"];1869 -> 21[label="",style="dashed", color="red", weight=0]; 1869[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1869 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1870[label="LT",fontsize=16,color="green",shape="box"];1871 -> 22[label="",style="dashed", color="red", weight=0]; 1871[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1871 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1872[label="LT",fontsize=16,color="green",shape="box"];1873 -> 23[label="",style="dashed", color="red", weight=0]; 1873[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1873 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1873 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1874[label="LT",fontsize=16,color="green",shape="box"];1875 -> 24[label="",style="dashed", color="red", weight=0]; 1875[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1875 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1876[label="LT",fontsize=16,color="green",shape="box"];1877 -> 25[label="",style="dashed", color="red", weight=0]; 1877[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1877 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1878[label="LT",fontsize=16,color="green",shape="box"];1879 -> 26[label="",style="dashed", color="red", weight=0]; 1879[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1879 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1880[label="LT",fontsize=16,color="green",shape="box"];1881 -> 27[label="",style="dashed", color="red", weight=0]; 1881[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1881 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1882[label="LT",fontsize=16,color="green",shape="box"];1883 -> 28[label="",style="dashed", color="red", weight=0]; 1883[label="compare vxw73 vxw75",fontsize=16,color="magenta"];1883 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1884[label="LT",fontsize=16,color="green",shape="box"];1885[label="compare1 (vxw123,vxw124) (vxw125,vxw126) False",fontsize=16,color="black",shape="box"];1885 -> 2082[label="",style="solid", color="black", weight=3]; 1886[label="compare1 (vxw123,vxw124) (vxw125,vxw126) True",fontsize=16,color="black",shape="box"];1886 -> 2083[label="",style="solid", color="black", weight=3]; 1887[label="True",fontsize=16,color="green",shape="box"];1888[label="vxw46",fontsize=16,color="green",shape="box"];1889[label="vxw49",fontsize=16,color="green",shape="box"];1890[label="vxw46",fontsize=16,color="green",shape="box"];1891[label="vxw49",fontsize=16,color="green",shape="box"];1892[label="vxw46",fontsize=16,color="green",shape="box"];1893[label="vxw49",fontsize=16,color="green",shape="box"];1894[label="vxw46",fontsize=16,color="green",shape="box"];1895[label="vxw49",fontsize=16,color="green",shape="box"];1896[label="vxw46",fontsize=16,color="green",shape="box"];1897[label="vxw49",fontsize=16,color="green",shape="box"];1898[label="vxw46",fontsize=16,color="green",shape="box"];1899[label="vxw49",fontsize=16,color="green",shape="box"];1900[label="vxw46",fontsize=16,color="green",shape="box"];1901[label="vxw49",fontsize=16,color="green",shape="box"];1902[label="vxw46",fontsize=16,color="green",shape="box"];1903[label="vxw49",fontsize=16,color="green",shape="box"];1904[label="vxw46",fontsize=16,color="green",shape="box"];1905[label="vxw49",fontsize=16,color="green",shape="box"];1906[label="vxw46",fontsize=16,color="green",shape="box"];1907[label="vxw49",fontsize=16,color="green",shape="box"];1908[label="vxw46",fontsize=16,color="green",shape="box"];1909[label="vxw49",fontsize=16,color="green",shape="box"];1910[label="vxw46",fontsize=16,color="green",shape="box"];1911[label="vxw49",fontsize=16,color="green",shape="box"];1912[label="vxw46",fontsize=16,color="green",shape="box"];1913[label="vxw49",fontsize=16,color="green",shape="box"];1914[label="vxw46",fontsize=16,color="green",shape="box"];1915[label="vxw49",fontsize=16,color="green",shape="box"];1923 -> 1165[label="",style="dashed", color="red", weight=0]; 1923[label="vxw47 < vxw50",fontsize=16,color="magenta"];1923 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1924 -> 1166[label="",style="dashed", color="red", weight=0]; 1924[label="vxw47 < vxw50",fontsize=16,color="magenta"];1924 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1925 -> 1167[label="",style="dashed", color="red", weight=0]; 1925[label="vxw47 < vxw50",fontsize=16,color="magenta"];1925 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1926 -> 1168[label="",style="dashed", color="red", weight=0]; 1926[label="vxw47 < vxw50",fontsize=16,color="magenta"];1926 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1927 -> 1169[label="",style="dashed", color="red", weight=0]; 1927[label="vxw47 < vxw50",fontsize=16,color="magenta"];1927 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1928 -> 1170[label="",style="dashed", color="red", weight=0]; 1928[label="vxw47 < vxw50",fontsize=16,color="magenta"];1928 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1929 -> 1171[label="",style="dashed", color="red", weight=0]; 1929[label="vxw47 < vxw50",fontsize=16,color="magenta"];1929 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1930 -> 1172[label="",style="dashed", color="red", weight=0]; 1930[label="vxw47 < vxw50",fontsize=16,color="magenta"];1930 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1931 -> 1173[label="",style="dashed", color="red", weight=0]; 1931[label="vxw47 < vxw50",fontsize=16,color="magenta"];1931 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1932 -> 1174[label="",style="dashed", color="red", weight=0]; 1932[label="vxw47 < vxw50",fontsize=16,color="magenta"];1932 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1933 -> 1175[label="",style="dashed", color="red", weight=0]; 1933[label="vxw47 < vxw50",fontsize=16,color="magenta"];1933 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1934 -> 1176[label="",style="dashed", color="red", weight=0]; 1934[label="vxw47 < vxw50",fontsize=16,color="magenta"];1934 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1935 -> 1177[label="",style="dashed", color="red", weight=0]; 1935[label="vxw47 < vxw50",fontsize=16,color="magenta"];1935 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1936 -> 1178[label="",style="dashed", color="red", weight=0]; 1936[label="vxw47 < vxw50",fontsize=16,color="magenta"];1936 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1937[label="vxw47 == vxw50",fontsize=16,color="blue",shape="box"];3370[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 2112[label="",style="solid", color="blue", weight=3]; 3371[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 2113[label="",style="solid", color="blue", weight=3]; 3372[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 2114[label="",style="solid", color="blue", weight=3]; 3373[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 2115[label="",style="solid", color="blue", weight=3]; 3374[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 2116[label="",style="solid", color="blue", weight=3]; 3375[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 2117[label="",style="solid", color="blue", weight=3]; 3376[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 2118[label="",style="solid", color="blue", weight=3]; 3377[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 2119[label="",style="solid", color="blue", weight=3]; 3378[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 2120[label="",style="solid", color="blue", weight=3]; 3379[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 2121[label="",style="solid", color="blue", weight=3]; 3380[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 2122[label="",style="solid", color="blue", weight=3]; 3381[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 2123[label="",style="solid", color="blue", weight=3]; 3382[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 2124[label="",style="solid", color="blue", weight=3]; 3383[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 2125[label="",style="solid", color="blue", weight=3]; 1938[label="vxw48 <= vxw51",fontsize=16,color="blue",shape="box"];3384[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 2126[label="",style="solid", color="blue", weight=3]; 3385[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 2127[label="",style="solid", color="blue", weight=3]; 3386[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 2128[label="",style="solid", color="blue", weight=3]; 3387[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 2129[label="",style="solid", color="blue", weight=3]; 3388[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 2130[label="",style="solid", color="blue", weight=3]; 3389[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 2131[label="",style="solid", color="blue", weight=3]; 3390[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 2132[label="",style="solid", color="blue", weight=3]; 3391[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 2133[label="",style="solid", color="blue", weight=3]; 3392[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 2134[label="",style="solid", color="blue", weight=3]; 3393[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2135[label="",style="solid", color="blue", weight=3]; 3394[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2136[label="",style="solid", color="blue", weight=3]; 3395[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2137[label="",style="solid", color="blue", weight=3]; 3396[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2138[label="",style="solid", color="blue", weight=3]; 3397[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2139[label="",style="solid", color="blue", weight=3]; 1939[label="False || vxw152",fontsize=16,color="black",shape="box"];1939 -> 2140[label="",style="solid", color="black", weight=3]; 1940[label="True || vxw152",fontsize=16,color="black",shape="box"];1940 -> 2141[label="",style="solid", color="black", weight=3]; 1941[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) False",fontsize=16,color="black",shape="box"];1941 -> 2142[label="",style="solid", color="black", weight=3]; 1942[label="compare1 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) True",fontsize=16,color="black",shape="box"];1942 -> 2143[label="",style="solid", color="black", weight=3]; 1943[label="True",fontsize=16,color="green",shape="box"];1944 -> 2144[label="",style="dashed", color="red", weight=0]; 1944[label="primPlusNat (primMulNat vxw3000 (Succ vxw40100)) (Succ vxw40100)",fontsize=16,color="magenta"];1944 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1945[label="Zero",fontsize=16,color="green",shape="box"];1946[label="Zero",fontsize=16,color="green",shape="box"];1947[label="Zero",fontsize=16,color="green",shape="box"];1948[label="GT",fontsize=16,color="green",shape="box"];1949[label="GT",fontsize=16,color="green",shape="box"];1950 -> 1076[label="",style="dashed", color="red", weight=0]; 1950[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];1950 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1951[label="False",fontsize=16,color="green",shape="box"];1952[label="False",fontsize=16,color="green",shape="box"];1953[label="True",fontsize=16,color="green",shape="box"];1954[label="vxw301",fontsize=16,color="green",shape="box"];1955[label="vxw4001",fontsize=16,color="green",shape="box"];1956[label="vxw301",fontsize=16,color="green",shape="box"];1957[label="vxw4001",fontsize=16,color="green",shape="box"];1958[label="vxw301",fontsize=16,color="green",shape="box"];1959[label="vxw4001",fontsize=16,color="green",shape="box"];1960[label="vxw301",fontsize=16,color="green",shape="box"];1961[label="vxw4001",fontsize=16,color="green",shape="box"];1962[label="vxw301",fontsize=16,color="green",shape="box"];1963[label="vxw4001",fontsize=16,color="green",shape="box"];1964[label="vxw301",fontsize=16,color="green",shape="box"];1965[label="vxw4001",fontsize=16,color="green",shape="box"];1966[label="vxw301",fontsize=16,color="green",shape="box"];1967[label="vxw4001",fontsize=16,color="green",shape="box"];1968[label="vxw301",fontsize=16,color="green",shape="box"];1969[label="vxw4001",fontsize=16,color="green",shape="box"];1970[label="vxw301",fontsize=16,color="green",shape="box"];1971[label="vxw4001",fontsize=16,color="green",shape="box"];1972[label="vxw301",fontsize=16,color="green",shape="box"];1973[label="vxw4001",fontsize=16,color="green",shape="box"];1974[label="vxw301",fontsize=16,color="green",shape="box"];1975[label="vxw4001",fontsize=16,color="green",shape="box"];1976[label="vxw301",fontsize=16,color="green",shape="box"];1977[label="vxw4001",fontsize=16,color="green",shape="box"];1978[label="vxw301",fontsize=16,color="green",shape="box"];1979[label="vxw4001",fontsize=16,color="green",shape="box"];1980[label="vxw301",fontsize=16,color="green",shape="box"];1981[label="vxw4001",fontsize=16,color="green",shape="box"];1982[label="vxw302",fontsize=16,color="green",shape="box"];1983[label="vxw4002",fontsize=16,color="green",shape="box"];1984[label="vxw302",fontsize=16,color="green",shape="box"];1985[label="vxw4002",fontsize=16,color="green",shape="box"];1986[label="vxw302",fontsize=16,color="green",shape="box"];1987[label="vxw4002",fontsize=16,color="green",shape="box"];1988[label="vxw302",fontsize=16,color="green",shape="box"];1989[label="vxw4002",fontsize=16,color="green",shape="box"];1990[label="vxw302",fontsize=16,color="green",shape="box"];1991[label="vxw4002",fontsize=16,color="green",shape="box"];1992[label="vxw302",fontsize=16,color="green",shape="box"];1993[label="vxw4002",fontsize=16,color="green",shape="box"];1994[label="vxw302",fontsize=16,color="green",shape="box"];1995[label="vxw4002",fontsize=16,color="green",shape="box"];1996[label="vxw302",fontsize=16,color="green",shape="box"];1997[label="vxw4002",fontsize=16,color="green",shape="box"];1998[label="vxw302",fontsize=16,color="green",shape="box"];1999[label="vxw4002",fontsize=16,color="green",shape="box"];2000[label="vxw302",fontsize=16,color="green",shape="box"];2001[label="vxw4002",fontsize=16,color="green",shape="box"];2002[label="vxw302",fontsize=16,color="green",shape="box"];2003[label="vxw4002",fontsize=16,color="green",shape="box"];2004[label="vxw302",fontsize=16,color="green",shape="box"];2005[label="vxw4002",fontsize=16,color="green",shape="box"];2006[label="vxw302",fontsize=16,color="green",shape="box"];2007[label="vxw4002",fontsize=16,color="green",shape="box"];2008[label="vxw302",fontsize=16,color="green",shape="box"];2009[label="vxw4002",fontsize=16,color="green",shape="box"];2010[label="vxw3000",fontsize=16,color="green",shape="box"];2011[label="vxw40000",fontsize=16,color="green",shape="box"];2012[label="vxw3000",fontsize=16,color="green",shape="box"];2013[label="vxw40000",fontsize=16,color="green",shape="box"];2014[label="vxw24",fontsize=16,color="green",shape="box"];2015[label="vxw25",fontsize=16,color="green",shape="box"];2016 -> 2148[label="",style="dashed", color="red", weight=0]; 2016[label="not (vxw147 == GT)",fontsize=16,color="magenta"];2016 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2017[label="vxw24",fontsize=16,color="green",shape="box"];2018[label="vxw25",fontsize=16,color="green",shape="box"];2019[label="vxw24",fontsize=16,color="green",shape="box"];2020[label="vxw25",fontsize=16,color="green",shape="box"];2021[label="True",fontsize=16,color="green",shape="box"];2022[label="True",fontsize=16,color="green",shape="box"];2023[label="False",fontsize=16,color="green",shape="box"];2024[label="vxw240 <= vxw250",fontsize=16,color="blue",shape="box"];3398[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 2150[label="",style="solid", color="blue", weight=3]; 3399[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 2151[label="",style="solid", color="blue", weight=3]; 3400[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 2152[label="",style="solid", color="blue", weight=3]; 3401[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 2153[label="",style="solid", color="blue", weight=3]; 3402[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 2154[label="",style="solid", color="blue", weight=3]; 3403[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 2155[label="",style="solid", color="blue", weight=3]; 3404[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 2156[label="",style="solid", color="blue", weight=3]; 3405[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 2157[label="",style="solid", color="blue", weight=3]; 3406[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 2158[label="",style="solid", color="blue", weight=3]; 3407[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 2159[label="",style="solid", color="blue", weight=3]; 3408[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 2160[label="",style="solid", color="blue", weight=3]; 3409[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 2161[label="",style="solid", color="blue", weight=3]; 3410[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 2162[label="",style="solid", color="blue", weight=3]; 3411[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 2163[label="",style="solid", color="blue", weight=3]; 2025 -> 1918[label="",style="dashed", color="red", weight=0]; 2025[label="vxw240 < vxw250 || vxw240 == vxw250 && vxw241 <= vxw251",fontsize=16,color="magenta"];2025 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2025 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2026[label="True",fontsize=16,color="green",shape="box"];2027[label="True",fontsize=16,color="green",shape="box"];2028[label="True",fontsize=16,color="green",shape="box"];2029[label="False",fontsize=16,color="green",shape="box"];2030[label="True",fontsize=16,color="green",shape="box"];2031[label="True",fontsize=16,color="green",shape="box"];2032[label="False",fontsize=16,color="green",shape="box"];2033[label="False",fontsize=16,color="green",shape="box"];2034[label="True",fontsize=16,color="green",shape="box"];2035 -> 1918[label="",style="dashed", color="red", weight=0]; 2035[label="vxw240 < vxw250 || vxw240 == vxw250 && (vxw241 < vxw251 || vxw241 == vxw251 && vxw242 <= vxw252)",fontsize=16,color="magenta"];2035 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2036[label="vxw24",fontsize=16,color="green",shape="box"];2037[label="vxw25",fontsize=16,color="green",shape="box"];2038[label="vxw24",fontsize=16,color="green",shape="box"];2039[label="vxw25",fontsize=16,color="green",shape="box"];2040[label="vxw24",fontsize=16,color="green",shape="box"];2041[label="vxw25",fontsize=16,color="green",shape="box"];2042[label="vxw24",fontsize=16,color="green",shape="box"];2043[label="vxw25",fontsize=16,color="green",shape="box"];2044[label="vxw240 <= vxw250",fontsize=16,color="blue",shape="box"];3412[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 2168[label="",style="solid", color="blue", weight=3]; 3413[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 2169[label="",style="solid", color="blue", weight=3]; 3414[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 2170[label="",style="solid", color="blue", weight=3]; 3415[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 2171[label="",style="solid", color="blue", weight=3]; 3416[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 2172[label="",style="solid", color="blue", weight=3]; 3417[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 2173[label="",style="solid", color="blue", weight=3]; 3418[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 2174[label="",style="solid", color="blue", weight=3]; 3419[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 2175[label="",style="solid", color="blue", weight=3]; 3420[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 2176[label="",style="solid", color="blue", weight=3]; 3421[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 2177[label="",style="solid", color="blue", weight=3]; 3422[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 2178[label="",style="solid", color="blue", weight=3]; 3423[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 2179[label="",style="solid", color="blue", weight=3]; 3424[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 2180[label="",style="solid", color="blue", weight=3]; 3425[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2044 -> 3425[label="",style="solid", color="blue", weight=9]; 3425 -> 2181[label="",style="solid", color="blue", weight=3]; 2045[label="True",fontsize=16,color="green",shape="box"];2046[label="False",fontsize=16,color="green",shape="box"];2047[label="vxw240 <= vxw250",fontsize=16,color="blue",shape="box"];3426[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3426[label="",style="solid", color="blue", weight=9]; 3426 -> 2182[label="",style="solid", color="blue", weight=3]; 3427[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 2183[label="",style="solid", color="blue", weight=3]; 3428[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 2184[label="",style="solid", color="blue", weight=3]; 3429[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 2185[label="",style="solid", color="blue", weight=3]; 3430[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 2186[label="",style="solid", color="blue", weight=3]; 3431[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 2187[label="",style="solid", color="blue", weight=3]; 3432[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 2188[label="",style="solid", color="blue", weight=3]; 3433[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 2189[label="",style="solid", color="blue", weight=3]; 3434[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 2190[label="",style="solid", color="blue", weight=3]; 3435[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 2191[label="",style="solid", color="blue", weight=3]; 3436[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 2192[label="",style="solid", color="blue", weight=3]; 3437[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 2193[label="",style="solid", color="blue", weight=3]; 3438[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 2194[label="",style="solid", color="blue", weight=3]; 3439[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2047 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 2195[label="",style="solid", color="blue", weight=3]; 2048[label="vxw24",fontsize=16,color="green",shape="box"];2049[label="vxw25",fontsize=16,color="green",shape="box"];2050[label="True",fontsize=16,color="green",shape="box"];2051[label="True",fontsize=16,color="green",shape="box"];2052[label="False",fontsize=16,color="green",shape="box"];2053[label="True",fontsize=16,color="green",shape="box"];2054[label="vxw73",fontsize=16,color="green",shape="box"];2055[label="vxw75",fontsize=16,color="green",shape="box"];2056[label="vxw73",fontsize=16,color="green",shape="box"];2057[label="vxw75",fontsize=16,color="green",shape="box"];2058[label="vxw73",fontsize=16,color="green",shape="box"];2059[label="vxw75",fontsize=16,color="green",shape="box"];2060[label="vxw73",fontsize=16,color="green",shape="box"];2061[label="vxw75",fontsize=16,color="green",shape="box"];2062[label="vxw73",fontsize=16,color="green",shape="box"];2063[label="vxw75",fontsize=16,color="green",shape="box"];2064[label="vxw73",fontsize=16,color="green",shape="box"];2065[label="vxw75",fontsize=16,color="green",shape="box"];2066[label="vxw73",fontsize=16,color="green",shape="box"];2067[label="vxw75",fontsize=16,color="green",shape="box"];2068[label="vxw73",fontsize=16,color="green",shape="box"];2069[label="vxw75",fontsize=16,color="green",shape="box"];2070[label="vxw73",fontsize=16,color="green",shape="box"];2071[label="vxw75",fontsize=16,color="green",shape="box"];2072[label="vxw73",fontsize=16,color="green",shape="box"];2073[label="vxw75",fontsize=16,color="green",shape="box"];2074[label="vxw73",fontsize=16,color="green",shape="box"];2075[label="vxw75",fontsize=16,color="green",shape="box"];2076[label="vxw73",fontsize=16,color="green",shape="box"];2077[label="vxw75",fontsize=16,color="green",shape="box"];2078[label="vxw73",fontsize=16,color="green",shape="box"];2079[label="vxw75",fontsize=16,color="green",shape="box"];2080[label="vxw73",fontsize=16,color="green",shape="box"];2081[label="vxw75",fontsize=16,color="green",shape="box"];2082[label="compare0 (vxw123,vxw124) (vxw125,vxw126) otherwise",fontsize=16,color="black",shape="box"];2082 -> 2196[label="",style="solid", color="black", weight=3]; 2083[label="LT",fontsize=16,color="green",shape="box"];2084[label="vxw47",fontsize=16,color="green",shape="box"];2085[label="vxw50",fontsize=16,color="green",shape="box"];2086[label="vxw47",fontsize=16,color="green",shape="box"];2087[label="vxw50",fontsize=16,color="green",shape="box"];2088[label="vxw47",fontsize=16,color="green",shape="box"];2089[label="vxw50",fontsize=16,color="green",shape="box"];2090[label="vxw47",fontsize=16,color="green",shape="box"];2091[label="vxw50",fontsize=16,color="green",shape="box"];2092[label="vxw47",fontsize=16,color="green",shape="box"];2093[label="vxw50",fontsize=16,color="green",shape="box"];2094[label="vxw47",fontsize=16,color="green",shape="box"];2095[label="vxw50",fontsize=16,color="green",shape="box"];2096[label="vxw47",fontsize=16,color="green",shape="box"];2097[label="vxw50",fontsize=16,color="green",shape="box"];2098[label="vxw47",fontsize=16,color="green",shape="box"];2099[label="vxw50",fontsize=16,color="green",shape="box"];2100[label="vxw47",fontsize=16,color="green",shape="box"];2101[label="vxw50",fontsize=16,color="green",shape="box"];2102[label="vxw47",fontsize=16,color="green",shape="box"];2103[label="vxw50",fontsize=16,color="green",shape="box"];2104[label="vxw47",fontsize=16,color="green",shape="box"];2105[label="vxw50",fontsize=16,color="green",shape="box"];2106[label="vxw47",fontsize=16,color="green",shape="box"];2107[label="vxw50",fontsize=16,color="green",shape="box"];2108[label="vxw47",fontsize=16,color="green",shape="box"];2109[label="vxw50",fontsize=16,color="green",shape="box"];2110[label="vxw47",fontsize=16,color="green",shape="box"];2111[label="vxw50",fontsize=16,color="green",shape="box"];2112 -> 296[label="",style="dashed", color="red", weight=0]; 2112[label="vxw47 == vxw50",fontsize=16,color="magenta"];2112 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2113 -> 294[label="",style="dashed", color="red", weight=0]; 2113[label="vxw47 == vxw50",fontsize=16,color="magenta"];2113 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2114 -> 302[label="",style="dashed", color="red", weight=0]; 2114[label="vxw47 == vxw50",fontsize=16,color="magenta"];2114 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2115 -> 303[label="",style="dashed", color="red", weight=0]; 2115[label="vxw47 == vxw50",fontsize=16,color="magenta"];2115 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2116 -> 293[label="",style="dashed", color="red", weight=0]; 2116[label="vxw47 == vxw50",fontsize=16,color="magenta"];2116 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2117 -> 304[label="",style="dashed", color="red", weight=0]; 2117[label="vxw47 == vxw50",fontsize=16,color="magenta"];2117 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2118 -> 298[label="",style="dashed", color="red", weight=0]; 2118[label="vxw47 == vxw50",fontsize=16,color="magenta"];2118 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2210[label="",style="dashed", color="magenta", weight=3]; 2119 -> 299[label="",style="dashed", color="red", weight=0]; 2119[label="vxw47 == vxw50",fontsize=16,color="magenta"];2119 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2120 -> 292[label="",style="dashed", color="red", weight=0]; 2120[label="vxw47 == vxw50",fontsize=16,color="magenta"];2120 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2121 -> 295[label="",style="dashed", color="red", weight=0]; 2121[label="vxw47 == vxw50",fontsize=16,color="magenta"];2121 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2122 -> 300[label="",style="dashed", color="red", weight=0]; 2122[label="vxw47 == vxw50",fontsize=16,color="magenta"];2122 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2123 -> 305[label="",style="dashed", color="red", weight=0]; 2123[label="vxw47 == vxw50",fontsize=16,color="magenta"];2123 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2123 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2124 -> 301[label="",style="dashed", color="red", weight=0]; 2124[label="vxw47 == vxw50",fontsize=16,color="magenta"];2124 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2125 -> 297[label="",style="dashed", color="red", weight=0]; 2125[label="vxw47 == vxw50",fontsize=16,color="magenta"];2125 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2126 -> 1132[label="",style="dashed", color="red", weight=0]; 2126[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2126 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2127 -> 1133[label="",style="dashed", color="red", weight=0]; 2127[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2127 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2128 -> 1134[label="",style="dashed", color="red", weight=0]; 2128[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2128 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2129 -> 1135[label="",style="dashed", color="red", weight=0]; 2129[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2129 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2130 -> 1136[label="",style="dashed", color="red", weight=0]; 2130[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2130 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2130 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2131 -> 1137[label="",style="dashed", color="red", weight=0]; 2131[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2131 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2131 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2132 -> 1138[label="",style="dashed", color="red", weight=0]; 2132[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2132 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2133 -> 1139[label="",style="dashed", color="red", weight=0]; 2133[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2133 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2134 -> 1140[label="",style="dashed", color="red", weight=0]; 2134[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2134 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2135 -> 1141[label="",style="dashed", color="red", weight=0]; 2135[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2135 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2136 -> 1142[label="",style="dashed", color="red", weight=0]; 2136[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2136 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2136 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2137 -> 1143[label="",style="dashed", color="red", weight=0]; 2137[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2137 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2138 -> 1144[label="",style="dashed", color="red", weight=0]; 2138[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2138 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2138 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2139 -> 1145[label="",style="dashed", color="red", weight=0]; 2139[label="vxw48 <= vxw51",fontsize=16,color="magenta"];2139 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2139 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2140[label="vxw152",fontsize=16,color="green",shape="box"];2141[label="True",fontsize=16,color="green",shape="box"];2142[label="compare0 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) otherwise",fontsize=16,color="black",shape="box"];2142 -> 2253[label="",style="solid", color="black", weight=3]; 2143[label="LT",fontsize=16,color="green",shape="box"];2145 -> 983[label="",style="dashed", color="red", weight=0]; 2145[label="primMulNat vxw3000 (Succ vxw40100)",fontsize=16,color="magenta"];2145 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2144[label="primPlusNat vxw153 (Succ vxw40100)",fontsize=16,color="burlywood",shape="triangle"];3440[label="vxw153/Succ vxw1530",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3440[label="",style="solid", color="burlywood", weight=9]; 3440 -> 2256[label="",style="solid", color="burlywood", weight=3]; 3441[label="vxw153/Zero",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 2257[label="",style="solid", color="burlywood", weight=3]; 2146[label="vxw3000",fontsize=16,color="green",shape="box"];2147[label="vxw40000",fontsize=16,color="green",shape="box"];2149 -> 304[label="",style="dashed", color="red", weight=0]; 2149[label="vxw147 == GT",fontsize=16,color="magenta"];2149 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2148[label="not vxw154",fontsize=16,color="burlywood",shape="triangle"];3442[label="vxw154/False",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 2260[label="",style="solid", color="burlywood", weight=3]; 3443[label="vxw154/True",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 2261[label="",style="solid", color="burlywood", weight=3]; 2150 -> 1132[label="",style="dashed", color="red", weight=0]; 2150[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2150 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2150 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2151 -> 1133[label="",style="dashed", color="red", weight=0]; 2151[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2151 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2152 -> 1134[label="",style="dashed", color="red", weight=0]; 2152[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2152 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2153 -> 1135[label="",style="dashed", color="red", weight=0]; 2153[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2153 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2154 -> 1136[label="",style="dashed", color="red", weight=0]; 2154[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2154 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2154 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2155 -> 1137[label="",style="dashed", color="red", weight=0]; 2155[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2155 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2156 -> 1138[label="",style="dashed", color="red", weight=0]; 2156[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2156 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2157 -> 1139[label="",style="dashed", color="red", weight=0]; 2157[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2157 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2158 -> 1140[label="",style="dashed", color="red", weight=0]; 2158[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2158 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2159 -> 1141[label="",style="dashed", color="red", weight=0]; 2159[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2159 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2160 -> 1142[label="",style="dashed", color="red", weight=0]; 2160[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2160 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2161 -> 1143[label="",style="dashed", color="red", weight=0]; 2161[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2161 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2162 -> 1144[label="",style="dashed", color="red", weight=0]; 2162[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2162 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2163 -> 1145[label="",style="dashed", color="red", weight=0]; 2163[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2163 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2164[label="vxw240 < vxw250",fontsize=16,color="blue",shape="box"];3444[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 2290[label="",style="solid", color="blue", weight=3]; 3445[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 2291[label="",style="solid", color="blue", weight=3]; 3446[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 2292[label="",style="solid", color="blue", weight=3]; 3447[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 2293[label="",style="solid", color="blue", weight=3]; 3448[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 2294[label="",style="solid", color="blue", weight=3]; 3449[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 2295[label="",style="solid", color="blue", weight=3]; 3450[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 2296[label="",style="solid", color="blue", weight=3]; 3451[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 2297[label="",style="solid", color="blue", weight=3]; 3452[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 2298[label="",style="solid", color="blue", weight=3]; 3453[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 2299[label="",style="solid", color="blue", weight=3]; 3454[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 2300[label="",style="solid", color="blue", weight=3]; 3455[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 2301[label="",style="solid", color="blue", weight=3]; 3456[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 2302[label="",style="solid", color="blue", weight=3]; 3457[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 2303[label="",style="solid", color="blue", weight=3]; 2165 -> 746[label="",style="dashed", color="red", weight=0]; 2165[label="vxw240 == vxw250 && vxw241 <= vxw251",fontsize=16,color="magenta"];2165 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2166[label="vxw240 < vxw250",fontsize=16,color="blue",shape="box"];3458[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 2306[label="",style="solid", color="blue", weight=3]; 3459[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 2307[label="",style="solid", color="blue", weight=3]; 3460[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 2308[label="",style="solid", color="blue", weight=3]; 3461[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 2309[label="",style="solid", color="blue", weight=3]; 3462[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 2310[label="",style="solid", color="blue", weight=3]; 3463[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 2311[label="",style="solid", color="blue", weight=3]; 3464[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 2312[label="",style="solid", color="blue", weight=3]; 3465[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 2313[label="",style="solid", color="blue", weight=3]; 3466[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 2314[label="",style="solid", color="blue", weight=3]; 3467[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 2315[label="",style="solid", color="blue", weight=3]; 3468[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 2316[label="",style="solid", color="blue", weight=3]; 3469[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 2317[label="",style="solid", color="blue", weight=3]; 3470[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 2318[label="",style="solid", color="blue", weight=3]; 3471[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 2319[label="",style="solid", color="blue", weight=3]; 2167 -> 746[label="",style="dashed", color="red", weight=0]; 2167[label="vxw240 == vxw250 && (vxw241 < vxw251 || vxw241 == vxw251 && vxw242 <= vxw252)",fontsize=16,color="magenta"];2167 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2168 -> 1132[label="",style="dashed", color="red", weight=0]; 2168[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2168 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2169 -> 1133[label="",style="dashed", color="red", weight=0]; 2169[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2169 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2170 -> 1134[label="",style="dashed", color="red", weight=0]; 2170[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2170 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2171 -> 1135[label="",style="dashed", color="red", weight=0]; 2171[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2171 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2172 -> 1136[label="",style="dashed", color="red", weight=0]; 2172[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2172 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2173 -> 1137[label="",style="dashed", color="red", weight=0]; 2173[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2173 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2174 -> 1138[label="",style="dashed", color="red", weight=0]; 2174[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2174 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2175 -> 1139[label="",style="dashed", color="red", weight=0]; 2175[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2175 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2176 -> 1140[label="",style="dashed", color="red", weight=0]; 2176[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2176 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2177 -> 1141[label="",style="dashed", color="red", weight=0]; 2177[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2177 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2178 -> 1142[label="",style="dashed", color="red", weight=0]; 2178[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2178 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2179 -> 1143[label="",style="dashed", color="red", weight=0]; 2179[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2179 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2180 -> 1144[label="",style="dashed", color="red", weight=0]; 2180[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2180 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2181 -> 1145[label="",style="dashed", color="red", weight=0]; 2181[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2181 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2182 -> 1132[label="",style="dashed", color="red", weight=0]; 2182[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2182 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2183 -> 1133[label="",style="dashed", color="red", weight=0]; 2183[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2183 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2184 -> 1134[label="",style="dashed", color="red", weight=0]; 2184[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2184 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2185 -> 1135[label="",style="dashed", color="red", weight=0]; 2185[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2185 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2186 -> 1136[label="",style="dashed", color="red", weight=0]; 2186[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2186 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2187 -> 1137[label="",style="dashed", color="red", weight=0]; 2187[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2187 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2188 -> 1138[label="",style="dashed", color="red", weight=0]; 2188[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2188 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2189 -> 1139[label="",style="dashed", color="red", weight=0]; 2189[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2189 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2190 -> 1140[label="",style="dashed", color="red", weight=0]; 2190[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2190 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2191 -> 1141[label="",style="dashed", color="red", weight=0]; 2191[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2191 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2192 -> 1142[label="",style="dashed", color="red", weight=0]; 2192[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2192 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2193 -> 1143[label="",style="dashed", color="red", weight=0]; 2193[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2193 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2194 -> 1144[label="",style="dashed", color="red", weight=0]; 2194[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2194 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2195 -> 1145[label="",style="dashed", color="red", weight=0]; 2195[label="vxw240 <= vxw250",fontsize=16,color="magenta"];2195 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2196[label="compare0 (vxw123,vxw124) (vxw125,vxw126) True",fontsize=16,color="black",shape="box"];2196 -> 2378[label="",style="solid", color="black", weight=3]; 2197[label="vxw47",fontsize=16,color="green",shape="box"];2198[label="vxw50",fontsize=16,color="green",shape="box"];2199[label="vxw47",fontsize=16,color="green",shape="box"];2200[label="vxw50",fontsize=16,color="green",shape="box"];2201[label="vxw47",fontsize=16,color="green",shape="box"];2202[label="vxw50",fontsize=16,color="green",shape="box"];2203[label="vxw47",fontsize=16,color="green",shape="box"];2204[label="vxw50",fontsize=16,color="green",shape="box"];2205[label="vxw47",fontsize=16,color="green",shape="box"];2206[label="vxw50",fontsize=16,color="green",shape="box"];2207[label="vxw47",fontsize=16,color="green",shape="box"];2208[label="vxw50",fontsize=16,color="green",shape="box"];2209[label="vxw47",fontsize=16,color="green",shape="box"];2210[label="vxw50",fontsize=16,color="green",shape="box"];2211[label="vxw47",fontsize=16,color="green",shape="box"];2212[label="vxw50",fontsize=16,color="green",shape="box"];2213[label="vxw47",fontsize=16,color="green",shape="box"];2214[label="vxw50",fontsize=16,color="green",shape="box"];2215[label="vxw47",fontsize=16,color="green",shape="box"];2216[label="vxw50",fontsize=16,color="green",shape="box"];2217[label="vxw47",fontsize=16,color="green",shape="box"];2218[label="vxw50",fontsize=16,color="green",shape="box"];2219[label="vxw47",fontsize=16,color="green",shape="box"];2220[label="vxw50",fontsize=16,color="green",shape="box"];2221[label="vxw47",fontsize=16,color="green",shape="box"];2222[label="vxw50",fontsize=16,color="green",shape="box"];2223[label="vxw47",fontsize=16,color="green",shape="box"];2224[label="vxw50",fontsize=16,color="green",shape="box"];2225[label="vxw48",fontsize=16,color="green",shape="box"];2226[label="vxw51",fontsize=16,color="green",shape="box"];2227[label="vxw48",fontsize=16,color="green",shape="box"];2228[label="vxw51",fontsize=16,color="green",shape="box"];2229[label="vxw48",fontsize=16,color="green",shape="box"];2230[label="vxw51",fontsize=16,color="green",shape="box"];2231[label="vxw48",fontsize=16,color="green",shape="box"];2232[label="vxw51",fontsize=16,color="green",shape="box"];2233[label="vxw48",fontsize=16,color="green",shape="box"];2234[label="vxw51",fontsize=16,color="green",shape="box"];2235[label="vxw48",fontsize=16,color="green",shape="box"];2236[label="vxw51",fontsize=16,color="green",shape="box"];2237[label="vxw48",fontsize=16,color="green",shape="box"];2238[label="vxw51",fontsize=16,color="green",shape="box"];2239[label="vxw48",fontsize=16,color="green",shape="box"];2240[label="vxw51",fontsize=16,color="green",shape="box"];2241[label="vxw48",fontsize=16,color="green",shape="box"];2242[label="vxw51",fontsize=16,color="green",shape="box"];2243[label="vxw48",fontsize=16,color="green",shape="box"];2244[label="vxw51",fontsize=16,color="green",shape="box"];2245[label="vxw48",fontsize=16,color="green",shape="box"];2246[label="vxw51",fontsize=16,color="green",shape="box"];2247[label="vxw48",fontsize=16,color="green",shape="box"];2248[label="vxw51",fontsize=16,color="green",shape="box"];2249[label="vxw48",fontsize=16,color="green",shape="box"];2250[label="vxw51",fontsize=16,color="green",shape="box"];2251[label="vxw48",fontsize=16,color="green",shape="box"];2252[label="vxw51",fontsize=16,color="green",shape="box"];2253[label="compare0 (vxw138,vxw139,vxw140) (vxw141,vxw142,vxw143) True",fontsize=16,color="black",shape="box"];2253 -> 2379[label="",style="solid", color="black", weight=3]; 2254[label="vxw3000",fontsize=16,color="green",shape="box"];2255[label="Succ vxw40100",fontsize=16,color="green",shape="box"];2256[label="primPlusNat (Succ vxw1530) (Succ vxw40100)",fontsize=16,color="black",shape="box"];2256 -> 2380[label="",style="solid", color="black", weight=3]; 2257[label="primPlusNat Zero (Succ vxw40100)",fontsize=16,color="black",shape="box"];2257 -> 2381[label="",style="solid", color="black", weight=3]; 2258[label="vxw147",fontsize=16,color="green",shape="box"];2259[label="GT",fontsize=16,color="green",shape="box"];2260[label="not False",fontsize=16,color="black",shape="box"];2260 -> 2382[label="",style="solid", color="black", weight=3]; 2261[label="not True",fontsize=16,color="black",shape="box"];2261 -> 2383[label="",style="solid", color="black", weight=3]; 2262[label="vxw240",fontsize=16,color="green",shape="box"];2263[label="vxw250",fontsize=16,color="green",shape="box"];2264[label="vxw240",fontsize=16,color="green",shape="box"];2265[label="vxw250",fontsize=16,color="green",shape="box"];2266[label="vxw240",fontsize=16,color="green",shape="box"];2267[label="vxw250",fontsize=16,color="green",shape="box"];2268[label="vxw240",fontsize=16,color="green",shape="box"];2269[label="vxw250",fontsize=16,color="green",shape="box"];2270[label="vxw240",fontsize=16,color="green",shape="box"];2271[label="vxw250",fontsize=16,color="green",shape="box"];2272[label="vxw240",fontsize=16,color="green",shape="box"];2273[label="vxw250",fontsize=16,color="green",shape="box"];2274[label="vxw240",fontsize=16,color="green",shape="box"];2275[label="vxw250",fontsize=16,color="green",shape="box"];2276[label="vxw240",fontsize=16,color="green",shape="box"];2277[label="vxw250",fontsize=16,color="green",shape="box"];2278[label="vxw240",fontsize=16,color="green",shape="box"];2279[label="vxw250",fontsize=16,color="green",shape="box"];2280[label="vxw240",fontsize=16,color="green",shape="box"];2281[label="vxw250",fontsize=16,color="green",shape="box"];2282[label="vxw240",fontsize=16,color="green",shape="box"];2283[label="vxw250",fontsize=16,color="green",shape="box"];2284[label="vxw240",fontsize=16,color="green",shape="box"];2285[label="vxw250",fontsize=16,color="green",shape="box"];2286[label="vxw240",fontsize=16,color="green",shape="box"];2287[label="vxw250",fontsize=16,color="green",shape="box"];2288[label="vxw240",fontsize=16,color="green",shape="box"];2289[label="vxw250",fontsize=16,color="green",shape="box"];2290 -> 1165[label="",style="dashed", color="red", weight=0]; 2290[label="vxw240 < vxw250",fontsize=16,color="magenta"];2290 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2291 -> 1166[label="",style="dashed", color="red", weight=0]; 2291[label="vxw240 < vxw250",fontsize=16,color="magenta"];2291 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2292 -> 1167[label="",style="dashed", color="red", weight=0]; 2292[label="vxw240 < vxw250",fontsize=16,color="magenta"];2292 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2293 -> 1168[label="",style="dashed", color="red", weight=0]; 2293[label="vxw240 < vxw250",fontsize=16,color="magenta"];2293 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2294 -> 1169[label="",style="dashed", color="red", weight=0]; 2294[label="vxw240 < vxw250",fontsize=16,color="magenta"];2294 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2295 -> 1170[label="",style="dashed", color="red", weight=0]; 2295[label="vxw240 < vxw250",fontsize=16,color="magenta"];2295 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2296 -> 1171[label="",style="dashed", color="red", weight=0]; 2296[label="vxw240 < vxw250",fontsize=16,color="magenta"];2296 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2297 -> 1172[label="",style="dashed", color="red", weight=0]; 2297[label="vxw240 < vxw250",fontsize=16,color="magenta"];2297 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2298 -> 1173[label="",style="dashed", color="red", weight=0]; 2298[label="vxw240 < vxw250",fontsize=16,color="magenta"];2298 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2299 -> 1174[label="",style="dashed", color="red", weight=0]; 2299[label="vxw240 < vxw250",fontsize=16,color="magenta"];2299 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2300 -> 1175[label="",style="dashed", color="red", weight=0]; 2300[label="vxw240 < vxw250",fontsize=16,color="magenta"];2300 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2301 -> 1176[label="",style="dashed", color="red", weight=0]; 2301[label="vxw240 < vxw250",fontsize=16,color="magenta"];2301 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2302 -> 1177[label="",style="dashed", color="red", weight=0]; 2302[label="vxw240 < vxw250",fontsize=16,color="magenta"];2302 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2303 -> 1178[label="",style="dashed", color="red", weight=0]; 2303[label="vxw240 < vxw250",fontsize=16,color="magenta"];2303 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2304[label="vxw240 == vxw250",fontsize=16,color="blue",shape="box"];3472[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 2412[label="",style="solid", color="blue", weight=3]; 3473[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 2413[label="",style="solid", color="blue", weight=3]; 3474[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 2414[label="",style="solid", color="blue", weight=3]; 3475[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 2415[label="",style="solid", color="blue", weight=3]; 3476[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 2416[label="",style="solid", color="blue", weight=3]; 3477[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 2417[label="",style="solid", color="blue", weight=3]; 3478[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 2418[label="",style="solid", color="blue", weight=3]; 3479[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 2419[label="",style="solid", color="blue", weight=3]; 3480[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 2420[label="",style="solid", color="blue", weight=3]; 3481[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 2421[label="",style="solid", color="blue", weight=3]; 3482[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 2422[label="",style="solid", color="blue", weight=3]; 3483[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 2423[label="",style="solid", color="blue", weight=3]; 3484[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 2424[label="",style="solid", color="blue", weight=3]; 3485[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2304 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 2425[label="",style="solid", color="blue", weight=3]; 2305[label="vxw241 <= vxw251",fontsize=16,color="blue",shape="box"];3486[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 2426[label="",style="solid", color="blue", weight=3]; 3487[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 2427[label="",style="solid", color="blue", weight=3]; 3488[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 2428[label="",style="solid", color="blue", weight=3]; 3489[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 2429[label="",style="solid", color="blue", weight=3]; 3490[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 2430[label="",style="solid", color="blue", weight=3]; 3491[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 2431[label="",style="solid", color="blue", weight=3]; 3492[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 2432[label="",style="solid", color="blue", weight=3]; 3493[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 2433[label="",style="solid", color="blue", weight=3]; 3494[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 2434[label="",style="solid", color="blue", weight=3]; 3495[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 2435[label="",style="solid", color="blue", weight=3]; 3496[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 2436[label="",style="solid", color="blue", weight=3]; 3497[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 2437[label="",style="solid", color="blue", weight=3]; 3498[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 2438[label="",style="solid", color="blue", weight=3]; 3499[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 2439[label="",style="solid", color="blue", weight=3]; 2306 -> 1165[label="",style="dashed", color="red", weight=0]; 2306[label="vxw240 < vxw250",fontsize=16,color="magenta"];2306 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2307 -> 1166[label="",style="dashed", color="red", weight=0]; 2307[label="vxw240 < vxw250",fontsize=16,color="magenta"];2307 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2308 -> 1167[label="",style="dashed", color="red", weight=0]; 2308[label="vxw240 < vxw250",fontsize=16,color="magenta"];2308 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2309 -> 1168[label="",style="dashed", color="red", weight=0]; 2309[label="vxw240 < vxw250",fontsize=16,color="magenta"];2309 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2310 -> 1169[label="",style="dashed", color="red", weight=0]; 2310[label="vxw240 < vxw250",fontsize=16,color="magenta"];2310 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2311 -> 1170[label="",style="dashed", color="red", weight=0]; 2311[label="vxw240 < vxw250",fontsize=16,color="magenta"];2311 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2312 -> 1171[label="",style="dashed", color="red", weight=0]; 2312[label="vxw240 < vxw250",fontsize=16,color="magenta"];2312 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2313 -> 1172[label="",style="dashed", color="red", weight=0]; 2313[label="vxw240 < vxw250",fontsize=16,color="magenta"];2313 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2314 -> 1173[label="",style="dashed", color="red", weight=0]; 2314[label="vxw240 < vxw250",fontsize=16,color="magenta"];2314 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2315 -> 1174[label="",style="dashed", color="red", weight=0]; 2315[label="vxw240 < vxw250",fontsize=16,color="magenta"];2315 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2316 -> 1175[label="",style="dashed", color="red", weight=0]; 2316[label="vxw240 < vxw250",fontsize=16,color="magenta"];2316 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2317 -> 1176[label="",style="dashed", color="red", weight=0]; 2317[label="vxw240 < vxw250",fontsize=16,color="magenta"];2317 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2318 -> 1177[label="",style="dashed", color="red", weight=0]; 2318[label="vxw240 < vxw250",fontsize=16,color="magenta"];2318 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2319 -> 1178[label="",style="dashed", color="red", weight=0]; 2319[label="vxw240 < vxw250",fontsize=16,color="magenta"];2319 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2320[label="vxw240 == vxw250",fontsize=16,color="blue",shape="box"];3500[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 2468[label="",style="solid", color="blue", weight=3]; 3501[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 2469[label="",style="solid", color="blue", weight=3]; 3502[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 2470[label="",style="solid", color="blue", weight=3]; 3503[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 2471[label="",style="solid", color="blue", weight=3]; 3504[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 2472[label="",style="solid", color="blue", weight=3]; 3505[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 2473[label="",style="solid", color="blue", weight=3]; 3506[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 2474[label="",style="solid", color="blue", weight=3]; 3507[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 2475[label="",style="solid", color="blue", weight=3]; 3508[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 2476[label="",style="solid", color="blue", weight=3]; 3509[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 2477[label="",style="solid", color="blue", weight=3]; 3510[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 2478[label="",style="solid", color="blue", weight=3]; 3511[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 2479[label="",style="solid", color="blue", weight=3]; 3512[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 2480[label="",style="solid", color="blue", weight=3]; 3513[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 2481[label="",style="solid", color="blue", weight=3]; 2321 -> 1918[label="",style="dashed", color="red", weight=0]; 2321[label="vxw241 < vxw251 || vxw241 == vxw251 && vxw242 <= vxw252",fontsize=16,color="magenta"];2321 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2322[label="vxw240",fontsize=16,color="green",shape="box"];2323[label="vxw250",fontsize=16,color="green",shape="box"];2324[label="vxw240",fontsize=16,color="green",shape="box"];2325[label="vxw250",fontsize=16,color="green",shape="box"];2326[label="vxw240",fontsize=16,color="green",shape="box"];2327[label="vxw250",fontsize=16,color="green",shape="box"];2328[label="vxw240",fontsize=16,color="green",shape="box"];2329[label="vxw250",fontsize=16,color="green",shape="box"];2330[label="vxw240",fontsize=16,color="green",shape="box"];2331[label="vxw250",fontsize=16,color="green",shape="box"];2332[label="vxw240",fontsize=16,color="green",shape="box"];2333[label="vxw250",fontsize=16,color="green",shape="box"];2334[label="vxw240",fontsize=16,color="green",shape="box"];2335[label="vxw250",fontsize=16,color="green",shape="box"];2336[label="vxw240",fontsize=16,color="green",shape="box"];2337[label="vxw250",fontsize=16,color="green",shape="box"];2338[label="vxw240",fontsize=16,color="green",shape="box"];2339[label="vxw250",fontsize=16,color="green",shape="box"];2340[label="vxw240",fontsize=16,color="green",shape="box"];2341[label="vxw250",fontsize=16,color="green",shape="box"];2342[label="vxw240",fontsize=16,color="green",shape="box"];2343[label="vxw250",fontsize=16,color="green",shape="box"];2344[label="vxw240",fontsize=16,color="green",shape="box"];2345[label="vxw250",fontsize=16,color="green",shape="box"];2346[label="vxw240",fontsize=16,color="green",shape="box"];2347[label="vxw250",fontsize=16,color="green",shape="box"];2348[label="vxw240",fontsize=16,color="green",shape="box"];2349[label="vxw250",fontsize=16,color="green",shape="box"];2350[label="vxw240",fontsize=16,color="green",shape="box"];2351[label="vxw250",fontsize=16,color="green",shape="box"];2352[label="vxw240",fontsize=16,color="green",shape="box"];2353[label="vxw250",fontsize=16,color="green",shape="box"];2354[label="vxw240",fontsize=16,color="green",shape="box"];2355[label="vxw250",fontsize=16,color="green",shape="box"];2356[label="vxw240",fontsize=16,color="green",shape="box"];2357[label="vxw250",fontsize=16,color="green",shape="box"];2358[label="vxw240",fontsize=16,color="green",shape="box"];2359[label="vxw250",fontsize=16,color="green",shape="box"];2360[label="vxw240",fontsize=16,color="green",shape="box"];2361[label="vxw250",fontsize=16,color="green",shape="box"];2362[label="vxw240",fontsize=16,color="green",shape="box"];2363[label="vxw250",fontsize=16,color="green",shape="box"];2364[label="vxw240",fontsize=16,color="green",shape="box"];2365[label="vxw250",fontsize=16,color="green",shape="box"];2366[label="vxw240",fontsize=16,color="green",shape="box"];2367[label="vxw250",fontsize=16,color="green",shape="box"];2368[label="vxw240",fontsize=16,color="green",shape="box"];2369[label="vxw250",fontsize=16,color="green",shape="box"];2370[label="vxw240",fontsize=16,color="green",shape="box"];2371[label="vxw250",fontsize=16,color="green",shape="box"];2372[label="vxw240",fontsize=16,color="green",shape="box"];2373[label="vxw250",fontsize=16,color="green",shape="box"];2374[label="vxw240",fontsize=16,color="green",shape="box"];2375[label="vxw250",fontsize=16,color="green",shape="box"];2376[label="vxw240",fontsize=16,color="green",shape="box"];2377[label="vxw250",fontsize=16,color="green",shape="box"];2378[label="GT",fontsize=16,color="green",shape="box"];2379[label="GT",fontsize=16,color="green",shape="box"];2380[label="Succ (Succ (primPlusNat vxw1530 vxw40100))",fontsize=16,color="green",shape="box"];2380 -> 2484[label="",style="dashed", color="green", weight=3]; 2381[label="Succ vxw40100",fontsize=16,color="green",shape="box"];2382[label="True",fontsize=16,color="green",shape="box"];2383[label="False",fontsize=16,color="green",shape="box"];2384[label="vxw240",fontsize=16,color="green",shape="box"];2385[label="vxw250",fontsize=16,color="green",shape="box"];2386[label="vxw240",fontsize=16,color="green",shape="box"];2387[label="vxw250",fontsize=16,color="green",shape="box"];2388[label="vxw240",fontsize=16,color="green",shape="box"];2389[label="vxw250",fontsize=16,color="green",shape="box"];2390[label="vxw240",fontsize=16,color="green",shape="box"];2391[label="vxw250",fontsize=16,color="green",shape="box"];2392[label="vxw240",fontsize=16,color="green",shape="box"];2393[label="vxw250",fontsize=16,color="green",shape="box"];2394[label="vxw240",fontsize=16,color="green",shape="box"];2395[label="vxw250",fontsize=16,color="green",shape="box"];2396[label="vxw240",fontsize=16,color="green",shape="box"];2397[label="vxw250",fontsize=16,color="green",shape="box"];2398[label="vxw240",fontsize=16,color="green",shape="box"];2399[label="vxw250",fontsize=16,color="green",shape="box"];2400[label="vxw240",fontsize=16,color="green",shape="box"];2401[label="vxw250",fontsize=16,color="green",shape="box"];2402[label="vxw240",fontsize=16,color="green",shape="box"];2403[label="vxw250",fontsize=16,color="green",shape="box"];2404[label="vxw240",fontsize=16,color="green",shape="box"];2405[label="vxw250",fontsize=16,color="green",shape="box"];2406[label="vxw240",fontsize=16,color="green",shape="box"];2407[label="vxw250",fontsize=16,color="green",shape="box"];2408[label="vxw240",fontsize=16,color="green",shape="box"];2409[label="vxw250",fontsize=16,color="green",shape="box"];2410[label="vxw240",fontsize=16,color="green",shape="box"];2411[label="vxw250",fontsize=16,color="green",shape="box"];2412 -> 296[label="",style="dashed", color="red", weight=0]; 2412[label="vxw240 == vxw250",fontsize=16,color="magenta"];2412 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2412 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2413 -> 294[label="",style="dashed", color="red", weight=0]; 2413[label="vxw240 == vxw250",fontsize=16,color="magenta"];2413 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2414 -> 302[label="",style="dashed", color="red", weight=0]; 2414[label="vxw240 == vxw250",fontsize=16,color="magenta"];2414 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2415 -> 303[label="",style="dashed", color="red", weight=0]; 2415[label="vxw240 == vxw250",fontsize=16,color="magenta"];2415 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2416 -> 293[label="",style="dashed", color="red", weight=0]; 2416[label="vxw240 == vxw250",fontsize=16,color="magenta"];2416 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2417 -> 304[label="",style="dashed", color="red", weight=0]; 2417[label="vxw240 == vxw250",fontsize=16,color="magenta"];2417 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2417 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2418 -> 298[label="",style="dashed", color="red", weight=0]; 2418[label="vxw240 == vxw250",fontsize=16,color="magenta"];2418 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2418 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2419 -> 299[label="",style="dashed", color="red", weight=0]; 2419[label="vxw240 == vxw250",fontsize=16,color="magenta"];2419 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2419 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2420 -> 292[label="",style="dashed", color="red", weight=0]; 2420[label="vxw240 == vxw250",fontsize=16,color="magenta"];2420 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2420 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2421 -> 295[label="",style="dashed", color="red", weight=0]; 2421[label="vxw240 == vxw250",fontsize=16,color="magenta"];2421 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2421 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2422 -> 300[label="",style="dashed", color="red", weight=0]; 2422[label="vxw240 == vxw250",fontsize=16,color="magenta"];2422 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2422 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2423 -> 305[label="",style="dashed", color="red", weight=0]; 2423[label="vxw240 == vxw250",fontsize=16,color="magenta"];2423 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2424 -> 301[label="",style="dashed", color="red", weight=0]; 2424[label="vxw240 == vxw250",fontsize=16,color="magenta"];2424 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2425 -> 297[label="",style="dashed", color="red", weight=0]; 2425[label="vxw240 == vxw250",fontsize=16,color="magenta"];2425 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2426 -> 1132[label="",style="dashed", color="red", weight=0]; 2426[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2426 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2427 -> 1133[label="",style="dashed", color="red", weight=0]; 2427[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2427 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2428 -> 1134[label="",style="dashed", color="red", weight=0]; 2428[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2428 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2429 -> 1135[label="",style="dashed", color="red", weight=0]; 2429[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2429 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2430 -> 1136[label="",style="dashed", color="red", weight=0]; 2430[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2430 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2431 -> 1137[label="",style="dashed", color="red", weight=0]; 2431[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2431 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2432 -> 1138[label="",style="dashed", color="red", weight=0]; 2432[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2432 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2433 -> 1139[label="",style="dashed", color="red", weight=0]; 2433[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2433 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2434 -> 1140[label="",style="dashed", color="red", weight=0]; 2434[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2434 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2435 -> 1141[label="",style="dashed", color="red", weight=0]; 2435[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2435 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1142[label="",style="dashed", color="red", weight=0]; 2436[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2436 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1143[label="",style="dashed", color="red", weight=0]; 2437[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2437 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1144[label="",style="dashed", color="red", weight=0]; 2438[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2438 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1145[label="",style="dashed", color="red", weight=0]; 2439[label="vxw241 <= vxw251",fontsize=16,color="magenta"];2439 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2440[label="vxw240",fontsize=16,color="green",shape="box"];2441[label="vxw250",fontsize=16,color="green",shape="box"];2442[label="vxw240",fontsize=16,color="green",shape="box"];2443[label="vxw250",fontsize=16,color="green",shape="box"];2444[label="vxw240",fontsize=16,color="green",shape="box"];2445[label="vxw250",fontsize=16,color="green",shape="box"];2446[label="vxw240",fontsize=16,color="green",shape="box"];2447[label="vxw250",fontsize=16,color="green",shape="box"];2448[label="vxw240",fontsize=16,color="green",shape="box"];2449[label="vxw250",fontsize=16,color="green",shape="box"];2450[label="vxw240",fontsize=16,color="green",shape="box"];2451[label="vxw250",fontsize=16,color="green",shape="box"];2452[label="vxw240",fontsize=16,color="green",shape="box"];2453[label="vxw250",fontsize=16,color="green",shape="box"];2454[label="vxw240",fontsize=16,color="green",shape="box"];2455[label="vxw250",fontsize=16,color="green",shape="box"];2456[label="vxw240",fontsize=16,color="green",shape="box"];2457[label="vxw250",fontsize=16,color="green",shape="box"];2458[label="vxw240",fontsize=16,color="green",shape="box"];2459[label="vxw250",fontsize=16,color="green",shape="box"];2460[label="vxw240",fontsize=16,color="green",shape="box"];2461[label="vxw250",fontsize=16,color="green",shape="box"];2462[label="vxw240",fontsize=16,color="green",shape="box"];2463[label="vxw250",fontsize=16,color="green",shape="box"];2464[label="vxw240",fontsize=16,color="green",shape="box"];2465[label="vxw250",fontsize=16,color="green",shape="box"];2466[label="vxw240",fontsize=16,color="green",shape="box"];2467[label="vxw250",fontsize=16,color="green",shape="box"];2468 -> 296[label="",style="dashed", color="red", weight=0]; 2468[label="vxw240 == vxw250",fontsize=16,color="magenta"];2468 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2469 -> 294[label="",style="dashed", color="red", weight=0]; 2469[label="vxw240 == vxw250",fontsize=16,color="magenta"];2469 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2470 -> 302[label="",style="dashed", color="red", weight=0]; 2470[label="vxw240 == vxw250",fontsize=16,color="magenta"];2470 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2471 -> 303[label="",style="dashed", color="red", weight=0]; 2471[label="vxw240 == vxw250",fontsize=16,color="magenta"];2471 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2472 -> 293[label="",style="dashed", color="red", weight=0]; 2472[label="vxw240 == vxw250",fontsize=16,color="magenta"];2472 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2473 -> 304[label="",style="dashed", color="red", weight=0]; 2473[label="vxw240 == vxw250",fontsize=16,color="magenta"];2473 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2474 -> 298[label="",style="dashed", color="red", weight=0]; 2474[label="vxw240 == vxw250",fontsize=16,color="magenta"];2474 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2475 -> 299[label="",style="dashed", color="red", weight=0]; 2475[label="vxw240 == vxw250",fontsize=16,color="magenta"];2475 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2476 -> 292[label="",style="dashed", color="red", weight=0]; 2476[label="vxw240 == vxw250",fontsize=16,color="magenta"];2476 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2477 -> 295[label="",style="dashed", color="red", weight=0]; 2477[label="vxw240 == vxw250",fontsize=16,color="magenta"];2477 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2478 -> 300[label="",style="dashed", color="red", weight=0]; 2478[label="vxw240 == vxw250",fontsize=16,color="magenta"];2478 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2479 -> 305[label="",style="dashed", color="red", weight=0]; 2479[label="vxw240 == vxw250",fontsize=16,color="magenta"];2479 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2480 -> 301[label="",style="dashed", color="red", weight=0]; 2480[label="vxw240 == vxw250",fontsize=16,color="magenta"];2480 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2481 -> 297[label="",style="dashed", color="red", weight=0]; 2481[label="vxw240 == vxw250",fontsize=16,color="magenta"];2481 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2482[label="vxw241 < vxw251",fontsize=16,color="blue",shape="box"];3514[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 2569[label="",style="solid", color="blue", weight=3]; 3515[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 2570[label="",style="solid", color="blue", weight=3]; 3516[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 2571[label="",style="solid", color="blue", weight=3]; 3517[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 2572[label="",style="solid", color="blue", weight=3]; 3518[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 2573[label="",style="solid", color="blue", weight=3]; 3519[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 2574[label="",style="solid", color="blue", weight=3]; 3520[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 2575[label="",style="solid", color="blue", weight=3]; 3521[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 2576[label="",style="solid", color="blue", weight=3]; 3522[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 2577[label="",style="solid", color="blue", weight=3]; 3523[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 2578[label="",style="solid", color="blue", weight=3]; 3524[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 2579[label="",style="solid", color="blue", weight=3]; 3525[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 2580[label="",style="solid", color="blue", weight=3]; 3526[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 2581[label="",style="solid", color="blue", weight=3]; 3527[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2482 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 2582[label="",style="solid", color="blue", weight=3]; 2483 -> 746[label="",style="dashed", color="red", weight=0]; 2483[label="vxw241 == vxw251 && vxw242 <= vxw252",fontsize=16,color="magenta"];2483 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2484[label="primPlusNat vxw1530 vxw40100",fontsize=16,color="burlywood",shape="triangle"];3528[label="vxw1530/Succ vxw15300",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3528[label="",style="solid", color="burlywood", weight=9]; 3528 -> 2585[label="",style="solid", color="burlywood", weight=3]; 3529[label="vxw1530/Zero",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3529[label="",style="solid", color="burlywood", weight=9]; 3529 -> 2586[label="",style="solid", color="burlywood", weight=3]; 2485[label="vxw240",fontsize=16,color="green",shape="box"];2486[label="vxw250",fontsize=16,color="green",shape="box"];2487[label="vxw240",fontsize=16,color="green",shape="box"];2488[label="vxw250",fontsize=16,color="green",shape="box"];2489[label="vxw240",fontsize=16,color="green",shape="box"];2490[label="vxw250",fontsize=16,color="green",shape="box"];2491[label="vxw240",fontsize=16,color="green",shape="box"];2492[label="vxw250",fontsize=16,color="green",shape="box"];2493[label="vxw240",fontsize=16,color="green",shape="box"];2494[label="vxw250",fontsize=16,color="green",shape="box"];2495[label="vxw240",fontsize=16,color="green",shape="box"];2496[label="vxw250",fontsize=16,color="green",shape="box"];2497[label="vxw240",fontsize=16,color="green",shape="box"];2498[label="vxw250",fontsize=16,color="green",shape="box"];2499[label="vxw240",fontsize=16,color="green",shape="box"];2500[label="vxw250",fontsize=16,color="green",shape="box"];2501[label="vxw240",fontsize=16,color="green",shape="box"];2502[label="vxw250",fontsize=16,color="green",shape="box"];2503[label="vxw240",fontsize=16,color="green",shape="box"];2504[label="vxw250",fontsize=16,color="green",shape="box"];2505[label="vxw240",fontsize=16,color="green",shape="box"];2506[label="vxw250",fontsize=16,color="green",shape="box"];2507[label="vxw240",fontsize=16,color="green",shape="box"];2508[label="vxw250",fontsize=16,color="green",shape="box"];2509[label="vxw240",fontsize=16,color="green",shape="box"];2510[label="vxw250",fontsize=16,color="green",shape="box"];2511[label="vxw240",fontsize=16,color="green",shape="box"];2512[label="vxw250",fontsize=16,color="green",shape="box"];2513[label="vxw241",fontsize=16,color="green",shape="box"];2514[label="vxw251",fontsize=16,color="green",shape="box"];2515[label="vxw241",fontsize=16,color="green",shape="box"];2516[label="vxw251",fontsize=16,color="green",shape="box"];2517[label="vxw241",fontsize=16,color="green",shape="box"];2518[label="vxw251",fontsize=16,color="green",shape="box"];2519[label="vxw241",fontsize=16,color="green",shape="box"];2520[label="vxw251",fontsize=16,color="green",shape="box"];2521[label="vxw241",fontsize=16,color="green",shape="box"];2522[label="vxw251",fontsize=16,color="green",shape="box"];2523[label="vxw241",fontsize=16,color="green",shape="box"];2524[label="vxw251",fontsize=16,color="green",shape="box"];2525[label="vxw241",fontsize=16,color="green",shape="box"];2526[label="vxw251",fontsize=16,color="green",shape="box"];2527[label="vxw241",fontsize=16,color="green",shape="box"];2528[label="vxw251",fontsize=16,color="green",shape="box"];2529[label="vxw241",fontsize=16,color="green",shape="box"];2530[label="vxw251",fontsize=16,color="green",shape="box"];2531[label="vxw241",fontsize=16,color="green",shape="box"];2532[label="vxw251",fontsize=16,color="green",shape="box"];2533[label="vxw241",fontsize=16,color="green",shape="box"];2534[label="vxw251",fontsize=16,color="green",shape="box"];2535[label="vxw241",fontsize=16,color="green",shape="box"];2536[label="vxw251",fontsize=16,color="green",shape="box"];2537[label="vxw241",fontsize=16,color="green",shape="box"];2538[label="vxw251",fontsize=16,color="green",shape="box"];2539[label="vxw241",fontsize=16,color="green",shape="box"];2540[label="vxw251",fontsize=16,color="green",shape="box"];2541[label="vxw240",fontsize=16,color="green",shape="box"];2542[label="vxw250",fontsize=16,color="green",shape="box"];2543[label="vxw240",fontsize=16,color="green",shape="box"];2544[label="vxw250",fontsize=16,color="green",shape="box"];2545[label="vxw240",fontsize=16,color="green",shape="box"];2546[label="vxw250",fontsize=16,color="green",shape="box"];2547[label="vxw240",fontsize=16,color="green",shape="box"];2548[label="vxw250",fontsize=16,color="green",shape="box"];2549[label="vxw240",fontsize=16,color="green",shape="box"];2550[label="vxw250",fontsize=16,color="green",shape="box"];2551[label="vxw240",fontsize=16,color="green",shape="box"];2552[label="vxw250",fontsize=16,color="green",shape="box"];2553[label="vxw240",fontsize=16,color="green",shape="box"];2554[label="vxw250",fontsize=16,color="green",shape="box"];2555[label="vxw240",fontsize=16,color="green",shape="box"];2556[label="vxw250",fontsize=16,color="green",shape="box"];2557[label="vxw240",fontsize=16,color="green",shape="box"];2558[label="vxw250",fontsize=16,color="green",shape="box"];2559[label="vxw240",fontsize=16,color="green",shape="box"];2560[label="vxw250",fontsize=16,color="green",shape="box"];2561[label="vxw240",fontsize=16,color="green",shape="box"];2562[label="vxw250",fontsize=16,color="green",shape="box"];2563[label="vxw240",fontsize=16,color="green",shape="box"];2564[label="vxw250",fontsize=16,color="green",shape="box"];2565[label="vxw240",fontsize=16,color="green",shape="box"];2566[label="vxw250",fontsize=16,color="green",shape="box"];2567[label="vxw240",fontsize=16,color="green",shape="box"];2568[label="vxw250",fontsize=16,color="green",shape="box"];2569 -> 1165[label="",style="dashed", color="red", weight=0]; 2569[label="vxw241 < vxw251",fontsize=16,color="magenta"];2569 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2570 -> 1166[label="",style="dashed", color="red", weight=0]; 2570[label="vxw241 < vxw251",fontsize=16,color="magenta"];2570 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2571 -> 1167[label="",style="dashed", color="red", weight=0]; 2571[label="vxw241 < vxw251",fontsize=16,color="magenta"];2571 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2572 -> 1168[label="",style="dashed", color="red", weight=0]; 2572[label="vxw241 < vxw251",fontsize=16,color="magenta"];2572 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2573 -> 1169[label="",style="dashed", color="red", weight=0]; 2573[label="vxw241 < vxw251",fontsize=16,color="magenta"];2573 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2574 -> 1170[label="",style="dashed", color="red", weight=0]; 2574[label="vxw241 < vxw251",fontsize=16,color="magenta"];2574 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2575 -> 1171[label="",style="dashed", color="red", weight=0]; 2575[label="vxw241 < vxw251",fontsize=16,color="magenta"];2575 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2576 -> 1172[label="",style="dashed", color="red", weight=0]; 2576[label="vxw241 < vxw251",fontsize=16,color="magenta"];2576 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2577 -> 1173[label="",style="dashed", color="red", weight=0]; 2577[label="vxw241 < vxw251",fontsize=16,color="magenta"];2577 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2578 -> 1174[label="",style="dashed", color="red", weight=0]; 2578[label="vxw241 < vxw251",fontsize=16,color="magenta"];2578 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2579 -> 1175[label="",style="dashed", color="red", weight=0]; 2579[label="vxw241 < vxw251",fontsize=16,color="magenta"];2579 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2580 -> 1176[label="",style="dashed", color="red", weight=0]; 2580[label="vxw241 < vxw251",fontsize=16,color="magenta"];2580 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2581 -> 1177[label="",style="dashed", color="red", weight=0]; 2581[label="vxw241 < vxw251",fontsize=16,color="magenta"];2581 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2582 -> 1178[label="",style="dashed", color="red", weight=0]; 2582[label="vxw241 < vxw251",fontsize=16,color="magenta"];2582 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2583[label="vxw241 == vxw251",fontsize=16,color="blue",shape="box"];3530[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 2615[label="",style="solid", color="blue", weight=3]; 3531[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 2616[label="",style="solid", color="blue", weight=3]; 3532[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 2617[label="",style="solid", color="blue", weight=3]; 3533[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 2618[label="",style="solid", color="blue", weight=3]; 3534[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 2619[label="",style="solid", color="blue", weight=3]; 3535[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 2620[label="",style="solid", color="blue", weight=3]; 3536[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 2621[label="",style="solid", color="blue", weight=3]; 3537[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 2622[label="",style="solid", color="blue", weight=3]; 3538[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 2623[label="",style="solid", color="blue", weight=3]; 3539[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 2624[label="",style="solid", color="blue", weight=3]; 3540[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 2625[label="",style="solid", color="blue", weight=3]; 3541[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 2626[label="",style="solid", color="blue", weight=3]; 3542[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 2627[label="",style="solid", color="blue", weight=3]; 3543[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 2628[label="",style="solid", color="blue", weight=3]; 2584[label="vxw242 <= vxw252",fontsize=16,color="blue",shape="box"];3544[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 2629[label="",style="solid", color="blue", weight=3]; 3545[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 2630[label="",style="solid", color="blue", weight=3]; 3546[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 2631[label="",style="solid", color="blue", weight=3]; 3547[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 2632[label="",style="solid", color="blue", weight=3]; 3548[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 2633[label="",style="solid", color="blue", weight=3]; 3549[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 2634[label="",style="solid", color="blue", weight=3]; 3550[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 2635[label="",style="solid", color="blue", weight=3]; 3551[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 2636[label="",style="solid", color="blue", weight=3]; 3552[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 2637[label="",style="solid", color="blue", weight=3]; 3553[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 2638[label="",style="solid", color="blue", weight=3]; 3554[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3554[label="",style="solid", color="blue", weight=9]; 3554 -> 2639[label="",style="solid", color="blue", weight=3]; 3555[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 2640[label="",style="solid", color="blue", weight=3]; 3556[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 2641[label="",style="solid", color="blue", weight=3]; 3557[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2584 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 2642[label="",style="solid", color="blue", weight=3]; 2585[label="primPlusNat (Succ vxw15300) vxw40100",fontsize=16,color="burlywood",shape="box"];3558[label="vxw40100/Succ vxw401000",fontsize=10,color="white",style="solid",shape="box"];2585 -> 3558[label="",style="solid", color="burlywood", weight=9]; 3558 -> 2643[label="",style="solid", color="burlywood", weight=3]; 3559[label="vxw40100/Zero",fontsize=10,color="white",style="solid",shape="box"];2585 -> 3559[label="",style="solid", color="burlywood", weight=9]; 3559 -> 2644[label="",style="solid", color="burlywood", weight=3]; 2586[label="primPlusNat Zero vxw40100",fontsize=16,color="burlywood",shape="box"];3560[label="vxw40100/Succ vxw401000",fontsize=10,color="white",style="solid",shape="box"];2586 -> 3560[label="",style="solid", color="burlywood", weight=9]; 3560 -> 2645[label="",style="solid", color="burlywood", weight=3]; 3561[label="vxw40100/Zero",fontsize=10,color="white",style="solid",shape="box"];2586 -> 3561[label="",style="solid", color="burlywood", weight=9]; 3561 -> 2646[label="",style="solid", color="burlywood", weight=3]; 2587[label="vxw241",fontsize=16,color="green",shape="box"];2588[label="vxw251",fontsize=16,color="green",shape="box"];2589[label="vxw241",fontsize=16,color="green",shape="box"];2590[label="vxw251",fontsize=16,color="green",shape="box"];2591[label="vxw241",fontsize=16,color="green",shape="box"];2592[label="vxw251",fontsize=16,color="green",shape="box"];2593[label="vxw241",fontsize=16,color="green",shape="box"];2594[label="vxw251",fontsize=16,color="green",shape="box"];2595[label="vxw241",fontsize=16,color="green",shape="box"];2596[label="vxw251",fontsize=16,color="green",shape="box"];2597[label="vxw241",fontsize=16,color="green",shape="box"];2598[label="vxw251",fontsize=16,color="green",shape="box"];2599[label="vxw241",fontsize=16,color="green",shape="box"];2600[label="vxw251",fontsize=16,color="green",shape="box"];2601[label="vxw241",fontsize=16,color="green",shape="box"];2602[label="vxw251",fontsize=16,color="green",shape="box"];2603[label="vxw241",fontsize=16,color="green",shape="box"];2604[label="vxw251",fontsize=16,color="green",shape="box"];2605[label="vxw241",fontsize=16,color="green",shape="box"];2606[label="vxw251",fontsize=16,color="green",shape="box"];2607[label="vxw241",fontsize=16,color="green",shape="box"];2608[label="vxw251",fontsize=16,color="green",shape="box"];2609[label="vxw241",fontsize=16,color="green",shape="box"];2610[label="vxw251",fontsize=16,color="green",shape="box"];2611[label="vxw241",fontsize=16,color="green",shape="box"];2612[label="vxw251",fontsize=16,color="green",shape="box"];2613[label="vxw241",fontsize=16,color="green",shape="box"];2614[label="vxw251",fontsize=16,color="green",shape="box"];2615 -> 296[label="",style="dashed", color="red", weight=0]; 2615[label="vxw241 == vxw251",fontsize=16,color="magenta"];2615 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2616 -> 294[label="",style="dashed", color="red", weight=0]; 2616[label="vxw241 == vxw251",fontsize=16,color="magenta"];2616 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2617 -> 302[label="",style="dashed", color="red", weight=0]; 2617[label="vxw241 == vxw251",fontsize=16,color="magenta"];2617 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2618 -> 303[label="",style="dashed", color="red", weight=0]; 2618[label="vxw241 == vxw251",fontsize=16,color="magenta"];2618 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2619 -> 293[label="",style="dashed", color="red", weight=0]; 2619[label="vxw241 == vxw251",fontsize=16,color="magenta"];2619 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2620 -> 304[label="",style="dashed", color="red", weight=0]; 2620[label="vxw241 == vxw251",fontsize=16,color="magenta"];2620 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2621 -> 298[label="",style="dashed", color="red", weight=0]; 2621[label="vxw241 == vxw251",fontsize=16,color="magenta"];2621 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2622 -> 299[label="",style="dashed", color="red", weight=0]; 2622[label="vxw241 == vxw251",fontsize=16,color="magenta"];2622 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2623 -> 292[label="",style="dashed", color="red", weight=0]; 2623[label="vxw241 == vxw251",fontsize=16,color="magenta"];2623 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2624 -> 295[label="",style="dashed", color="red", weight=0]; 2624[label="vxw241 == vxw251",fontsize=16,color="magenta"];2624 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2625 -> 300[label="",style="dashed", color="red", weight=0]; 2625[label="vxw241 == vxw251",fontsize=16,color="magenta"];2625 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2626 -> 305[label="",style="dashed", color="red", weight=0]; 2626[label="vxw241 == vxw251",fontsize=16,color="magenta"];2626 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2627 -> 301[label="",style="dashed", color="red", weight=0]; 2627[label="vxw241 == vxw251",fontsize=16,color="magenta"];2627 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2628 -> 297[label="",style="dashed", color="red", weight=0]; 2628[label="vxw241 == vxw251",fontsize=16,color="magenta"];2628 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2629 -> 1132[label="",style="dashed", color="red", weight=0]; 2629[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2629 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2630 -> 1133[label="",style="dashed", color="red", weight=0]; 2630[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2630 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2631 -> 1134[label="",style="dashed", color="red", weight=0]; 2631[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2631 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2632 -> 1135[label="",style="dashed", color="red", weight=0]; 2632[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2632 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2633 -> 1136[label="",style="dashed", color="red", weight=0]; 2633[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2633 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2634 -> 1137[label="",style="dashed", color="red", weight=0]; 2634[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2634 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2635 -> 1138[label="",style="dashed", color="red", weight=0]; 2635[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2635 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2636 -> 1139[label="",style="dashed", color="red", weight=0]; 2636[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2636 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2637 -> 1140[label="",style="dashed", color="red", weight=0]; 2637[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2637 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2638 -> 1141[label="",style="dashed", color="red", weight=0]; 2638[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2638 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2639 -> 1142[label="",style="dashed", color="red", weight=0]; 2639[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2639 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2640 -> 1143[label="",style="dashed", color="red", weight=0]; 2640[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2640 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2641 -> 1144[label="",style="dashed", color="red", weight=0]; 2641[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2641 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2642 -> 1145[label="",style="dashed", color="red", weight=0]; 2642[label="vxw242 <= vxw252",fontsize=16,color="magenta"];2642 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2643[label="primPlusNat (Succ vxw15300) (Succ vxw401000)",fontsize=16,color="black",shape="box"];2643 -> 2703[label="",style="solid", color="black", weight=3]; 2644[label="primPlusNat (Succ vxw15300) Zero",fontsize=16,color="black",shape="box"];2644 -> 2704[label="",style="solid", color="black", weight=3]; 2645[label="primPlusNat Zero (Succ vxw401000)",fontsize=16,color="black",shape="box"];2645 -> 2705[label="",style="solid", color="black", weight=3]; 2646[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2646 -> 2706[label="",style="solid", color="black", weight=3]; 2647[label="vxw241",fontsize=16,color="green",shape="box"];2648[label="vxw251",fontsize=16,color="green",shape="box"];2649[label="vxw241",fontsize=16,color="green",shape="box"];2650[label="vxw251",fontsize=16,color="green",shape="box"];2651[label="vxw241",fontsize=16,color="green",shape="box"];2652[label="vxw251",fontsize=16,color="green",shape="box"];2653[label="vxw241",fontsize=16,color="green",shape="box"];2654[label="vxw251",fontsize=16,color="green",shape="box"];2655[label="vxw241",fontsize=16,color="green",shape="box"];2656[label="vxw251",fontsize=16,color="green",shape="box"];2657[label="vxw241",fontsize=16,color="green",shape="box"];2658[label="vxw251",fontsize=16,color="green",shape="box"];2659[label="vxw241",fontsize=16,color="green",shape="box"];2660[label="vxw251",fontsize=16,color="green",shape="box"];2661[label="vxw241",fontsize=16,color="green",shape="box"];2662[label="vxw251",fontsize=16,color="green",shape="box"];2663[label="vxw241",fontsize=16,color="green",shape="box"];2664[label="vxw251",fontsize=16,color="green",shape="box"];2665[label="vxw241",fontsize=16,color="green",shape="box"];2666[label="vxw251",fontsize=16,color="green",shape="box"];2667[label="vxw241",fontsize=16,color="green",shape="box"];2668[label="vxw251",fontsize=16,color="green",shape="box"];2669[label="vxw241",fontsize=16,color="green",shape="box"];2670[label="vxw251",fontsize=16,color="green",shape="box"];2671[label="vxw241",fontsize=16,color="green",shape="box"];2672[label="vxw251",fontsize=16,color="green",shape="box"];2673[label="vxw241",fontsize=16,color="green",shape="box"];2674[label="vxw251",fontsize=16,color="green",shape="box"];2675[label="vxw242",fontsize=16,color="green",shape="box"];2676[label="vxw252",fontsize=16,color="green",shape="box"];2677[label="vxw242",fontsize=16,color="green",shape="box"];2678[label="vxw252",fontsize=16,color="green",shape="box"];2679[label="vxw242",fontsize=16,color="green",shape="box"];2680[label="vxw252",fontsize=16,color="green",shape="box"];2681[label="vxw242",fontsize=16,color="green",shape="box"];2682[label="vxw252",fontsize=16,color="green",shape="box"];2683[label="vxw242",fontsize=16,color="green",shape="box"];2684[label="vxw252",fontsize=16,color="green",shape="box"];2685[label="vxw242",fontsize=16,color="green",shape="box"];2686[label="vxw252",fontsize=16,color="green",shape="box"];2687[label="vxw242",fontsize=16,color="green",shape="box"];2688[label="vxw252",fontsize=16,color="green",shape="box"];2689[label="vxw242",fontsize=16,color="green",shape="box"];2690[label="vxw252",fontsize=16,color="green",shape="box"];2691[label="vxw242",fontsize=16,color="green",shape="box"];2692[label="vxw252",fontsize=16,color="green",shape="box"];2693[label="vxw242",fontsize=16,color="green",shape="box"];2694[label="vxw252",fontsize=16,color="green",shape="box"];2695[label="vxw242",fontsize=16,color="green",shape="box"];2696[label="vxw252",fontsize=16,color="green",shape="box"];2697[label="vxw242",fontsize=16,color="green",shape="box"];2698[label="vxw252",fontsize=16,color="green",shape="box"];2699[label="vxw242",fontsize=16,color="green",shape="box"];2700[label="vxw252",fontsize=16,color="green",shape="box"];2701[label="vxw242",fontsize=16,color="green",shape="box"];2702[label="vxw252",fontsize=16,color="green",shape="box"];2703[label="Succ (Succ (primPlusNat vxw15300 vxw401000))",fontsize=16,color="green",shape="box"];2703 -> 2707[label="",style="dashed", color="green", weight=3]; 2704[label="Succ vxw15300",fontsize=16,color="green",shape="box"];2705[label="Succ vxw401000",fontsize=16,color="green",shape="box"];2706[label="Zero",fontsize=16,color="green",shape="box"];2707 -> 2484[label="",style="dashed", color="red", weight=0]; 2707[label="primPlusNat vxw15300 vxw401000",fontsize=16,color="magenta"];2707 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2708[label="vxw401000",fontsize=16,color="green",shape="box"];2709[label="vxw15300",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vxw300), Succ(vxw4000)) -> new_primCmpNat(vxw300, vxw4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vxw300), Succ(vxw4000)) -> new_primCmpNat(vxw300, vxw4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(vxw24, vxw25, cd) -> new_compare(vxw24, vxw25, cd) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(ty_Maybe, cce)) -> new_ltEs0(vxw48, vxw51, cce) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(app(ty_Either, eg), eh), dh) -> new_lt3(vxw240, vxw250, eg, eh) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(ty_[], cbc), caa) -> new_lt(vxw47, vxw50, cbc) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(ty_[], dg)), dh)) -> new_lt(vxw240, vxw250, dg) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(ty_[], gd)), ge), gf)) -> new_lt(vxw240, vxw250, gd) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(ty_[], hh), gf) -> new_lt(vxw241, vxw251, hh) new_primCompAux(vxw30, vxw400, vxw14, app(app(app(ty_@3, bf), bg), bh)) -> new_compare3(vxw30, vxw400, bf, bg, bh) new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(app(ty_@2, bfg), bfh)) -> new_ltEs1(vxw74, vxw76, bfg, bfh) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(app(ty_Either, he), hf)), ge), gf)) -> new_lt3(vxw240, vxw250, he, hf) new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(app(ty_Either, bhb), bhc), bgf) -> new_compare4(vxw73, vxw75, bhb, bhc) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(ty_Maybe, bbb)) -> new_ltEs0(vxw242, vxw252, bbb) new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(ty_Maybe, cf))) -> new_ltEs0(vxw240, vxw250, cf) new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(app(ty_Either, bdb), bdc)), bcc)) -> new_ltEs3(vxw240, vxw250, bdb, bdc) new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(app(ty_@2, bdg), bdh)) -> new_ltEs1(vxw240, vxw250, bdg, bdh) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(app(ty_Either, gb), gc)) -> new_ltEs3(vxw241, vxw251, gb, gc) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(app(ty_Either, ccb), ccc), caa) -> new_lt3(vxw47, vxw50, ccb, ccc) new_primCompAux(vxw30, vxw400, vxw14, app(app(ty_@2, bd), be)) -> new_compare2(vxw30, vxw400, bd, be) new_compare24(vxw64, vxw65, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(vxw64, vxw65, cff, cfg, cfh) new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(ty_[], ce))) -> new_ltEs(vxw240, vxw250, ce) new_lt1(vxw73, vxw75, beh, bfa) -> new_compare2(vxw73, vxw75, beh, bfa) new_compare1(Just(vxw30), Just(vxw400), cc) -> new_compare20(vxw30, vxw400, new_esEs4(vxw30, vxw400, cc), cc) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(app(ty_@2, eb), ec)), dh)) -> new_lt1(vxw240, vxw250, eb, ec) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(ty_[], hh)), gf)) -> new_lt(vxw241, vxw251, hh) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(app(ty_Either, cdc), cdd)) -> new_ltEs3(vxw48, vxw51, cdc, cdd) new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(ty_[], bcb)), bcc)) -> new_ltEs(vxw240, vxw250, bcb) new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(app(app(ty_@3, bea), beb), bec))) -> new_ltEs2(vxw240, vxw250, bea, beb, bec) new_ltEs0(Just(vxw240), Just(vxw250), app(app(ty_@2, cg), da)) -> new_ltEs1(vxw240, vxw250, cg, da) new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(ty_Maybe, bcd)), bcc)) -> new_ltEs0(vxw240, vxw250, bcd) new_compare20(vxw24, vxw25, False, app(ty_[], cd)) -> new_compare(vxw24, vxw25, cd) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(ty_[], bba)) -> new_ltEs(vxw242, vxw252, bba) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(app(app(ty_@3, fg), fh), ga))) -> new_ltEs2(vxw241, vxw251, fg, fh, ga) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(ty_Maybe, baa), gf) -> new_lt0(vxw241, vxw251, baa) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(app(app(ty_@3, cae), caf), cag), bhh, caa) -> new_lt2(vxw46, vxw49, cae, caf, cag) new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(app(ty_Either, de), df))) -> new_ltEs3(vxw240, vxw250, de, df) new_ltEs0(Just(vxw240), Just(vxw250), app(ty_Maybe, cf)) -> new_ltEs0(vxw240, vxw250, cf) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(app(ty_@2, eb), ec), dh) -> new_lt1(vxw240, vxw250, eb, ec) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(ty_Maybe, gg), ge, gf) -> new_lt0(vxw240, vxw250, gg) new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(ty_[], bde)) -> new_ltEs(vxw240, vxw250, bde) new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(app(ty_@2, bce), bcf)), bcc)) -> new_ltEs1(vxw240, vxw250, bce, bcf) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(app(ty_Either, bbh), bca))) -> new_ltEs3(vxw242, vxw252, bbh, bca) new_lt0(vxw73, vxw75, beg) -> new_compare1(vxw73, vxw75, beg) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(ty_Maybe, cbd), caa) -> new_lt0(vxw47, vxw50, cbd) new_ltEs3(Left(vxw240), Left(vxw250), app(app(app(ty_@3, bcg), bch), bda), bcc) -> new_ltEs2(vxw240, vxw250, bcg, bch, bda) new_compare24(vxw64, vxw65, False, cfa, app(ty_[], cfb)) -> new_ltEs(vxw64, vxw65, cfb) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(ty_[], fb)) -> new_ltEs(vxw241, vxw251, fb) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(app(ty_Either, bbh), bca)) -> new_ltEs3(vxw242, vxw252, bbh, bca) new_compare23(vxw57, vxw58, False, app(ty_[], cdg), cdh) -> new_ltEs(vxw57, vxw58, cdg) new_compare24(vxw64, vxw65, False, cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs1(vxw64, vxw65, cfd, cfe) new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(ty_Maybe, beg), bgf) -> new_compare1(vxw73, vxw75, beg) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(app(app(ty_@3, hb), hc), hd), ge, gf) -> new_lt2(vxw240, vxw250, hb, hc, hd) new_compare3(@3(vxw30, vxw31, vxw32), @3(vxw400, vxw401, vxw402), bhd, bhe, bhf) -> new_compare22(vxw30, vxw31, vxw32, vxw400, vxw401, vxw402, new_asAs(new_esEs7(vxw30, vxw400, bhd), new_asAs(new_esEs8(vxw31, vxw401, bhe), new_esEs9(vxw32, vxw402, bhf))), bhd, bhe, bhf) new_compare23(vxw57, vxw58, False, app(app(app(ty_@3, ced), cee), cef), cdh) -> new_ltEs2(vxw57, vxw58, ced, cee, cef) new_ltEs3(Left(vxw240), Left(vxw250), app(ty_[], bcb), bcc) -> new_ltEs(vxw240, vxw250, bcb) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(ty_Maybe, bbb))) -> new_ltEs0(vxw242, vxw252, bbb) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(app(app(ty_@3, ed), ee), ef), dh) -> new_lt2(vxw240, vxw250, ed, ee, ef) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs2(vxw241, vxw251, fg, fh, ga) new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(app(app(ty_@3, bgg), bgh), bha), bgf) -> new_compare3(vxw73, vxw75, bgg, bgh, bha) new_compare24(vxw64, vxw65, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(vxw64, vxw65, cga, cgb) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(ty_Maybe, gg)), ge), gf)) -> new_lt0(vxw240, vxw250, gg) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(app(ty_@2, fd), ff))) -> new_ltEs1(vxw241, vxw251, fd, ff) new_ltEs3(Left(vxw240), Left(vxw250), app(app(ty_Either, bdb), bdc), bcc) -> new_ltEs3(vxw240, vxw250, bdb, bdc) new_ltEs0(Just(vxw240), Just(vxw250), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs2(vxw240, vxw250, db, dc, dd) new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(ty_Maybe, bdf))) -> new_ltEs0(vxw240, vxw250, bdf) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(app(ty_@2, bab), bac)), gf)) -> new_lt1(vxw241, vxw251, bab, bac) new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(app(ty_@2, bdg), bdh))) -> new_ltEs1(vxw240, vxw250, bdg, bdh) new_ltEs0(Just(vxw240), Just(vxw250), app(ty_[], ce)) -> new_ltEs(vxw240, vxw250, ce) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(app(ty_@2, bbc), bbd)) -> new_ltEs1(vxw242, vxw252, bbc, bbd) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(ty_[], fb))) -> new_ltEs(vxw241, vxw251, fb) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(ty_[], gd), ge, gf) -> new_lt(vxw240, vxw250, gd) new_ltEs0(Just(vxw240), Just(vxw250), app(app(ty_Either, de), df)) -> new_ltEs3(vxw240, vxw250, de, df) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(ty_Maybe, ea), dh) -> new_lt0(vxw240, vxw250, ea) new_primCompAux(vxw30, vxw400, vxw14, app(ty_Maybe, bc)) -> new_compare1(vxw30, vxw400, bc) new_compare2(@2(vxw30, vxw31), @2(vxw400, vxw401), bfb, bfc) -> new_compare21(vxw30, vxw31, vxw400, vxw401, new_asAs(new_esEs5(vxw30, vxw400, bfb), new_esEs6(vxw31, vxw401, bfc)), bfb, bfc) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(ty_[], bhg), bhh, caa) -> new_lt(vxw46, vxw49, bhg) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(app(ty_Either, he), hf), ge, gf) -> new_lt3(vxw240, vxw250, he, hf) new_compare23(vxw57, vxw58, False, app(app(ty_@2, ceb), cec), cdh) -> new_ltEs1(vxw57, vxw58, ceb, cec) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(app(app(ty_@3, hb), hc), hd)), ge), gf)) -> new_lt2(vxw240, vxw250, hb, hc, hd) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(ty_Maybe, fc)) -> new_ltEs0(vxw241, vxw251, fc) new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(app(app(ty_@3, bcg), bch), bda)), bcc)) -> new_ltEs2(vxw240, vxw250, bcg, bch, bda) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(app(ty_Either, bag), bah)), gf)) -> new_lt3(vxw241, vxw251, bag, bah) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(app(app(ty_@3, cch), cda), cdb)) -> new_ltEs2(vxw48, vxw51, cch, cda, cdb) new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(ty_[], bfe)) -> new_ltEs(vxw74, vxw76, bfe) new_primCompAux(vxw30, vxw400, vxw14, app(app(ty_Either, ca), cb)) -> new_compare4(vxw30, vxw400, ca, cb) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(app(ty_@2, gh), ha), ge, gf) -> new_lt1(vxw240, vxw250, gh, ha) new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(app(ty_Either, bed), bee))) -> new_ltEs3(vxw240, vxw250, bed, bee) new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(app(ty_Either, bed), bee)) -> new_ltEs3(vxw240, vxw250, bed, bee) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(app(ty_@2, fd), ff)) -> new_ltEs1(vxw241, vxw251, fd, ff) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(ty_Maybe, fc))) -> new_ltEs0(vxw241, vxw251, fc) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(ty_[], bba))) -> new_ltEs(vxw242, vxw252, bba) new_lt(vxw73, vxw75, bef) -> new_compare(vxw73, vxw75, bef) new_compare(:(vxw30, vxw31), :(vxw400, vxw401), ba) -> new_primCompAux(vxw30, vxw400, new_compare0(vxw31, vxw401, ba), ba) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(app(ty_@2, ccf), ccg)) -> new_ltEs1(vxw48, vxw51, ccf, ccg) new_compare4(Right(vxw30), Right(vxw400), cde, cdf) -> new_compare24(vxw30, vxw400, new_esEs11(vxw30, vxw400, cdf), cde, cdf) new_compare23(vxw57, vxw58, False, app(ty_Maybe, cea), cdh) -> new_ltEs0(vxw57, vxw58, cea) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(ty_Maybe, baa)), gf)) -> new_lt0(vxw241, vxw251, baa) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(ty_Maybe, cab), bhh, caa) -> new_lt0(vxw46, vxw49, cab) new_compare24(vxw64, vxw65, False, cfa, app(ty_Maybe, cfc)) -> new_ltEs0(vxw64, vxw65, cfc) new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(ty_[], bef), bgf) -> new_compare(vxw73, vxw75, bef) new_primCompAux(vxw30, vxw400, vxw14, app(ty_[], bb)) -> new_compare(vxw30, vxw400, bb) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(app(app(ty_@3, bbe), bbf), bbg))) -> new_ltEs2(vxw242, vxw252, bbe, bbf, bbg) new_compare23(vxw57, vxw58, False, app(app(ty_Either, ceg), ceh), cdh) -> new_ltEs3(vxw57, vxw58, ceg, ceh) new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(app(app(ty_@3, db), dc), dd))) -> new_ltEs2(vxw240, vxw250, db, dc, dd) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs2(vxw242, vxw252, bbe, bbf, bbg) new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs2(vxw74, vxw76, bga, bgb, bgc) new_lt2(vxw73, vxw75, bgg, bgh, bha) -> new_compare3(vxw73, vxw75, bgg, bgh, bha) new_ltEs3(Left(vxw240), Left(vxw250), app(ty_Maybe, bcd), bcc) -> new_ltEs0(vxw240, vxw250, bcd) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(app(ty_@2, bbc), bbd))) -> new_ltEs1(vxw242, vxw252, bbc, bbd) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(app(ty_@2, cbe), cbf), caa) -> new_lt1(vxw47, vxw50, cbe, cbf) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(app(app(ty_@3, cbg), cbh), cca), caa) -> new_lt2(vxw47, vxw50, cbg, cbh, cca) new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(ty_Maybe, bff)) -> new_ltEs0(vxw74, vxw76, bff) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(ty_[], ccd)) -> new_ltEs(vxw48, vxw51, ccd) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(ty_Maybe, ea)), dh)) -> new_lt0(vxw240, vxw250, ea) new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(app(ty_@2, beh), bfa), bgf) -> new_compare2(vxw73, vxw75, beh, bfa) new_lt3(vxw73, vxw75, bhb, bhc) -> new_compare4(vxw73, vxw75, bhb, bhc) new_compare(:(vxw30, vxw31), :(vxw400, vxw401), ba) -> new_compare(vxw31, vxw401, ba) new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(app(ty_Either, bgd), bge)) -> new_ltEs3(vxw74, vxw76, bgd, bge) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(app(ty_Either, gb), gc))) -> new_ltEs3(vxw241, vxw251, gb, gc) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(app(ty_@2, bab), bac), gf) -> new_lt1(vxw241, vxw251, bab, bac) new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(ty_[], bde))) -> new_ltEs(vxw240, vxw250, bde) new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(ty_Maybe, bdf)) -> new_ltEs0(vxw240, vxw250, bdf) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(app(app(ty_@3, bad), bae), baf)), gf)) -> new_lt2(vxw241, vxw251, bad, bae, baf) new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(ty_[], dg), dh) -> new_lt(vxw240, vxw250, dg) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(app(ty_Either, eg), eh)), dh)) -> new_lt3(vxw240, vxw250, eg, eh) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(app(app(ty_@3, bad), bae), baf), gf) -> new_lt2(vxw241, vxw251, bad, bae, baf) new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(app(ty_@2, cg), da))) -> new_ltEs1(vxw240, vxw250, cg, da) new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(app(ty_Either, bag), bah), gf) -> new_lt3(vxw241, vxw251, bag, bah) new_ltEs3(Left(vxw240), Left(vxw250), app(app(ty_@2, bce), bcf), bcc) -> new_ltEs1(vxw240, vxw250, bce, bcf) new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(app(ty_@2, gh), ha)), ge), gf)) -> new_lt1(vxw240, vxw250, gh, ha) new_compare4(Left(vxw30), Left(vxw400), cde, cdf) -> new_compare23(vxw30, vxw400, new_esEs10(vxw30, vxw400, cde), cde, cdf) new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), dh)) -> new_lt2(vxw240, vxw250, ed, ee, ef) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(app(ty_Either, cah), cba), bhh, caa) -> new_lt3(vxw46, vxw49, cah, cba) new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs2(vxw240, vxw250, bea, beb, bec) new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(app(ty_@2, cac), cad), bhh, caa) -> new_lt1(vxw46, vxw49, cac, cad) The TRS R consists of the following rules: new_esEs26(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_lt23(vxw47, vxw50, ty_@0) -> new_lt18(vxw47, vxw50) new_esEs10(vxw30, vxw400, app(ty_Ratio, fga)) -> new_esEs17(vxw30, vxw400, fga) new_esEs11(vxw30, vxw400, app(ty_[], dee)) -> new_esEs24(vxw30, vxw400, dee) new_primCmpInt(Neg(Succ(vxw300)), Pos(vxw400)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs7(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_esEs30(vxw240, vxw250, app(ty_Maybe, ea)) -> new_esEs25(vxw240, vxw250, ea) new_pePe(True, vxw152) -> True new_esEs34(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_ltEs8(Just(vxw240), Just(vxw250), ty_Integer) -> new_ltEs6(vxw240, vxw250) new_esEs10(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_esEs37(vxw47, vxw50, ty_Ordering) -> new_esEs12(vxw47, vxw50) new_compare13(EQ, GT) -> LT new_lt8(vxw73, vxw75) -> new_esEs12(new_compare12(vxw73, vxw75), LT) new_compare29(@0, @0) -> EQ new_esEs13(Right(vxw300), Right(vxw4000), chf, app(ty_Maybe, daf)) -> new_esEs25(vxw300, vxw4000, daf) new_ltEs9(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, dh) -> new_pePe(new_lt20(vxw240, vxw250, fa), new_asAs(new_esEs30(vxw240, vxw250, fa), new_ltEs20(vxw241, vxw251, dh))) new_esEs39(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(vxw103, vxw104, True, ebf, ebg) -> LT new_primCmpInt(Pos(Zero), Neg(Succ(vxw4000))) -> GT new_esEs13(Right(vxw300), Right(vxw4000), chf, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_compare26(vxw64, vxw65, True, cfa, ebd) -> EQ new_esEs13(Right(vxw300), Right(vxw4000), chf, app(app(ty_@2, chg), chh)) -> new_esEs15(vxw300, vxw4000, chg, chh) new_esEs33(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs11(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_ltEs20(vxw241, vxw251, ty_Float) -> new_ltEs13(vxw241, vxw251) new_esEs28(vxw240, vxw250, ty_Char) -> new_esEs18(vxw240, vxw250) new_ltEs24(vxw24, vxw25, app(ty_Maybe, ebh)) -> new_ltEs8(vxw24, vxw25, ebh) new_ltEs4(Right(vxw240), Right(vxw250), bdd, ty_Ordering) -> new_ltEs10(vxw240, vxw250) new_primCmpInt(Neg(Succ(vxw300)), Neg(vxw400)) -> new_primCmpNat0(vxw400, Succ(vxw300)) new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_esEs6(vxw31, vxw401, ty_Integer) -> new_esEs16(vxw31, vxw401) new_compare211(vxw24, vxw25, True, fha) -> EQ new_lt21(vxw73, vxw75, app(app(app(ty_@3, bgg), bgh), bha)) -> new_lt16(vxw73, vxw75, bgg, bgh, bha) new_compare15(Double(vxw30, Pos(vxw310)), Double(vxw400, Pos(vxw4010))) -> new_compare12(new_sr(vxw30, Pos(vxw4010)), new_sr(Pos(vxw310), vxw400)) new_esEs8(vxw31, vxw401, ty_Float) -> new_esEs14(vxw31, vxw401) new_lt23(vxw47, vxw50, ty_Int) -> new_lt8(vxw47, vxw50) new_esEs29(vxw241, vxw251, ty_Float) -> new_esEs14(vxw241, vxw251) new_esEs35(vxw302, vxw4002, ty_Float) -> new_esEs14(vxw302, vxw4002) new_esEs32(vxw73, vxw75, app(ty_[], bef)) -> new_esEs24(vxw73, vxw75, bef) new_ltEs10(GT, LT) -> False new_esEs13(Right(vxw300), Right(vxw4000), chf, ty_Char) -> new_esEs18(vxw300, vxw4000) new_ltEs8(Just(vxw240), Just(vxw250), app(ty_[], ce)) -> new_ltEs7(vxw240, vxw250, ce) new_esEs5(vxw30, vxw400, app(ty_[], ech)) -> new_esEs24(vxw30, vxw400, ech) new_esEs26(vxw300, vxw4000, app(app(ty_@2, dbc), dbd)) -> new_esEs15(vxw300, vxw4000, dbc, dbd) new_esEs9(vxw32, vxw402, ty_Double) -> new_esEs23(vxw32, vxw402) new_esEs21(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) new_esEs35(vxw302, vxw4002, ty_@0) -> new_esEs22(vxw302, vxw4002) new_ltEs20(vxw241, vxw251, ty_Char) -> new_ltEs5(vxw241, vxw251) new_esEs36(vxw46, vxw49, ty_Double) -> new_esEs23(vxw46, vxw49) new_esEs8(vxw31, vxw401, ty_@0) -> new_esEs22(vxw31, vxw401) new_lt20(vxw240, vxw250, ty_Integer) -> new_lt12(vxw240, vxw250) new_esEs13(Left(vxw300), Left(vxw4000), ty_Double, cgc) -> new_esEs23(vxw300, vxw4000) new_esEs7(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_ltEs20(vxw241, vxw251, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs11(vxw241, vxw251, fg, fh, ga) new_compare18(vxw30, vxw400, ty_Integer) -> new_compare16(vxw30, vxw400) new_esEs4(vxw30, vxw400, app(ty_Ratio, ffb)) -> new_esEs17(vxw30, vxw400, ffb) new_lt20(vxw240, vxw250, ty_Bool) -> new_lt4(vxw240, vxw250) new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False new_esEs25(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs22(vxw300, vxw4000) new_lt21(vxw73, vxw75, ty_Float) -> new_lt6(vxw73, vxw75) new_esEs34(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_compare210(vxw57, vxw58, True, feh, cdh) -> EQ new_esEs37(vxw47, vxw50, app(app(ty_@2, cbe), cbf)) -> new_esEs15(vxw47, vxw50, cbe, cbf) new_esEs31(vxw300, vxw4000, app(ty_Ratio, efh)) -> new_esEs17(vxw300, vxw4000, efh) new_ltEs10(EQ, LT) -> False new_lt20(vxw240, vxw250, app(ty_[], dg)) -> new_lt13(vxw240, vxw250, dg) new_ltEs19(vxw242, vxw252, ty_Int) -> new_ltEs12(vxw242, vxw252) new_esEs32(vxw73, vxw75, app(app(ty_@2, beh), bfa)) -> new_esEs15(vxw73, vxw75, beh, bfa) new_esEs5(vxw30, vxw400, app(app(ty_@2, ecb), ecc)) -> new_esEs15(vxw30, vxw400, ecb, ecc) new_esEs26(vxw300, vxw4000, app(ty_[], dca)) -> new_esEs24(vxw300, vxw4000, dca) new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_esEs29(vxw241, vxw251, ty_@0) -> new_esEs22(vxw241, vxw251) new_ltEs19(vxw242, vxw252, ty_Char) -> new_ltEs5(vxw242, vxw252) new_compare25(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, True, cbb, bhh, caa) -> EQ new_esEs28(vxw240, vxw250, app(app(ty_Either, he), hf)) -> new_esEs13(vxw240, vxw250, he, hf) new_ltEs22(vxw57, vxw58, app(app(ty_Either, ceg), ceh)) -> new_ltEs4(vxw57, vxw58, ceg, ceh) new_esEs10(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_ltEs21(vxw74, vxw76, ty_Integer) -> new_ltEs6(vxw74, vxw76) new_compare7(Float(vxw30, Pos(vxw310)), Float(vxw400, Pos(vxw4010))) -> new_compare12(new_sr(vxw30, Pos(vxw4010)), new_sr(Pos(vxw310), vxw400)) new_esEs24([], [], efe) -> True new_esEs13(Left(vxw300), Left(vxw4000), app(ty_Maybe, chc), cgc) -> new_esEs25(vxw300, vxw4000, chc) new_not(True) -> False new_lt10(vxw241, vxw251, ty_Bool) -> new_lt4(vxw241, vxw251) new_esEs35(vxw302, vxw4002, app(ty_Maybe, fee)) -> new_esEs25(vxw302, vxw4002, fee) new_ltEs22(vxw57, vxw58, ty_Bool) -> new_ltEs17(vxw57, vxw58) new_ltEs8(Just(vxw240), Just(vxw250), ty_Int) -> new_ltEs12(vxw240, vxw250) new_esEs33(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_primCompAux00(vxw18, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs24(vxw24, vxw25, ty_Float) -> new_ltEs13(vxw24, vxw25) new_esEs13(Right(vxw300), Right(vxw4000), chf, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs28(vxw240, vxw250, ty_Int) -> new_esEs21(vxw240, vxw250) new_esEs28(vxw240, vxw250, app(ty_Maybe, gg)) -> new_esEs25(vxw240, vxw250, gg) new_esEs32(vxw73, vxw75, ty_Ordering) -> new_esEs12(vxw73, vxw75) new_esEs37(vxw47, vxw50, ty_Integer) -> new_esEs16(vxw47, vxw50) new_esEs30(vxw240, vxw250, ty_Float) -> new_esEs14(vxw240, vxw250) new_lt22(vxw46, vxw49, app(app(ty_@2, cac), cad)) -> new_lt7(vxw46, vxw49, cac, cad) new_ltEs20(vxw241, vxw251, ty_Int) -> new_ltEs12(vxw241, vxw251) new_compare5(False, False) -> EQ new_esEs6(vxw31, vxw401, app(app(app(ty_@3, edg), edh), eea)) -> new_esEs20(vxw31, vxw401, edg, edh, eea) new_ltEs4(Left(vxw240), Left(vxw250), ty_Float, bcc) -> new_ltEs13(vxw240, vxw250) new_compare13(LT, EQ) -> LT new_esEs12(LT, LT) -> True new_esEs4(vxw30, vxw400, app(ty_[], efe)) -> new_esEs24(vxw30, vxw400, efe) new_esEs13(Left(vxw300), Left(vxw4000), app(app(ty_Either, chd), che), cgc) -> new_esEs13(vxw300, vxw4000, chd, che) new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_lt20(vxw240, vxw250, ty_Double) -> new_lt19(vxw240, vxw250) new_primEqNat0(Succ(vxw3000), Zero) -> False new_primEqNat0(Zero, Succ(vxw40000)) -> False new_esEs18(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) new_esEs34(vxw301, vxw4001, app(ty_Maybe, fdc)) -> new_esEs25(vxw301, vxw4001, fdc) new_ltEs18(vxw64, vxw65, ty_Float) -> new_ltEs13(vxw64, vxw65) new_ltEs22(vxw57, vxw58, ty_Ordering) -> new_ltEs10(vxw57, vxw58) new_ltEs4(Left(vxw240), Left(vxw250), app(app(app(ty_@3, bcg), bch), bda), bcc) -> new_ltEs11(vxw240, vxw250, bcg, bch, bda) new_lt10(vxw241, vxw251, ty_Float) -> new_lt6(vxw241, vxw251) new_ltEs24(vxw24, vxw25, ty_Double) -> new_ltEs16(vxw24, vxw25) new_ltEs20(vxw241, vxw251, app(ty_Maybe, fc)) -> new_ltEs8(vxw241, vxw251, fc) new_esEs8(vxw31, vxw401, ty_Int) -> new_esEs21(vxw31, vxw401) new_compare18(vxw30, vxw400, app(app(ty_Either, ca), cb)) -> new_compare6(vxw30, vxw400, ca, cb) new_compare28(Just(vxw30), Nothing, cc) -> GT new_esEs4(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_ltEs19(vxw242, vxw252, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs11(vxw242, vxw252, bbe, bbf, bbg) new_lt15(vxw73, vxw75) -> new_esEs12(new_compare13(vxw73, vxw75), LT) new_esEs11(vxw30, vxw400, app(app(ty_@2, ddg), ddh)) -> new_esEs15(vxw30, vxw400, ddg, ddh) new_esEs7(vxw30, vxw400, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs20(vxw30, vxw400, dga, dgb, dgc) new_esEs25(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs14(vxw300, vxw4000) new_ltEs23(vxw48, vxw51, app(app(ty_@2, ccf), ccg)) -> new_ltEs9(vxw48, vxw51, ccf, ccg) new_ltEs23(vxw48, vxw51, ty_@0) -> new_ltEs15(vxw48, vxw51) new_primCompAux00(vxw18, GT) -> GT new_lt4(vxw73, vxw75) -> new_esEs12(new_compare5(vxw73, vxw75), LT) new_ltEs19(vxw242, vxw252, ty_Float) -> new_ltEs13(vxw242, vxw252) new_ltEs4(Left(vxw240), Left(vxw250), ty_Char, bcc) -> new_ltEs5(vxw240, vxw250) new_esEs33(vxw300, vxw4000, app(app(ty_@2, fbb), fbc)) -> new_esEs15(vxw300, vxw4000, fbb, fbc) new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_esEs4(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_ltEs4(Left(vxw240), Left(vxw250), ty_Double, bcc) -> new_ltEs16(vxw240, vxw250) new_ltEs18(vxw64, vxw65, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs11(vxw64, vxw65, cff, cfg, cfh) new_ltEs18(vxw64, vxw65, ty_Double) -> new_ltEs16(vxw64, vxw65) new_esEs9(vxw32, vxw402, ty_@0) -> new_esEs22(vxw32, vxw402) new_esEs25(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs23(vxw300, vxw4000) new_compare9(@3(vxw30, vxw31, vxw32), @3(vxw400, vxw401, vxw402), bhd, bhe, bhf) -> new_compare25(vxw30, vxw31, vxw32, vxw400, vxw401, vxw402, new_asAs(new_esEs7(vxw30, vxw400, bhd), new_asAs(new_esEs8(vxw31, vxw401, bhe), new_esEs9(vxw32, vxw402, bhf))), bhd, bhe, bhf) new_compare13(LT, LT) -> EQ new_esEs19(False, False) -> True new_ltEs18(vxw64, vxw65, ty_Char) -> new_ltEs5(vxw64, vxw65) new_primCmpInt(Pos(Succ(vxw300)), Neg(vxw400)) -> GT new_esEs6(vxw31, vxw401, app(app(ty_Either, eed), eee)) -> new_esEs13(vxw31, vxw401, eed, eee) new_ltEs24(vxw24, vxw25, ty_Char) -> new_ltEs5(vxw24, vxw25) new_lt22(vxw46, vxw49, app(app(app(ty_@3, cae), caf), cag)) -> new_lt16(vxw46, vxw49, cae, caf, cag) new_esEs28(vxw240, vxw250, ty_Bool) -> new_esEs19(vxw240, vxw250) new_ltEs4(Right(vxw240), Right(vxw250), bdd, ty_Integer) -> new_ltEs6(vxw240, vxw250) new_lt10(vxw241, vxw251, app(app(app(ty_@3, bad), bae), baf)) -> new_lt16(vxw241, vxw251, bad, bae, baf) new_esEs38(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_compare13(GT, EQ) -> GT new_ltEs10(GT, EQ) -> False new_esEs8(vxw31, vxw401, app(ty_Ratio, dhb)) -> new_esEs17(vxw31, vxw401, dhb) new_lt7(vxw73, vxw75, beh, bfa) -> new_esEs12(new_compare8(vxw73, vxw75, beh, bfa), LT) new_esEs29(vxw241, vxw251, app(ty_Maybe, baa)) -> new_esEs25(vxw241, vxw251, baa) new_esEs38(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_ltEs23(vxw48, vxw51, ty_Bool) -> new_ltEs17(vxw48, vxw51) new_esEs27(vxw301, vxw4001, app(app(ty_@2, dce), dcf)) -> new_esEs15(vxw301, vxw4001, dce, dcf) new_ltEs24(vxw24, vxw25, app(app(app(ty_@3, hg), ge), gf)) -> new_ltEs11(vxw24, vxw25, hg, ge, gf) new_esEs25(Just(vxw300), Just(vxw4000), app(ty_Maybe, fac)) -> new_esEs25(vxw300, vxw4000, fac) new_lt23(vxw47, vxw50, app(app(ty_Either, ccb), ccc)) -> new_lt5(vxw47, vxw50, ccb, ccc) new_esEs9(vxw32, vxw402, app(ty_[], eah)) -> new_esEs24(vxw32, vxw402, eah) new_esEs34(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_primPlusNat1(Succ(vxw15300), Succ(vxw401000)) -> Succ(Succ(new_primPlusNat1(vxw15300, vxw401000))) new_esEs9(vxw32, vxw402, ty_Ordering) -> new_esEs12(vxw32, vxw402) new_esEs33(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_primCmpNat0(Zero, Succ(vxw4000)) -> LT new_lt19(vxw73, vxw75) -> new_esEs12(new_compare15(vxw73, vxw75), LT) new_compare18(vxw30, vxw400, app(ty_[], bb)) -> new_compare0(vxw30, vxw400, bb) new_ltEs21(vxw74, vxw76, ty_Int) -> new_ltEs12(vxw74, vxw76) new_esEs30(vxw240, vxw250, app(app(ty_Either, eg), eh)) -> new_esEs13(vxw240, vxw250, eg, eh) new_esEs9(vxw32, vxw402, app(app(ty_@2, eab), eac)) -> new_esEs15(vxw32, vxw402, eab, eac) new_esEs5(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs11(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_ltEs19(vxw242, vxw252, ty_Integer) -> new_ltEs6(vxw242, vxw252) new_compare28(Nothing, Nothing, cc) -> EQ new_lt23(vxw47, vxw50, ty_Char) -> new_lt11(vxw47, vxw50) new_compare112(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, vxw145, dfa, dfb, dfc) -> new_compare10(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, dfa, dfb, dfc) new_esEs10(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_esEs4(vxw30, vxw400, app(app(ty_@2, dba), dbb)) -> new_esEs15(vxw30, vxw400, dba, dbb) new_lt23(vxw47, vxw50, ty_Integer) -> new_lt12(vxw47, vxw50) new_esEs13(Right(vxw300), Right(vxw4000), chf, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_primCmpNat0(Succ(vxw300), Zero) -> GT new_esEs32(vxw73, vxw75, ty_Integer) -> new_esEs16(vxw73, vxw75) new_esEs33(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_esEs13(Left(vxw300), Left(vxw4000), ty_Float, cgc) -> new_esEs14(vxw300, vxw4000) new_pePe(False, vxw152) -> vxw152 new_esEs10(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_lt21(vxw73, vxw75, app(ty_[], bef)) -> new_lt13(vxw73, vxw75, bef) new_esEs11(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_ltEs4(Right(vxw240), Right(vxw250), bdd, ty_@0) -> new_ltEs15(vxw240, vxw250) new_esEs25(Just(vxw300), Just(vxw4000), app(app(ty_@2, ehd), ehe)) -> new_esEs15(vxw300, vxw4000, ehd, ehe) new_esEs8(vxw31, vxw401, ty_Char) -> new_esEs18(vxw31, vxw401) new_esEs9(vxw32, vxw402, ty_Float) -> new_esEs14(vxw32, vxw402) new_ltEs4(Left(vxw240), Left(vxw250), ty_Int, bcc) -> new_ltEs12(vxw240, vxw250) new_ltEs4(Right(vxw240), Right(vxw250), bdd, ty_Bool) -> new_ltEs17(vxw240, vxw250) new_esEs10(vxw30, vxw400, app(ty_[], fge)) -> new_esEs24(vxw30, vxw400, fge) new_compare15(Double(vxw30, Neg(vxw310)), Double(vxw400, Neg(vxw4010))) -> new_compare12(new_sr(vxw30, Neg(vxw4010)), new_sr(Neg(vxw310), vxw400)) new_esEs5(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_esEs31(vxw300, vxw4000, app(app(ty_@2, eff), efg)) -> new_esEs15(vxw300, vxw4000, eff, efg) new_lt20(vxw240, vxw250, ty_Char) -> new_lt11(vxw240, vxw250) new_esEs6(vxw31, vxw401, ty_Double) -> new_esEs23(vxw31, vxw401) new_esEs34(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_esEs5(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_esEs30(vxw240, vxw250, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs20(vxw240, vxw250, ed, ee, ef) new_lt22(vxw46, vxw49, ty_Char) -> new_lt11(vxw46, vxw49) new_lt23(vxw47, vxw50, ty_Bool) -> new_lt4(vxw47, vxw50) new_esEs37(vxw47, vxw50, app(app(app(ty_@3, cbg), cbh), cca)) -> new_esEs20(vxw47, vxw50, cbg, cbh, cca) new_ltEs4(Left(vxw240), Left(vxw250), app(ty_[], bcb), bcc) -> new_ltEs7(vxw240, vxw250, bcb) new_esEs33(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs6(vxw31, vxw401, ty_Char) -> new_esEs18(vxw31, vxw401) new_compare111(vxw123, vxw124, vxw125, vxw126, False, vxw128, eha, ehb) -> new_compare110(vxw123, vxw124, vxw125, vxw126, vxw128, eha, ehb) new_compare113(vxw96, vxw97, True, fff) -> LT new_ltEs19(vxw242, vxw252, ty_Double) -> new_ltEs16(vxw242, vxw252) new_ltEs18(vxw64, vxw65, ty_Bool) -> new_ltEs17(vxw64, vxw65) new_compare6(Left(vxw30), Right(vxw400), cde, cdf) -> LT new_esEs32(vxw73, vxw75, ty_@0) -> new_esEs22(vxw73, vxw75) new_compare11(vxw113, vxw114, False, fhb, fhc) -> GT new_esEs29(vxw241, vxw251, app(ty_[], hh)) -> new_esEs24(vxw241, vxw251, hh) new_esEs10(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False new_lt22(vxw46, vxw49, ty_Ordering) -> new_lt15(vxw46, vxw49) new_esEs8(vxw31, vxw401, app(ty_[], dhf)) -> new_esEs24(vxw31, vxw401, dhf) new_lt6(vxw73, vxw75) -> new_esEs12(new_compare7(vxw73, vxw75), LT) new_esEs11(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_esEs5(vxw30, vxw400, app(app(ty_Either, edb), edc)) -> new_esEs13(vxw30, vxw400, edb, edc) new_esEs26(vxw300, vxw4000, app(ty_Ratio, dbe)) -> new_esEs17(vxw300, vxw4000, dbe) new_lt21(vxw73, vxw75, ty_Integer) -> new_lt12(vxw73, vxw75) new_esEs9(vxw32, vxw402, app(ty_Ratio, ead)) -> new_esEs17(vxw32, vxw402, ead) new_lt20(vxw240, vxw250, ty_Float) -> new_lt6(vxw240, vxw250) new_esEs31(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_esEs39(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_compare17(:%(vxw30, vxw31), :%(vxw400, vxw401), ty_Int) -> new_compare12(new_sr(vxw30, vxw401), new_sr(vxw400, vxw31)) new_esEs29(vxw241, vxw251, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs20(vxw241, vxw251, bad, bae, baf) new_esEs29(vxw241, vxw251, ty_Char) -> new_esEs18(vxw241, vxw251) new_ltEs21(vxw74, vxw76, ty_Float) -> new_ltEs13(vxw74, vxw76) new_lt21(vxw73, vxw75, app(ty_Ratio, efa)) -> new_lt17(vxw73, vxw75, efa) new_esEs6(vxw31, vxw401, app(ty_Maybe, eec)) -> new_esEs25(vxw31, vxw401, eec) new_esEs25(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs18(vxw300, vxw4000) new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs33(vxw300, vxw4000, app(ty_Maybe, fca)) -> new_esEs25(vxw300, vxw4000, fca) new_ltEs20(vxw241, vxw251, ty_Double) -> new_ltEs16(vxw241, vxw251) new_esEs34(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_esEs37(vxw47, vxw50, app(app(ty_Either, ccb), ccc)) -> new_esEs13(vxw47, vxw50, ccb, ccc) new_primCmpInt(Neg(Zero), Pos(Succ(vxw4000))) -> LT new_esEs28(vxw240, vxw250, ty_Integer) -> new_esEs16(vxw240, vxw250) new_lt10(vxw241, vxw251, app(ty_Ratio, eeg)) -> new_lt17(vxw241, vxw251, eeg) new_esEs30(vxw240, vxw250, ty_@0) -> new_esEs22(vxw240, vxw250) new_ltEs22(vxw57, vxw58, ty_Int) -> new_ltEs12(vxw57, vxw58) new_esEs25(Just(vxw300), Just(vxw4000), app(ty_[], fab)) -> new_esEs24(vxw300, vxw4000, fab) new_lt23(vxw47, vxw50, app(ty_[], cbc)) -> new_lt13(vxw47, vxw50, cbc) new_esEs30(vxw240, vxw250, ty_Bool) -> new_esEs19(vxw240, vxw250) new_esEs7(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_ltEs8(Just(vxw240), Just(vxw250), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs11(vxw240, vxw250, db, dc, dd) new_primMulInt(Pos(vxw300), Pos(vxw4010)) -> Pos(new_primMulNat0(vxw300, vxw4010)) new_compare13(EQ, LT) -> GT new_esEs5(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_esEs26(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs13(Right(vxw300), Right(vxw4000), chf, ty_Int) -> new_esEs21(vxw300, vxw4000) new_lt22(vxw46, vxw49, ty_Int) -> new_lt8(vxw46, vxw49) new_esEs24(:(vxw300, vxw301), [], efe) -> False new_esEs24([], :(vxw4000, vxw4001), efe) -> False new_esEs11(vxw30, vxw400, app(ty_Ratio, dea)) -> new_esEs17(vxw30, vxw400, dea) new_ltEs19(vxw242, vxw252, app(ty_Maybe, bbb)) -> new_ltEs8(vxw242, vxw252, bbb) new_esEs31(vxw300, vxw4000, app(ty_Maybe, ege)) -> new_esEs25(vxw300, vxw4000, ege) new_ltEs23(vxw48, vxw51, ty_Float) -> new_ltEs13(vxw48, vxw51) new_primMulNat0(Succ(vxw3000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw40100)) -> Zero new_esEs13(Right(vxw300), Right(vxw4000), chf, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs20(vxw300, vxw4000, dab, dac, dad) new_lt10(vxw241, vxw251, ty_Char) -> new_lt11(vxw241, vxw251) new_esEs9(vxw32, vxw402, app(ty_Maybe, eba)) -> new_esEs25(vxw32, vxw402, eba) new_primPlusNat0(Zero, vxw40100) -> Succ(vxw40100) new_esEs5(vxw30, vxw400, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs20(vxw30, vxw400, ece, ecf, ecg) new_compare18(vxw30, vxw400, ty_Bool) -> new_compare5(vxw30, vxw400) new_esEs34(vxw301, vxw4001, app(ty_Ratio, fcf)) -> new_esEs17(vxw301, vxw4001, fcf) new_esEs17(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ffb) -> new_asAs(new_esEs38(vxw300, vxw4000, ffb), new_esEs39(vxw301, vxw4001, ffb)) new_lt10(vxw241, vxw251, ty_Ordering) -> new_lt15(vxw241, vxw251) new_esEs8(vxw31, vxw401, ty_Bool) -> new_esEs19(vxw31, vxw401) new_compare5(False, True) -> LT new_esEs29(vxw241, vxw251, ty_Bool) -> new_esEs19(vxw241, vxw251) new_compare13(GT, LT) -> GT new_esEs26(vxw300, vxw4000, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs20(vxw300, vxw4000, dbf, dbg, dbh) new_esEs13(Left(vxw300), Left(vxw4000), ty_Integer, cgc) -> new_esEs16(vxw300, vxw4000) new_lt9(vxw240, vxw250, app(ty_Maybe, gg)) -> new_lt14(vxw240, vxw250, gg) new_ltEs22(vxw57, vxw58, app(app(ty_@2, ceb), cec)) -> new_ltEs9(vxw57, vxw58, ceb, cec) new_ltEs22(vxw57, vxw58, ty_@0) -> new_ltEs15(vxw57, vxw58) new_ltEs22(vxw57, vxw58, ty_Double) -> new_ltEs16(vxw57, vxw58) new_esEs30(vxw240, vxw250, app(ty_[], dg)) -> new_esEs24(vxw240, vxw250, dg) new_compare210(vxw57, vxw58, False, feh, cdh) -> new_compare14(vxw57, vxw58, new_ltEs22(vxw57, vxw58, feh), feh, cdh) new_lt22(vxw46, vxw49, app(ty_Maybe, cab)) -> new_lt14(vxw46, vxw49, cab) new_esEs8(vxw31, vxw401, app(ty_Maybe, dhg)) -> new_esEs25(vxw31, vxw401, dhg) new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs20(vxw301, vxw4001, dch, dda, ddb) new_ltEs4(Left(vxw240), Left(vxw250), app(ty_Maybe, bcd), bcc) -> new_ltEs8(vxw240, vxw250, bcd) new_lt10(vxw241, vxw251, app(ty_[], hh)) -> new_lt13(vxw241, vxw251, hh) new_esEs7(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_esEs36(vxw46, vxw49, ty_Int) -> new_esEs21(vxw46, vxw49) new_esEs13(Left(vxw300), Left(vxw4000), app(ty_Ratio, cgf), cgc) -> new_esEs17(vxw300, vxw4000, cgf) new_esEs29(vxw241, vxw251, app(app(ty_@2, bab), bac)) -> new_esEs15(vxw241, vxw251, bab, bac) new_ltEs23(vxw48, vxw51, ty_Double) -> new_ltEs16(vxw48, vxw51) new_compare13(EQ, EQ) -> EQ new_ltEs23(vxw48, vxw51, app(ty_Ratio, ffe)) -> new_ltEs14(vxw48, vxw51, ffe) new_esEs27(vxw301, vxw4001, app(app(ty_Either, dde), ddf)) -> new_esEs13(vxw301, vxw4001, dde, ddf) new_esEs20(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fag, fah, fba) -> new_asAs(new_esEs33(vxw300, vxw4000, fag), new_asAs(new_esEs34(vxw301, vxw4001, fah), new_esEs35(vxw302, vxw4002, fba))) new_lt12(vxw73, vxw75) -> new_esEs12(new_compare16(vxw73, vxw75), LT) new_esEs7(vxw30, vxw400, app(ty_Maybe, dge)) -> new_esEs25(vxw30, vxw400, dge) new_lt13(vxw73, vxw75, bef) -> new_esEs12(new_compare0(vxw73, vxw75, bef), LT) new_primPlusNat1(Succ(vxw15300), Zero) -> Succ(vxw15300) new_primPlusNat1(Zero, Succ(vxw401000)) -> Succ(vxw401000) new_esEs32(vxw73, vxw75, ty_Bool) -> new_esEs19(vxw73, vxw75) new_ltEs21(vxw74, vxw76, ty_Bool) -> new_ltEs17(vxw74, vxw76) new_esEs31(vxw300, vxw4000, app(ty_[], egd)) -> new_esEs24(vxw300, vxw4000, egd) new_lt9(vxw240, vxw250, ty_Bool) -> new_lt4(vxw240, vxw250) new_ltEs21(vxw74, vxw76, ty_Double) -> new_ltEs16(vxw74, vxw76) new_ltEs8(Just(vxw240), Just(vxw250), ty_Ordering) -> new_ltEs10(vxw240, vxw250) new_esEs31(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs30(vxw240, vxw250, ty_Char) -> new_esEs18(vxw240, vxw250) new_compare8(@2(vxw30, vxw31), @2(vxw400, vxw401), bfb, bfc) -> new_compare27(vxw30, vxw31, vxw400, vxw401, new_asAs(new_esEs5(vxw30, vxw400, bfb), new_esEs6(vxw31, vxw401, bfc)), bfb, bfc) new_esEs7(vxw30, vxw400, app(app(ty_@2, dff), dfg)) -> new_esEs15(vxw30, vxw400, dff, dfg) new_esEs28(vxw240, vxw250, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs20(vxw240, vxw250, hb, hc, hd) new_esEs35(vxw302, vxw4002, ty_Int) -> new_esEs21(vxw302, vxw4002) new_compare27(vxw73, vxw74, vxw75, vxw76, False, bfd, bgf) -> new_compare111(vxw73, vxw74, vxw75, vxw76, new_lt21(vxw73, vxw75, bfd), new_asAs(new_esEs32(vxw73, vxw75, bfd), new_ltEs21(vxw74, vxw76, bgf)), bfd, bgf) new_lt9(vxw240, vxw250, ty_Int) -> new_lt8(vxw240, vxw250) new_esEs10(vxw30, vxw400, app(ty_Maybe, fgf)) -> new_esEs25(vxw30, vxw400, fgf) new_esEs26(vxw300, vxw4000, app(app(ty_Either, dcc), dcd)) -> new_esEs13(vxw300, vxw4000, dcc, dcd) new_esEs6(vxw31, vxw401, ty_Bool) -> new_esEs19(vxw31, vxw401) new_compare18(vxw30, vxw400, ty_@0) -> new_compare29(vxw30, vxw400) new_esEs13(Left(vxw300), Left(vxw4000), app(app(ty_@2, cgd), cge), cgc) -> new_esEs15(vxw300, vxw4000, cgd, cge) new_compare18(vxw30, vxw400, ty_Ordering) -> new_compare13(vxw30, vxw400) new_esEs36(vxw46, vxw49, app(ty_Ratio, ffc)) -> new_esEs17(vxw46, vxw49, ffc) new_esEs30(vxw240, vxw250, ty_Integer) -> new_esEs16(vxw240, vxw250) new_esEs31(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs6(vxw31, vxw401, app(app(ty_@2, edd), ede)) -> new_esEs15(vxw31, vxw401, edd, ede) new_ltEs18(vxw64, vxw65, app(ty_Maybe, cfc)) -> new_ltEs8(vxw64, vxw65, cfc) new_lt9(vxw240, vxw250, app(app(app(ty_@3, hb), hc), hd)) -> new_lt16(vxw240, vxw250, hb, hc, hd) new_fsEs(vxw147) -> new_not(new_esEs12(vxw147, GT)) new_compare28(Just(vxw30), Just(vxw400), cc) -> new_compare211(vxw30, vxw400, new_esEs4(vxw30, vxw400, cc), cc) new_esEs31(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_primMulInt(Neg(vxw300), Neg(vxw4010)) -> Pos(new_primMulNat0(vxw300, vxw4010)) new_esEs32(vxw73, vxw75, app(ty_Maybe, beg)) -> new_esEs25(vxw73, vxw75, beg) new_primCmpInt(Pos(Zero), Pos(Succ(vxw4000))) -> new_primCmpNat0(Zero, Succ(vxw4000)) new_ltEs22(vxw57, vxw58, ty_Float) -> new_ltEs13(vxw57, vxw58) new_lt23(vxw47, vxw50, ty_Ordering) -> new_lt15(vxw47, vxw50) new_ltEs4(Right(vxw240), Right(vxw250), bdd, app(ty_Ratio, dfe)) -> new_ltEs14(vxw240, vxw250, dfe) new_esEs8(vxw31, vxw401, ty_Double) -> new_esEs23(vxw31, vxw401) new_ltEs8(Just(vxw240), Just(vxw250), ty_Char) -> new_ltEs5(vxw240, vxw250) new_ltEs20(vxw241, vxw251, ty_Bool) -> new_ltEs17(vxw241, vxw251) new_esEs35(vxw302, vxw4002, app(ty_Ratio, fdh)) -> new_esEs17(vxw302, vxw4002, fdh) new_compare7(Float(vxw30, Neg(vxw310)), Float(vxw400, Neg(vxw4010))) -> new_compare12(new_sr(vxw30, Neg(vxw4010)), new_sr(Neg(vxw310), vxw400)) new_esEs32(vxw73, vxw75, ty_Float) -> new_esEs14(vxw73, vxw75) new_compare17(:%(vxw30, vxw31), :%(vxw400, vxw401), ty_Integer) -> new_compare16(new_sr0(vxw30, vxw401), new_sr0(vxw400, vxw31)) new_esEs4(vxw30, vxw400, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs20(vxw30, vxw400, fag, fah, fba) new_lt10(vxw241, vxw251, ty_Integer) -> new_lt12(vxw241, vxw251) new_esEs32(vxw73, vxw75, ty_Double) -> new_esEs23(vxw73, vxw75) new_lt20(vxw240, vxw250, app(ty_Ratio, efc)) -> new_lt17(vxw240, vxw250, efc) new_compare112(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, False, vxw145, dfa, dfb, dfc) -> new_compare10(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, vxw145, dfa, dfb, dfc) new_esEs7(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_ltEs21(vxw74, vxw76, ty_@0) -> new_ltEs15(vxw74, vxw76) new_lt23(vxw47, vxw50, app(ty_Maybe, cbd)) -> new_lt14(vxw47, vxw50, cbd) new_ltEs24(vxw24, vxw25, ty_Int) -> new_ltEs12(vxw24, vxw25) new_esEs7(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_esEs31(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs25(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs13(Left(vxw300), Left(vxw4000), ty_Bool, cgc) -> new_esEs19(vxw300, vxw4000) new_esEs36(vxw46, vxw49, ty_Ordering) -> new_esEs12(vxw46, vxw49) new_esEs13(Left(vxw300), Left(vxw4000), ty_@0, cgc) -> new_esEs22(vxw300, vxw4000) new_esEs29(vxw241, vxw251, ty_Integer) -> new_esEs16(vxw241, vxw251) new_ltEs8(Just(vxw240), Just(vxw250), app(app(ty_Either, de), df)) -> new_ltEs4(vxw240, vxw250, de, df) new_esEs6(vxw31, vxw401, app(ty_[], eeb)) -> new_esEs24(vxw31, vxw401, eeb) new_ltEs24(vxw24, vxw25, app(ty_Ratio, efb)) -> new_ltEs14(vxw24, vxw25, efb) new_ltEs21(vxw74, vxw76, app(app(ty_@2, bfg), bfh)) -> new_ltEs9(vxw74, vxw76, bfg, bfh) new_esEs13(Right(vxw300), Right(vxw4000), chf, app(ty_[], dae)) -> new_esEs24(vxw300, vxw4000, dae) new_lt10(vxw241, vxw251, app(ty_Maybe, baa)) -> new_lt14(vxw241, vxw251, baa) new_esEs33(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_lt22(vxw46, vxw49, ty_Bool) -> new_lt4(vxw46, vxw49) new_ltEs18(vxw64, vxw65, ty_Ordering) -> new_ltEs10(vxw64, vxw65) new_esEs6(vxw31, vxw401, ty_@0) -> new_esEs22(vxw31, vxw401) new_primMulInt(Pos(vxw300), Neg(vxw4010)) -> Neg(new_primMulNat0(vxw300, vxw4010)) new_primMulInt(Neg(vxw300), Pos(vxw4010)) -> Neg(new_primMulNat0(vxw300, vxw4010)) new_esEs29(vxw241, vxw251, ty_Ordering) -> new_esEs12(vxw241, vxw251) new_esEs34(vxw301, vxw4001, app(ty_[], fdb)) -> new_esEs24(vxw301, vxw4001, fdb) new_esEs27(vxw301, vxw4001, app(ty_Ratio, dcg)) -> new_esEs17(vxw301, vxw4001, dcg) new_esEs7(vxw30, vxw400, app(ty_[], dgd)) -> new_esEs24(vxw30, vxw400, dgd) new_esEs33(vxw300, vxw4000, app(ty_Ratio, fbd)) -> new_esEs17(vxw300, vxw4000, fbd) new_lt23(vxw47, vxw50, ty_Float) -> new_lt6(vxw47, vxw50) new_esEs11(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_ltEs4(Right(vxw240), Right(vxw250), bdd, app(app(ty_Either, bed), bee)) -> new_ltEs4(vxw240, vxw250, bed, bee) new_ltEs4(Left(vxw240), Left(vxw250), ty_Ordering, bcc) -> new_ltEs10(vxw240, vxw250) new_lt22(vxw46, vxw49, ty_Integer) -> new_lt12(vxw46, vxw49) new_compare19(Char(vxw30), Char(vxw400)) -> new_primCmpNat0(vxw30, vxw400) new_esEs13(Left(vxw300), Left(vxw4000), ty_Char, cgc) -> new_esEs18(vxw300, vxw4000) new_esEs6(vxw31, vxw401, app(ty_Ratio, edf)) -> new_esEs17(vxw31, vxw401, edf) new_esEs4(vxw30, vxw400, app(app(ty_Either, chf), cgc)) -> new_esEs13(vxw30, vxw400, chf, cgc) new_lt21(vxw73, vxw75, ty_Ordering) -> new_lt15(vxw73, vxw75) new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_esEs32(vxw73, vxw75, ty_Int) -> new_esEs21(vxw73, vxw75) new_compare18(vxw30, vxw400, ty_Float) -> new_compare7(vxw30, vxw400) new_esEs31(vxw300, vxw4000, app(app(ty_Either, egf), egg)) -> new_esEs13(vxw300, vxw4000, egf, egg) new_ltEs22(vxw57, vxw58, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs11(vxw57, vxw58, ced, cee, cef) new_lt22(vxw46, vxw49, app(ty_[], bhg)) -> new_lt13(vxw46, vxw49, bhg) new_esEs10(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_sr0(Integer(vxw300), Integer(vxw4010)) -> Integer(new_primMulInt(vxw300, vxw4010)) new_esEs34(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_esEs28(vxw240, vxw250, app(ty_[], gd)) -> new_esEs24(vxw240, vxw250, gd) new_esEs25(Just(vxw300), Just(vxw4000), app(app(ty_Either, fad), fae)) -> new_esEs13(vxw300, vxw4000, fad, fae) new_ltEs5(vxw24, vxw25) -> new_fsEs(new_compare19(vxw24, vxw25)) new_lt10(vxw241, vxw251, app(app(ty_@2, bab), bac)) -> new_lt7(vxw241, vxw251, bab, bac) new_esEs35(vxw302, vxw4002, ty_Ordering) -> new_esEs12(vxw302, vxw4002) new_lt22(vxw46, vxw49, app(ty_Ratio, ffc)) -> new_lt17(vxw46, vxw49, ffc) new_esEs5(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_esEs7(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_ltEs19(vxw242, vxw252, ty_Bool) -> new_ltEs17(vxw242, vxw252) new_esEs8(vxw31, vxw401, ty_Ordering) -> new_esEs12(vxw31, vxw401) new_ltEs20(vxw241, vxw251, app(app(ty_Either, gb), gc)) -> new_ltEs4(vxw241, vxw251, gb, gc) new_esEs28(vxw240, vxw250, ty_Double) -> new_esEs23(vxw240, vxw250) new_esEs30(vxw240, vxw250, app(app(ty_@2, eb), ec)) -> new_esEs15(vxw240, vxw250, eb, ec) new_ltEs23(vxw48, vxw51, ty_Int) -> new_ltEs12(vxw48, vxw51) new_lt21(vxw73, vxw75, ty_Char) -> new_lt11(vxw73, vxw75) new_compare211(vxw24, vxw25, False, fha) -> new_compare113(vxw24, vxw25, new_ltEs24(vxw24, vxw25, fha), fha) new_primCompAux0(vxw30, vxw400, vxw14, ba) -> new_primCompAux00(vxw14, new_compare18(vxw30, vxw400, ba)) new_esEs5(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_esEs6(vxw31, vxw401, ty_Float) -> new_esEs14(vxw31, vxw401) new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_lt9(vxw240, vxw250, ty_Double) -> new_lt19(vxw240, vxw250) new_esEs13(Left(vxw300), Right(vxw4000), chf, cgc) -> False new_esEs13(Right(vxw300), Left(vxw4000), chf, cgc) -> False new_lt9(vxw240, vxw250, app(ty_Ratio, eef)) -> new_lt17(vxw240, vxw250, eef) new_compare111(vxw123, vxw124, vxw125, vxw126, True, vxw128, eha, ehb) -> new_compare110(vxw123, vxw124, vxw125, vxw126, True, eha, ehb) new_esEs12(GT, GT) -> True new_compare0([], :(vxw400, vxw401), ba) -> LT new_esEs32(vxw73, vxw75, ty_Char) -> new_esEs18(vxw73, vxw75) new_asAs(True, vxw91) -> vxw91 new_ltEs8(Just(vxw240), Just(vxw250), ty_Double) -> new_ltEs16(vxw240, vxw250) new_esEs25(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs20(vxw300, vxw4000, ehg, ehh, faa) new_lt21(vxw73, vxw75, ty_@0) -> new_lt18(vxw73, vxw75) new_esEs22(@0, @0) -> True new_lt20(vxw240, vxw250, app(app(ty_@2, eb), ec)) -> new_lt7(vxw240, vxw250, eb, ec) new_compare6(Right(vxw30), Right(vxw400), cde, cdf) -> new_compare26(vxw30, vxw400, new_esEs11(vxw30, vxw400, cdf), cde, cdf) new_ltEs10(LT, LT) -> True new_ltEs20(vxw241, vxw251, app(app(ty_@2, fd), ff)) -> new_ltEs9(vxw241, vxw251, fd, ff) new_ltEs20(vxw241, vxw251, ty_@0) -> new_ltEs15(vxw241, vxw251) new_esEs31(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs26(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_lt22(vxw46, vxw49, ty_Double) -> new_lt19(vxw46, vxw49) new_esEs37(vxw47, vxw50, app(ty_Ratio, ffd)) -> new_esEs17(vxw47, vxw50, ffd) new_ltEs24(vxw24, vxw25, ty_Ordering) -> new_ltEs10(vxw24, vxw25) new_lt9(vxw240, vxw250, app(app(ty_Either, he), hf)) -> new_lt5(vxw240, vxw250, he, hf) new_ltEs22(vxw57, vxw58, app(ty_Maybe, cea)) -> new_ltEs8(vxw57, vxw58, cea) new_esEs25(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs19(vxw300, vxw4000) new_ltEs19(vxw242, vxw252, app(app(ty_@2, bbc), bbd)) -> new_ltEs9(vxw242, vxw252, bbc, bbd) new_ltEs19(vxw242, vxw252, ty_@0) -> new_ltEs15(vxw242, vxw252) new_lt23(vxw47, vxw50, app(app(app(ty_@3, cbg), cbh), cca)) -> new_lt16(vxw47, vxw50, cbg, cbh, cca) new_primCmpInt(Pos(Succ(vxw300)), Pos(vxw400)) -> new_primCmpNat0(Succ(vxw300), vxw400) new_compare5(True, True) -> EQ new_compare6(Right(vxw30), Left(vxw400), cde, cdf) -> GT new_lt9(vxw240, vxw250, ty_Char) -> new_lt11(vxw240, vxw250) new_esEs37(vxw47, vxw50, ty_Int) -> new_esEs21(vxw47, vxw50) new_esEs4(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_primCompAux00(vxw18, EQ) -> vxw18 new_compare18(vxw30, vxw400, app(ty_Ratio, egh)) -> new_compare17(vxw30, vxw400, egh) new_esEs12(EQ, EQ) -> True new_lt14(vxw73, vxw75, beg) -> new_esEs12(new_compare28(vxw73, vxw75, beg), LT) new_compare0([], [], ba) -> EQ new_esEs33(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_sr(vxw30, vxw401) -> new_primMulInt(vxw30, vxw401) new_lt9(vxw240, vxw250, app(ty_[], gd)) -> new_lt13(vxw240, vxw250, gd) new_lt22(vxw46, vxw49, app(app(ty_Either, cah), cba)) -> new_lt5(vxw46, vxw49, cah, cba) new_ltEs4(Left(vxw240), Left(vxw250), ty_Integer, bcc) -> new_ltEs6(vxw240, vxw250) new_esEs9(vxw32, vxw402, ty_Int) -> new_esEs21(vxw32, vxw402) new_primMulNat0(Zero, Zero) -> Zero new_lt9(vxw240, vxw250, ty_Ordering) -> new_lt15(vxw240, vxw250) new_esEs10(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_esEs8(vxw31, vxw401, app(app(ty_@2, dgh), dha)) -> new_esEs15(vxw31, vxw401, dgh, dha) new_esEs35(vxw302, vxw4002, app(app(ty_Either, fef), feg)) -> new_esEs13(vxw302, vxw4002, fef, feg) new_ltEs18(vxw64, vxw65, ty_Integer) -> new_ltEs6(vxw64, vxw65) new_esEs11(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_esEs11(vxw30, vxw400, app(ty_Maybe, def)) -> new_esEs25(vxw30, vxw400, def) new_compare13(GT, GT) -> EQ new_ltEs24(vxw24, vxw25, ty_Integer) -> new_ltEs6(vxw24, vxw25) new_ltEs18(vxw64, vxw65, app(app(ty_Either, cga), cgb)) -> new_ltEs4(vxw64, vxw65, cga, cgb) new_esEs9(vxw32, vxw402, ty_Integer) -> new_esEs16(vxw32, vxw402) new_esEs4(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_esEs5(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_ltEs23(vxw48, vxw51, ty_Char) -> new_ltEs5(vxw48, vxw51) new_ltEs4(Right(vxw240), Right(vxw250), bdd, app(app(ty_@2, bdg), bdh)) -> new_ltEs9(vxw240, vxw250, bdg, bdh) new_compare5(True, False) -> GT new_esEs36(vxw46, vxw49, app(app(ty_Either, cah), cba)) -> new_esEs13(vxw46, vxw49, cah, cba) new_ltEs24(vxw24, vxw25, app(ty_[], cd)) -> new_ltEs7(vxw24, vxw25, cd) new_lt10(vxw241, vxw251, ty_Int) -> new_lt8(vxw241, vxw251) new_lt20(vxw240, vxw250, ty_@0) -> new_lt18(vxw240, vxw250) new_lt21(vxw73, vxw75, app(ty_Maybe, beg)) -> new_lt14(vxw73, vxw75, beg) new_compare18(vxw30, vxw400, app(ty_Maybe, bc)) -> new_compare28(vxw30, vxw400, bc) new_ltEs22(vxw57, vxw58, app(ty_Ratio, ffa)) -> new_ltEs14(vxw57, vxw58, ffa) new_esEs28(vxw240, vxw250, app(app(ty_@2, gh), ha)) -> new_esEs15(vxw240, vxw250, gh, ha) new_esEs30(vxw240, vxw250, ty_Double) -> new_esEs23(vxw240, vxw250) new_esEs34(vxw301, vxw4001, app(app(ty_@2, fcd), fce)) -> new_esEs15(vxw301, vxw4001, fcd, fce) new_lt9(vxw240, vxw250, ty_@0) -> new_lt18(vxw240, vxw250) new_lt21(vxw73, vxw75, ty_Double) -> new_lt19(vxw73, vxw75) new_esEs4(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_ltEs24(vxw24, vxw25, app(app(ty_Either, bdd), bcc)) -> new_ltEs4(vxw24, vxw25, bdd, bcc) new_ltEs23(vxw48, vxw51, ty_Ordering) -> new_ltEs10(vxw48, vxw51) new_ltEs4(Right(vxw240), Right(vxw250), bdd, ty_Float) -> new_ltEs13(vxw240, vxw250) new_esEs31(vxw300, vxw4000, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs20(vxw300, vxw4000, ega, egb, egc) new_esEs33(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_lt21(vxw73, vxw75, ty_Int) -> new_lt8(vxw73, vxw75) new_ltEs8(Just(vxw240), Just(vxw250), app(ty_Ratio, eca)) -> new_ltEs14(vxw240, vxw250, eca) new_ltEs17(False, False) -> True new_lt17(vxw73, vxw75, efa) -> new_esEs12(new_compare17(vxw73, vxw75, efa), LT) new_esEs8(vxw31, vxw401, ty_Integer) -> new_esEs16(vxw31, vxw401) new_ltEs18(vxw64, vxw65, app(ty_[], cfb)) -> new_ltEs7(vxw64, vxw65, cfb) new_ltEs21(vxw74, vxw76, app(ty_Maybe, bff)) -> new_ltEs8(vxw74, vxw76, bff) new_esEs36(vxw46, vxw49, app(app(app(ty_@3, cae), caf), cag)) -> new_esEs20(vxw46, vxw49, cae, caf, cag) new_esEs28(vxw240, vxw250, ty_@0) -> new_esEs22(vxw240, vxw250) new_ltEs4(Left(vxw240), Left(vxw250), ty_@0, bcc) -> new_ltEs15(vxw240, vxw250) new_ltEs8(Just(vxw240), Just(vxw250), app(ty_Maybe, cf)) -> new_ltEs8(vxw240, vxw250, cf) new_compare27(vxw73, vxw74, vxw75, vxw76, True, bfd, bgf) -> EQ new_esEs29(vxw241, vxw251, ty_Double) -> new_esEs23(vxw241, vxw251) new_lt20(vxw240, vxw250, app(ty_Maybe, ea)) -> new_lt14(vxw240, vxw250, ea) new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False new_esEs35(vxw302, vxw4002, ty_Double) -> new_esEs23(vxw302, vxw4002) new_ltEs18(vxw64, vxw65, ty_@0) -> new_ltEs15(vxw64, vxw65) new_ltEs8(Nothing, Just(vxw250), ebh) -> True new_esEs10(vxw30, vxw400, app(app(ty_@2, ffg), ffh)) -> new_esEs15(vxw30, vxw400, ffg, ffh) new_esEs10(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_esEs9(vxw32, vxw402, ty_Bool) -> new_esEs19(vxw32, vxw402) new_esEs29(vxw241, vxw251, app(app(ty_Either, bag), bah)) -> new_esEs13(vxw241, vxw251, bag, bah) new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_ltEs24(vxw24, vxw25, app(app(ty_@2, fa), dh)) -> new_ltEs9(vxw24, vxw25, fa, dh) new_ltEs10(GT, GT) -> True new_esEs13(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, cgg), cgh), cha), cgc) -> new_esEs20(vxw300, vxw4000, cgg, cgh, cha) new_ltEs24(vxw24, vxw25, ty_@0) -> new_ltEs15(vxw24, vxw25) new_ltEs18(vxw64, vxw65, app(app(ty_@2, cfd), cfe)) -> new_ltEs9(vxw64, vxw65, cfd, cfe) new_esEs34(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_compare26(vxw64, vxw65, False, cfa, ebd) -> new_compare11(vxw64, vxw65, new_ltEs18(vxw64, vxw65, ebd), cfa, ebd) new_esEs4(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_ltEs4(Left(vxw240), Left(vxw250), app(app(ty_Either, bdb), bdc), bcc) -> new_ltEs4(vxw240, vxw250, bdb, bdc) new_ltEs21(vxw74, vxw76, app(ty_Ratio, faf)) -> new_ltEs14(vxw74, vxw76, faf) new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs5(vxw30, vxw400, app(ty_Maybe, eda)) -> new_esEs25(vxw30, vxw400, eda) new_esEs11(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_ltEs4(Right(vxw240), Right(vxw250), bdd, ty_Double) -> new_ltEs16(vxw240, vxw250) new_esEs33(vxw300, vxw4000, app(ty_[], fbh)) -> new_esEs24(vxw300, vxw4000, fbh) new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False new_esEs9(vxw32, vxw402, ty_Char) -> new_esEs18(vxw32, vxw402) new_primCmpInt(Neg(Zero), Neg(Succ(vxw4000))) -> new_primCmpNat0(Succ(vxw4000), Zero) new_lt9(vxw240, vxw250, ty_Integer) -> new_lt12(vxw240, vxw250) new_lt22(vxw46, vxw49, ty_Float) -> new_lt6(vxw46, vxw49) new_lt21(vxw73, vxw75, app(app(ty_@2, beh), bfa)) -> new_lt7(vxw73, vxw75, beh, bfa) new_lt21(vxw73, vxw75, ty_Bool) -> new_lt4(vxw73, vxw75) new_compare6(Left(vxw30), Left(vxw400), cde, cdf) -> new_compare210(vxw30, vxw400, new_esEs10(vxw30, vxw400, cde), cde, cdf) new_ltEs4(Left(vxw240), Left(vxw250), app(app(ty_@2, bce), bcf), bcc) -> new_ltEs9(vxw240, vxw250, bce, bcf) new_compare10(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, False, dfa, dfb, dfc) -> GT new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs10(LT, EQ) -> True new_lt20(vxw240, vxw250, ty_Ordering) -> new_lt15(vxw240, vxw250) new_esEs28(vxw240, vxw250, ty_Float) -> new_esEs14(vxw240, vxw250) new_esEs4(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_ltEs23(vxw48, vxw51, app(ty_Maybe, cce)) -> new_ltEs8(vxw48, vxw51, cce) new_ltEs23(vxw48, vxw51, app(app(app(ty_@3, cch), cda), cdb)) -> new_ltEs11(vxw48, vxw51, cch, cda, cdb) new_ltEs17(True, False) -> False new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_lt10(vxw241, vxw251, app(app(ty_Either, bag), bah)) -> new_lt5(vxw241, vxw251, bag, bah) new_compare18(vxw30, vxw400, ty_Char) -> new_compare19(vxw30, vxw400) new_ltEs18(vxw64, vxw65, ty_Int) -> new_ltEs12(vxw64, vxw65) new_esEs24(:(vxw300, vxw301), :(vxw4000, vxw4001), efe) -> new_asAs(new_esEs31(vxw300, vxw4000, efe), new_esEs24(vxw301, vxw4001, efe)) new_esEs27(vxw301, vxw4001, app(ty_[], ddc)) -> new_esEs24(vxw301, vxw4001, ddc) new_esEs31(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_ltEs7(vxw24, vxw25, cd) -> new_fsEs(new_compare0(vxw24, vxw25, cd)) new_lt23(vxw47, vxw50, ty_Double) -> new_lt19(vxw47, vxw50) new_ltEs17(False, True) -> True new_esEs26(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_lt23(vxw47, vxw50, app(ty_Ratio, ffd)) -> new_lt17(vxw47, vxw50, ffd) new_ltEs4(Right(vxw240), Right(vxw250), bdd, ty_Char) -> new_ltEs5(vxw240, vxw250) new_esEs4(vxw30, vxw400, app(ty_Maybe, ehc)) -> new_esEs25(vxw30, vxw400, ehc) new_ltEs21(vxw74, vxw76, app(app(ty_Either, bgd), bge)) -> new_ltEs4(vxw74, vxw76, bgd, bge) new_ltEs20(vxw241, vxw251, ty_Integer) -> new_ltEs6(vxw241, vxw251) new_esEs36(vxw46, vxw49, ty_Float) -> new_esEs14(vxw46, vxw49) new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_compare16(Integer(vxw30), Integer(vxw400)) -> new_primCmpInt(vxw30, vxw400) new_ltEs4(Right(vxw240), Right(vxw250), bdd, ty_Int) -> new_ltEs12(vxw240, vxw250) new_compare10(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, dfa, dfb, dfc) -> LT new_ltEs19(vxw242, vxw252, app(ty_[], bba)) -> new_ltEs7(vxw242, vxw252, bba) new_lt20(vxw240, vxw250, app(app(app(ty_@3, ed), ee), ef)) -> new_lt16(vxw240, vxw250, ed, ee, ef) new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_not(False) -> True new_ltEs23(vxw48, vxw51, app(app(ty_Either, cdc), cdd)) -> new_ltEs4(vxw48, vxw51, cdc, cdd) new_esEs28(vxw240, vxw250, ty_Ordering) -> new_esEs12(vxw240, vxw250) new_esEs35(vxw302, vxw4002, app(ty_[], fed)) -> new_esEs24(vxw302, vxw4002, fed) new_esEs37(vxw47, vxw50, ty_Bool) -> new_esEs19(vxw47, vxw50) new_esEs25(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs13(Left(vxw300), Left(vxw4000), ty_Ordering, cgc) -> new_esEs12(vxw300, vxw4000) new_lt9(vxw240, vxw250, app(app(ty_@2, gh), ha)) -> new_lt7(vxw240, vxw250, gh, ha) new_esEs5(vxw30, vxw400, app(ty_Ratio, ecd)) -> new_esEs17(vxw30, vxw400, ecd) new_ltEs6(vxw24, vxw25) -> new_fsEs(new_compare16(vxw24, vxw25)) new_compare0(:(vxw30, vxw31), [], ba) -> GT new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs16(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) new_esEs32(vxw73, vxw75, app(ty_Ratio, efa)) -> new_esEs17(vxw73, vxw75, efa) new_ltEs10(EQ, GT) -> True new_esEs4(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_esEs15(@2(vxw300, vxw301), @2(vxw4000, vxw4001), dba, dbb) -> new_asAs(new_esEs26(vxw300, vxw4000, dba), new_esEs27(vxw301, vxw4001, dbb)) new_esEs11(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_ltEs20(vxw241, vxw251, app(ty_[], fb)) -> new_ltEs7(vxw241, vxw251, fb) new_compare18(vxw30, vxw400, ty_Int) -> new_compare12(vxw30, vxw400) new_esEs32(vxw73, vxw75, app(app(ty_Either, bhb), bhc)) -> new_esEs13(vxw73, vxw75, bhb, bhc) new_ltEs24(vxw24, vxw25, ty_Bool) -> new_ltEs17(vxw24, vxw25) new_ltEs20(vxw241, vxw251, app(ty_Ratio, efd)) -> new_ltEs14(vxw241, vxw251, efd) new_esEs37(vxw47, vxw50, app(ty_[], cbc)) -> new_esEs24(vxw47, vxw50, cbc) new_ltEs4(Left(vxw240), Right(vxw250), bdd, bcc) -> True new_esEs34(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_compare113(vxw96, vxw97, False, fff) -> GT new_ltEs10(EQ, EQ) -> True new_compare110(vxw123, vxw124, vxw125, vxw126, False, eha, ehb) -> GT new_esEs7(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_primPlusNat0(Succ(vxw1530), vxw40100) -> Succ(Succ(new_primPlusNat1(vxw1530, vxw40100))) new_lt20(vxw240, vxw250, ty_Int) -> new_lt8(vxw240, vxw250) new_compare11(vxw113, vxw114, True, fhb, fhc) -> LT new_ltEs4(Left(vxw240), Left(vxw250), ty_Bool, bcc) -> new_ltEs17(vxw240, vxw250) new_ltEs4(Right(vxw240), Right(vxw250), bdd, app(ty_[], bde)) -> new_ltEs7(vxw240, vxw250, bde) new_lt10(vxw241, vxw251, ty_Double) -> new_lt19(vxw241, vxw251) new_lt18(vxw73, vxw75) -> new_esEs12(new_compare29(vxw73, vxw75), LT) new_esEs8(vxw31, vxw401, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs20(vxw31, vxw401, dhc, dhd, dhe) new_esEs36(vxw46, vxw49, app(ty_Maybe, cab)) -> new_esEs25(vxw46, vxw49, cab) new_ltEs19(vxw242, vxw252, app(ty_Ratio, eeh)) -> new_ltEs14(vxw242, vxw252, eeh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs35(vxw302, vxw4002, ty_Char) -> new_esEs18(vxw302, vxw4002) new_esEs35(vxw302, vxw4002, app(app(app(ty_@3, fea), feb), fec)) -> new_esEs20(vxw302, vxw4002, fea, feb, fec) new_ltEs15(vxw24, vxw25) -> new_fsEs(new_compare29(vxw24, vxw25)) new_compare0(:(vxw30, vxw31), :(vxw400, vxw401), ba) -> new_primCompAux0(vxw30, vxw400, new_compare0(vxw31, vxw401, ba), ba) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs8(Just(vxw240), Just(vxw250), ty_Float) -> new_ltEs13(vxw240, vxw250) new_ltEs23(vxw48, vxw51, app(ty_[], ccd)) -> new_ltEs7(vxw48, vxw51, ccd) new_esEs13(Right(vxw300), Right(vxw4000), chf, app(app(ty_Either, dag), dah)) -> new_esEs13(vxw300, vxw4000, dag, dah) new_esEs7(vxw30, vxw400, app(app(ty_Either, dgf), dgg)) -> new_esEs13(vxw30, vxw400, dgf, dgg) new_esEs35(vxw302, vxw4002, ty_Bool) -> new_esEs19(vxw302, vxw4002) new_esEs34(vxw301, vxw4001, app(app(ty_Either, fdd), fde)) -> new_esEs13(vxw301, vxw4001, fdd, fde) new_lt5(vxw73, vxw75, bhb, bhc) -> new_esEs12(new_compare6(vxw73, vxw75, bhb, bhc), LT) new_esEs32(vxw73, vxw75, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs20(vxw73, vxw75, bgg, bgh, bha) new_esEs7(vxw30, vxw400, app(ty_Ratio, dfh)) -> new_esEs17(vxw30, vxw400, dfh) new_compare18(vxw30, vxw400, app(app(ty_@2, bd), be)) -> new_compare8(vxw30, vxw400, bd, be) new_esEs28(vxw240, vxw250, app(ty_Ratio, eef)) -> new_esEs17(vxw240, vxw250, eef) new_esEs10(vxw30, vxw400, app(app(app(ty_@3, fgb), fgc), fgd)) -> new_esEs20(vxw30, vxw400, fgb, fgc, fgd) new_esEs26(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs11(vxw30, vxw400, app(app(ty_Either, deg), deh)) -> new_esEs13(vxw30, vxw400, deg, deh) new_ltEs19(vxw242, vxw252, app(app(ty_Either, bbh), bca)) -> new_ltEs4(vxw242, vxw252, bbh, bca) new_compare18(vxw30, vxw400, ty_Double) -> new_compare15(vxw30, vxw400) new_ltEs22(vxw57, vxw58, ty_Char) -> new_ltEs5(vxw57, vxw58) new_lt11(vxw73, vxw75) -> new_esEs12(new_compare19(vxw73, vxw75), LT) new_esEs5(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_ltEs11(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, gf) -> new_pePe(new_lt9(vxw240, vxw250, hg), new_asAs(new_esEs28(vxw240, vxw250, hg), new_pePe(new_lt10(vxw241, vxw251, ge), new_asAs(new_esEs29(vxw241, vxw251, ge), new_ltEs19(vxw242, vxw252, gf))))) new_esEs23(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs21(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(vxw57, vxw58, app(ty_[], cdg)) -> new_ltEs7(vxw57, vxw58, cdg) new_ltEs21(vxw74, vxw76, ty_Ordering) -> new_ltEs10(vxw74, vxw76) new_primMulNat0(Succ(vxw3000), Succ(vxw40100)) -> new_primPlusNat0(new_primMulNat0(vxw3000, Succ(vxw40100)), vxw40100) new_esEs13(Left(vxw300), Left(vxw4000), ty_Int, cgc) -> new_esEs21(vxw300, vxw4000) new_esEs25(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs13(Left(vxw300), Left(vxw4000), app(ty_[], chb), cgc) -> new_esEs24(vxw300, vxw4000, chb) new_esEs33(vxw300, vxw4000, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_esEs20(vxw300, vxw4000, fbe, fbf, fbg) new_esEs37(vxw47, vxw50, ty_@0) -> new_esEs22(vxw47, vxw50) new_esEs8(vxw31, vxw401, app(app(ty_Either, dhh), eaa)) -> new_esEs13(vxw31, vxw401, dhh, eaa) new_primCmpNat0(Succ(vxw300), Succ(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) new_esEs35(vxw302, vxw4002, app(app(ty_@2, fdf), fdg)) -> new_esEs15(vxw302, vxw4002, fdf, fdg) new_ltEs23(vxw48, vxw51, ty_Integer) -> new_ltEs6(vxw48, vxw51) new_compare7(Float(vxw30, Pos(vxw310)), Float(vxw400, Neg(vxw4010))) -> new_compare12(new_sr(vxw30, Pos(vxw4010)), new_sr(Neg(vxw310), vxw400)) new_compare7(Float(vxw30, Neg(vxw310)), Float(vxw400, Pos(vxw4010))) -> new_compare12(new_sr(vxw30, Neg(vxw4010)), new_sr(Pos(vxw310), vxw400)) new_esEs13(Right(vxw300), Right(vxw4000), chf, app(ty_Ratio, daa)) -> new_esEs17(vxw300, vxw4000, daa) new_ltEs8(Nothing, Nothing, ebh) -> True new_compare110(vxw123, vxw124, vxw125, vxw126, True, eha, ehb) -> LT new_esEs11(vxw30, vxw400, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs20(vxw30, vxw400, deb, dec, ded) new_esEs13(Right(vxw300), Right(vxw4000), chf, ty_Double) -> new_esEs23(vxw300, vxw4000) new_ltEs8(Just(vxw240), Nothing, ebh) -> False new_lt10(vxw241, vxw251, ty_@0) -> new_lt18(vxw241, vxw251) new_esEs9(vxw32, vxw402, app(app(ty_Either, ebb), ebc)) -> new_esEs13(vxw32, vxw402, ebb, ebc) new_esEs31(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs37(vxw47, vxw50, ty_Double) -> new_esEs23(vxw47, vxw50) new_esEs27(vxw301, vxw4001, app(ty_Maybe, ddd)) -> new_esEs25(vxw301, vxw4001, ddd) new_ltEs21(vxw74, vxw76, app(ty_[], bfe)) -> new_ltEs7(vxw74, vxw76, bfe) new_ltEs12(vxw24, vxw25) -> new_fsEs(new_compare12(vxw24, vxw25)) new_compare12(vxw3, vxw40) -> new_primCmpInt(vxw3, vxw40) new_esEs13(Right(vxw300), Right(vxw4000), chf, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs36(vxw46, vxw49, ty_Integer) -> new_esEs16(vxw46, vxw49) new_esEs29(vxw241, vxw251, ty_Int) -> new_esEs21(vxw241, vxw251) new_esEs34(vxw301, vxw4001, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs20(vxw301, vxw4001, fcg, fch, fda) new_esEs37(vxw47, vxw50, ty_Char) -> new_esEs18(vxw47, vxw50) new_esEs36(vxw46, vxw49, ty_@0) -> new_esEs22(vxw46, vxw49) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt21(vxw73, vxw75, app(app(ty_Either, bhb), bhc)) -> new_lt5(vxw73, vxw75, bhb, bhc) new_lt23(vxw47, vxw50, app(app(ty_@2, cbe), cbf)) -> new_lt7(vxw47, vxw50, cbe, cbf) new_ltEs4(Right(vxw240), Right(vxw250), bdd, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs11(vxw240, vxw250, bea, beb, bec) new_compare13(LT, GT) -> LT new_esEs9(vxw32, vxw402, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs20(vxw32, vxw402, eae, eaf, eag) new_esEs25(Nothing, Nothing, ehc) -> True new_primEqNat0(Zero, Zero) -> True new_esEs25(Just(vxw300), Just(vxw4000), app(ty_Ratio, ehf)) -> new_esEs17(vxw300, vxw4000, ehf) new_esEs37(vxw47, vxw50, app(ty_Maybe, cbd)) -> new_esEs25(vxw47, vxw50, cbd) new_ltEs18(vxw64, vxw65, app(ty_Ratio, ebe)) -> new_ltEs14(vxw64, vxw65, ebe) new_ltEs21(vxw74, vxw76, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs11(vxw74, vxw76, bga, bgb, bgc) new_ltEs16(vxw24, vxw25) -> new_fsEs(new_compare15(vxw24, vxw25)) new_esEs25(Nothing, Just(vxw4000), ehc) -> False new_esEs25(Just(vxw300), Nothing, ehc) -> False new_esEs36(vxw46, vxw49, ty_Char) -> new_esEs18(vxw46, vxw49) new_esEs6(vxw31, vxw401, ty_Int) -> new_esEs21(vxw31, vxw401) new_ltEs14(vxw24, vxw25, efb) -> new_fsEs(new_compare17(vxw24, vxw25, efb)) new_esEs35(vxw302, vxw4002, ty_Integer) -> new_esEs16(vxw302, vxw4002) new_esEs36(vxw46, vxw49, ty_Bool) -> new_esEs19(vxw46, vxw49) new_ltEs8(Just(vxw240), Just(vxw250), ty_Bool) -> new_ltEs17(vxw240, vxw250) new_lt20(vxw240, vxw250, app(app(ty_Either, eg), eh)) -> new_lt5(vxw240, vxw250, eg, eh) new_compare14(vxw103, vxw104, False, ebf, ebg) -> GT new_esEs30(vxw240, vxw250, ty_Ordering) -> new_esEs12(vxw240, vxw250) new_ltEs17(True, True) -> True new_esEs26(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs29(vxw241, vxw251, app(ty_Ratio, eeg)) -> new_esEs17(vxw241, vxw251, eeg) new_ltEs10(LT, GT) -> True new_lt9(vxw240, vxw250, ty_Float) -> new_lt6(vxw240, vxw250) new_ltEs8(Just(vxw240), Just(vxw250), ty_@0) -> new_ltEs15(vxw240, vxw250) new_asAs(False, vxw91) -> False new_ltEs22(vxw57, vxw58, ty_Integer) -> new_ltEs6(vxw57, vxw58) new_ltEs8(Just(vxw240), Just(vxw250), app(app(ty_@2, cg), da)) -> new_ltEs9(vxw240, vxw250, cg, da) new_esEs30(vxw240, vxw250, app(ty_Ratio, efc)) -> new_esEs17(vxw240, vxw250, efc) new_ltEs4(Left(vxw240), Left(vxw250), app(ty_Ratio, dfd), bcc) -> new_ltEs14(vxw240, vxw250, dfd) new_compare15(Double(vxw30, Pos(vxw310)), Double(vxw400, Neg(vxw4010))) -> new_compare12(new_sr(vxw30, Pos(vxw4010)), new_sr(Neg(vxw310), vxw400)) new_compare15(Double(vxw30, Neg(vxw310)), Double(vxw400, Pos(vxw4010))) -> new_compare12(new_sr(vxw30, Neg(vxw4010)), new_sr(Pos(vxw310), vxw400)) new_ltEs21(vxw74, vxw76, ty_Char) -> new_ltEs5(vxw74, vxw76) new_esEs14(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs21(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_lt22(vxw46, vxw49, ty_@0) -> new_lt18(vxw46, vxw49) new_ltEs13(vxw24, vxw25) -> new_fsEs(new_compare7(vxw24, vxw25)) new_esEs10(vxw30, vxw400, app(app(ty_Either, fgg), fgh)) -> new_esEs13(vxw30, vxw400, fgg, fgh) new_esEs6(vxw31, vxw401, ty_Ordering) -> new_esEs12(vxw31, vxw401) new_esEs33(vxw300, vxw4000, app(app(ty_Either, fcb), fcc)) -> new_esEs13(vxw300, vxw4000, fcb, fcc) new_esEs30(vxw240, vxw250, ty_Int) -> new_esEs21(vxw240, vxw250) new_ltEs19(vxw242, vxw252, ty_Ordering) -> new_ltEs10(vxw242, vxw252) new_ltEs4(Right(vxw240), Left(vxw250), bdd, bcc) -> False new_ltEs20(vxw241, vxw251, ty_Ordering) -> new_ltEs10(vxw241, vxw251) new_esEs36(vxw46, vxw49, app(ty_[], bhg)) -> new_esEs24(vxw46, vxw49, bhg) new_lt16(vxw73, vxw75, bgg, bgh, bha) -> new_esEs12(new_compare9(vxw73, vxw75, bgg, bgh, bha), LT) new_compare25(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, caa) -> new_compare112(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, new_lt22(vxw46, vxw49, cbb), new_asAs(new_esEs36(vxw46, vxw49, cbb), new_pePe(new_lt23(vxw47, vxw50, bhh), new_asAs(new_esEs37(vxw47, vxw50, bhh), new_ltEs23(vxw48, vxw51, caa)))), cbb, bhh, caa) new_esEs36(vxw46, vxw49, app(app(ty_@2, cac), cad)) -> new_esEs15(vxw46, vxw49, cac, cad) new_esEs26(vxw300, vxw4000, app(ty_Maybe, dcb)) -> new_esEs25(vxw300, vxw4000, dcb) new_esEs37(vxw47, vxw50, ty_Float) -> new_esEs14(vxw47, vxw50) new_compare18(vxw30, vxw400, app(app(app(ty_@3, bf), bg), bh)) -> new_compare9(vxw30, vxw400, bf, bg, bh) new_ltEs4(Right(vxw240), Right(vxw250), bdd, app(ty_Maybe, bdf)) -> new_ltEs8(vxw240, vxw250, bdf) new_esEs13(Right(vxw300), Right(vxw4000), chf, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs19(True, True) -> True new_compare28(Nothing, Just(vxw400), cc) -> LT The set Q consists of the following terms: new_primCompAux00(x0, GT) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Integer) new_pePe(False, x0) new_esEs28(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_[], x2)) new_compare26(x0, x1, True, x2, x3) new_esEs7(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_esEs12(EQ, EQ) new_ltEs23(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs35(x0, x1, ty_Integer) new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_compare210(x0, x1, False, x2, x3) new_esEs20(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1) new_esEs29(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_Float) new_primPlusNat1(Zero, Zero) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_lt9(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Bool) new_ltEs10(LT, LT) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_lt8(x0, x1) new_esEs19(False, False) new_ltEs24(x0, x1, ty_Float) new_lt12(x0, x1) new_esEs13(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_Float) new_esEs9(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs19(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(@0, @0) new_lt9(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Integer) new_lt7(x0, x1, x2, x3) new_esEs10(x0, x1, app(ty_[], x2)) new_compare13(GT, LT) new_ltEs21(x0, x1, ty_Ordering) new_compare13(LT, GT) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Float) new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_asAs(True, x0) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs13(Left(x0), Left(x1), ty_Char, x2) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, ty_Float) new_lt9(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_primPlusNat1(Succ(x0), Zero) new_esEs7(x0, x1, ty_@0) new_esEs33(x0, x1, ty_@0) new_lt9(x0, x1, ty_Ordering) new_lt4(x0, x1) new_esEs11(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs5(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Float) new_compare0([], [], x0) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs14(x0, x1, x2) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_ltEs20(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt10(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Float) new_ltEs10(GT, EQ) new_ltEs10(EQ, GT) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_@0) new_lt22(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs17(True, True) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_esEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs5(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_@0) new_asAs(False, x0) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_[], x2)) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt22(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_@0) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs36(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_lt10(x0, x1, ty_@0) new_esEs22(@0, @0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs15(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Bool) new_lt10(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Zero) new_lt10(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs31(x0, x1, ty_Int) new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt10(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_primPlusNat1(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Char) new_esEs21(x0, x1) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs37(x0, x1, ty_Int) new_ltEs8(Nothing, Nothing, x0) new_ltEs10(EQ, LT) new_ltEs10(GT, GT) new_ltEs10(LT, EQ) new_esEs11(x0, x1, ty_Char) new_compare26(x0, x1, False, x2, x3) new_esEs33(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Ordering) new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs37(x0, x1, ty_Char) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Double(x0, x1), Double(x2, x3)) new_compare28(Nothing, Just(x0), x1) new_esEs7(x0, x1, ty_Char) new_esEs13(Right(x0), Right(x1), x2, ty_Float) new_esEs29(x0, x1, ty_Ordering) new_compare6(Left(x0), Left(x1), x2, x3) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_esEs25(Just(x0), Just(x1), ty_Double) new_primPlusNat0(Zero, x0) new_esEs30(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs12(GT, GT) new_compare210(x0, x1, True, x2, x3) new_esEs34(x0, x1, ty_Double) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt10(x0, x1, ty_Integer) new_esEs24(:(x0, x1), [], x2) new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs7(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Ordering) new_esEs16(Integer(x0), Integer(x1)) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Float) new_lt22(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(True, True) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs19(False, True) new_esEs19(True, False) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs35(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs8(x0, x1, ty_Int) new_esEs25(Nothing, Nothing, x0) new_lt21(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs13(Right(x0), Right(x1), x2, ty_Int) new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs4(x0, x1, ty_@0) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Ordering) new_primPlusNat0(Succ(x0), x1) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs10(x0, x1, ty_Double) new_lt13(x0, x1, x2) new_ltEs24(x0, x1, ty_Int) new_lt10(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Double) new_esEs13(Left(x0), Left(x1), ty_Bool, x2) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_compare110(x0, x1, x2, x3, False, x4, x5) new_ltEs22(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs13(Left(x0), Right(x1), x2, x3) new_esEs13(Right(x0), Left(x1), x2, x3) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Ordering) new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs25(Nothing, Just(x0), x1) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Int) new_fsEs(x0) new_esEs39(x0, x1, ty_Integer) new_lt15(x0, x1) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_compare28(Just(x0), Just(x1), x2) new_esEs8(x0, x1, ty_Float) new_ltEs17(True, False) new_ltEs17(False, True) new_ltEs22(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Double) new_esEs5(x0, x1, app(ty_[], x2)) new_compare13(EQ, GT) new_compare13(GT, EQ) new_esEs31(x0, x1, ty_Integer) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(:(x0, x1), [], x2) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Bool) new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs36(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Double) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs22(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2) new_esEs37(x0, x1, ty_Float) new_esEs13(Left(x0), Left(x1), ty_Integer, x2) new_esEs6(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs35(x0, x1, ty_Bool) new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare211(x0, x1, False, x2) new_ltEs24(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Double) new_esEs25(Just(x0), Nothing, x1) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Bool) new_esEs24([], :(x0, x1), x2) new_esEs27(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs13(Right(x0), Right(x1), x2, ty_@0) new_compare18(x0, x1, ty_Double) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Just(x0), Just(x1), ty_Bool) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs16(x0, x1) new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primMulNat0(Zero, Zero) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Integer) new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Int) new_lt23(x0, x1, ty_Char) new_ltEs7(x0, x1, x2) new_compare18(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_[], x2)) new_compare113(x0, x1, False, x2) new_esEs13(Right(x0), Right(x1), x2, ty_Bool) new_ltEs18(x0, x1, ty_Integer) new_ltEs10(EQ, EQ) new_compare18(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Float) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Just(x0), Just(x1), ty_Integer) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(GT, GT) new_lt23(x0, x1, ty_Int) new_compare13(LT, EQ) new_compare13(EQ, LT) new_esEs4(x0, x1, ty_Integer) new_compare211(x0, x1, True, x2) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Int) new_ltEs6(x0, x1) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs25(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_lt22(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Ordering) new_compare6(Right(x0), Right(x1), x2, x3) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs13(Right(x0), Right(x1), x2, ty_Char) new_ltEs22(x0, x1, ty_@0) new_lt23(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_@0) new_lt16(x0, x1, x2, x3, x4) new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs8(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Float) new_lt23(x0, x1, ty_Double) new_not(True) new_esEs5(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs10(GT, LT) new_esEs13(Right(x0), Right(x1), x2, ty_Integer) new_ltEs10(LT, GT) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs13(Left(x0), Left(x1), ty_Float, x2) new_compare6(Left(x0), Right(x1), x2, x3) new_compare6(Right(x0), Left(x1), x2, x3) new_primCompAux00(x0, EQ) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_primCompAux00(x0, LT) new_lt14(x0, x1, x2) new_lt10(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Nothing, x1) new_lt23(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Double) new_esEs32(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare13(LT, LT) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, ty_Integer) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Double) new_esEs12(LT, LT) new_esEs39(x0, x1, ty_Int) new_compare111(x0, x1, x2, x3, True, x4, x5, x6) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs19(True, True) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt11(x0, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare5(False, True) new_compare5(True, False) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_compare13(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare18(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs25(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(x0, x1) new_esEs25(Just(x0), Just(x1), ty_Float) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs8(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Float) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(ty_Maybe, x2)) new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs33(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Ordering) new_compare27(x0, x1, x2, x3, False, x4, x5) new_primCmpNat0(Zero, Succ(x0)) new_compare111(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs22(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Float) new_lt5(x0, x1, x2, x3) new_ltEs21(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs30(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(Integer(x0), Integer(x1)) new_ltEs24(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Char) new_esEs14(Float(x0, x1), Float(x2, x3)) new_primMulNat0(Succ(x0), Zero) new_esEs33(x0, x1, ty_Ordering) new_esEs25(Just(x0), Just(x1), ty_Int) new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) new_compare18(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Int) new_esEs24([], [], x0) new_esEs4(x0, x1, ty_Int) new_compare5(False, False) new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare28(Nothing, Nothing, x0) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs13(Right(x0), Right(x1), x2, ty_Double) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Integer) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs4(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_compare9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt19(x0, x1) new_esEs13(Left(x0), Left(x1), ty_Double, x2) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs35(x0, x1, ty_@0) new_lt18(x0, x1) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt17(x0, x1, x2) new_esEs6(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Float) new_not(False) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Integer) new_ltEs17(False, False) new_esEs10(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Double) new_compare18(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs25(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs10(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Double) new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(x0, x1) new_ltEs8(Just(x0), Just(x1), ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs21(x0, x1, ty_Bool) new_compare19(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Double) new_esEs18(Char(x0), Char(x1)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, ty_@0) new_lt21(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Char) new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs28(x0, x1, ty_Int) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Int) new_ltEs5(x0, x1) new_compare11(x0, x1, True, x2, x3) new_esEs9(x0, x1, ty_Bool) new_compare18(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Int) new_primCmpNat0(Zero, Zero) new_sr(x0, x1) new_compare28(Just(x0), Nothing, x1) new_esEs30(x0, x1, ty_Char) new_esEs24(:(x0, x1), :(x2, x3), x4) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 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_ltEs0(Just(vxw240), Just(vxw250), app(ty_[], ce)) -> new_ltEs(vxw240, vxw250, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare3(@3(vxw30, vxw31, vxw32), @3(vxw400, vxw401, vxw402), bhd, bhe, bhf) -> new_compare22(vxw30, vxw31, vxw32, vxw400, vxw401, vxw402, new_asAs(new_esEs7(vxw30, vxw400, bhd), new_asAs(new_esEs8(vxw31, vxw401, bhe), new_esEs9(vxw32, vxw402, bhf))), bhd, bhe, bhf) 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_ltEs0(Just(vxw240), Just(vxw250), app(app(ty_@2, cg), da)) -> new_ltEs1(vxw240, vxw250, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt3(vxw73, vxw75, bhb, bhc) -> new_compare4(vxw73, vxw75, bhb, bhc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt(vxw73, vxw75, bef) -> new_compare(vxw73, vxw75, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare1(Just(vxw30), Just(vxw400), cc) -> new_compare20(vxw30, vxw400, new_esEs4(vxw30, vxw400, cc), cc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(Just(vxw240), Just(vxw250), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs2(vxw240, vxw250, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare(:(vxw30, vxw31), :(vxw400, vxw401), ba) -> new_primCompAux(vxw30, vxw400, new_compare0(vxw31, vxw401, ba), ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vxw30, vxw31), :(vxw400, vxw401), ba) -> new_compare(vxw31, vxw401, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(ty_[], fb)) -> new_ltEs(vxw241, vxw251, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(app(ty_@2, fd), ff)) -> new_ltEs1(vxw241, vxw251, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs2(vxw241, vxw251, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vxw30, vxw31), @2(vxw400, vxw401), bfb, bfc) -> new_compare21(vxw30, vxw31, vxw400, vxw401, new_asAs(new_esEs5(vxw30, vxw400, bfb), new_esEs6(vxw31, vxw401, bfc)), bfb, bfc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs0(Just(vxw240), Just(vxw250), app(app(ty_Either, de), df)) -> new_ltEs3(vxw240, vxw250, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Just(vxw240), Just(vxw250), app(ty_Maybe, cf)) -> new_ltEs0(vxw240, vxw250, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(app(ty_Either, gb), gc)) -> new_ltEs3(vxw241, vxw251, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(ty_[], bba)) -> new_ltEs(vxw242, vxw252, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(app(ty_@2, bbc), bbd)) -> new_ltEs1(vxw242, vxw252, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs2(vxw242, vxw252, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare4(Right(vxw30), Right(vxw400), cde, cdf) -> new_compare24(vxw30, vxw400, new_esEs11(vxw30, vxw400, cdf), cde, cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare4(Left(vxw30), Left(vxw400), cde, cdf) -> new_compare23(vxw30, vxw400, new_esEs10(vxw30, vxw400, cde), cde, cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(app(ty_Either, bbh), bca)) -> new_ltEs3(vxw242, vxw252, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(vxw24, vxw25, cd) -> new_compare(vxw24, vxw25, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(app(ty_@2, eb), ec), dh) -> new_lt1(vxw240, vxw250, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt1(vxw73, vxw75, beh, bfa) -> new_compare2(vxw73, vxw75, beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), fa, app(ty_Maybe, fc)) -> new_ltEs0(vxw241, vxw251, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, ge, app(ty_Maybe, bbb)) -> new_ltEs0(vxw242, vxw252, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_lt0(vxw73, vxw75, beg) -> new_compare1(vxw73, vxw75, beg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt2(vxw73, vxw75, bgg, bgh, bha) -> new_compare3(vxw73, vxw75, bgg, bgh, bha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(ty_Maybe, ea), dh) -> new_lt0(vxw240, vxw250, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(ty_[], ccd)) -> new_ltEs(vxw48, vxw51, ccd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(app(ty_@2, ccf), ccg)) -> new_ltEs1(vxw48, vxw51, ccf, ccg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(app(app(ty_@3, cch), cda), cdb)) -> new_ltEs2(vxw48, vxw51, cch, cda, cdb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(app(ty_Either, cdc), cdd)) -> new_ltEs3(vxw48, vxw51, cdc, cdd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, bhh, app(ty_Maybe, cce)) -> new_ltEs0(vxw48, vxw51, cce) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(ty_[], bfe)) -> new_ltEs(vxw74, vxw76, bfe) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(app(ty_@2, bfg), bfh)) -> new_ltEs1(vxw74, vxw76, bfg, bfh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs2(vxw74, vxw76, bga, bgb, bgc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(app(ty_Either, bgd), bge)) -> new_ltEs3(vxw74, vxw76, bgd, bge) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(ty_Maybe, beg), bgf) -> new_compare1(vxw73, vxw75, beg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_primCompAux(vxw30, vxw400, vxw14, app(ty_Maybe, bc)) -> new_compare1(vxw30, vxw400, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, bfd, app(ty_Maybe, bff)) -> new_ltEs0(vxw74, vxw76, bff) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(app(app(ty_@3, bgg), bgh), bha), bgf) -> new_compare3(vxw73, vxw75, bgg, bgh, bha) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_primCompAux(vxw30, vxw400, vxw14, app(app(app(ty_@3, bf), bg), bh)) -> new_compare3(vxw30, vxw400, bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(app(ty_@2, beh), bfa), bgf) -> new_compare2(vxw73, vxw75, beh, bfa) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(vxw30, vxw400, vxw14, app(app(ty_@2, bd), be)) -> new_compare2(vxw30, vxw400, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(ty_[], dg), dh) -> new_lt(vxw240, vxw250, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(vxw24, vxw25, False, app(ty_[], cd)) -> new_compare(vxw24, vxw25, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(ty_[], bef), bgf) -> new_compare(vxw73, vxw75, bef) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare21(vxw73, vxw74, vxw75, vxw76, False, app(app(ty_Either, bhb), bhc), bgf) -> new_compare4(vxw73, vxw75, bhb, bhc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(vxw30, vxw400, vxw14, app(ty_[], bb)) -> new_compare(vxw30, vxw400, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vxw30, vxw400, vxw14, app(app(ty_Either, ca), cb)) -> new_compare4(vxw30, vxw400, ca, cb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(vxw64, vxw65, False, cfa, app(ty_[], cfb)) -> new_ltEs(vxw64, vxw65, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(vxw57, vxw58, False, app(ty_[], cdg), cdh) -> new_ltEs(vxw57, vxw58, cdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare24(vxw64, vxw65, False, cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs1(vxw64, vxw65, cfd, cfe) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(vxw57, vxw58, False, app(app(ty_@2, ceb), cec), cdh) -> new_ltEs1(vxw57, vxw58, ceb, cec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(vxw64, vxw65, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(vxw64, vxw65, cff, cfg, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(vxw57, vxw58, False, app(app(app(ty_@3, ced), cee), cef), cdh) -> new_ltEs2(vxw57, vxw58, ced, cee, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(vxw64, vxw65, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(vxw64, vxw65, cga, cgb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(vxw57, vxw58, False, app(app(ty_Either, ceg), ceh), cdh) -> new_ltEs3(vxw57, vxw58, ceg, ceh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(vxw64, vxw65, False, cfa, app(ty_Maybe, cfc)) -> new_ltEs0(vxw64, vxw65, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(vxw57, vxw58, False, app(ty_Maybe, cea), cdh) -> new_ltEs0(vxw57, vxw58, cea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(app(app(ty_@3, ed), ee), ef), dh) -> new_lt2(vxw240, vxw250, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@2(vxw240, vxw241), @2(vxw250, vxw251), app(app(ty_Either, eg), eh), dh) -> new_lt3(vxw240, vxw250, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(ty_[], bde)) -> new_ltEs(vxw240, vxw250, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(vxw240), Left(vxw250), app(ty_[], bcb), bcc) -> new_ltEs(vxw240, vxw250, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(ty_[], ce))) -> new_ltEs(vxw240, vxw250, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(ty_[], bcb)), bcc)) -> new_ltEs(vxw240, vxw250, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(ty_[], fb))) -> new_ltEs(vxw241, vxw251, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(ty_[], bba))) -> new_ltEs(vxw242, vxw252, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(ty_[], bde))) -> new_ltEs(vxw240, vxw250, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(app(ty_@2, bdg), bdh)) -> new_ltEs1(vxw240, vxw250, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(vxw240), Left(vxw250), app(app(ty_@2, bce), bcf), bcc) -> new_ltEs1(vxw240, vxw250, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(app(ty_@2, bce), bcf)), bcc)) -> new_ltEs1(vxw240, vxw250, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(app(ty_@2, fd), ff))) -> new_ltEs1(vxw241, vxw251, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(app(ty_@2, bdg), bdh))) -> new_ltEs1(vxw240, vxw250, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(app(ty_@2, bbc), bbd))) -> new_ltEs1(vxw242, vxw252, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(app(ty_@2, cg), da))) -> new_ltEs1(vxw240, vxw250, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(vxw240), Left(vxw250), app(app(app(ty_@3, bcg), bch), bda), bcc) -> new_ltEs2(vxw240, vxw250, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs2(vxw240, vxw250, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(app(app(ty_@3, bea), beb), bec))) -> new_ltEs2(vxw240, vxw250, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(app(app(ty_@3, fg), fh), ga))) -> new_ltEs2(vxw241, vxw251, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(app(app(ty_@3, bcg), bch), bda)), bcc)) -> new_ltEs2(vxw240, vxw250, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(app(app(ty_@3, bbe), bbf), bbg))) -> new_ltEs2(vxw242, vxw252, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(app(app(ty_@3, db), dc), dd))) -> new_ltEs2(vxw240, vxw250, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(vxw240), Left(vxw250), app(app(ty_Either, bdb), bdc), bcc) -> new_ltEs3(vxw240, vxw250, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(app(ty_Either, bed), bee)) -> new_ltEs3(vxw240, vxw250, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(vxw240), Left(vxw250), app(ty_Maybe, bcd), bcc) -> new_ltEs0(vxw240, vxw250, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(vxw240), Right(vxw250), bdd, app(ty_Maybe, bdf)) -> new_ltEs0(vxw240, vxw250, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(app(ty_Either, bdb), bdc)), bcc)) -> new_ltEs3(vxw240, vxw250, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(app(ty_Either, de), df))) -> new_ltEs3(vxw240, vxw250, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(app(ty_Either, bbh), bca))) -> new_ltEs3(vxw242, vxw252, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(app(ty_Either, bed), bee))) -> new_ltEs3(vxw240, vxw250, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(app(ty_Either, gb), gc))) -> new_ltEs3(vxw241, vxw251, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(app(ty_@2, gh), ha), ge, gf) -> new_lt1(vxw240, vxw250, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(app(ty_@2, bab), bac), gf) -> new_lt1(vxw241, vxw251, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(ty_Maybe, baa), gf) -> new_lt0(vxw241, vxw251, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(ty_Maybe, gg), ge, gf) -> new_lt0(vxw240, vxw250, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(ty_[], hh), gf) -> new_lt(vxw241, vxw251, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(ty_[], gd), ge, gf) -> new_lt(vxw240, vxw250, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(app(app(ty_@3, hb), hc), hd), ge, gf) -> new_lt2(vxw240, vxw250, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(app(app(ty_@3, bad), bae), baf), gf) -> new_lt2(vxw241, vxw251, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), app(app(ty_Either, he), hf), ge, gf) -> new_lt3(vxw240, vxw250, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), hg, app(app(ty_Either, bag), bah), gf) -> new_lt3(vxw241, vxw251, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(app(ty_@2, eb), ec)), dh)) -> new_lt1(vxw240, vxw250, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(app(ty_@2, bab), bac)), gf)) -> new_lt1(vxw241, vxw251, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(app(ty_@2, gh), ha)), ge), gf)) -> new_lt1(vxw240, vxw250, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(app(ty_@2, cbe), cbf), caa) -> new_lt1(vxw47, vxw50, cbe, cbf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(app(ty_@2, cac), cad), bhh, caa) -> new_lt1(vxw46, vxw49, cac, cad) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(Just(vxw240), Just(vxw250), False, app(ty_Maybe, app(ty_Maybe, cf))) -> new_ltEs0(vxw240, vxw250, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vxw240), Left(vxw250), False, app(app(ty_Either, app(ty_Maybe, bcd)), bcc)) -> new_ltEs0(vxw240, vxw250, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), ge), app(ty_Maybe, bbb))) -> new_ltEs0(vxw242, vxw252, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vxw240), Right(vxw250), False, app(app(ty_Either, bdd), app(ty_Maybe, bdf))) -> new_ltEs0(vxw240, vxw250, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, fa), app(ty_Maybe, fc))) -> new_ltEs0(vxw241, vxw251, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(ty_Maybe, gg)), ge), gf)) -> new_lt0(vxw240, vxw250, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(ty_Maybe, baa)), gf)) -> new_lt0(vxw241, vxw251, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(ty_Maybe, ea)), dh)) -> new_lt0(vxw240, vxw250, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(ty_[], dg)), dh)) -> new_lt(vxw240, vxw250, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(ty_[], gd)), ge), gf)) -> new_lt(vxw240, vxw250, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(ty_[], hh)), gf)) -> new_lt(vxw241, vxw251, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(app(app(ty_@3, hb), hc), hd)), ge), gf)) -> new_lt2(vxw240, vxw250, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(app(app(ty_@3, bad), bae), baf)), gf)) -> new_lt2(vxw241, vxw251, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), dh)) -> new_lt2(vxw240, vxw250, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, app(app(ty_Either, he), hf)), ge), gf)) -> new_lt3(vxw240, vxw250, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), False, app(app(app(ty_@3, hg), app(app(ty_Either, bag), bah)), gf)) -> new_lt3(vxw241, vxw251, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vxw240, vxw241), @2(vxw250, vxw251), False, app(app(ty_@2, app(app(ty_Either, eg), eh)), dh)) -> new_lt3(vxw240, vxw250, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(ty_Maybe, cbd), caa) -> new_lt0(vxw47, vxw50, cbd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(ty_Maybe, cab), bhh, caa) -> new_lt0(vxw46, vxw49, cab) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(ty_[], cbc), caa) -> new_lt(vxw47, vxw50, cbc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(ty_[], bhg), bhh, caa) -> new_lt(vxw46, vxw49, bhg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(app(app(ty_@3, cae), caf), cag), bhh, caa) -> new_lt2(vxw46, vxw49, cae, caf, cag) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(app(app(ty_@3, cbg), cbh), cca), caa) -> new_lt2(vxw47, vxw50, cbg, cbh, cca) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, cbb, app(app(ty_Either, ccb), ccc), caa) -> new_lt3(vxw47, vxw50, ccb, ccc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare22(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, app(app(ty_Either, cah), cba), bhh, caa) -> new_lt3(vxw46, vxw49, cah, cba) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vxw3000), Succ(vxw40100)) -> new_primMulNat(vxw3000, Succ(vxw40100)) 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(vxw3000), Succ(vxw40100)) -> new_primMulNat(vxw3000, Succ(vxw40100)) 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_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(ty_[], db)) -> new_esEs1(vxw301, vxw4001, db) new_esEs2(Just(vxw300), Just(vxw4000), app(ty_[], bbd)) -> new_esEs1(vxw300, vxw4000, bbd) new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_Either, bch), bda), bcb) -> new_esEs3(vxw300, vxw4000, bch, bda) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(ty_Maybe, ga), ea) -> new_esEs2(vxw301, vxw4001, ga) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bac)) -> new_esEs2(vxw300, vxw4000, bac) new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_[], bdh)) -> new_esEs1(vxw300, vxw4000, bdh) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, ef), dh, ea) -> new_esEs2(vxw300, vxw4000, ef) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(app(ty_Either, gb), gc), ea) -> new_esEs3(vxw301, vxw4001, gb, gc) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(app(app(ty_@3, fd), ff), fg), ea) -> new_esEs0(vxw301, vxw4001, fd, ff, fg) new_esEs2(Just(vxw300), Just(vxw4000), app(app(ty_@2, bag), bah)) -> new_esEs(vxw300, vxw4000, bag, bah) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, ba), bb), bc) -> new_esEs(vxw300, vxw4000, ba, bb) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], bg), bc) -> new_esEs1(vxw300, vxw4000, bg) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(app(ty_@3, cf), cg), da)) -> new_esEs0(vxw301, vxw4001, cf, cg, da) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(ty_Maybe, dc)) -> new_esEs2(vxw301, vxw4001, dc) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, ca), cb), bc) -> new_esEs3(vxw300, vxw4000, ca, cb) new_esEs2(Just(vxw300), Just(vxw4000), app(ty_Maybe, bbe)) -> new_esEs2(vxw300, vxw4000, bbe) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, bad), bae)) -> new_esEs3(vxw300, vxw4000, bad, bae) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, df), dg), dh, ea) -> new_esEs(vxw300, vxw4000, df, dg) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, bh), bc) -> new_esEs2(vxw300, vxw4000, bh) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(app(ty_Either, hc), hd)) -> new_esEs3(vxw302, vxw4002, hc, hd) new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw300, vxw4000, beb, bec) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs0(vxw302, vxw4002, gf, gg, gh) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(ty_@2, cd), ce)) -> new_esEs(vxw301, vxw4001, cd, ce) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(ty_Maybe, hb)) -> new_esEs2(vxw302, vxw4002, hb) new_esEs2(Just(vxw300), Just(vxw4000), app(app(ty_Either, bbf), bbg)) -> new_esEs3(vxw300, vxw4000, bbf, bbg) new_esEs3(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bcc), bcd), bce), bcb) -> new_esEs0(vxw300, vxw4000, bcc, bcd, bce) new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_@2, bbh), bca), bcb) -> new_esEs(vxw300, vxw4000, bbh, bca) new_esEs3(Left(vxw300), Left(vxw4000), app(ty_Maybe, bcg), bcb) -> new_esEs2(vxw300, vxw4000, bcg) new_esEs3(Left(vxw300), Left(vxw4000), app(ty_[], bcf), bcb) -> new_esEs1(vxw300, vxw4000, bcf) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(ty_Either, dd), de)) -> new_esEs3(vxw301, vxw4001, dd, de) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, hg), hh), baa)) -> new_esEs0(vxw300, vxw4000, hg, hh, baa) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), baf) -> new_esEs1(vxw301, vxw4001, baf) new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs0(vxw300, vxw4000, bde, bdf, bdg) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, he), hf)) -> new_esEs(vxw300, vxw4000, he, hf) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(app(ty_@2, fb), fc), ea) -> new_esEs(vxw301, vxw4001, fb, fc) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(ty_[], fh), ea) -> new_esEs1(vxw301, vxw4001, fh) new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bab)) -> new_esEs1(vxw300, vxw4000, bab) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], ee), dh, ea) -> new_esEs1(vxw300, vxw4000, ee) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(app(ty_@2, gd), ge)) -> new_esEs(vxw302, vxw4002, gd, ge) new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, bd), be), bf), bc) -> new_esEs0(vxw300, vxw4000, bd, be, bf) new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_@2, bdc), bdd)) -> new_esEs(vxw300, vxw4000, bdc, bdd) new_esEs2(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(vxw300, vxw4000, bba, bbb, bbc) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, eb), ec), ed), dh, ea) -> new_esEs0(vxw300, vxw4000, eb, ec, ed) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, eg), eh), dh, ea) -> new_esEs3(vxw300, vxw4000, eg, eh) new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(ty_[], ha)) -> new_esEs1(vxw302, vxw4002, ha) new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_Maybe, bea)) -> new_esEs2(vxw300, vxw4000, bea) 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_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, he), hf)) -> new_esEs(vxw300, vxw4000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bac)) -> new_esEs2(vxw300, vxw4000, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, bad), bae)) -> new_esEs3(vxw300, vxw4000, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, hg), hh), baa)) -> new_esEs0(vxw300, vxw4000, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vxw300), Just(vxw4000), app(app(ty_@2, bag), bah)) -> new_esEs(vxw300, vxw4000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vxw300), Just(vxw4000), app(ty_Maybe, bbe)) -> new_esEs2(vxw300, vxw4000, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vxw300), Just(vxw4000), app(app(ty_Either, bbf), bbg)) -> new_esEs3(vxw300, vxw4000, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(vxw300, vxw4000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vxw300), Just(vxw4000), app(ty_[], bbd)) -> new_esEs1(vxw300, vxw4000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), baf) -> new_esEs1(vxw301, vxw4001, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bab)) -> new_esEs1(vxw300, vxw4000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_@2, bbh), bca), bcb) -> new_esEs(vxw300, vxw4000, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_@2, bdc), bdd)) -> new_esEs(vxw300, vxw4000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, df), dg), dh, ea) -> new_esEs(vxw300, vxw4000, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(app(ty_@2, fb), fc), ea) -> new_esEs(vxw301, vxw4001, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(app(ty_@2, gd), ge)) -> new_esEs(vxw302, vxw4002, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, ba), bb), bc) -> new_esEs(vxw300, vxw4000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(ty_@2, cd), ce)) -> new_esEs(vxw301, vxw4001, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vxw300), Left(vxw4000), app(ty_Maybe, bcg), bcb) -> new_esEs2(vxw300, vxw4000, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_Maybe, bea)) -> new_esEs2(vxw300, vxw4000, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(ty_Maybe, ga), ea) -> new_esEs2(vxw301, vxw4001, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, ef), dh, ea) -> new_esEs2(vxw300, vxw4000, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(ty_Maybe, hb)) -> new_esEs2(vxw302, vxw4002, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(ty_Maybe, dc)) -> new_esEs2(vxw301, vxw4001, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, bh), bc) -> new_esEs2(vxw300, vxw4000, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_Either, bch), bda), bcb) -> new_esEs3(vxw300, vxw4000, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw300, vxw4000, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bcc), bcd), bce), bcb) -> new_esEs0(vxw300, vxw4000, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs0(vxw300, vxw4000, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_[], bdh)) -> new_esEs1(vxw300, vxw4000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vxw300), Left(vxw4000), app(ty_[], bcf), bcb) -> new_esEs1(vxw300, vxw4000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(app(ty_Either, gb), gc), ea) -> new_esEs3(vxw301, vxw4001, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(app(ty_Either, hc), hd)) -> new_esEs3(vxw302, vxw4002, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, eg), eh), dh, ea) -> new_esEs3(vxw300, vxw4000, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, ca), cb), bc) -> new_esEs3(vxw300, vxw4000, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(ty_Either, dd), de)) -> new_esEs3(vxw301, vxw4001, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(app(app(ty_@3, fd), ff), fg), ea) -> new_esEs0(vxw301, vxw4001, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs0(vxw302, vxw4002, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, eb), ec), ed), dh, ea) -> new_esEs0(vxw300, vxw4000, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(app(ty_@3, cf), cg), da)) -> new_esEs0(vxw301, vxw4001, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, bd), be), bf), bc) -> new_esEs0(vxw300, vxw4000, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, app(ty_[], fh), ea) -> new_esEs1(vxw301, vxw4001, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], ee), dh, ea) -> new_esEs1(vxw300, vxw4000, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), fa, dh, app(ty_[], ha)) -> new_esEs1(vxw302, vxw4002, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(ty_[], db)) -> new_esEs1(vxw301, vxw4001, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], bg), bc) -> new_esEs1(vxw300, vxw4000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vxw15300), Succ(vxw401000)) -> new_primPlusNat(vxw15300, vxw401000) 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(vxw15300), Succ(vxw401000)) -> new_primPlusNat(vxw15300, vxw401000) 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_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES ---------------------------------------- (33) Obligation: Q DP problem: The TRS P consists of the following rules: new_insertBy(vxw3, :(vxw40, vxw41), bb) -> new_insertBy0(vxw40, vxw3, vxw41, new_compare30(vxw3, vxw40, bb), bb) new_insertBy0(vxw10, vxw11, vxw12, GT, ba) -> new_insertBy(vxw11, vxw12, ba) The TRS R consists of the following rules: new_esEs26(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs11(vxw30, vxw400, app(ty_[], fgh)) -> new_esEs24(vxw30, vxw400, fgh) new_esEs7(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_esEs30(vxw240, vxw250, app(ty_Maybe, dbe)) -> new_esEs25(vxw240, vxw250, dbe) new_pePe(True, vxw152) -> True new_esEs10(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_compare29(@0, @0) -> EQ new_esEs39(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs13(Right(vxw300), Right(vxw4000), cf, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_compare26(vxw64, vxw65, True, bgg, bgh) -> EQ new_esEs13(Right(vxw300), Right(vxw4000), cf, app(app(ty_@2, cg), da)) -> new_esEs15(vxw300, vxw4000, cg, da) new_esEs33(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_ltEs20(vxw241, vxw251, ty_Float) -> new_ltEs13(vxw241, vxw251) new_esEs11(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_esEs28(vxw240, vxw250, ty_Char) -> new_esEs18(vxw240, vxw250) new_ltEs24(vxw24, vxw25, app(ty_Maybe, caf)) -> new_ltEs8(vxw24, vxw25, caf) new_compare211(vxw24, vxw25, True, fhd) -> EQ new_lt21(vxw73, vxw75, app(app(app(ty_@3, eag), eah), eba)) -> new_lt16(vxw73, vxw75, eag, eah, eba) new_esEs35(vxw302, vxw4002, ty_Float) -> new_esEs14(vxw302, vxw4002) new_ltEs10(GT, LT) -> False new_esEs13(Right(vxw300), Right(vxw4000), cf, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs5(vxw30, vxw400, app(ty_[], cda)) -> new_esEs24(vxw30, vxw400, cda) new_esEs26(vxw300, vxw4000, app(app(ty_@2, ef), eg)) -> new_esEs15(vxw300, vxw4000, ef, eg) new_esEs35(vxw302, vxw4002, ty_@0) -> new_esEs22(vxw302, vxw4002) new_esEs36(vxw46, vxw49, ty_Double) -> new_esEs23(vxw46, vxw49) new_compare30(vxw3, vxw40, app(app(ty_Either, eae), eaf)) -> new_compare6(vxw3, vxw40, eae, eaf) new_lt20(vxw240, vxw250, ty_Integer) -> new_lt12(vxw240, vxw250) new_esEs13(Left(vxw300), Left(vxw4000), ty_Double, bc) -> new_esEs23(vxw300, vxw4000) new_ltEs20(vxw241, vxw251, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs11(vxw241, vxw251, ddb, ddc, ddd) new_compare18(vxw30, vxw400, ty_Integer) -> new_compare16(vxw30, vxw400) new_lt21(vxw73, vxw75, ty_Float) -> new_lt6(vxw73, vxw75) new_esEs34(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs31(vxw300, vxw4000, app(ty_Ratio, dec)) -> new_esEs17(vxw300, vxw4000, dec) new_ltEs10(EQ, LT) -> False new_lt20(vxw240, vxw250, app(ty_[], dbd)) -> new_lt13(vxw240, vxw250, dbd) new_esEs5(vxw30, vxw400, app(app(ty_@2, ccc), ccd)) -> new_esEs15(vxw30, vxw400, ccc, ccd) new_esEs26(vxw300, vxw4000, app(ty_[], fd)) -> new_esEs24(vxw300, vxw4000, fd) new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_ltEs19(vxw242, vxw252, ty_Char) -> new_ltEs5(vxw242, vxw252) new_compare25(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, True, faf, fag, fah) -> EQ new_ltEs22(vxw57, vxw58, app(app(ty_Either, fac), fad)) -> new_ltEs4(vxw57, vxw58, fac, fad) new_esEs10(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_esEs24([], [], ddh) -> True new_esEs13(Left(vxw300), Left(vxw4000), app(ty_Maybe, cc), bc) -> new_esEs25(vxw300, vxw4000, cc) new_not(True) -> False new_esEs35(vxw302, vxw4002, app(ty_Maybe, egf)) -> new_esEs25(vxw302, vxw4002, egf) new_ltEs22(vxw57, vxw58, ty_Bool) -> new_ltEs17(vxw57, vxw58) new_esEs33(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_primCompAux00(vxw18, LT) -> LT new_esEs13(Right(vxw300), Right(vxw4000), cf, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_compare30(vxw3, vxw40, ty_Integer) -> new_compare16(vxw3, vxw40) new_esEs28(vxw240, vxw250, app(ty_Maybe, cfc)) -> new_esEs25(vxw240, vxw250, cfc) new_esEs30(vxw240, vxw250, ty_Float) -> new_esEs14(vxw240, vxw250) new_lt22(vxw46, vxw49, app(app(ty_@2, fbc), fbd)) -> new_lt7(vxw46, vxw49, fbc, fbd) new_ltEs20(vxw241, vxw251, ty_Int) -> new_ltEs12(vxw241, vxw251) new_compare5(False, False) -> EQ new_esEs6(vxw31, vxw401, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs20(vxw31, vxw401, cdh, cea, ceb) new_esEs13(Left(vxw300), Left(vxw4000), app(app(ty_Either, cd), ce), bc) -> new_esEs13(vxw300, vxw4000, cd, ce) new_lt20(vxw240, vxw250, ty_Double) -> new_lt19(vxw240, vxw250) new_primEqNat0(Succ(vxw3000), Zero) -> False new_primEqNat0(Zero, Succ(vxw40000)) -> False new_esEs18(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) new_ltEs18(vxw64, vxw65, ty_Float) -> new_ltEs13(vxw64, vxw65) new_ltEs22(vxw57, vxw58, ty_Ordering) -> new_ltEs10(vxw57, vxw58) new_ltEs24(vxw24, vxw25, ty_Double) -> new_ltEs16(vxw24, vxw25) new_esEs8(vxw31, vxw401, ty_Int) -> new_esEs21(vxw31, vxw401) new_compare18(vxw30, vxw400, app(app(ty_Either, dgd), dge)) -> new_compare6(vxw30, vxw400, dgd, dge) new_esEs4(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_esEs11(vxw30, vxw400, app(app(ty_@2, fgb), fgc)) -> new_esEs15(vxw30, vxw400, fgb, fgc) new_ltEs23(vxw48, vxw51, ty_@0) -> new_ltEs15(vxw48, vxw51) new_ltEs4(Left(vxw240), Left(vxw250), ty_Char, hh) -> new_ltEs5(vxw240, vxw250) new_esEs33(vxw300, vxw4000, app(app(ty_@2, edc), edd)) -> new_esEs15(vxw300, vxw4000, edc, edd) new_esEs4(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_ltEs4(Left(vxw240), Left(vxw250), ty_Double, hh) -> new_ltEs16(vxw240, vxw250) new_ltEs18(vxw64, vxw65, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs11(vxw64, vxw65, bhe, bhf, bhg) new_esEs9(vxw32, vxw402, ty_@0) -> new_esEs22(vxw32, vxw402) new_esEs25(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs23(vxw300, vxw4000) new_compare13(LT, LT) -> EQ new_esEs19(False, False) -> True new_primCmpInt(Pos(Succ(vxw300)), Neg(vxw400)) -> GT new_esEs6(vxw31, vxw401, app(app(ty_Either, cee), cef)) -> new_esEs13(vxw31, vxw401, cee, cef) new_ltEs24(vxw24, vxw25, ty_Char) -> new_ltEs5(vxw24, vxw25) new_esEs28(vxw240, vxw250, ty_Bool) -> new_esEs19(vxw240, vxw250) new_compare13(GT, EQ) -> GT new_ltEs10(GT, EQ) -> False new_esEs8(vxw31, vxw401, app(ty_Ratio, bee)) -> new_esEs17(vxw31, vxw401, bee) new_esEs38(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_lt23(vxw47, vxw50, app(app(ty_Either, fdc), fdd)) -> new_lt5(vxw47, vxw50, fdc, fdd) new_primPlusNat1(Succ(vxw15300), Succ(vxw401000)) -> Succ(Succ(new_primPlusNat1(vxw15300, vxw401000))) new_esEs33(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_primCmpNat0(Zero, Succ(vxw4000)) -> LT new_lt19(vxw73, vxw75) -> new_esEs12(new_compare15(vxw73, vxw75), LT) new_compare18(vxw30, vxw400, app(ty_[], dfd)) -> new_compare0(vxw30, vxw400, dfd) new_esEs5(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_lt23(vxw47, vxw50, ty_Integer) -> new_lt12(vxw47, vxw50) new_esEs13(Right(vxw300), Right(vxw4000), cf, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_compare30(vxw3, vxw40, ty_@0) -> new_compare29(vxw3, vxw40) new_esEs33(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_ltEs4(Right(vxw240), Right(vxw250), bbc, ty_@0) -> new_ltEs15(vxw240, vxw250) new_esEs25(Just(vxw300), Just(vxw4000), app(app(ty_@2, dha), dhb)) -> new_esEs15(vxw300, vxw4000, dha, dhb) new_esEs9(vxw32, vxw402, ty_Float) -> new_esEs14(vxw32, vxw402) new_compare15(Double(vxw30, Neg(vxw310)), Double(vxw400, Neg(vxw4010))) -> new_compare12(new_sr(vxw30, Neg(vxw4010)), new_sr(Neg(vxw310), vxw400)) new_esEs5(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_esEs31(vxw300, vxw4000, app(app(ty_@2, dea), deb)) -> new_esEs15(vxw300, vxw4000, dea, deb) new_lt22(vxw46, vxw49, ty_Char) -> new_lt11(vxw46, vxw49) new_esEs37(vxw47, vxw50, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs20(vxw47, vxw50, fcg, fch, fda) new_esEs33(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_compare113(vxw96, vxw97, True, feg) -> LT new_ltEs19(vxw242, vxw252, ty_Double) -> new_ltEs16(vxw242, vxw252) new_compare6(Left(vxw30), Right(vxw400), eae, eaf) -> LT new_esEs32(vxw73, vxw75, ty_@0) -> new_esEs22(vxw73, vxw75) new_esEs29(vxw241, vxw251, app(ty_[], cgd)) -> new_esEs24(vxw241, vxw251, cgd) new_esEs10(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_esEs8(vxw31, vxw401, app(ty_[], bfa)) -> new_esEs24(vxw31, vxw401, bfa) new_esEs11(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_esEs26(vxw300, vxw4000, app(ty_Ratio, eh)) -> new_esEs17(vxw300, vxw4000, eh) new_esEs31(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_compare17(:%(vxw30, vxw31), :%(vxw400, vxw401), ty_Int) -> new_compare12(new_sr(vxw30, vxw401), new_sr(vxw400, vxw31)) new_esEs29(vxw241, vxw251, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs20(vxw241, vxw251, cgh, cha, chb) new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_esEs33(vxw300, vxw4000, app(ty_Maybe, eeb)) -> new_esEs25(vxw300, vxw4000, eeb) new_esEs37(vxw47, vxw50, app(app(ty_Either, fdc), fdd)) -> new_esEs13(vxw47, vxw50, fdc, fdd) new_primCmpInt(Neg(Zero), Pos(Succ(vxw4000))) -> LT new_esEs28(vxw240, vxw250, ty_Integer) -> new_esEs16(vxw240, vxw250) new_lt10(vxw241, vxw251, app(ty_Ratio, chc)) -> new_lt17(vxw241, vxw251, chc) new_esEs30(vxw240, vxw250, ty_@0) -> new_esEs22(vxw240, vxw250) new_ltEs22(vxw57, vxw58, ty_Int) -> new_ltEs12(vxw57, vxw58) new_esEs25(Just(vxw300), Just(vxw4000), app(ty_[], dhg)) -> new_esEs24(vxw300, vxw4000, dhg) new_lt23(vxw47, vxw50, app(ty_[], fcc)) -> new_lt13(vxw47, vxw50, fcc) new_esEs30(vxw240, vxw250, ty_Bool) -> new_esEs19(vxw240, vxw250) new_esEs7(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_primMulInt(Pos(vxw300), Pos(vxw4010)) -> Pos(new_primMulNat0(vxw300, vxw4010)) new_compare13(EQ, LT) -> GT new_esEs5(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_esEs26(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_lt22(vxw46, vxw49, ty_Int) -> new_lt8(vxw46, vxw49) new_ltEs19(vxw242, vxw252, app(ty_Maybe, chg)) -> new_ltEs8(vxw242, vxw252, chg) new_ltEs23(vxw48, vxw51, ty_Float) -> new_ltEs13(vxw48, vxw51) new_esEs11(vxw30, vxw400, app(ty_Ratio, fgd)) -> new_esEs17(vxw30, vxw400, fgd) new_primMulNat0(Succ(vxw3000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw40100)) -> Zero new_esEs9(vxw32, vxw402, app(ty_Maybe, bgd)) -> new_esEs25(vxw32, vxw402, bgd) new_esEs34(vxw301, vxw4001, app(ty_Ratio, eeg)) -> new_esEs17(vxw301, vxw4001, eeg) new_esEs17(:%(vxw300, vxw301), :%(vxw4000, vxw4001), fae) -> new_asAs(new_esEs38(vxw300, vxw4000, fae), new_esEs39(vxw301, vxw4001, fae)) new_lt10(vxw241, vxw251, ty_Ordering) -> new_lt15(vxw241, vxw251) new_compare13(GT, LT) -> GT new_esEs13(Left(vxw300), Left(vxw4000), ty_Integer, bc) -> new_esEs16(vxw300, vxw4000) new_lt9(vxw240, vxw250, app(ty_Maybe, cfc)) -> new_lt14(vxw240, vxw250, cfc) new_ltEs22(vxw57, vxw58, app(app(ty_@2, ehe), ehf)) -> new_ltEs9(vxw57, vxw58, ehe, ehf) new_ltEs22(vxw57, vxw58, ty_Double) -> new_ltEs16(vxw57, vxw58) new_compare210(vxw57, vxw58, False, eha, ehb) -> new_compare14(vxw57, vxw58, new_ltEs22(vxw57, vxw58, eha), eha, ehb) new_lt22(vxw46, vxw49, app(ty_Maybe, fbb)) -> new_lt14(vxw46, vxw49, fbb) new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs20(vxw301, vxw4001, gd, ge, gf) new_lt10(vxw241, vxw251, app(ty_[], cgd)) -> new_lt13(vxw241, vxw251, cgd) new_esEs7(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_esEs36(vxw46, vxw49, ty_Int) -> new_esEs21(vxw46, vxw49) new_esEs29(vxw241, vxw251, app(app(ty_@2, cgf), cgg)) -> new_esEs15(vxw241, vxw251, cgf, cgg) new_compare13(EQ, EQ) -> EQ new_esEs27(vxw301, vxw4001, app(app(ty_Either, ha), hb)) -> new_esEs13(vxw301, vxw4001, ha, hb) new_lt12(vxw73, vxw75) -> new_esEs12(new_compare16(vxw73, vxw75), LT) new_esEs7(vxw30, vxw400, app(ty_Maybe, bdh)) -> new_esEs25(vxw30, vxw400, bdh) new_primPlusNat1(Succ(vxw15300), Zero) -> Succ(vxw15300) new_primPlusNat1(Zero, Succ(vxw401000)) -> Succ(vxw401000) new_esEs31(vxw300, vxw4000, app(ty_[], deg)) -> new_esEs24(vxw300, vxw4000, deg) new_ltEs21(vxw74, vxw76, ty_Double) -> new_ltEs16(vxw74, vxw76) new_esEs30(vxw240, vxw250, ty_Char) -> new_esEs18(vxw240, vxw250) new_esEs7(vxw30, vxw400, app(app(ty_@2, bda), bdb)) -> new_esEs15(vxw30, vxw400, bda, bdb) new_lt9(vxw240, vxw250, ty_Int) -> new_lt8(vxw240, vxw250) new_esEs10(vxw30, vxw400, app(ty_Maybe, ffg)) -> new_esEs25(vxw30, vxw400, ffg) new_compare18(vxw30, vxw400, ty_@0) -> new_compare29(vxw30, vxw400) new_esEs36(vxw46, vxw49, app(ty_Ratio, fbh)) -> new_esEs17(vxw46, vxw49, fbh) new_esEs30(vxw240, vxw250, ty_Integer) -> new_esEs16(vxw240, vxw250) new_fsEs(vxw147) -> new_not(new_esEs12(vxw147, GT)) new_compare28(Just(vxw30), Just(vxw400), eac) -> new_compare211(vxw30, vxw400, new_esEs4(vxw30, vxw400, eac), eac) new_esEs32(vxw73, vxw75, app(ty_Maybe, ebe)) -> new_esEs25(vxw73, vxw75, ebe) new_ltEs22(vxw57, vxw58, ty_Float) -> new_ltEs13(vxw57, vxw58) new_lt23(vxw47, vxw50, ty_Ordering) -> new_lt15(vxw47, vxw50) new_ltEs4(Right(vxw240), Right(vxw250), bbc, app(ty_Ratio, bcc)) -> new_ltEs14(vxw240, vxw250, bcc) new_esEs8(vxw31, vxw401, ty_Double) -> new_esEs23(vxw31, vxw401) new_ltEs8(Just(vxw240), Just(vxw250), ty_Char) -> new_ltEs5(vxw240, vxw250) new_compare7(Float(vxw30, Neg(vxw310)), Float(vxw400, Neg(vxw4010))) -> new_compare12(new_sr(vxw30, Neg(vxw4010)), new_sr(Neg(vxw310), vxw400)) new_esEs32(vxw73, vxw75, ty_Float) -> new_esEs14(vxw73, vxw75) new_compare17(:%(vxw30, vxw31), :%(vxw400, vxw401), ty_Integer) -> new_compare16(new_sr0(vxw30, vxw401), new_sr0(vxw400, vxw31)) new_lt10(vxw241, vxw251, ty_Integer) -> new_lt12(vxw241, vxw251) new_lt20(vxw240, vxw250, app(ty_Ratio, dcc)) -> new_lt17(vxw240, vxw250, dcc) new_compare112(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, False, vxw145, he, hf, hg) -> new_compare10(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, vxw145, he, hf, hg) new_esEs7(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_ltEs21(vxw74, vxw76, ty_@0) -> new_ltEs15(vxw74, vxw76) new_esEs7(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_esEs25(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs13(Left(vxw300), Left(vxw4000), ty_Bool, bc) -> new_esEs19(vxw300, vxw4000) new_esEs36(vxw46, vxw49, ty_Ordering) -> new_esEs12(vxw46, vxw49) new_ltEs24(vxw24, vxw25, app(ty_Ratio, dba)) -> new_ltEs14(vxw24, vxw25, dba) new_esEs13(Right(vxw300), Right(vxw4000), cf, app(ty_[], df)) -> new_esEs24(vxw300, vxw4000, df) new_esEs33(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_lt22(vxw46, vxw49, ty_Bool) -> new_lt4(vxw46, vxw49) new_esEs6(vxw31, vxw401, ty_@0) -> new_esEs22(vxw31, vxw401) new_esEs29(vxw241, vxw251, ty_Ordering) -> new_esEs12(vxw241, vxw251) new_esEs27(vxw301, vxw4001, app(ty_Ratio, gc)) -> new_esEs17(vxw301, vxw4001, gc) new_esEs7(vxw30, vxw400, app(ty_[], bdg)) -> new_esEs24(vxw30, vxw400, bdg) new_esEs33(vxw300, vxw4000, app(ty_Ratio, ede)) -> new_esEs17(vxw300, vxw4000, ede) new_lt23(vxw47, vxw50, ty_Float) -> new_lt6(vxw47, vxw50) new_esEs11(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_ltEs4(Left(vxw240), Left(vxw250), ty_Ordering, hh) -> new_ltEs10(vxw240, vxw250) new_compare19(Char(vxw30), Char(vxw400)) -> new_primCmpNat0(vxw30, vxw400) new_esEs13(Left(vxw300), Left(vxw4000), ty_Char, bc) -> new_esEs18(vxw300, vxw4000) new_lt21(vxw73, vxw75, ty_Ordering) -> new_lt15(vxw73, vxw75) new_esEs32(vxw73, vxw75, ty_Int) -> new_esEs21(vxw73, vxw75) new_esEs31(vxw300, vxw4000, app(app(ty_Either, dfa), dfb)) -> new_esEs13(vxw300, vxw4000, dfa, dfb) new_lt22(vxw46, vxw49, app(ty_[], fba)) -> new_lt13(vxw46, vxw49, fba) new_esEs10(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_esEs28(vxw240, vxw250, app(ty_[], cfb)) -> new_esEs24(vxw240, vxw250, cfb) new_ltEs5(vxw24, vxw25) -> new_fsEs(new_compare19(vxw24, vxw25)) new_lt10(vxw241, vxw251, app(app(ty_@2, cgf), cgg)) -> new_lt7(vxw241, vxw251, cgf, cgg) new_esEs35(vxw302, vxw4002, ty_Ordering) -> new_esEs12(vxw302, vxw4002) new_ltEs19(vxw242, vxw252, ty_Bool) -> new_ltEs17(vxw242, vxw252) new_esEs28(vxw240, vxw250, ty_Double) -> new_esEs23(vxw240, vxw250) new_esEs30(vxw240, vxw250, app(app(ty_@2, dbf), dbg)) -> new_esEs15(vxw240, vxw250, dbf, dbg) new_compare211(vxw24, vxw25, False, fhd) -> new_compare113(vxw24, vxw25, new_ltEs24(vxw24, vxw25, fhd), fhd) new_compare30(vxw3, vxw40, app(ty_Maybe, eac)) -> new_compare28(vxw3, vxw40, eac) new_primCompAux0(vxw30, vxw400, vxw14, dfc) -> new_primCompAux00(vxw14, new_compare18(vxw30, vxw400, dfc)) new_esEs5(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_esEs6(vxw31, vxw401, ty_Float) -> new_esEs14(vxw31, vxw401) new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs12(GT, GT) -> True new_compare0([], :(vxw400, vxw401), dfc) -> LT new_esEs32(vxw73, vxw75, ty_Char) -> new_esEs18(vxw73, vxw75) new_lt21(vxw73, vxw75, ty_@0) -> new_lt18(vxw73, vxw75) new_ltEs10(LT, LT) -> True new_ltEs20(vxw241, vxw251, ty_@0) -> new_ltEs15(vxw241, vxw251) new_esEs31(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_lt9(vxw240, vxw250, app(app(ty_Either, cgb), cgc)) -> new_lt5(vxw240, vxw250, cgb, cgc) new_esEs25(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs19(vxw300, vxw4000) new_ltEs19(vxw242, vxw252, ty_@0) -> new_ltEs15(vxw242, vxw252) new_lt23(vxw47, vxw50, app(app(app(ty_@3, fcg), fch), fda)) -> new_lt16(vxw47, vxw50, fcg, fch, fda) new_primCmpInt(Pos(Succ(vxw300)), Pos(vxw400)) -> new_primCmpNat0(Succ(vxw300), vxw400) new_compare5(True, True) -> EQ new_esEs4(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_primCompAux00(vxw18, EQ) -> vxw18 new_compare18(vxw30, vxw400, app(ty_Ratio, dgc)) -> new_compare17(vxw30, vxw400, dgc) new_esEs12(EQ, EQ) -> True new_esEs33(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_lt9(vxw240, vxw250, app(ty_[], cfb)) -> new_lt13(vxw240, vxw250, cfb) new_lt22(vxw46, vxw49, app(app(ty_Either, fca), fcb)) -> new_lt5(vxw46, vxw49, fca, fcb) new_ltEs4(Left(vxw240), Left(vxw250), ty_Integer, hh) -> new_ltEs6(vxw240, vxw250) new_esEs10(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_esEs8(vxw31, vxw401, app(app(ty_@2, bec), bed)) -> new_esEs15(vxw31, vxw401, bec, bed) new_esEs35(vxw302, vxw4002, app(app(ty_Either, egg), egh)) -> new_esEs13(vxw302, vxw4002, egg, egh) new_esEs11(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_esEs11(vxw30, vxw400, app(ty_Maybe, fha)) -> new_esEs25(vxw30, vxw400, fha) new_compare13(GT, GT) -> EQ new_esEs5(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_ltEs4(Right(vxw240), Right(vxw250), bbc, app(app(ty_@2, bbf), bbg)) -> new_ltEs9(vxw240, vxw250, bbf, bbg) new_esEs36(vxw46, vxw49, app(app(ty_Either, fca), fcb)) -> new_esEs13(vxw46, vxw49, fca, fcb) new_ltEs24(vxw24, vxw25, app(ty_[], cac)) -> new_ltEs7(vxw24, vxw25, cac) new_lt20(vxw240, vxw250, ty_@0) -> new_lt18(vxw240, vxw250) new_lt21(vxw73, vxw75, app(ty_Maybe, ebe)) -> new_lt14(vxw73, vxw75, ebe) new_esEs28(vxw240, vxw250, app(app(ty_@2, cfd), cfe)) -> new_esEs15(vxw240, vxw250, cfd, cfe) new_esEs30(vxw240, vxw250, ty_Double) -> new_esEs23(vxw240, vxw250) new_lt9(vxw240, vxw250, ty_@0) -> new_lt18(vxw240, vxw250) new_esEs4(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_ltEs4(Right(vxw240), Right(vxw250), bbc, ty_Float) -> new_ltEs13(vxw240, vxw250) new_esEs31(vxw300, vxw4000, app(app(app(ty_@3, ded), dee), def)) -> new_esEs20(vxw300, vxw4000, ded, dee, def) new_esEs33(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_lt21(vxw73, vxw75, ty_Int) -> new_lt8(vxw73, vxw75) new_ltEs17(False, False) -> True new_lt17(vxw73, vxw75, dah) -> new_esEs12(new_compare17(vxw73, vxw75, dah), LT) new_ltEs18(vxw64, vxw65, app(ty_[], bha)) -> new_ltEs7(vxw64, vxw65, bha) new_esEs36(vxw46, vxw49, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_esEs20(vxw46, vxw49, fbe, fbf, fbg) new_ltEs4(Left(vxw240), Left(vxw250), ty_@0, hh) -> new_ltEs15(vxw240, vxw250) new_ltEs8(Just(vxw240), Just(vxw250), app(ty_Maybe, cah)) -> new_ltEs8(vxw240, vxw250, cah) new_esEs29(vxw241, vxw251, ty_Double) -> new_esEs23(vxw241, vxw251) new_lt20(vxw240, vxw250, app(ty_Maybe, dbe)) -> new_lt14(vxw240, vxw250, dbe) new_ltEs18(vxw64, vxw65, ty_@0) -> new_ltEs15(vxw64, vxw65) new_esEs10(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_esEs29(vxw241, vxw251, app(app(ty_Either, chd), che)) -> new_esEs13(vxw241, vxw251, chd, che) new_ltEs24(vxw24, vxw25, app(app(ty_@2, dbb), dbc)) -> new_ltEs9(vxw24, vxw25, dbb, dbc) new_ltEs10(GT, GT) -> True new_esEs13(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bg), bh), ca), bc) -> new_esEs20(vxw300, vxw4000, bg, bh, ca) new_esEs34(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_compare26(vxw64, vxw65, False, bgg, bgh) -> new_compare11(vxw64, vxw65, new_ltEs18(vxw64, vxw65, bgh), bgg, bgh) new_compare30(vxw3, vxw40, ty_Float) -> new_compare7(vxw3, vxw40) new_esEs4(vxw30, vxw400, ty_Char) -> new_esEs18(vxw30, vxw400) new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs5(vxw30, vxw400, app(ty_Maybe, cdb)) -> new_esEs25(vxw30, vxw400, cdb) new_esEs11(vxw30, vxw400, ty_Bool) -> new_esEs19(vxw30, vxw400) new_compare30(vxw3, vxw40, app(ty_[], dfc)) -> new_compare0(vxw3, vxw40, dfc) new_lt22(vxw46, vxw49, ty_Float) -> new_lt6(vxw46, vxw49) new_lt21(vxw73, vxw75, ty_Bool) -> new_lt4(vxw73, vxw75) new_compare6(Left(vxw30), Left(vxw400), eae, eaf) -> new_compare210(vxw30, vxw400, new_esEs10(vxw30, vxw400, eae), eae, eaf) new_ltEs4(Left(vxw240), Left(vxw250), app(app(ty_@2, bac), bad), hh) -> new_ltEs9(vxw240, vxw250, bac, bad) new_compare10(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, False, he, hf, hg) -> GT new_lt20(vxw240, vxw250, ty_Ordering) -> new_lt15(vxw240, vxw250) new_ltEs17(True, False) -> False new_esEs24(:(vxw300, vxw301), :(vxw4000, vxw4001), ddh) -> new_asAs(new_esEs31(vxw300, vxw4000, ddh), new_esEs24(vxw301, vxw4001, ddh)) new_esEs27(vxw301, vxw4001, app(ty_[], gg)) -> new_esEs24(vxw301, vxw4001, gg) new_esEs31(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_ltEs7(vxw24, vxw25, cac) -> new_fsEs(new_compare0(vxw24, vxw25, cac)) new_ltEs17(False, True) -> True new_esEs4(vxw30, vxw400, app(ty_Maybe, dgh)) -> new_esEs25(vxw30, vxw400, dgh) new_esEs36(vxw46, vxw49, ty_Float) -> new_esEs14(vxw46, vxw49) new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_compare16(Integer(vxw30), Integer(vxw400)) -> new_primCmpInt(vxw30, vxw400) new_compare10(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, he, hf, hg) -> LT new_ltEs19(vxw242, vxw252, app(ty_[], chf)) -> new_ltEs7(vxw242, vxw252, chf) new_lt20(vxw240, vxw250, app(app(app(ty_@3, dbh), dca), dcb)) -> new_lt16(vxw240, vxw250, dbh, dca, dcb) new_esEs28(vxw240, vxw250, ty_Ordering) -> new_esEs12(vxw240, vxw250) new_esEs37(vxw47, vxw50, ty_Bool) -> new_esEs19(vxw47, vxw50) new_esEs13(Left(vxw300), Left(vxw4000), ty_Ordering, bc) -> new_esEs12(vxw300, vxw4000) new_ltEs6(vxw24, vxw25) -> new_fsEs(new_compare16(vxw24, vxw25)) new_compare0(:(vxw30, vxw31), [], dfc) -> GT new_esEs16(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) new_esEs32(vxw73, vxw75, app(ty_Ratio, dah)) -> new_esEs17(vxw73, vxw75, dah) new_ltEs10(EQ, GT) -> True new_ltEs20(vxw241, vxw251, app(ty_[], dcf)) -> new_ltEs7(vxw241, vxw251, dcf) new_compare18(vxw30, vxw400, ty_Int) -> new_compare12(vxw30, vxw400) new_esEs11(vxw30, vxw400, ty_Integer) -> new_esEs16(vxw30, vxw400) new_esEs32(vxw73, vxw75, app(app(ty_Either, eb), ec)) -> new_esEs13(vxw73, vxw75, eb, ec) new_ltEs4(Left(vxw240), Right(vxw250), bbc, hh) -> True new_esEs34(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_compare113(vxw96, vxw97, False, feg) -> GT new_ltEs10(EQ, EQ) -> True new_compare110(vxw123, vxw124, vxw125, vxw126, False, dgf, dgg) -> GT new_primPlusNat0(Succ(vxw1530), vxw40100) -> Succ(Succ(new_primPlusNat1(vxw1530, vxw40100))) new_lt20(vxw240, vxw250, ty_Int) -> new_lt8(vxw240, vxw250) new_compare11(vxw113, vxw114, True, fhe, fhf) -> LT new_ltEs4(Left(vxw240), Left(vxw250), ty_Bool, hh) -> new_ltEs17(vxw240, vxw250) new_ltEs4(Right(vxw240), Right(vxw250), bbc, app(ty_[], bbd)) -> new_ltEs7(vxw240, vxw250, bbd) new_lt10(vxw241, vxw251, ty_Double) -> new_lt19(vxw241, vxw251) new_esEs36(vxw46, vxw49, app(ty_Maybe, fbb)) -> new_esEs25(vxw46, vxw49, fbb) new_esEs35(vxw302, vxw4002, ty_Char) -> new_esEs18(vxw302, vxw4002) new_esEs35(vxw302, vxw4002, app(app(app(ty_@3, egb), egc), egd)) -> new_esEs20(vxw302, vxw4002, egb, egc, egd) new_compare0(:(vxw30, vxw31), :(vxw400, vxw401), dfc) -> new_primCompAux0(vxw30, vxw400, new_compare0(vxw31, vxw401, dfc), dfc) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs8(Just(vxw240), Just(vxw250), ty_Float) -> new_ltEs13(vxw240, vxw250) new_ltEs23(vxw48, vxw51, app(ty_[], fde)) -> new_ltEs7(vxw48, vxw51, fde) new_esEs35(vxw302, vxw4002, ty_Bool) -> new_esEs19(vxw302, vxw4002) new_esEs34(vxw301, vxw4001, app(app(ty_Either, efe), eff)) -> new_esEs13(vxw301, vxw4001, efe, eff) new_esEs32(vxw73, vxw75, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs20(vxw73, vxw75, eag, eah, eba) new_compare18(vxw30, vxw400, app(app(ty_@2, dff), dfg)) -> new_compare8(vxw30, vxw400, dff, dfg) new_esEs28(vxw240, vxw250, app(ty_Ratio, cga)) -> new_esEs17(vxw240, vxw250, cga) new_esEs10(vxw30, vxw400, app(app(app(ty_@3, ffc), ffd), ffe)) -> new_esEs20(vxw30, vxw400, ffc, ffd, ffe) new_esEs11(vxw30, vxw400, app(app(ty_Either, fhb), fhc)) -> new_esEs13(vxw30, vxw400, fhb, fhc) new_compare18(vxw30, vxw400, ty_Double) -> new_compare15(vxw30, vxw400) new_ltEs11(@3(vxw240, vxw241, vxw242), @3(vxw250, vxw251, vxw252), ceg, ceh, cfa) -> new_pePe(new_lt9(vxw240, vxw250, ceg), new_asAs(new_esEs28(vxw240, vxw250, ceg), new_pePe(new_lt10(vxw241, vxw251, ceh), new_asAs(new_esEs29(vxw241, vxw251, ceh), new_ltEs19(vxw242, vxw252, cfa))))) new_esEs23(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs21(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_ltEs22(vxw57, vxw58, app(ty_[], ehc)) -> new_ltEs7(vxw57, vxw58, ehc) new_esEs13(Left(vxw300), Left(vxw4000), ty_Int, bc) -> new_esEs21(vxw300, vxw4000) new_esEs13(Left(vxw300), Left(vxw4000), app(ty_[], cb), bc) -> new_esEs24(vxw300, vxw4000, cb) new_esEs33(vxw300, vxw4000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs20(vxw300, vxw4000, edf, edg, edh) new_esEs37(vxw47, vxw50, ty_@0) -> new_esEs22(vxw47, vxw50) new_primCmpNat0(Succ(vxw300), Succ(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) new_compare7(Float(vxw30, Pos(vxw310)), Float(vxw400, Neg(vxw4010))) -> new_compare12(new_sr(vxw30, Pos(vxw4010)), new_sr(Neg(vxw310), vxw400)) new_compare7(Float(vxw30, Neg(vxw310)), Float(vxw400, Pos(vxw4010))) -> new_compare12(new_sr(vxw30, Neg(vxw4010)), new_sr(Pos(vxw310), vxw400)) new_compare110(vxw123, vxw124, vxw125, vxw126, True, dgf, dgg) -> LT new_esEs11(vxw30, vxw400, app(app(app(ty_@3, fge), fgf), fgg)) -> new_esEs20(vxw30, vxw400, fge, fgf, fgg) new_esEs31(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_ltEs21(vxw74, vxw76, app(ty_[], ebf)) -> new_ltEs7(vxw74, vxw76, ebf) new_ltEs12(vxw24, vxw25) -> new_fsEs(new_compare12(vxw24, vxw25)) new_compare12(vxw3, vxw40) -> new_primCmpInt(vxw3, vxw40) new_esEs13(Right(vxw300), Right(vxw4000), cf, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs36(vxw46, vxw49, ty_Integer) -> new_esEs16(vxw46, vxw49) new_esEs29(vxw241, vxw251, ty_Int) -> new_esEs21(vxw241, vxw251) new_esEs34(vxw301, vxw4001, app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs20(vxw301, vxw4001, eeh, efa, efb) new_esEs37(vxw47, vxw50, ty_Char) -> new_esEs18(vxw47, vxw50) new_esEs36(vxw46, vxw49, ty_@0) -> new_esEs22(vxw46, vxw49) new_lt21(vxw73, vxw75, app(app(ty_Either, eb), ec)) -> new_lt5(vxw73, vxw75, eb, ec) new_compare13(LT, GT) -> LT new_esEs37(vxw47, vxw50, app(ty_Maybe, fcd)) -> new_esEs25(vxw47, vxw50, fcd) new_ltEs16(vxw24, vxw25) -> new_fsEs(new_compare15(vxw24, vxw25)) new_esEs36(vxw46, vxw49, ty_Char) -> new_esEs18(vxw46, vxw49) new_ltEs14(vxw24, vxw25, dba) -> new_fsEs(new_compare17(vxw24, vxw25, dba)) new_esEs35(vxw302, vxw4002, ty_Integer) -> new_esEs16(vxw302, vxw4002) new_esEs36(vxw46, vxw49, ty_Bool) -> new_esEs19(vxw46, vxw49) new_ltEs8(Just(vxw240), Just(vxw250), ty_Bool) -> new_ltEs17(vxw240, vxw250) new_lt20(vxw240, vxw250, app(app(ty_Either, dcd), dce)) -> new_lt5(vxw240, vxw250, dcd, dce) new_compare14(vxw103, vxw104, False, cad, cae) -> GT new_esEs30(vxw240, vxw250, ty_Ordering) -> new_esEs12(vxw240, vxw250) new_ltEs17(True, True) -> True new_esEs29(vxw241, vxw251, app(ty_Ratio, chc)) -> new_esEs17(vxw241, vxw251, chc) new_lt9(vxw240, vxw250, ty_Float) -> new_lt6(vxw240, vxw250) new_compare30(vxw3, vxw40, ty_Char) -> new_compare19(vxw3, vxw40) new_ltEs8(Just(vxw240), Just(vxw250), ty_@0) -> new_ltEs15(vxw240, vxw250) new_esEs30(vxw240, vxw250, app(ty_Ratio, dcc)) -> new_esEs17(vxw240, vxw250, dcc) new_ltEs4(Left(vxw240), Left(vxw250), app(ty_Ratio, bah), hh) -> new_ltEs14(vxw240, vxw250, bah) new_compare15(Double(vxw30, Pos(vxw310)), Double(vxw400, Neg(vxw4010))) -> new_compare12(new_sr(vxw30, Pos(vxw4010)), new_sr(Neg(vxw310), vxw400)) new_compare15(Double(vxw30, Neg(vxw310)), Double(vxw400, Pos(vxw4010))) -> new_compare12(new_sr(vxw30, Neg(vxw4010)), new_sr(Pos(vxw310), vxw400)) new_esEs14(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs21(new_sr(vxw300, vxw4001), new_sr(vxw301, vxw4000)) new_lt22(vxw46, vxw49, ty_@0) -> new_lt18(vxw46, vxw49) new_ltEs13(vxw24, vxw25) -> new_fsEs(new_compare7(vxw24, vxw25)) new_esEs10(vxw30, vxw400, app(app(ty_Either, ffh), fga)) -> new_esEs13(vxw30, vxw400, ffh, fga) new_esEs33(vxw300, vxw4000, app(app(ty_Either, eec), eed)) -> new_esEs13(vxw300, vxw4000, eec, eed) new_esEs30(vxw240, vxw250, ty_Int) -> new_esEs21(vxw240, vxw250) new_ltEs4(Right(vxw240), Left(vxw250), bbc, hh) -> False new_compare30(vxw3, vxw40, app(app(app(ty_@3, bcf), bcg), bch)) -> new_compare9(vxw3, vxw40, bcf, bcg, bch) new_esEs37(vxw47, vxw50, ty_Float) -> new_esEs14(vxw47, vxw50) new_esEs13(Right(vxw300), Right(vxw4000), cf, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs19(True, True) -> True new_compare28(Nothing, Just(vxw400), eac) -> LT new_lt23(vxw47, vxw50, ty_@0) -> new_lt18(vxw47, vxw50) new_esEs10(vxw30, vxw400, app(ty_Ratio, ffb)) -> new_esEs17(vxw30, vxw400, ffb) new_primCmpInt(Neg(Succ(vxw300)), Pos(vxw400)) -> LT new_esEs34(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_ltEs8(Just(vxw240), Just(vxw250), ty_Integer) -> new_ltEs6(vxw240, vxw250) new_esEs37(vxw47, vxw50, ty_Ordering) -> new_esEs12(vxw47, vxw50) new_compare13(EQ, GT) -> LT new_lt8(vxw73, vxw75) -> new_esEs12(new_compare12(vxw73, vxw75), LT) new_esEs13(Right(vxw300), Right(vxw4000), cf, app(ty_Maybe, dg)) -> new_esEs25(vxw300, vxw4000, dg) new_ltEs9(@2(vxw240, vxw241), @2(vxw250, vxw251), dbb, dbc) -> new_pePe(new_lt20(vxw240, vxw250, dbb), new_asAs(new_esEs30(vxw240, vxw250, dbb), new_ltEs20(vxw241, vxw251, dbc))) new_compare14(vxw103, vxw104, True, cad, cae) -> LT new_primCmpInt(Pos(Zero), Neg(Succ(vxw4000))) -> GT new_ltEs4(Right(vxw240), Right(vxw250), bbc, ty_Ordering) -> new_ltEs10(vxw240, vxw250) new_primCmpInt(Neg(Succ(vxw300)), Neg(vxw400)) -> new_primCmpNat0(vxw400, Succ(vxw300)) new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_esEs6(vxw31, vxw401, ty_Integer) -> new_esEs16(vxw31, vxw401) new_compare15(Double(vxw30, Pos(vxw310)), Double(vxw400, Pos(vxw4010))) -> new_compare12(new_sr(vxw30, Pos(vxw4010)), new_sr(Pos(vxw310), vxw400)) new_esEs8(vxw31, vxw401, ty_Float) -> new_esEs14(vxw31, vxw401) new_lt23(vxw47, vxw50, ty_Int) -> new_lt8(vxw47, vxw50) new_esEs29(vxw241, vxw251, ty_Float) -> new_esEs14(vxw241, vxw251) new_esEs32(vxw73, vxw75, app(ty_[], ebd)) -> new_esEs24(vxw73, vxw75, ebd) new_ltEs8(Just(vxw240), Just(vxw250), app(ty_[], cag)) -> new_ltEs7(vxw240, vxw250, cag) new_esEs9(vxw32, vxw402, ty_Double) -> new_esEs23(vxw32, vxw402) new_esEs21(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) new_ltEs20(vxw241, vxw251, ty_Char) -> new_ltEs5(vxw241, vxw251) new_esEs8(vxw31, vxw401, ty_@0) -> new_esEs22(vxw31, vxw401) new_esEs7(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_esEs4(vxw30, vxw400, app(ty_Ratio, fae)) -> new_esEs17(vxw30, vxw400, fae) new_lt20(vxw240, vxw250, ty_Bool) -> new_lt4(vxw240, vxw250) new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False new_esEs25(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs22(vxw300, vxw4000) new_compare210(vxw57, vxw58, True, eha, ehb) -> EQ new_esEs37(vxw47, vxw50, app(app(ty_@2, fce), fcf)) -> new_esEs15(vxw47, vxw50, fce, fcf) new_ltEs19(vxw242, vxw252, ty_Int) -> new_ltEs12(vxw242, vxw252) new_esEs32(vxw73, vxw75, app(app(ty_@2, hc), hd)) -> new_esEs15(vxw73, vxw75, hc, hd) new_esEs29(vxw241, vxw251, ty_@0) -> new_esEs22(vxw241, vxw251) new_esEs28(vxw240, vxw250, app(app(ty_Either, cgb), cgc)) -> new_esEs13(vxw240, vxw250, cgb, cgc) new_ltEs21(vxw74, vxw76, ty_Integer) -> new_ltEs6(vxw74, vxw76) new_compare7(Float(vxw30, Pos(vxw310)), Float(vxw400, Pos(vxw4010))) -> new_compare12(new_sr(vxw30, Pos(vxw4010)), new_sr(Pos(vxw310), vxw400)) new_lt10(vxw241, vxw251, ty_Bool) -> new_lt4(vxw241, vxw251) new_ltEs8(Just(vxw240), Just(vxw250), ty_Int) -> new_ltEs12(vxw240, vxw250) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs24(vxw24, vxw25, ty_Float) -> new_ltEs13(vxw24, vxw25) new_esEs28(vxw240, vxw250, ty_Int) -> new_esEs21(vxw240, vxw250) new_esEs32(vxw73, vxw75, ty_Ordering) -> new_esEs12(vxw73, vxw75) new_esEs37(vxw47, vxw50, ty_Integer) -> new_esEs16(vxw47, vxw50) new_ltEs4(Left(vxw240), Left(vxw250), ty_Float, hh) -> new_ltEs13(vxw240, vxw250) new_compare13(LT, EQ) -> LT new_esEs12(LT, LT) -> True new_esEs4(vxw30, vxw400, app(ty_[], ddh)) -> new_esEs24(vxw30, vxw400, ddh) new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_esEs34(vxw301, vxw4001, app(ty_Maybe, efd)) -> new_esEs25(vxw301, vxw4001, efd) new_ltEs4(Left(vxw240), Left(vxw250), app(app(app(ty_@3, bae), baf), bag), hh) -> new_ltEs11(vxw240, vxw250, bae, baf, bag) new_lt10(vxw241, vxw251, ty_Float) -> new_lt6(vxw241, vxw251) new_ltEs20(vxw241, vxw251, app(ty_Maybe, dcg)) -> new_ltEs8(vxw241, vxw251, dcg) new_compare28(Just(vxw30), Nothing, eac) -> GT new_ltEs19(vxw242, vxw252, app(app(app(ty_@3, dab), dac), dad)) -> new_ltEs11(vxw242, vxw252, dab, dac, dad) new_lt15(vxw73, vxw75) -> new_esEs12(new_compare13(vxw73, vxw75), LT) new_esEs7(vxw30, vxw400, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs20(vxw30, vxw400, bdd, bde, bdf) new_esEs25(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs14(vxw300, vxw4000) new_ltEs23(vxw48, vxw51, app(app(ty_@2, fdg), fdh)) -> new_ltEs9(vxw48, vxw51, fdg, fdh) new_primCompAux00(vxw18, GT) -> GT new_lt4(vxw73, vxw75) -> new_esEs12(new_compare5(vxw73, vxw75), LT) new_ltEs19(vxw242, vxw252, ty_Float) -> new_ltEs13(vxw242, vxw252) new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_ltEs18(vxw64, vxw65, ty_Double) -> new_ltEs16(vxw64, vxw65) new_compare9(@3(vxw30, vxw31, vxw32), @3(vxw400, vxw401, vxw402), bcf, bcg, bch) -> new_compare25(vxw30, vxw31, vxw32, vxw400, vxw401, vxw402, new_asAs(new_esEs7(vxw30, vxw400, bcf), new_asAs(new_esEs8(vxw31, vxw401, bcg), new_esEs9(vxw32, vxw402, bch))), bcf, bcg, bch) new_ltEs18(vxw64, vxw65, ty_Char) -> new_ltEs5(vxw64, vxw65) new_lt22(vxw46, vxw49, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_lt16(vxw46, vxw49, fbe, fbf, fbg) new_ltEs4(Right(vxw240), Right(vxw250), bbc, ty_Integer) -> new_ltEs6(vxw240, vxw250) new_lt10(vxw241, vxw251, app(app(app(ty_@3, cgh), cha), chb)) -> new_lt16(vxw241, vxw251, cgh, cha, chb) new_esEs38(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_lt7(vxw73, vxw75, hc, hd) -> new_esEs12(new_compare8(vxw73, vxw75, hc, hd), LT) new_esEs29(vxw241, vxw251, app(ty_Maybe, cge)) -> new_esEs25(vxw241, vxw251, cge) new_ltEs23(vxw48, vxw51, ty_Bool) -> new_ltEs17(vxw48, vxw51) new_esEs27(vxw301, vxw4001, app(app(ty_@2, ga), gb)) -> new_esEs15(vxw301, vxw4001, ga, gb) new_ltEs24(vxw24, vxw25, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs11(vxw24, vxw25, ceg, ceh, cfa) new_esEs25(Just(vxw300), Just(vxw4000), app(ty_Maybe, dhh)) -> new_esEs25(vxw300, vxw4000, dhh) new_esEs9(vxw32, vxw402, app(ty_[], bgc)) -> new_esEs24(vxw32, vxw402, bgc) new_esEs34(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_esEs9(vxw32, vxw402, ty_Ordering) -> new_esEs12(vxw32, vxw402) new_ltEs21(vxw74, vxw76, ty_Int) -> new_ltEs12(vxw74, vxw76) new_esEs30(vxw240, vxw250, app(app(ty_Either, dcd), dce)) -> new_esEs13(vxw240, vxw250, dcd, dce) new_esEs9(vxw32, vxw402, app(app(ty_@2, bfe), bff)) -> new_esEs15(vxw32, vxw402, bfe, bff) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs19(vxw242, vxw252, ty_Integer) -> new_ltEs6(vxw242, vxw252) new_compare28(Nothing, Nothing, eac) -> EQ new_lt23(vxw47, vxw50, ty_Char) -> new_lt11(vxw47, vxw50) new_esEs11(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_compare112(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, vxw145, he, hf, hg) -> new_compare10(vxw138, vxw139, vxw140, vxw141, vxw142, vxw143, True, he, hf, hg) new_esEs10(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_esEs4(vxw30, vxw400, app(app(ty_@2, ed), ee)) -> new_esEs15(vxw30, vxw400, ed, ee) new_primCmpNat0(Succ(vxw300), Zero) -> GT new_esEs32(vxw73, vxw75, ty_Integer) -> new_esEs16(vxw73, vxw75) new_esEs13(Left(vxw300), Left(vxw4000), ty_Float, bc) -> new_esEs14(vxw300, vxw4000) new_pePe(False, vxw152) -> vxw152 new_esEs10(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_lt21(vxw73, vxw75, app(ty_[], ebd)) -> new_lt13(vxw73, vxw75, ebd) new_esEs11(vxw30, vxw400, ty_Float) -> new_esEs14(vxw30, vxw400) new_esEs8(vxw31, vxw401, ty_Char) -> new_esEs18(vxw31, vxw401) new_ltEs4(Left(vxw240), Left(vxw250), ty_Int, hh) -> new_ltEs12(vxw240, vxw250) new_ltEs4(Right(vxw240), Right(vxw250), bbc, ty_Bool) -> new_ltEs17(vxw240, vxw250) new_esEs10(vxw30, vxw400, app(ty_[], fff)) -> new_esEs24(vxw30, vxw400, fff) new_lt20(vxw240, vxw250, ty_Char) -> new_lt11(vxw240, vxw250) new_esEs6(vxw31, vxw401, ty_Double) -> new_esEs23(vxw31, vxw401) new_esEs34(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_esEs5(vxw30, vxw400, ty_@0) -> new_esEs22(vxw30, vxw400) new_esEs30(vxw240, vxw250, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs20(vxw240, vxw250, dbh, dca, dcb) new_lt23(vxw47, vxw50, ty_Bool) -> new_lt4(vxw47, vxw50) new_ltEs4(Left(vxw240), Left(vxw250), app(ty_[], baa), hh) -> new_ltEs7(vxw240, vxw250, baa) new_esEs6(vxw31, vxw401, ty_Char) -> new_esEs18(vxw31, vxw401) new_compare111(vxw123, vxw124, vxw125, vxw126, False, vxw128, dgf, dgg) -> new_compare110(vxw123, vxw124, vxw125, vxw126, vxw128, dgf, dgg) new_ltEs18(vxw64, vxw65, ty_Bool) -> new_ltEs17(vxw64, vxw65) new_compare11(vxw113, vxw114, False, fhe, fhf) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False new_lt22(vxw46, vxw49, ty_Ordering) -> new_lt15(vxw46, vxw49) new_lt6(vxw73, vxw75) -> new_esEs12(new_compare7(vxw73, vxw75), LT) new_esEs5(vxw30, vxw400, app(app(ty_Either, cdc), cdd)) -> new_esEs13(vxw30, vxw400, cdc, cdd) new_lt21(vxw73, vxw75, ty_Integer) -> new_lt12(vxw73, vxw75) new_esEs9(vxw32, vxw402, app(ty_Ratio, bfg)) -> new_esEs17(vxw32, vxw402, bfg) new_lt20(vxw240, vxw250, ty_Float) -> new_lt6(vxw240, vxw250) new_esEs39(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_esEs29(vxw241, vxw251, ty_Char) -> new_esEs18(vxw241, vxw251) new_ltEs21(vxw74, vxw76, ty_Float) -> new_ltEs13(vxw74, vxw76) new_lt21(vxw73, vxw75, app(ty_Ratio, dah)) -> new_lt17(vxw73, vxw75, dah) new_esEs6(vxw31, vxw401, app(ty_Maybe, ced)) -> new_esEs25(vxw31, vxw401, ced) new_esEs25(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs18(vxw300, vxw4000) new_compare30(vxw3, vxw40, ty_Bool) -> new_compare5(vxw3, vxw40) new_ltEs20(vxw241, vxw251, ty_Double) -> new_ltEs16(vxw241, vxw251) new_esEs34(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_ltEs8(Just(vxw240), Just(vxw250), app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs11(vxw240, vxw250, cbc, cbd, cbe) new_esEs13(Right(vxw300), Right(vxw4000), cf, ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs24(:(vxw300, vxw301), [], ddh) -> False new_esEs24([], :(vxw4000, vxw4001), ddh) -> False new_esEs31(vxw300, vxw4000, app(ty_Maybe, deh)) -> new_esEs25(vxw300, vxw4000, deh) new_esEs13(Right(vxw300), Right(vxw4000), cf, app(app(app(ty_@3, dc), dd), de)) -> new_esEs20(vxw300, vxw4000, dc, dd, de) new_lt10(vxw241, vxw251, ty_Char) -> new_lt11(vxw241, vxw251) new_primPlusNat0(Zero, vxw40100) -> Succ(vxw40100) new_esEs5(vxw30, vxw400, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs20(vxw30, vxw400, ccf, ccg, cch) new_compare18(vxw30, vxw400, ty_Bool) -> new_compare5(vxw30, vxw400) new_compare30(vxw3, vxw40, app(ty_Ratio, ead)) -> new_compare17(vxw3, vxw40, ead) new_esEs8(vxw31, vxw401, ty_Bool) -> new_esEs19(vxw31, vxw401) new_compare5(False, True) -> LT new_esEs29(vxw241, vxw251, ty_Bool) -> new_esEs19(vxw241, vxw251) new_esEs26(vxw300, vxw4000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs20(vxw300, vxw4000, fa, fb, fc) new_ltEs22(vxw57, vxw58, ty_@0) -> new_ltEs15(vxw57, vxw58) new_compare30(vxw3, vxw40, ty_Ordering) -> new_compare13(vxw3, vxw40) new_esEs30(vxw240, vxw250, app(ty_[], dbd)) -> new_esEs24(vxw240, vxw250, dbd) new_esEs8(vxw31, vxw401, app(ty_Maybe, bfb)) -> new_esEs25(vxw31, vxw401, bfb) new_ltEs4(Left(vxw240), Left(vxw250), app(ty_Maybe, bab), hh) -> new_ltEs8(vxw240, vxw250, bab) new_esEs13(Left(vxw300), Left(vxw4000), app(ty_Ratio, bf), bc) -> new_esEs17(vxw300, vxw4000, bf) new_ltEs23(vxw48, vxw51, ty_Double) -> new_ltEs16(vxw48, vxw51) new_ltEs23(vxw48, vxw51, app(ty_Ratio, fed)) -> new_ltEs14(vxw48, vxw51, fed) new_esEs20(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), ech, eda, edb) -> new_asAs(new_esEs33(vxw300, vxw4000, ech), new_asAs(new_esEs34(vxw301, vxw4001, eda), new_esEs35(vxw302, vxw4002, edb))) new_lt13(vxw73, vxw75, ebd) -> new_esEs12(new_compare0(vxw73, vxw75, ebd), LT) new_esEs32(vxw73, vxw75, ty_Bool) -> new_esEs19(vxw73, vxw75) new_ltEs21(vxw74, vxw76, ty_Bool) -> new_ltEs17(vxw74, vxw76) new_lt9(vxw240, vxw250, ty_Bool) -> new_lt4(vxw240, vxw250) new_ltEs8(Just(vxw240), Just(vxw250), ty_Ordering) -> new_ltEs10(vxw240, vxw250) new_esEs31(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_compare8(@2(vxw30, vxw31), @2(vxw400, vxw401), cca, ccb) -> new_compare27(vxw30, vxw31, vxw400, vxw401, new_asAs(new_esEs5(vxw30, vxw400, cca), new_esEs6(vxw31, vxw401, ccb)), cca, ccb) new_esEs28(vxw240, vxw250, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs20(vxw240, vxw250, cff, cfg, cfh) new_esEs35(vxw302, vxw4002, ty_Int) -> new_esEs21(vxw302, vxw4002) new_compare27(vxw73, vxw74, vxw75, vxw76, False, ebb, ebc) -> new_compare111(vxw73, vxw74, vxw75, vxw76, new_lt21(vxw73, vxw75, ebb), new_asAs(new_esEs32(vxw73, vxw75, ebb), new_ltEs21(vxw74, vxw76, ebc)), ebb, ebc) new_esEs26(vxw300, vxw4000, app(app(ty_Either, fg), fh)) -> new_esEs13(vxw300, vxw4000, fg, fh) new_esEs6(vxw31, vxw401, ty_Bool) -> new_esEs19(vxw31, vxw401) new_esEs13(Left(vxw300), Left(vxw4000), app(app(ty_@2, bd), be), bc) -> new_esEs15(vxw300, vxw4000, bd, be) new_compare18(vxw30, vxw400, ty_Ordering) -> new_compare13(vxw30, vxw400) new_esEs31(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs6(vxw31, vxw401, app(app(ty_@2, cde), cdf)) -> new_esEs15(vxw31, vxw401, cde, cdf) new_ltEs18(vxw64, vxw65, app(ty_Maybe, bhb)) -> new_ltEs8(vxw64, vxw65, bhb) new_lt9(vxw240, vxw250, app(app(app(ty_@3, cff), cfg), cfh)) -> new_lt16(vxw240, vxw250, cff, cfg, cfh) new_esEs31(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_primMulInt(Neg(vxw300), Neg(vxw4010)) -> Pos(new_primMulNat0(vxw300, vxw4010)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw4000))) -> new_primCmpNat0(Zero, Succ(vxw4000)) new_ltEs20(vxw241, vxw251, ty_Bool) -> new_ltEs17(vxw241, vxw251) new_esEs35(vxw302, vxw4002, app(ty_Ratio, ega)) -> new_esEs17(vxw302, vxw4002, ega) new_esEs4(vxw30, vxw400, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs20(vxw30, vxw400, ech, eda, edb) new_esEs32(vxw73, vxw75, ty_Double) -> new_esEs23(vxw73, vxw75) new_lt23(vxw47, vxw50, app(ty_Maybe, fcd)) -> new_lt14(vxw47, vxw50, fcd) new_ltEs24(vxw24, vxw25, ty_Int) -> new_ltEs12(vxw24, vxw25) new_esEs31(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs13(Left(vxw300), Left(vxw4000), ty_@0, bc) -> new_esEs22(vxw300, vxw4000) new_esEs29(vxw241, vxw251, ty_Integer) -> new_esEs16(vxw241, vxw251) new_ltEs8(Just(vxw240), Just(vxw250), app(app(ty_Either, cbg), cbh)) -> new_ltEs4(vxw240, vxw250, cbg, cbh) new_esEs6(vxw31, vxw401, app(ty_[], cec)) -> new_esEs24(vxw31, vxw401, cec) new_ltEs21(vxw74, vxw76, app(app(ty_@2, ebh), eca)) -> new_ltEs9(vxw74, vxw76, ebh, eca) new_lt10(vxw241, vxw251, app(ty_Maybe, cge)) -> new_lt14(vxw241, vxw251, cge) new_ltEs18(vxw64, vxw65, ty_Ordering) -> new_ltEs10(vxw64, vxw65) new_primMulInt(Pos(vxw300), Neg(vxw4010)) -> Neg(new_primMulNat0(vxw300, vxw4010)) new_primMulInt(Neg(vxw300), Pos(vxw4010)) -> Neg(new_primMulNat0(vxw300, vxw4010)) new_esEs34(vxw301, vxw4001, app(ty_[], efc)) -> new_esEs24(vxw301, vxw4001, efc) new_ltEs4(Right(vxw240), Right(vxw250), bbc, app(app(ty_Either, bcd), bce)) -> new_ltEs4(vxw240, vxw250, bcd, bce) new_lt22(vxw46, vxw49, ty_Integer) -> new_lt12(vxw46, vxw49) new_esEs6(vxw31, vxw401, app(ty_Ratio, cdg)) -> new_esEs17(vxw31, vxw401, cdg) new_esEs4(vxw30, vxw400, app(app(ty_Either, cf), bc)) -> new_esEs13(vxw30, vxw400, cf, bc) new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_compare18(vxw30, vxw400, ty_Float) -> new_compare7(vxw30, vxw400) new_ltEs22(vxw57, vxw58, app(app(app(ty_@3, ehg), ehh), faa)) -> new_ltEs11(vxw57, vxw58, ehg, ehh, faa) new_sr0(Integer(vxw300), Integer(vxw4010)) -> Integer(new_primMulInt(vxw300, vxw4010)) new_esEs34(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_esEs25(Just(vxw300), Just(vxw4000), app(app(ty_Either, eaa), eab)) -> new_esEs13(vxw300, vxw4000, eaa, eab) new_lt22(vxw46, vxw49, app(ty_Ratio, fbh)) -> new_lt17(vxw46, vxw49, fbh) new_esEs5(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_esEs7(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_esEs8(vxw31, vxw401, ty_Ordering) -> new_esEs12(vxw31, vxw401) new_ltEs20(vxw241, vxw251, app(app(ty_Either, ddf), ddg)) -> new_ltEs4(vxw241, vxw251, ddf, ddg) new_ltEs23(vxw48, vxw51, ty_Int) -> new_ltEs12(vxw48, vxw51) new_lt21(vxw73, vxw75, ty_Char) -> new_lt11(vxw73, vxw75) new_lt9(vxw240, vxw250, ty_Double) -> new_lt19(vxw240, vxw250) new_esEs13(Left(vxw300), Right(vxw4000), cf, bc) -> False new_esEs13(Right(vxw300), Left(vxw4000), cf, bc) -> False new_lt9(vxw240, vxw250, app(ty_Ratio, cga)) -> new_lt17(vxw240, vxw250, cga) new_compare111(vxw123, vxw124, vxw125, vxw126, True, vxw128, dgf, dgg) -> new_compare110(vxw123, vxw124, vxw125, vxw126, True, dgf, dgg) new_asAs(True, vxw91) -> vxw91 new_ltEs8(Just(vxw240), Just(vxw250), ty_Double) -> new_ltEs16(vxw240, vxw250) new_esEs25(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, dhd), dhe), dhf)) -> new_esEs20(vxw300, vxw4000, dhd, dhe, dhf) new_esEs22(@0, @0) -> True new_lt20(vxw240, vxw250, app(app(ty_@2, dbf), dbg)) -> new_lt7(vxw240, vxw250, dbf, dbg) new_compare6(Right(vxw30), Right(vxw400), eae, eaf) -> new_compare26(vxw30, vxw400, new_esEs11(vxw30, vxw400, eaf), eae, eaf) new_ltEs20(vxw241, vxw251, app(app(ty_@2, dch), dda)) -> new_ltEs9(vxw241, vxw251, dch, dda) new_esEs26(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_lt22(vxw46, vxw49, ty_Double) -> new_lt19(vxw46, vxw49) new_esEs37(vxw47, vxw50, app(ty_Ratio, fdb)) -> new_esEs17(vxw47, vxw50, fdb) new_ltEs24(vxw24, vxw25, ty_Ordering) -> new_ltEs10(vxw24, vxw25) new_ltEs22(vxw57, vxw58, app(ty_Maybe, ehd)) -> new_ltEs8(vxw57, vxw58, ehd) new_ltEs19(vxw242, vxw252, app(app(ty_@2, chh), daa)) -> new_ltEs9(vxw242, vxw252, chh, daa) new_compare6(Right(vxw30), Left(vxw400), eae, eaf) -> GT new_lt9(vxw240, vxw250, ty_Char) -> new_lt11(vxw240, vxw250) new_esEs37(vxw47, vxw50, ty_Int) -> new_esEs21(vxw47, vxw50) new_lt14(vxw73, vxw75, ebe) -> new_esEs12(new_compare28(vxw73, vxw75, ebe), LT) new_compare0([], [], dfc) -> EQ new_sr(vxw30, vxw401) -> new_primMulInt(vxw30, vxw401) new_esEs9(vxw32, vxw402, ty_Int) -> new_esEs21(vxw32, vxw402) new_primMulNat0(Zero, Zero) -> Zero new_lt9(vxw240, vxw250, ty_Ordering) -> new_lt15(vxw240, vxw250) new_ltEs18(vxw64, vxw65, ty_Integer) -> new_ltEs6(vxw64, vxw65) new_ltEs24(vxw24, vxw25, ty_Integer) -> new_ltEs6(vxw24, vxw25) new_ltEs18(vxw64, vxw65, app(app(ty_Either, caa), cab)) -> new_ltEs4(vxw64, vxw65, caa, cab) new_esEs9(vxw32, vxw402, ty_Integer) -> new_esEs16(vxw32, vxw402) new_esEs4(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_ltEs23(vxw48, vxw51, ty_Char) -> new_ltEs5(vxw48, vxw51) new_compare5(True, False) -> GT new_lt10(vxw241, vxw251, ty_Int) -> new_lt8(vxw241, vxw251) new_compare18(vxw30, vxw400, app(ty_Maybe, dfe)) -> new_compare28(vxw30, vxw400, dfe) new_ltEs22(vxw57, vxw58, app(ty_Ratio, fab)) -> new_ltEs14(vxw57, vxw58, fab) new_esEs34(vxw301, vxw4001, app(app(ty_@2, eee), eef)) -> new_esEs15(vxw301, vxw4001, eee, eef) new_lt21(vxw73, vxw75, ty_Double) -> new_lt19(vxw73, vxw75) new_ltEs24(vxw24, vxw25, app(app(ty_Either, bbc), hh)) -> new_ltEs4(vxw24, vxw25, bbc, hh) new_ltEs23(vxw48, vxw51, ty_Ordering) -> new_ltEs10(vxw48, vxw51) new_ltEs8(Just(vxw240), Just(vxw250), app(ty_Ratio, cbf)) -> new_ltEs14(vxw240, vxw250, cbf) new_esEs8(vxw31, vxw401, ty_Integer) -> new_esEs16(vxw31, vxw401) new_ltEs21(vxw74, vxw76, app(ty_Maybe, ebg)) -> new_ltEs8(vxw74, vxw76, ebg) new_esEs28(vxw240, vxw250, ty_@0) -> new_esEs22(vxw240, vxw250) new_compare27(vxw73, vxw74, vxw75, vxw76, True, ebb, ebc) -> EQ new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False new_esEs35(vxw302, vxw4002, ty_Double) -> new_esEs23(vxw302, vxw4002) new_ltEs8(Nothing, Just(vxw250), caf) -> True new_esEs10(vxw30, vxw400, app(app(ty_@2, feh), ffa)) -> new_esEs15(vxw30, vxw400, feh, ffa) new_esEs9(vxw32, vxw402, ty_Bool) -> new_esEs19(vxw32, vxw402) new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) new_ltEs24(vxw24, vxw25, ty_@0) -> new_ltEs15(vxw24, vxw25) new_ltEs18(vxw64, vxw65, app(app(ty_@2, bhc), bhd)) -> new_ltEs9(vxw64, vxw65, bhc, bhd) new_ltEs4(Left(vxw240), Left(vxw250), app(app(ty_Either, bba), bbb), hh) -> new_ltEs4(vxw240, vxw250, bba, bbb) new_ltEs21(vxw74, vxw76, app(ty_Ratio, ece)) -> new_ltEs14(vxw74, vxw76, ece) new_ltEs4(Right(vxw240), Right(vxw250), bbc, ty_Double) -> new_ltEs16(vxw240, vxw250) new_esEs33(vxw300, vxw4000, app(ty_[], eea)) -> new_esEs24(vxw300, vxw4000, eea) new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False new_esEs9(vxw32, vxw402, ty_Char) -> new_esEs18(vxw32, vxw402) new_primCmpInt(Neg(Zero), Neg(Succ(vxw4000))) -> new_primCmpNat0(Succ(vxw4000), Zero) new_lt9(vxw240, vxw250, ty_Integer) -> new_lt12(vxw240, vxw250) new_lt21(vxw73, vxw75, app(app(ty_@2, hc), hd)) -> new_lt7(vxw73, vxw75, hc, hd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs10(LT, EQ) -> True new_esEs28(vxw240, vxw250, ty_Float) -> new_esEs14(vxw240, vxw250) new_esEs4(vxw30, vxw400, ty_Int) -> new_esEs21(vxw30, vxw400) new_ltEs23(vxw48, vxw51, app(ty_Maybe, fdf)) -> new_ltEs8(vxw48, vxw51, fdf) new_ltEs23(vxw48, vxw51, app(app(app(ty_@3, fea), feb), fec)) -> new_ltEs11(vxw48, vxw51, fea, feb, fec) new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_lt10(vxw241, vxw251, app(app(ty_Either, chd), che)) -> new_lt5(vxw241, vxw251, chd, che) new_compare18(vxw30, vxw400, ty_Char) -> new_compare19(vxw30, vxw400) new_ltEs18(vxw64, vxw65, ty_Int) -> new_ltEs12(vxw64, vxw65) new_lt23(vxw47, vxw50, ty_Double) -> new_lt19(vxw47, vxw50) new_esEs26(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_compare30(vxw3, vxw40, ty_Int) -> new_compare12(vxw3, vxw40) new_lt23(vxw47, vxw50, app(ty_Ratio, fdb)) -> new_lt17(vxw47, vxw50, fdb) new_ltEs4(Right(vxw240), Right(vxw250), bbc, ty_Char) -> new_ltEs5(vxw240, vxw250) new_ltEs21(vxw74, vxw76, app(app(ty_Either, ecf), ecg)) -> new_ltEs4(vxw74, vxw76, ecf, ecg) new_ltEs20(vxw241, vxw251, ty_Integer) -> new_ltEs6(vxw241, vxw251) new_ltEs4(Right(vxw240), Right(vxw250), bbc, ty_Int) -> new_ltEs12(vxw240, vxw250) new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_not(False) -> True new_ltEs23(vxw48, vxw51, app(app(ty_Either, fee), fef)) -> new_ltEs4(vxw48, vxw51, fee, fef) new_esEs35(vxw302, vxw4002, app(ty_[], ege)) -> new_esEs24(vxw302, vxw4002, ege) new_esEs25(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs21(vxw300, vxw4000) new_lt9(vxw240, vxw250, app(app(ty_@2, cfd), cfe)) -> new_lt7(vxw240, vxw250, cfd, cfe) new_esEs5(vxw30, vxw400, app(ty_Ratio, cce)) -> new_esEs17(vxw30, vxw400, cce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs4(vxw30, vxw400, ty_Double) -> new_esEs23(vxw30, vxw400) new_esEs15(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ed, ee) -> new_asAs(new_esEs26(vxw300, vxw4000, ed), new_esEs27(vxw301, vxw4001, ee)) new_ltEs24(vxw24, vxw25, ty_Bool) -> new_ltEs17(vxw24, vxw25) new_ltEs20(vxw241, vxw251, app(ty_Ratio, dde)) -> new_ltEs14(vxw241, vxw251, dde) new_esEs37(vxw47, vxw50, app(ty_[], fcc)) -> new_esEs24(vxw47, vxw50, fcc) new_compare30(vxw3, vxw40, ty_Double) -> new_compare15(vxw3, vxw40) new_esEs7(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_lt18(vxw73, vxw75) -> new_esEs12(new_compare29(vxw73, vxw75), LT) new_esEs8(vxw31, vxw401, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs20(vxw31, vxw401, bef, beg, beh) new_ltEs19(vxw242, vxw252, app(ty_Ratio, dae)) -> new_ltEs14(vxw242, vxw252, dae) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs15(vxw24, vxw25) -> new_fsEs(new_compare29(vxw24, vxw25)) new_esEs13(Right(vxw300), Right(vxw4000), cf, app(app(ty_Either, dh), ea)) -> new_esEs13(vxw300, vxw4000, dh, ea) new_esEs7(vxw30, vxw400, app(app(ty_Either, bea), beb)) -> new_esEs13(vxw30, vxw400, bea, beb) new_lt5(vxw73, vxw75, eb, ec) -> new_esEs12(new_compare6(vxw73, vxw75, eb, ec), LT) new_esEs7(vxw30, vxw400, app(ty_Ratio, bdc)) -> new_esEs17(vxw30, vxw400, bdc) new_compare30(vxw3, vxw40, app(app(ty_@2, cca), ccb)) -> new_compare8(vxw3, vxw40, cca, ccb) new_esEs26(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_ltEs19(vxw242, vxw252, app(app(ty_Either, daf), dag)) -> new_ltEs4(vxw242, vxw252, daf, dag) new_ltEs22(vxw57, vxw58, ty_Char) -> new_ltEs5(vxw57, vxw58) new_lt11(vxw73, vxw75) -> new_esEs12(new_compare19(vxw73, vxw75), LT) new_esEs5(vxw30, vxw400, ty_Ordering) -> new_esEs12(vxw30, vxw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs21(vxw74, vxw76, ty_Ordering) -> new_ltEs10(vxw74, vxw76) new_primMulNat0(Succ(vxw3000), Succ(vxw40100)) -> new_primPlusNat0(new_primMulNat0(vxw3000, Succ(vxw40100)), vxw40100) new_esEs25(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs8(vxw31, vxw401, app(app(ty_Either, bfc), bfd)) -> new_esEs13(vxw31, vxw401, bfc, bfd) new_esEs35(vxw302, vxw4002, app(app(ty_@2, efg), efh)) -> new_esEs15(vxw302, vxw4002, efg, efh) new_ltEs23(vxw48, vxw51, ty_Integer) -> new_ltEs6(vxw48, vxw51) new_esEs13(Right(vxw300), Right(vxw4000), cf, app(ty_Ratio, db)) -> new_esEs17(vxw300, vxw4000, db) new_ltEs8(Nothing, Nothing, caf) -> True new_esEs13(Right(vxw300), Right(vxw4000), cf, ty_Double) -> new_esEs23(vxw300, vxw4000) new_ltEs8(Just(vxw240), Nothing, caf) -> False new_lt10(vxw241, vxw251, ty_@0) -> new_lt18(vxw241, vxw251) new_esEs9(vxw32, vxw402, app(app(ty_Either, bge), bgf)) -> new_esEs13(vxw32, vxw402, bge, bgf) new_esEs37(vxw47, vxw50, ty_Double) -> new_esEs23(vxw47, vxw50) new_esEs27(vxw301, vxw4001, app(ty_Maybe, gh)) -> new_esEs25(vxw301, vxw4001, gh) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt23(vxw47, vxw50, app(app(ty_@2, fce), fcf)) -> new_lt7(vxw47, vxw50, fce, fcf) new_ltEs4(Right(vxw240), Right(vxw250), bbc, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs11(vxw240, vxw250, bbh, bca, bcb) new_esEs9(vxw32, vxw402, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs20(vxw32, vxw402, bfh, bga, bgb) new_esEs25(Nothing, Nothing, dgh) -> True new_primEqNat0(Zero, Zero) -> True new_esEs25(Just(vxw300), Just(vxw4000), app(ty_Ratio, dhc)) -> new_esEs17(vxw300, vxw4000, dhc) new_ltEs18(vxw64, vxw65, app(ty_Ratio, bhh)) -> new_ltEs14(vxw64, vxw65, bhh) new_ltEs21(vxw74, vxw76, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_ltEs11(vxw74, vxw76, ecb, ecc, ecd) new_esEs25(Nothing, Just(vxw4000), dgh) -> False new_esEs25(Just(vxw300), Nothing, dgh) -> False new_esEs6(vxw31, vxw401, ty_Int) -> new_esEs21(vxw31, vxw401) new_esEs26(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_ltEs10(LT, GT) -> True new_asAs(False, vxw91) -> False new_ltEs22(vxw57, vxw58, ty_Integer) -> new_ltEs6(vxw57, vxw58) new_ltEs8(Just(vxw240), Just(vxw250), app(app(ty_@2, cba), cbb)) -> new_ltEs9(vxw240, vxw250, cba, cbb) new_ltEs21(vxw74, vxw76, ty_Char) -> new_ltEs5(vxw74, vxw76) new_esEs6(vxw31, vxw401, ty_Ordering) -> new_esEs12(vxw31, vxw401) new_ltEs19(vxw242, vxw252, ty_Ordering) -> new_ltEs10(vxw242, vxw252) new_ltEs20(vxw241, vxw251, ty_Ordering) -> new_ltEs10(vxw241, vxw251) new_esEs36(vxw46, vxw49, app(ty_[], fba)) -> new_esEs24(vxw46, vxw49, fba) new_lt16(vxw73, vxw75, eag, eah, eba) -> new_esEs12(new_compare9(vxw73, vxw75, eag, eah, eba), LT) new_compare25(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, False, faf, fag, fah) -> new_compare112(vxw46, vxw47, vxw48, vxw49, vxw50, vxw51, new_lt22(vxw46, vxw49, faf), new_asAs(new_esEs36(vxw46, vxw49, faf), new_pePe(new_lt23(vxw47, vxw50, fag), new_asAs(new_esEs37(vxw47, vxw50, fag), new_ltEs23(vxw48, vxw51, fah)))), faf, fag, fah) new_esEs36(vxw46, vxw49, app(app(ty_@2, fbc), fbd)) -> new_esEs15(vxw46, vxw49, fbc, fbd) new_esEs26(vxw300, vxw4000, app(ty_Maybe, ff)) -> new_esEs25(vxw300, vxw4000, ff) new_compare18(vxw30, vxw400, app(app(app(ty_@3, dfh), dga), dgb)) -> new_compare9(vxw30, vxw400, dfh, dga, dgb) new_ltEs4(Right(vxw240), Right(vxw250), bbc, app(ty_Maybe, bbe)) -> new_ltEs8(vxw240, vxw250, bbe) The set Q consists of the following terms: new_primCompAux00(x0, GT) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, ty_Integer) new_pePe(False, x0) new_esEs28(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Integer) new_ltEs14(x0, x1, x2) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Float) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_lt14(x0, x1, x2) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare113(x0, x1, True, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, Zero) new_esEs25(Nothing, Just(x0), x1) new_esEs28(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Bool) new_lt8(x0, x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(False, False) new_esEs24(:(x0, x1), :(x2, x3), x4) new_lt12(x0, x1) new_ltEs24(x0, x1, ty_Float) new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs34(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs32(x0, x1, ty_Float) new_lt9(x0, x1, ty_Int) new_primEqInt(Neg(Zero), Neg(Zero)) new_primPlusNat1(Succ(x0), Zero) new_esEs7(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs34(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Int) new_compare18(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_@0) new_lt9(x0, x1, app(ty_[], x2)) new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs13(Left(x0), Left(x1), ty_Char, x2) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_lt22(x0, x1, ty_Float) new_lt21(x0, x1, ty_@0) new_lt22(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Float) new_ltEs17(True, True) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs6(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs36(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Char) new_compare30(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs36(x0, x1, ty_Int) new_esEs24([], [], x0) new_ltEs15(x0, x1) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Bool) new_lt10(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_compare28(Just(x0), Nothing, x1) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt10(x0, x1, ty_Char) new_lt21(x0, x1, ty_Float) new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs31(x0, x1, ty_Int) new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare18(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Char) new_esEs21(x0, x1) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Integer) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_compare18(x0, x1, app(ty_Maybe, x2)) new_ltEs10(GT, GT) new_compare0([], :(x0, x1), x2) new_esEs33(x0, x1, ty_Double) new_compare18(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Char) new_esEs13(Left(x0), Left(x1), ty_Double, x2) new_esEs23(Double(x0, x1), Double(x2, x3)) new_esEs29(x0, x1, ty_Ordering) new_compare18(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, x0) new_esEs8(x0, x1, ty_Char) new_esEs12(GT, GT) new_esEs11(x0, x1, ty_Int) new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs16(Integer(x0), Integer(x1)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(Right(x0), Right(x1), x2, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_compare18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Int) new_lt9(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs24(x0, x1, ty_Int) new_lt10(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs27(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Int) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs22(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Integer) new_compare111(x0, x1, x2, x3, True, x4, x5, x6) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs31(x0, x1, ty_Integer) new_esEs13(Right(x0), Right(x1), x2, ty_Char) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt22(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Bool) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Double) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Nothing, x1) new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Char) new_compare18(x0, x1, ty_Ordering) new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primEqNat0(Zero, Succ(x0)) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs10(x0, x1, ty_Integer) new_lt9(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_compare26(x0, x1, True, x2, x3) new_esEs9(x0, x1, ty_Double) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare28(Nothing, Just(x0), x1) new_ltEs10(EQ, EQ) new_ltEs7(x0, x1, x2) new_esEs25(Just(x0), Just(x1), ty_Integer) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_compare28(Just(x0), Just(x1), x2) new_compare13(GT, GT) new_compare13(EQ, LT) new_esEs4(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare13(LT, EQ) new_compare14(x0, x1, False, x2, x3) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(Right(x0), Right(x1), x2, ty_Integer) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_@0) new_lt22(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs13(Right(x0), Right(x1), x2, ty_@0) new_esEs8(x0, x1, ty_Ordering) new_esEs20(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Double) new_lt22(x0, x1, app(ty_[], x2)) new_not(True) new_esEs5(x0, x1, ty_Double) new_ltEs10(GT, LT) new_ltEs10(LT, GT) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Double) new_esEs10(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_primCompAux00(x0, LT) new_lt10(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Double) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Double) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs12(LT, LT) new_esEs32(x0, x1, ty_Char) new_esEs19(True, True) new_ltEs12(x0, x1) new_ltEs23(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs13(Left(x0), Right(x1), x2, x3) new_esEs13(Right(x0), Left(x1), x2, x3) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_Float) new_compare30(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Bool) new_primCmpNat0(Zero, Succ(x0)) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_lt20(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Integer) new_compare30(x0, x1, ty_Double) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_@0) new_compare14(x0, x1, True, x2, x3) new_esEs4(x0, x1, ty_Char) new_esEs14(Float(x0, x1), Float(x2, x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_esEs25(Just(x0), Just(x1), ty_Int) new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, ty_Float) new_lt9(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1) new_esEs10(x0, x1, ty_Int) new_lt13(x0, x1, x2) new_compare9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs35(x0, x1, ty_@0) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_lt10(x0, x1, app(ty_[], x2)) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_not(False) new_esEs25(Just(x0), Nothing, x1) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_esEs25(Just(x0), Just(x1), ty_Char) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs10(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, True, x4, x5) new_ltEs20(x0, x1, ty_Double) new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, ty_Int) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare211(x0, x1, True, x2) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs37(x0, x1, ty_Integer) new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs36(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare28(Nothing, Nothing, x0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs12(EQ, EQ) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Integer) new_lt6(x0, x1) new_esEs29(x0, x1, ty_Integer) new_compare11(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_Float) new_lt9(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Integer) new_compare6(Left(x0), Right(x1), x2, x3) new_compare6(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Bool) new_ltEs10(LT, LT) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_compare30(x0, x1, ty_@0) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Integer) new_compare29(@0, @0) new_compare30(x0, x1, ty_Integer) new_lt9(x0, x1, ty_Char) new_compare13(GT, LT) new_compare13(LT, GT) new_ltEs21(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs8(Nothing, Just(x0), x1) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs13(Left(x0), Left(x1), ty_@0, x2) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs33(x0, x1, ty_@0) new_lt9(x0, x1, ty_Ordering) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs31(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs10(GT, EQ) new_ltEs10(EQ, GT) new_esEs5(x0, x1, ty_Float) new_lt10(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Char) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Bool) new_asAs(False, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), [], x2) new_esEs29(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_esEs13(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_Int) new_lt10(x0, x1, ty_@0) new_esEs22(@0, @0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, x1, x2, x3) new_lt10(x0, x1, app(ty_Ratio, x2)) new_compare30(x0, x1, ty_Bool) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_lt10(x0, x1, ty_Int) new_primMulInt(Neg(x0), Neg(x1)) new_primPlusNat1(Zero, Succ(x0)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Double) new_compare0(:(x0, x1), [], x2) new_primMulNat0(Zero, Succ(x0)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare210(x0, x1, False, x2, x3) new_esEs37(x0, x1, ty_Int) new_compare27(x0, x1, x2, x3, True, x4, x5) new_ltEs10(EQ, LT) new_ltEs10(LT, EQ) new_esEs11(x0, x1, ty_Char) new_lt7(x0, x1, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Ordering) new_compare30(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Float) new_esEs25(Just(x0), Just(x1), ty_Double) new_compare113(x0, x1, False, x2) new_esEs30(x0, x1, ty_@0) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs34(x0, x1, ty_Double) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_lt10(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(True, True) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs19(False, True) new_esEs19(True, False) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs35(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt21(x0, x1, ty_Double) new_esEs13(Right(x0), Right(x1), x2, ty_Int) new_lt22(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs4(x0, x1, ty_@0) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_compare211(x0, x1, False, x2) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), x1) new_esEs34(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs10(x0, x1, ty_Double) new_lt23(x0, x1, ty_Float) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Nothing, Nothing, x0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare6(Right(x0), Right(x1), x2, x3) new_ltEs20(x0, x1, ty_Int) new_fsEs(x0) new_lt15(x0, x1) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Float) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(True, False) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs17(False, True) new_ltEs22(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare13(GT, EQ) new_compare13(EQ, GT) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_esEs24([], :(x0, x1), x2) new_primMulInt(Pos(x0), Pos(x1)) new_esEs36(x0, x1, ty_Ordering) new_compare18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Bool) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs37(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs13(Right(x0), Right(x1), x2, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_compare6(Left(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Bool) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, x2, x3, False, x4, x5) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_compare18(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare18(x0, x1, ty_Int) new_lt23(x0, x1, ty_Char) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, True, x2, x3) new_ltEs18(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Float) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_ltEs6(x0, x1) new_lt20(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, EQ) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3, x4) new_compare13(LT, LT) new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Int) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt11(x0, x1) new_compare5(False, True) new_compare5(True, False) new_lt23(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare13(EQ, EQ) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare18(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Double) new_esEs25(Just(x0), Just(x1), ty_Ordering) new_ltEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_pePe(True, x0) new_compare12(x0, x1) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt21(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(x0, x1, False, x2, x3) new_lt23(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, x2, x3) new_esEs34(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs33(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Bool) new_compare16(Integer(x0), Integer(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs13(Left(x0), Left(x1), ty_Float, x2) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs13(Right(x0), Right(x1), x2, ty_Double) new_lt21(x0, x1, ty_Int) new_esEs25(Nothing, Nothing, x0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_compare5(False, False) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Ordering) new_compare0([], [], x0) new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs13(Left(x0), Left(x1), ty_Int, x2) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1) new_esEs6(x0, x1, ty_Int) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare111(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs17(False, False) new_esEs10(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Float) new_ltEs13(x0, x1) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs9(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare19(Char(x0), Char(x1)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs21(x0, x1, ty_Bool) new_esEs18(Char(x0), Char(x1)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs24(x0, x1, ty_Double) new_lt17(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs6(x0, x1, ty_Char) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Int) new_compare18(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Bool) new_compare18(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_sr(x0, x1) new_esEs30(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (34) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_insertBy0(vxw10, vxw11, vxw12, GT, ba) -> new_insertBy(vxw11, vxw12, ba) The graph contains the following edges 2 >= 1, 3 >= 2, 5 >= 3 *new_insertBy(vxw3, :(vxw40, vxw41), bb) -> new_insertBy0(vxw40, vxw3, vxw41, new_compare30(vxw3, vxw40, bb), bb) The graph contains the following edges 2 > 1, 1 >= 2, 2 > 3, 3 >= 5 ---------------------------------------- (35) YES