/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, 10 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 30 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, 58 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 ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vwv vww = gcd vwv vww; " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " ---------------------------------------- (10) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="compare",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="compare vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];1767[label="vwx3/Left vwx30",fontsize=10,color="white",style="solid",shape="box"];6 -> 1767[label="",style="solid", color="burlywood", weight=9]; 1767 -> 7[label="",style="solid", color="burlywood", weight=3]; 1768[label="vwx3/Right vwx30",fontsize=10,color="white",style="solid",shape="box"];6 -> 1768[label="",style="solid", color="burlywood", weight=9]; 1768 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="compare2 (Left vwx30) vwx4 (Left vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];1769[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];7 -> 1769[label="",style="solid", color="burlywood", weight=9]; 1769 -> 9[label="",style="solid", color="burlywood", weight=3]; 1770[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];7 -> 1770[label="",style="solid", color="burlywood", weight=9]; 1770 -> 10[label="",style="solid", color="burlywood", weight=3]; 8[label="compare2 (Right vwx30) vwx4 (Right vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];1771[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];8 -> 1771[label="",style="solid", color="burlywood", weight=9]; 1771 -> 11[label="",style="solid", color="burlywood", weight=3]; 1772[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];8 -> 1772[label="",style="solid", color="burlywood", weight=9]; 1772 -> 12[label="",style="solid", color="burlywood", weight=3]; 9[label="compare2 (Left vwx30) (Left vwx40) (Left vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];9 -> 13[label="",style="solid", color="black", weight=3]; 10[label="compare2 (Left vwx30) (Right vwx40) (Left vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];10 -> 14[label="",style="solid", color="black", weight=3]; 11[label="compare2 (Right vwx30) (Left vwx40) (Right vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];11 -> 15[label="",style="solid", color="black", weight=3]; 12[label="compare2 (Right vwx30) (Right vwx40) (Right vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 13 -> 17[label="",style="dashed", color="red", weight=0]; 13[label="compare2 (Left vwx30) (Left vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];13 -> 18[label="",style="dashed", color="magenta", weight=3]; 13 -> 19[label="",style="dashed", color="magenta", weight=3]; 13 -> 20[label="",style="dashed", color="magenta", weight=3]; 14[label="compare2 (Left vwx30) (Right vwx40) False",fontsize=16,color="black",shape="box"];14 -> 21[label="",style="solid", color="black", weight=3]; 15[label="compare2 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];15 -> 22[label="",style="solid", color="black", weight=3]; 16 -> 23[label="",style="dashed", color="red", weight=0]; 16[label="compare2 (Right vwx30) (Right vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];16 -> 24[label="",style="dashed", color="magenta", weight=3]; 16 -> 25[label="",style="dashed", color="magenta", weight=3]; 16 -> 26[label="",style="dashed", color="magenta", weight=3]; 18[label="vwx40",fontsize=16,color="green",shape="box"];19[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];1773[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1773[label="",style="solid", color="blue", weight=9]; 1773 -> 27[label="",style="solid", color="blue", weight=3]; 1774[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1774[label="",style="solid", color="blue", weight=9]; 1774 -> 28[label="",style="solid", color="blue", weight=3]; 1775[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1775[label="",style="solid", color="blue", weight=9]; 1775 -> 29[label="",style="solid", color="blue", weight=3]; 1776[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1776[label="",style="solid", color="blue", weight=9]; 1776 -> 30[label="",style="solid", color="blue", weight=3]; 1777[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1777[label="",style="solid", color="blue", weight=9]; 1777 -> 31[label="",style="solid", color="blue", weight=3]; 1778[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1778[label="",style="solid", color="blue", weight=9]; 1778 -> 32[label="",style="solid", color="blue", weight=3]; 1779[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1779[label="",style="solid", color="blue", weight=9]; 1779 -> 33[label="",style="solid", color="blue", weight=3]; 1780[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1780[label="",style="solid", color="blue", weight=9]; 1780 -> 34[label="",style="solid", color="blue", weight=3]; 1781[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1781[label="",style="solid", color="blue", weight=9]; 1781 -> 35[label="",style="solid", color="blue", weight=3]; 1782[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1782[label="",style="solid", color="blue", weight=9]; 1782 -> 36[label="",style="solid", color="blue", weight=3]; 1783[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1783[label="",style="solid", color="blue", weight=9]; 1783 -> 37[label="",style="solid", color="blue", weight=3]; 1784[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1784[label="",style="solid", color="blue", weight=9]; 1784 -> 38[label="",style="solid", color="blue", weight=3]; 1785[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1785[label="",style="solid", color="blue", weight=9]; 1785 -> 39[label="",style="solid", color="blue", weight=3]; 1786[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];19 -> 1786[label="",style="solid", color="blue", weight=9]; 1786 -> 40[label="",style="solid", color="blue", weight=3]; 20[label="vwx30",fontsize=16,color="green",shape="box"];17[label="compare2 (Left vwx9) (Left vwx10) vwx11",fontsize=16,color="burlywood",shape="triangle"];1787[label="vwx11/False",fontsize=10,color="white",style="solid",shape="box"];17 -> 1787[label="",style="solid", color="burlywood", weight=9]; 1787 -> 41[label="",style="solid", color="burlywood", weight=3]; 1788[label="vwx11/True",fontsize=10,color="white",style="solid",shape="box"];17 -> 1788[label="",style="solid", color="burlywood", weight=9]; 1788 -> 42[label="",style="solid", color="burlywood", weight=3]; 21[label="compare1 (Left vwx30) (Right vwx40) (Left vwx30 <= Right vwx40)",fontsize=16,color="black",shape="box"];21 -> 43[label="",style="solid", color="black", weight=3]; 22[label="compare1 (Right vwx30) (Left vwx40) (Right vwx30 <= Left vwx40)",fontsize=16,color="black",shape="box"];22 -> 44[label="",style="solid", color="black", weight=3]; 24[label="vwx40",fontsize=16,color="green",shape="box"];25[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];1789[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1789[label="",style="solid", color="blue", weight=9]; 1789 -> 45[label="",style="solid", color="blue", weight=3]; 1790[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1790[label="",style="solid", color="blue", weight=9]; 1790 -> 46[label="",style="solid", color="blue", weight=3]; 1791[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1791[label="",style="solid", color="blue", weight=9]; 1791 -> 47[label="",style="solid", color="blue", weight=3]; 1792[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1792[label="",style="solid", color="blue", weight=9]; 1792 -> 48[label="",style="solid", color="blue", weight=3]; 1793[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1793[label="",style="solid", color="blue", weight=9]; 1793 -> 49[label="",style="solid", color="blue", weight=3]; 1794[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1794[label="",style="solid", color="blue", weight=9]; 1794 -> 50[label="",style="solid", color="blue", weight=3]; 1795[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1795[label="",style="solid", color="blue", weight=9]; 1795 -> 51[label="",style="solid", color="blue", weight=3]; 1796[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1796[label="",style="solid", color="blue", weight=9]; 1796 -> 52[label="",style="solid", color="blue", weight=3]; 1797[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1797[label="",style="solid", color="blue", weight=9]; 1797 -> 53[label="",style="solid", color="blue", weight=3]; 1798[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1798[label="",style="solid", color="blue", weight=9]; 1798 -> 54[label="",style="solid", color="blue", weight=3]; 1799[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1799[label="",style="solid", color="blue", weight=9]; 1799 -> 55[label="",style="solid", color="blue", weight=3]; 1800[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1800[label="",style="solid", color="blue", weight=9]; 1800 -> 56[label="",style="solid", color="blue", weight=3]; 1801[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1801[label="",style="solid", color="blue", weight=9]; 1801 -> 57[label="",style="solid", color="blue", weight=3]; 1802[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];25 -> 1802[label="",style="solid", color="blue", weight=9]; 1802 -> 58[label="",style="solid", color="blue", weight=3]; 26[label="vwx30",fontsize=16,color="green",shape="box"];23[label="compare2 (Right vwx16) (Right vwx17) vwx18",fontsize=16,color="burlywood",shape="triangle"];1803[label="vwx18/False",fontsize=10,color="white",style="solid",shape="box"];23 -> 1803[label="",style="solid", color="burlywood", weight=9]; 1803 -> 59[label="",style="solid", color="burlywood", weight=3]; 1804[label="vwx18/True",fontsize=10,color="white",style="solid",shape="box"];23 -> 1804[label="",style="solid", color="burlywood", weight=9]; 1804 -> 60[label="",style="solid", color="burlywood", weight=3]; 27[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];27 -> 61[label="",style="solid", color="black", weight=3]; 28[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];28 -> 62[label="",style="solid", color="black", weight=3]; 29[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1805[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];29 -> 1805[label="",style="solid", color="burlywood", weight=9]; 1805 -> 63[label="",style="solid", color="burlywood", weight=3]; 1806[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];29 -> 1806[label="",style="solid", color="burlywood", weight=9]; 1806 -> 64[label="",style="solid", color="burlywood", weight=3]; 30[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1807[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];30 -> 1807[label="",style="solid", color="burlywood", weight=9]; 1807 -> 65[label="",style="solid", color="burlywood", weight=3]; 1808[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];30 -> 1808[label="",style="solid", color="burlywood", weight=9]; 1808 -> 66[label="",style="solid", color="burlywood", weight=3]; 31[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1809[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];31 -> 1809[label="",style="solid", color="burlywood", weight=9]; 1809 -> 67[label="",style="solid", color="burlywood", weight=3]; 1810[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];31 -> 1810[label="",style="solid", color="burlywood", weight=9]; 1810 -> 68[label="",style="solid", color="burlywood", weight=3]; 32[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1811[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];32 -> 1811[label="",style="solid", color="burlywood", weight=9]; 1811 -> 69[label="",style="solid", color="burlywood", weight=3]; 1812[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];32 -> 1812[label="",style="solid", color="burlywood", weight=9]; 1812 -> 70[label="",style="solid", color="burlywood", weight=3]; 1813[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];32 -> 1813[label="",style="solid", color="burlywood", weight=9]; 1813 -> 71[label="",style="solid", color="burlywood", weight=3]; 33[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1814[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];33 -> 1814[label="",style="solid", color="burlywood", weight=9]; 1814 -> 72[label="",style="solid", color="burlywood", weight=3]; 34[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1815[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];34 -> 1815[label="",style="solid", color="burlywood", weight=9]; 1815 -> 73[label="",style="solid", color="burlywood", weight=3]; 1816[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];34 -> 1816[label="",style="solid", color="burlywood", weight=9]; 1816 -> 74[label="",style="solid", color="burlywood", weight=3]; 35[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1817[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];35 -> 1817[label="",style="solid", color="burlywood", weight=9]; 1817 -> 75[label="",style="solid", color="burlywood", weight=3]; 36[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1818[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];36 -> 1818[label="",style="solid", color="burlywood", weight=9]; 1818 -> 76[label="",style="solid", color="burlywood", weight=3]; 37[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];37 -> 77[label="",style="solid", color="black", weight=3]; 38[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1819[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];38 -> 1819[label="",style="solid", color="burlywood", weight=9]; 1819 -> 78[label="",style="solid", color="burlywood", weight=3]; 39[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];39 -> 79[label="",style="solid", color="black", weight=3]; 40[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];1820[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];40 -> 1820[label="",style="solid", color="burlywood", weight=9]; 1820 -> 80[label="",style="solid", color="burlywood", weight=3]; 41[label="compare2 (Left vwx9) (Left vwx10) False",fontsize=16,color="black",shape="box"];41 -> 81[label="",style="solid", color="black", weight=3]; 42[label="compare2 (Left vwx9) (Left vwx10) True",fontsize=16,color="black",shape="box"];42 -> 82[label="",style="solid", color="black", weight=3]; 43[label="compare1 (Left vwx30) (Right vwx40) True",fontsize=16,color="black",shape="box"];43 -> 83[label="",style="solid", color="black", weight=3]; 44[label="compare1 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];44 -> 84[label="",style="solid", color="black", weight=3]; 45 -> 27[label="",style="dashed", color="red", weight=0]; 45[label="vwx30 == vwx40",fontsize=16,color="magenta"];45 -> 85[label="",style="dashed", color="magenta", weight=3]; 45 -> 86[label="",style="dashed", color="magenta", weight=3]; 46 -> 28[label="",style="dashed", color="red", weight=0]; 46[label="vwx30 == vwx40",fontsize=16,color="magenta"];46 -> 87[label="",style="dashed", color="magenta", weight=3]; 46 -> 88[label="",style="dashed", color="magenta", weight=3]; 47 -> 29[label="",style="dashed", color="red", weight=0]; 47[label="vwx30 == vwx40",fontsize=16,color="magenta"];47 -> 89[label="",style="dashed", color="magenta", weight=3]; 47 -> 90[label="",style="dashed", color="magenta", weight=3]; 48 -> 30[label="",style="dashed", color="red", weight=0]; 48[label="vwx30 == vwx40",fontsize=16,color="magenta"];48 -> 91[label="",style="dashed", color="magenta", weight=3]; 48 -> 92[label="",style="dashed", color="magenta", weight=3]; 49 -> 31[label="",style="dashed", color="red", weight=0]; 49[label="vwx30 == vwx40",fontsize=16,color="magenta"];49 -> 93[label="",style="dashed", color="magenta", weight=3]; 49 -> 94[label="",style="dashed", color="magenta", weight=3]; 50 -> 32[label="",style="dashed", color="red", weight=0]; 50[label="vwx30 == vwx40",fontsize=16,color="magenta"];50 -> 95[label="",style="dashed", color="magenta", weight=3]; 50 -> 96[label="",style="dashed", color="magenta", weight=3]; 51 -> 33[label="",style="dashed", color="red", weight=0]; 51[label="vwx30 == vwx40",fontsize=16,color="magenta"];51 -> 97[label="",style="dashed", color="magenta", weight=3]; 51 -> 98[label="",style="dashed", color="magenta", weight=3]; 52 -> 34[label="",style="dashed", color="red", weight=0]; 52[label="vwx30 == vwx40",fontsize=16,color="magenta"];52 -> 99[label="",style="dashed", color="magenta", weight=3]; 52 -> 100[label="",style="dashed", color="magenta", weight=3]; 53 -> 35[label="",style="dashed", color="red", weight=0]; 53[label="vwx30 == vwx40",fontsize=16,color="magenta"];53 -> 101[label="",style="dashed", color="magenta", weight=3]; 53 -> 102[label="",style="dashed", color="magenta", weight=3]; 54 -> 36[label="",style="dashed", color="red", weight=0]; 54[label="vwx30 == vwx40",fontsize=16,color="magenta"];54 -> 103[label="",style="dashed", color="magenta", weight=3]; 54 -> 104[label="",style="dashed", color="magenta", weight=3]; 55 -> 37[label="",style="dashed", color="red", weight=0]; 55[label="vwx30 == vwx40",fontsize=16,color="magenta"];55 -> 105[label="",style="dashed", color="magenta", weight=3]; 55 -> 106[label="",style="dashed", color="magenta", weight=3]; 56 -> 38[label="",style="dashed", color="red", weight=0]; 56[label="vwx30 == vwx40",fontsize=16,color="magenta"];56 -> 107[label="",style="dashed", color="magenta", weight=3]; 56 -> 108[label="",style="dashed", color="magenta", weight=3]; 57 -> 39[label="",style="dashed", color="red", weight=0]; 57[label="vwx30 == vwx40",fontsize=16,color="magenta"];57 -> 109[label="",style="dashed", color="magenta", weight=3]; 57 -> 110[label="",style="dashed", color="magenta", weight=3]; 58 -> 40[label="",style="dashed", color="red", weight=0]; 58[label="vwx30 == vwx40",fontsize=16,color="magenta"];58 -> 111[label="",style="dashed", color="magenta", weight=3]; 58 -> 112[label="",style="dashed", color="magenta", weight=3]; 59[label="compare2 (Right vwx16) (Right vwx17) False",fontsize=16,color="black",shape="box"];59 -> 113[label="",style="solid", color="black", weight=3]; 60[label="compare2 (Right vwx16) (Right vwx17) True",fontsize=16,color="black",shape="box"];60 -> 114[label="",style="solid", color="black", weight=3]; 61[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];1821[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];61 -> 1821[label="",style="solid", color="burlywood", weight=9]; 1821 -> 115[label="",style="solid", color="burlywood", weight=3]; 1822[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];61 -> 1822[label="",style="solid", color="burlywood", weight=9]; 1822 -> 116[label="",style="solid", color="burlywood", weight=3]; 62[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1823[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];62 -> 1823[label="",style="solid", color="burlywood", weight=9]; 1823 -> 117[label="",style="solid", color="burlywood", weight=3]; 63[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];1824[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];63 -> 1824[label="",style="solid", color="burlywood", weight=9]; 1824 -> 118[label="",style="solid", color="burlywood", weight=3]; 1825[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];63 -> 1825[label="",style="solid", color="burlywood", weight=9]; 1825 -> 119[label="",style="solid", color="burlywood", weight=3]; 64[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];1826[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];64 -> 1826[label="",style="solid", color="burlywood", weight=9]; 1826 -> 120[label="",style="solid", color="burlywood", weight=3]; 1827[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];64 -> 1827[label="",style="solid", color="burlywood", weight=9]; 1827 -> 121[label="",style="solid", color="burlywood", weight=3]; 65[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];1828[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];65 -> 1828[label="",style="solid", color="burlywood", weight=9]; 1828 -> 122[label="",style="solid", color="burlywood", weight=3]; 1829[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];65 -> 1829[label="",style="solid", color="burlywood", weight=9]; 1829 -> 123[label="",style="solid", color="burlywood", weight=3]; 66[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];1830[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];66 -> 1830[label="",style="solid", color="burlywood", weight=9]; 1830 -> 124[label="",style="solid", color="burlywood", weight=3]; 1831[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];66 -> 1831[label="",style="solid", color="burlywood", weight=9]; 1831 -> 125[label="",style="solid", color="burlywood", weight=3]; 67[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];1832[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];67 -> 1832[label="",style="solid", color="burlywood", weight=9]; 1832 -> 126[label="",style="solid", color="burlywood", weight=3]; 1833[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];67 -> 1833[label="",style="solid", color="burlywood", weight=9]; 1833 -> 127[label="",style="solid", color="burlywood", weight=3]; 68[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];1834[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];68 -> 1834[label="",style="solid", color="burlywood", weight=9]; 1834 -> 128[label="",style="solid", color="burlywood", weight=3]; 1835[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];68 -> 1835[label="",style="solid", color="burlywood", weight=9]; 1835 -> 129[label="",style="solid", color="burlywood", weight=3]; 69[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];1836[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];69 -> 1836[label="",style="solid", color="burlywood", weight=9]; 1836 -> 130[label="",style="solid", color="burlywood", weight=3]; 1837[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];69 -> 1837[label="",style="solid", color="burlywood", weight=9]; 1837 -> 131[label="",style="solid", color="burlywood", weight=3]; 1838[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];69 -> 1838[label="",style="solid", color="burlywood", weight=9]; 1838 -> 132[label="",style="solid", color="burlywood", weight=3]; 70[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];1839[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];70 -> 1839[label="",style="solid", color="burlywood", weight=9]; 1839 -> 133[label="",style="solid", color="burlywood", weight=3]; 1840[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];70 -> 1840[label="",style="solid", color="burlywood", weight=9]; 1840 -> 134[label="",style="solid", color="burlywood", weight=3]; 1841[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];70 -> 1841[label="",style="solid", color="burlywood", weight=9]; 1841 -> 135[label="",style="solid", color="burlywood", weight=3]; 71[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];1842[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];71 -> 1842[label="",style="solid", color="burlywood", weight=9]; 1842 -> 136[label="",style="solid", color="burlywood", weight=3]; 1843[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];71 -> 1843[label="",style="solid", color="burlywood", weight=9]; 1843 -> 137[label="",style="solid", color="burlywood", weight=3]; 1844[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];71 -> 1844[label="",style="solid", color="burlywood", weight=9]; 1844 -> 138[label="",style="solid", color="burlywood", weight=3]; 72[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];1845[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];72 -> 1845[label="",style="solid", color="burlywood", weight=9]; 1845 -> 139[label="",style="solid", color="burlywood", weight=3]; 73[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];1846[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];73 -> 1846[label="",style="solid", color="burlywood", weight=9]; 1846 -> 140[label="",style="solid", color="burlywood", weight=3]; 1847[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];73 -> 1847[label="",style="solid", color="burlywood", weight=9]; 1847 -> 141[label="",style="solid", color="burlywood", weight=3]; 74[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];1848[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];74 -> 1848[label="",style="solid", color="burlywood", weight=9]; 1848 -> 142[label="",style="solid", color="burlywood", weight=3]; 1849[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];74 -> 1849[label="",style="solid", color="burlywood", weight=9]; 1849 -> 143[label="",style="solid", color="burlywood", weight=3]; 75[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];1850[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];75 -> 1850[label="",style="solid", color="burlywood", weight=9]; 1850 -> 144[label="",style="solid", color="burlywood", weight=3]; 76[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];1851[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];76 -> 1851[label="",style="solid", color="burlywood", weight=9]; 1851 -> 145[label="",style="solid", color="burlywood", weight=3]; 77[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1852[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];77 -> 1852[label="",style="solid", color="burlywood", weight=9]; 1852 -> 146[label="",style="solid", color="burlywood", weight=3]; 78[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];1853[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];78 -> 1853[label="",style="solid", color="burlywood", weight=9]; 1853 -> 147[label="",style="solid", color="burlywood", weight=3]; 79[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];1854[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];79 -> 1854[label="",style="solid", color="burlywood", weight=9]; 1854 -> 148[label="",style="solid", color="burlywood", weight=3]; 80[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];1855[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];80 -> 1855[label="",style="solid", color="burlywood", weight=9]; 1855 -> 149[label="",style="solid", color="burlywood", weight=3]; 81 -> 190[label="",style="dashed", color="red", weight=0]; 81[label="compare1 (Left vwx9) (Left vwx10) (Left vwx9 <= Left vwx10)",fontsize=16,color="magenta"];81 -> 191[label="",style="dashed", color="magenta", weight=3]; 81 -> 192[label="",style="dashed", color="magenta", weight=3]; 81 -> 193[label="",style="dashed", color="magenta", weight=3]; 82[label="EQ",fontsize=16,color="green",shape="box"];83[label="LT",fontsize=16,color="green",shape="box"];84[label="compare0 (Right vwx30) (Left vwx40) otherwise",fontsize=16,color="black",shape="box"];84 -> 151[label="",style="solid", color="black", weight=3]; 85[label="vwx40",fontsize=16,color="green",shape="box"];86[label="vwx30",fontsize=16,color="green",shape="box"];87[label="vwx40",fontsize=16,color="green",shape="box"];88[label="vwx30",fontsize=16,color="green",shape="box"];89[label="vwx40",fontsize=16,color="green",shape="box"];90[label="vwx30",fontsize=16,color="green",shape="box"];91[label="vwx40",fontsize=16,color="green",shape="box"];92[label="vwx30",fontsize=16,color="green",shape="box"];93[label="vwx40",fontsize=16,color="green",shape="box"];94[label="vwx30",fontsize=16,color="green",shape="box"];95[label="vwx40",fontsize=16,color="green",shape="box"];96[label="vwx30",fontsize=16,color="green",shape="box"];97[label="vwx40",fontsize=16,color="green",shape="box"];98[label="vwx30",fontsize=16,color="green",shape="box"];99[label="vwx40",fontsize=16,color="green",shape="box"];100[label="vwx30",fontsize=16,color="green",shape="box"];101[label="vwx40",fontsize=16,color="green",shape="box"];102[label="vwx30",fontsize=16,color="green",shape="box"];103[label="vwx40",fontsize=16,color="green",shape="box"];104[label="vwx30",fontsize=16,color="green",shape="box"];105[label="vwx40",fontsize=16,color="green",shape="box"];106[label="vwx30",fontsize=16,color="green",shape="box"];107[label="vwx40",fontsize=16,color="green",shape="box"];108[label="vwx30",fontsize=16,color="green",shape="box"];109[label="vwx40",fontsize=16,color="green",shape="box"];110[label="vwx30",fontsize=16,color="green",shape="box"];111[label="vwx40",fontsize=16,color="green",shape="box"];112[label="vwx30",fontsize=16,color="green",shape="box"];113 -> 201[label="",style="dashed", color="red", weight=0]; 113[label="compare1 (Right vwx16) (Right vwx17) (Right vwx16 <= Right vwx17)",fontsize=16,color="magenta"];113 -> 202[label="",style="dashed", color="magenta", weight=3]; 113 -> 203[label="",style="dashed", color="magenta", weight=3]; 113 -> 204[label="",style="dashed", color="magenta", weight=3]; 114[label="EQ",fontsize=16,color="green",shape="box"];115[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1856[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];115 -> 1856[label="",style="solid", color="burlywood", weight=9]; 1856 -> 153[label="",style="solid", color="burlywood", weight=3]; 1857[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];115 -> 1857[label="",style="solid", color="burlywood", weight=9]; 1857 -> 154[label="",style="solid", color="burlywood", weight=3]; 116[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1858[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];116 -> 1858[label="",style="solid", color="burlywood", weight=9]; 1858 -> 155[label="",style="solid", color="burlywood", weight=3]; 1859[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];116 -> 1859[label="",style="solid", color="burlywood", weight=9]; 1859 -> 156[label="",style="solid", color="burlywood", weight=3]; 117[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1860[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];117 -> 1860[label="",style="solid", color="burlywood", weight=9]; 1860 -> 157[label="",style="solid", color="burlywood", weight=3]; 118[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];118 -> 158[label="",style="solid", color="black", weight=3]; 119[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];119 -> 159[label="",style="solid", color="black", weight=3]; 120[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];120 -> 160[label="",style="solid", color="black", weight=3]; 121[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];121 -> 161[label="",style="solid", color="black", weight=3]; 122[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];122 -> 162[label="",style="solid", color="black", weight=3]; 123[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];123 -> 163[label="",style="solid", color="black", weight=3]; 124[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];124 -> 164[label="",style="solid", color="black", weight=3]; 125[label="[] == []",fontsize=16,color="black",shape="box"];125 -> 165[label="",style="solid", color="black", weight=3]; 126[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];126 -> 166[label="",style="solid", color="black", weight=3]; 127[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];127 -> 167[label="",style="solid", color="black", weight=3]; 128[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];128 -> 168[label="",style="solid", color="black", weight=3]; 129[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];129 -> 169[label="",style="solid", color="black", weight=3]; 130[label="LT == LT",fontsize=16,color="black",shape="box"];130 -> 170[label="",style="solid", color="black", weight=3]; 131[label="LT == EQ",fontsize=16,color="black",shape="box"];131 -> 171[label="",style="solid", color="black", weight=3]; 132[label="LT == GT",fontsize=16,color="black",shape="box"];132 -> 172[label="",style="solid", color="black", weight=3]; 133[label="EQ == LT",fontsize=16,color="black",shape="box"];133 -> 173[label="",style="solid", color="black", weight=3]; 134[label="EQ == EQ",fontsize=16,color="black",shape="box"];134 -> 174[label="",style="solid", color="black", weight=3]; 135[label="EQ == GT",fontsize=16,color="black",shape="box"];135 -> 175[label="",style="solid", color="black", weight=3]; 136[label="GT == LT",fontsize=16,color="black",shape="box"];136 -> 176[label="",style="solid", color="black", weight=3]; 137[label="GT == EQ",fontsize=16,color="black",shape="box"];137 -> 177[label="",style="solid", color="black", weight=3]; 138[label="GT == GT",fontsize=16,color="black",shape="box"];138 -> 178[label="",style="solid", color="black", weight=3]; 139[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];139 -> 179[label="",style="solid", color="black", weight=3]; 140[label="False == False",fontsize=16,color="black",shape="box"];140 -> 180[label="",style="solid", color="black", weight=3]; 141[label="False == True",fontsize=16,color="black",shape="box"];141 -> 181[label="",style="solid", color="black", weight=3]; 142[label="True == False",fontsize=16,color="black",shape="box"];142 -> 182[label="",style="solid", color="black", weight=3]; 143[label="True == True",fontsize=16,color="black",shape="box"];143 -> 183[label="",style="solid", color="black", weight=3]; 144[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];144 -> 184[label="",style="solid", color="black", weight=3]; 145[label="() == ()",fontsize=16,color="black",shape="box"];145 -> 185[label="",style="solid", color="black", weight=3]; 146[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];1861[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];146 -> 1861[label="",style="solid", color="burlywood", weight=9]; 1861 -> 186[label="",style="solid", color="burlywood", weight=3]; 147[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];147 -> 187[label="",style="solid", color="black", weight=3]; 148[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];1862[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];148 -> 1862[label="",style="solid", color="burlywood", weight=9]; 1862 -> 188[label="",style="solid", color="burlywood", weight=3]; 149[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];149 -> 189[label="",style="solid", color="black", weight=3]; 191[label="vwx10",fontsize=16,color="green",shape="box"];192[label="Left vwx9 <= Left vwx10",fontsize=16,color="black",shape="box"];192 -> 197[label="",style="solid", color="black", weight=3]; 193[label="vwx9",fontsize=16,color="green",shape="box"];190[label="compare1 (Left vwx23) (Left vwx24) vwx25",fontsize=16,color="burlywood",shape="triangle"];1863[label="vwx25/False",fontsize=10,color="white",style="solid",shape="box"];190 -> 1863[label="",style="solid", color="burlywood", weight=9]; 1863 -> 198[label="",style="solid", color="burlywood", weight=3]; 1864[label="vwx25/True",fontsize=10,color="white",style="solid",shape="box"];190 -> 1864[label="",style="solid", color="burlywood", weight=9]; 1864 -> 199[label="",style="solid", color="burlywood", weight=3]; 151[label="compare0 (Right vwx30) (Left vwx40) True",fontsize=16,color="black",shape="box"];151 -> 200[label="",style="solid", color="black", weight=3]; 202[label="vwx16",fontsize=16,color="green",shape="box"];203[label="Right vwx16 <= Right vwx17",fontsize=16,color="black",shape="box"];203 -> 208[label="",style="solid", color="black", weight=3]; 204[label="vwx17",fontsize=16,color="green",shape="box"];201[label="compare1 (Right vwx30) (Right vwx31) vwx32",fontsize=16,color="burlywood",shape="triangle"];1865[label="vwx32/False",fontsize=10,color="white",style="solid",shape="box"];201 -> 1865[label="",style="solid", color="burlywood", weight=9]; 1865 -> 209[label="",style="solid", color="burlywood", weight=3]; 1866[label="vwx32/True",fontsize=10,color="white",style="solid",shape="box"];201 -> 1866[label="",style="solid", color="burlywood", weight=9]; 1866 -> 210[label="",style="solid", color="burlywood", weight=3]; 153[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];1867[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];153 -> 1867[label="",style="solid", color="burlywood", weight=9]; 1867 -> 211[label="",style="solid", color="burlywood", weight=3]; 1868[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];153 -> 1868[label="",style="solid", color="burlywood", weight=9]; 1868 -> 212[label="",style="solid", color="burlywood", weight=3]; 154[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];1869[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];154 -> 1869[label="",style="solid", color="burlywood", weight=9]; 1869 -> 213[label="",style="solid", color="burlywood", weight=3]; 1870[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];154 -> 1870[label="",style="solid", color="burlywood", weight=9]; 1870 -> 214[label="",style="solid", color="burlywood", weight=3]; 155[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];1871[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];155 -> 1871[label="",style="solid", color="burlywood", weight=9]; 1871 -> 215[label="",style="solid", color="burlywood", weight=3]; 1872[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];155 -> 1872[label="",style="solid", color="burlywood", weight=9]; 1872 -> 216[label="",style="solid", color="burlywood", weight=3]; 156[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];1873[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];156 -> 1873[label="",style="solid", color="burlywood", weight=9]; 1873 -> 217[label="",style="solid", color="burlywood", weight=3]; 1874[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];156 -> 1874[label="",style="solid", color="burlywood", weight=9]; 1874 -> 218[label="",style="solid", color="burlywood", weight=3]; 157[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];157 -> 219[label="",style="solid", color="black", weight=3]; 158[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1875[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1875[label="",style="solid", color="blue", weight=9]; 1875 -> 220[label="",style="solid", color="blue", weight=3]; 1876[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1876[label="",style="solid", color="blue", weight=9]; 1876 -> 221[label="",style="solid", color="blue", weight=3]; 1877[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1877[label="",style="solid", color="blue", weight=9]; 1877 -> 222[label="",style="solid", color="blue", weight=3]; 1878[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1878[label="",style="solid", color="blue", weight=9]; 1878 -> 223[label="",style="solid", color="blue", weight=3]; 1879[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1879[label="",style="solid", color="blue", weight=9]; 1879 -> 224[label="",style="solid", color="blue", weight=3]; 1880[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1880[label="",style="solid", color="blue", weight=9]; 1880 -> 225[label="",style="solid", color="blue", weight=3]; 1881[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1881[label="",style="solid", color="blue", weight=9]; 1881 -> 226[label="",style="solid", color="blue", weight=3]; 1882[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1882[label="",style="solid", color="blue", weight=9]; 1882 -> 227[label="",style="solid", color="blue", weight=3]; 1883[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1883[label="",style="solid", color="blue", weight=9]; 1883 -> 228[label="",style="solid", color="blue", weight=3]; 1884[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1884[label="",style="solid", color="blue", weight=9]; 1884 -> 229[label="",style="solid", color="blue", weight=3]; 1885[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1885[label="",style="solid", color="blue", weight=9]; 1885 -> 230[label="",style="solid", color="blue", weight=3]; 1886[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1886[label="",style="solid", color="blue", weight=9]; 1886 -> 231[label="",style="solid", color="blue", weight=3]; 1887[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1887[label="",style="solid", color="blue", weight=9]; 1887 -> 232[label="",style="solid", color="blue", weight=3]; 1888[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];158 -> 1888[label="",style="solid", color="blue", weight=9]; 1888 -> 233[label="",style="solid", color="blue", weight=3]; 159[label="False",fontsize=16,color="green",shape="box"];160[label="False",fontsize=16,color="green",shape="box"];161[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1889[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1889[label="",style="solid", color="blue", weight=9]; 1889 -> 234[label="",style="solid", color="blue", weight=3]; 1890[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1890[label="",style="solid", color="blue", weight=9]; 1890 -> 235[label="",style="solid", color="blue", weight=3]; 1891[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1891[label="",style="solid", color="blue", weight=9]; 1891 -> 236[label="",style="solid", color="blue", weight=3]; 1892[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1892[label="",style="solid", color="blue", weight=9]; 1892 -> 237[label="",style="solid", color="blue", weight=3]; 1893[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1893[label="",style="solid", color="blue", weight=9]; 1893 -> 238[label="",style="solid", color="blue", weight=3]; 1894[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1894[label="",style="solid", color="blue", weight=9]; 1894 -> 239[label="",style="solid", color="blue", weight=3]; 1895[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1895[label="",style="solid", color="blue", weight=9]; 1895 -> 240[label="",style="solid", color="blue", weight=3]; 1896[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1896[label="",style="solid", color="blue", weight=9]; 1896 -> 241[label="",style="solid", color="blue", weight=3]; 1897[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1897[label="",style="solid", color="blue", weight=9]; 1897 -> 242[label="",style="solid", color="blue", weight=3]; 1898[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1898[label="",style="solid", color="blue", weight=9]; 1898 -> 243[label="",style="solid", color="blue", weight=3]; 1899[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1899[label="",style="solid", color="blue", weight=9]; 1899 -> 244[label="",style="solid", color="blue", weight=3]; 1900[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1900[label="",style="solid", color="blue", weight=9]; 1900 -> 245[label="",style="solid", color="blue", weight=3]; 1901[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1901[label="",style="solid", color="blue", weight=9]; 1901 -> 246[label="",style="solid", color="blue", weight=3]; 1902[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];161 -> 1902[label="",style="solid", color="blue", weight=9]; 1902 -> 247[label="",style="solid", color="blue", weight=3]; 162 -> 383[label="",style="dashed", color="red", weight=0]; 162[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];162 -> 384[label="",style="dashed", color="magenta", weight=3]; 162 -> 385[label="",style="dashed", color="magenta", weight=3]; 163[label="False",fontsize=16,color="green",shape="box"];164[label="False",fontsize=16,color="green",shape="box"];165[label="True",fontsize=16,color="green",shape="box"];166[label="True",fontsize=16,color="green",shape="box"];167[label="False",fontsize=16,color="green",shape="box"];168[label="False",fontsize=16,color="green",shape="box"];169[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1903[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1903[label="",style="solid", color="blue", weight=9]; 1903 -> 259[label="",style="solid", color="blue", weight=3]; 1904[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1904[label="",style="solid", color="blue", weight=9]; 1904 -> 260[label="",style="solid", color="blue", weight=3]; 1905[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1905[label="",style="solid", color="blue", weight=9]; 1905 -> 261[label="",style="solid", color="blue", weight=3]; 1906[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1906[label="",style="solid", color="blue", weight=9]; 1906 -> 262[label="",style="solid", color="blue", weight=3]; 1907[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1907[label="",style="solid", color="blue", weight=9]; 1907 -> 263[label="",style="solid", color="blue", weight=3]; 1908[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1908[label="",style="solid", color="blue", weight=9]; 1908 -> 264[label="",style="solid", color="blue", weight=3]; 1909[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1909[label="",style="solid", color="blue", weight=9]; 1909 -> 265[label="",style="solid", color="blue", weight=3]; 1910[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1910[label="",style="solid", color="blue", weight=9]; 1910 -> 266[label="",style="solid", color="blue", weight=3]; 1911[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1911[label="",style="solid", color="blue", weight=9]; 1911 -> 267[label="",style="solid", color="blue", weight=3]; 1912[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1912[label="",style="solid", color="blue", weight=9]; 1912 -> 268[label="",style="solid", color="blue", weight=3]; 1913[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1913[label="",style="solid", color="blue", weight=9]; 1913 -> 269[label="",style="solid", color="blue", weight=3]; 1914[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1914[label="",style="solid", color="blue", weight=9]; 1914 -> 270[label="",style="solid", color="blue", weight=3]; 1915[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1915[label="",style="solid", color="blue", weight=9]; 1915 -> 271[label="",style="solid", color="blue", weight=3]; 1916[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1916[label="",style="solid", color="blue", weight=9]; 1916 -> 272[label="",style="solid", color="blue", weight=3]; 170[label="True",fontsize=16,color="green",shape="box"];171[label="False",fontsize=16,color="green",shape="box"];172[label="False",fontsize=16,color="green",shape="box"];173[label="False",fontsize=16,color="green",shape="box"];174[label="True",fontsize=16,color="green",shape="box"];175[label="False",fontsize=16,color="green",shape="box"];176[label="False",fontsize=16,color="green",shape="box"];177[label="False",fontsize=16,color="green",shape="box"];178[label="True",fontsize=16,color="green",shape="box"];179 -> 383[label="",style="dashed", color="red", weight=0]; 179[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];179 -> 386[label="",style="dashed", color="magenta", weight=3]; 179 -> 387[label="",style="dashed", color="magenta", weight=3]; 180[label="True",fontsize=16,color="green",shape="box"];181[label="False",fontsize=16,color="green",shape="box"];182[label="False",fontsize=16,color="green",shape="box"];183[label="True",fontsize=16,color="green",shape="box"];184 -> 383[label="",style="dashed", color="red", weight=0]; 184[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];184 -> 388[label="",style="dashed", color="magenta", weight=3]; 184 -> 389[label="",style="dashed", color="magenta", weight=3]; 185[label="True",fontsize=16,color="green",shape="box"];186[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];186 -> 273[label="",style="solid", color="black", weight=3]; 187 -> 383[label="",style="dashed", color="red", weight=0]; 187[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];187 -> 390[label="",style="dashed", color="magenta", weight=3]; 187 -> 391[label="",style="dashed", color="magenta", weight=3]; 188[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];188 -> 274[label="",style="solid", color="black", weight=3]; 189 -> 61[label="",style="dashed", color="red", weight=0]; 189[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];189 -> 275[label="",style="dashed", color="magenta", weight=3]; 189 -> 276[label="",style="dashed", color="magenta", weight=3]; 197[label="vwx9 <= vwx10",fontsize=16,color="blue",shape="box"];1917[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1917[label="",style="solid", color="blue", weight=9]; 1917 -> 277[label="",style="solid", color="blue", weight=3]; 1918[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1918[label="",style="solid", color="blue", weight=9]; 1918 -> 278[label="",style="solid", color="blue", weight=3]; 1919[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1919[label="",style="solid", color="blue", weight=9]; 1919 -> 279[label="",style="solid", color="blue", weight=3]; 1920[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1920[label="",style="solid", color="blue", weight=9]; 1920 -> 280[label="",style="solid", color="blue", weight=3]; 1921[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1921[label="",style="solid", color="blue", weight=9]; 1921 -> 281[label="",style="solid", color="blue", weight=3]; 1922[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1922[label="",style="solid", color="blue", weight=9]; 1922 -> 282[label="",style="solid", color="blue", weight=3]; 1923[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1923[label="",style="solid", color="blue", weight=9]; 1923 -> 283[label="",style="solid", color="blue", weight=3]; 1924[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1924[label="",style="solid", color="blue", weight=9]; 1924 -> 284[label="",style="solid", color="blue", weight=3]; 1925[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1925[label="",style="solid", color="blue", weight=9]; 1925 -> 285[label="",style="solid", color="blue", weight=3]; 1926[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1926[label="",style="solid", color="blue", weight=9]; 1926 -> 286[label="",style="solid", color="blue", weight=3]; 1927[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1927[label="",style="solid", color="blue", weight=9]; 1927 -> 287[label="",style="solid", color="blue", weight=3]; 1928[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1928[label="",style="solid", color="blue", weight=9]; 1928 -> 288[label="",style="solid", color="blue", weight=3]; 1929[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1929[label="",style="solid", color="blue", weight=9]; 1929 -> 289[label="",style="solid", color="blue", weight=3]; 1930[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];197 -> 1930[label="",style="solid", color="blue", weight=9]; 1930 -> 290[label="",style="solid", color="blue", weight=3]; 198[label="compare1 (Left vwx23) (Left vwx24) False",fontsize=16,color="black",shape="box"];198 -> 291[label="",style="solid", color="black", weight=3]; 199[label="compare1 (Left vwx23) (Left vwx24) True",fontsize=16,color="black",shape="box"];199 -> 292[label="",style="solid", color="black", weight=3]; 200[label="GT",fontsize=16,color="green",shape="box"];208[label="vwx16 <= vwx17",fontsize=16,color="blue",shape="box"];1931[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1931[label="",style="solid", color="blue", weight=9]; 1931 -> 293[label="",style="solid", color="blue", weight=3]; 1932[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1932[label="",style="solid", color="blue", weight=9]; 1932 -> 294[label="",style="solid", color="blue", weight=3]; 1933[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1933[label="",style="solid", color="blue", weight=9]; 1933 -> 295[label="",style="solid", color="blue", weight=3]; 1934[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1934[label="",style="solid", color="blue", weight=9]; 1934 -> 296[label="",style="solid", color="blue", weight=3]; 1935[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1935[label="",style="solid", color="blue", weight=9]; 1935 -> 297[label="",style="solid", color="blue", weight=3]; 1936[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1936[label="",style="solid", color="blue", weight=9]; 1936 -> 298[label="",style="solid", color="blue", weight=3]; 1937[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1937[label="",style="solid", color="blue", weight=9]; 1937 -> 299[label="",style="solid", color="blue", weight=3]; 1938[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1938[label="",style="solid", color="blue", weight=9]; 1938 -> 300[label="",style="solid", color="blue", weight=3]; 1939[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1939[label="",style="solid", color="blue", weight=9]; 1939 -> 301[label="",style="solid", color="blue", weight=3]; 1940[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1940[label="",style="solid", color="blue", weight=9]; 1940 -> 302[label="",style="solid", color="blue", weight=3]; 1941[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1941[label="",style="solid", color="blue", weight=9]; 1941 -> 303[label="",style="solid", color="blue", weight=3]; 1942[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1942[label="",style="solid", color="blue", weight=9]; 1942 -> 304[label="",style="solid", color="blue", weight=3]; 1943[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1943[label="",style="solid", color="blue", weight=9]; 1943 -> 305[label="",style="solid", color="blue", weight=3]; 1944[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];208 -> 1944[label="",style="solid", color="blue", weight=9]; 1944 -> 306[label="",style="solid", color="blue", weight=3]; 209[label="compare1 (Right vwx30) (Right vwx31) False",fontsize=16,color="black",shape="box"];209 -> 307[label="",style="solid", color="black", weight=3]; 210[label="compare1 (Right vwx30) (Right vwx31) True",fontsize=16,color="black",shape="box"];210 -> 308[label="",style="solid", color="black", weight=3]; 211[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1945[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];211 -> 1945[label="",style="solid", color="burlywood", weight=9]; 1945 -> 309[label="",style="solid", color="burlywood", weight=3]; 1946[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];211 -> 1946[label="",style="solid", color="burlywood", weight=9]; 1946 -> 310[label="",style="solid", color="burlywood", weight=3]; 212[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];212 -> 311[label="",style="solid", color="black", weight=3]; 213[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1947[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];213 -> 1947[label="",style="solid", color="burlywood", weight=9]; 1947 -> 312[label="",style="solid", color="burlywood", weight=3]; 1948[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];213 -> 1948[label="",style="solid", color="burlywood", weight=9]; 1948 -> 313[label="",style="solid", color="burlywood", weight=3]; 214[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1949[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];214 -> 1949[label="",style="solid", color="burlywood", weight=9]; 1949 -> 314[label="",style="solid", color="burlywood", weight=3]; 1950[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];214 -> 1950[label="",style="solid", color="burlywood", weight=9]; 1950 -> 315[label="",style="solid", color="burlywood", weight=3]; 215[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];215 -> 316[label="",style="solid", color="black", weight=3]; 216[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1951[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];216 -> 1951[label="",style="solid", color="burlywood", weight=9]; 1951 -> 317[label="",style="solid", color="burlywood", weight=3]; 1952[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];216 -> 1952[label="",style="solid", color="burlywood", weight=9]; 1952 -> 318[label="",style="solid", color="burlywood", weight=3]; 217[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];1953[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];217 -> 1953[label="",style="solid", color="burlywood", weight=9]; 1953 -> 319[label="",style="solid", color="burlywood", weight=3]; 1954[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];217 -> 1954[label="",style="solid", color="burlywood", weight=9]; 1954 -> 320[label="",style="solid", color="burlywood", weight=3]; 218[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];1955[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];218 -> 1955[label="",style="solid", color="burlywood", weight=9]; 1955 -> 321[label="",style="solid", color="burlywood", weight=3]; 1956[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];218 -> 1956[label="",style="solid", color="burlywood", weight=9]; 1956 -> 322[label="",style="solid", color="burlywood", weight=3]; 219 -> 27[label="",style="dashed", color="red", weight=0]; 219[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];219 -> 323[label="",style="dashed", color="magenta", weight=3]; 219 -> 324[label="",style="dashed", color="magenta", weight=3]; 220 -> 27[label="",style="dashed", color="red", weight=0]; 220[label="vwx300 == vwx400",fontsize=16,color="magenta"];220 -> 325[label="",style="dashed", color="magenta", weight=3]; 220 -> 326[label="",style="dashed", color="magenta", weight=3]; 221 -> 28[label="",style="dashed", color="red", weight=0]; 221[label="vwx300 == vwx400",fontsize=16,color="magenta"];221 -> 327[label="",style="dashed", color="magenta", weight=3]; 221 -> 328[label="",style="dashed", color="magenta", weight=3]; 222 -> 29[label="",style="dashed", color="red", weight=0]; 222[label="vwx300 == vwx400",fontsize=16,color="magenta"];222 -> 329[label="",style="dashed", color="magenta", weight=3]; 222 -> 330[label="",style="dashed", color="magenta", weight=3]; 223 -> 30[label="",style="dashed", color="red", weight=0]; 223[label="vwx300 == vwx400",fontsize=16,color="magenta"];223 -> 331[label="",style="dashed", color="magenta", weight=3]; 223 -> 332[label="",style="dashed", color="magenta", weight=3]; 224 -> 31[label="",style="dashed", color="red", weight=0]; 224[label="vwx300 == vwx400",fontsize=16,color="magenta"];224 -> 333[label="",style="dashed", color="magenta", weight=3]; 224 -> 334[label="",style="dashed", color="magenta", weight=3]; 225 -> 32[label="",style="dashed", color="red", weight=0]; 225[label="vwx300 == vwx400",fontsize=16,color="magenta"];225 -> 335[label="",style="dashed", color="magenta", weight=3]; 225 -> 336[label="",style="dashed", color="magenta", weight=3]; 226 -> 33[label="",style="dashed", color="red", weight=0]; 226[label="vwx300 == vwx400",fontsize=16,color="magenta"];226 -> 337[label="",style="dashed", color="magenta", weight=3]; 226 -> 338[label="",style="dashed", color="magenta", weight=3]; 227 -> 34[label="",style="dashed", color="red", weight=0]; 227[label="vwx300 == vwx400",fontsize=16,color="magenta"];227 -> 339[label="",style="dashed", color="magenta", weight=3]; 227 -> 340[label="",style="dashed", color="magenta", weight=3]; 228 -> 35[label="",style="dashed", color="red", weight=0]; 228[label="vwx300 == vwx400",fontsize=16,color="magenta"];228 -> 341[label="",style="dashed", color="magenta", weight=3]; 228 -> 342[label="",style="dashed", color="magenta", weight=3]; 229 -> 36[label="",style="dashed", color="red", weight=0]; 229[label="vwx300 == vwx400",fontsize=16,color="magenta"];229 -> 343[label="",style="dashed", color="magenta", weight=3]; 229 -> 344[label="",style="dashed", color="magenta", weight=3]; 230 -> 37[label="",style="dashed", color="red", weight=0]; 230[label="vwx300 == vwx400",fontsize=16,color="magenta"];230 -> 345[label="",style="dashed", color="magenta", weight=3]; 230 -> 346[label="",style="dashed", color="magenta", weight=3]; 231 -> 38[label="",style="dashed", color="red", weight=0]; 231[label="vwx300 == vwx400",fontsize=16,color="magenta"];231 -> 347[label="",style="dashed", color="magenta", weight=3]; 231 -> 348[label="",style="dashed", color="magenta", weight=3]; 232 -> 39[label="",style="dashed", color="red", weight=0]; 232[label="vwx300 == vwx400",fontsize=16,color="magenta"];232 -> 349[label="",style="dashed", color="magenta", weight=3]; 232 -> 350[label="",style="dashed", color="magenta", weight=3]; 233 -> 40[label="",style="dashed", color="red", weight=0]; 233[label="vwx300 == vwx400",fontsize=16,color="magenta"];233 -> 351[label="",style="dashed", color="magenta", weight=3]; 233 -> 352[label="",style="dashed", color="magenta", weight=3]; 234 -> 27[label="",style="dashed", color="red", weight=0]; 234[label="vwx300 == vwx400",fontsize=16,color="magenta"];234 -> 353[label="",style="dashed", color="magenta", weight=3]; 234 -> 354[label="",style="dashed", color="magenta", weight=3]; 235 -> 28[label="",style="dashed", color="red", weight=0]; 235[label="vwx300 == vwx400",fontsize=16,color="magenta"];235 -> 355[label="",style="dashed", color="magenta", weight=3]; 235 -> 356[label="",style="dashed", color="magenta", weight=3]; 236 -> 29[label="",style="dashed", color="red", weight=0]; 236[label="vwx300 == vwx400",fontsize=16,color="magenta"];236 -> 357[label="",style="dashed", color="magenta", weight=3]; 236 -> 358[label="",style="dashed", color="magenta", weight=3]; 237 -> 30[label="",style="dashed", color="red", weight=0]; 237[label="vwx300 == vwx400",fontsize=16,color="magenta"];237 -> 359[label="",style="dashed", color="magenta", weight=3]; 237 -> 360[label="",style="dashed", color="magenta", weight=3]; 238 -> 31[label="",style="dashed", color="red", weight=0]; 238[label="vwx300 == vwx400",fontsize=16,color="magenta"];238 -> 361[label="",style="dashed", color="magenta", weight=3]; 238 -> 362[label="",style="dashed", color="magenta", weight=3]; 239 -> 32[label="",style="dashed", color="red", weight=0]; 239[label="vwx300 == vwx400",fontsize=16,color="magenta"];239 -> 363[label="",style="dashed", color="magenta", weight=3]; 239 -> 364[label="",style="dashed", color="magenta", weight=3]; 240 -> 33[label="",style="dashed", color="red", weight=0]; 240[label="vwx300 == vwx400",fontsize=16,color="magenta"];240 -> 365[label="",style="dashed", color="magenta", weight=3]; 240 -> 366[label="",style="dashed", color="magenta", weight=3]; 241 -> 34[label="",style="dashed", color="red", weight=0]; 241[label="vwx300 == vwx400",fontsize=16,color="magenta"];241 -> 367[label="",style="dashed", color="magenta", weight=3]; 241 -> 368[label="",style="dashed", color="magenta", weight=3]; 242 -> 35[label="",style="dashed", color="red", weight=0]; 242[label="vwx300 == vwx400",fontsize=16,color="magenta"];242 -> 369[label="",style="dashed", color="magenta", weight=3]; 242 -> 370[label="",style="dashed", color="magenta", weight=3]; 243 -> 36[label="",style="dashed", color="red", weight=0]; 243[label="vwx300 == vwx400",fontsize=16,color="magenta"];243 -> 371[label="",style="dashed", color="magenta", weight=3]; 243 -> 372[label="",style="dashed", color="magenta", weight=3]; 244 -> 37[label="",style="dashed", color="red", weight=0]; 244[label="vwx300 == vwx400",fontsize=16,color="magenta"];244 -> 373[label="",style="dashed", color="magenta", weight=3]; 244 -> 374[label="",style="dashed", color="magenta", weight=3]; 245 -> 38[label="",style="dashed", color="red", weight=0]; 245[label="vwx300 == vwx400",fontsize=16,color="magenta"];245 -> 375[label="",style="dashed", color="magenta", weight=3]; 245 -> 376[label="",style="dashed", color="magenta", weight=3]; 246 -> 39[label="",style="dashed", color="red", weight=0]; 246[label="vwx300 == vwx400",fontsize=16,color="magenta"];246 -> 377[label="",style="dashed", color="magenta", weight=3]; 246 -> 378[label="",style="dashed", color="magenta", weight=3]; 247 -> 40[label="",style="dashed", color="red", weight=0]; 247[label="vwx300 == vwx400",fontsize=16,color="magenta"];247 -> 379[label="",style="dashed", color="magenta", weight=3]; 247 -> 380[label="",style="dashed", color="magenta", weight=3]; 384[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1957[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1957[label="",style="solid", color="blue", weight=9]; 1957 -> 396[label="",style="solid", color="blue", weight=3]; 1958[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1958[label="",style="solid", color="blue", weight=9]; 1958 -> 397[label="",style="solid", color="blue", weight=3]; 1959[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1959[label="",style="solid", color="blue", weight=9]; 1959 -> 398[label="",style="solid", color="blue", weight=3]; 1960[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1960[label="",style="solid", color="blue", weight=9]; 1960 -> 399[label="",style="solid", color="blue", weight=3]; 1961[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1961[label="",style="solid", color="blue", weight=9]; 1961 -> 400[label="",style="solid", color="blue", weight=3]; 1962[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1962[label="",style="solid", color="blue", weight=9]; 1962 -> 401[label="",style="solid", color="blue", weight=3]; 1963[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1963[label="",style="solid", color="blue", weight=9]; 1963 -> 402[label="",style="solid", color="blue", weight=3]; 1964[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1964[label="",style="solid", color="blue", weight=9]; 1964 -> 403[label="",style="solid", color="blue", weight=3]; 1965[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1965[label="",style="solid", color="blue", weight=9]; 1965 -> 404[label="",style="solid", color="blue", weight=3]; 1966[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1966[label="",style="solid", color="blue", weight=9]; 1966 -> 405[label="",style="solid", color="blue", weight=3]; 1967[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1967[label="",style="solid", color="blue", weight=9]; 1967 -> 406[label="",style="solid", color="blue", weight=3]; 1968[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1968[label="",style="solid", color="blue", weight=9]; 1968 -> 407[label="",style="solid", color="blue", weight=3]; 1969[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1969[label="",style="solid", color="blue", weight=9]; 1969 -> 408[label="",style="solid", color="blue", weight=3]; 1970[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];384 -> 1970[label="",style="solid", color="blue", weight=9]; 1970 -> 409[label="",style="solid", color="blue", weight=3]; 385 -> 30[label="",style="dashed", color="red", weight=0]; 385[label="vwx301 == vwx401",fontsize=16,color="magenta"];385 -> 410[label="",style="dashed", color="magenta", weight=3]; 385 -> 411[label="",style="dashed", color="magenta", weight=3]; 383[label="vwx37 && vwx38",fontsize=16,color="burlywood",shape="triangle"];1971[label="vwx37/False",fontsize=10,color="white",style="solid",shape="box"];383 -> 1971[label="",style="solid", color="burlywood", weight=9]; 1971 -> 412[label="",style="solid", color="burlywood", weight=3]; 1972[label="vwx37/True",fontsize=10,color="white",style="solid",shape="box"];383 -> 1972[label="",style="solid", color="burlywood", weight=9]; 1972 -> 413[label="",style="solid", color="burlywood", weight=3]; 259 -> 27[label="",style="dashed", color="red", weight=0]; 259[label="vwx300 == vwx400",fontsize=16,color="magenta"];259 -> 414[label="",style="dashed", color="magenta", weight=3]; 259 -> 415[label="",style="dashed", color="magenta", weight=3]; 260 -> 28[label="",style="dashed", color="red", weight=0]; 260[label="vwx300 == vwx400",fontsize=16,color="magenta"];260 -> 416[label="",style="dashed", color="magenta", weight=3]; 260 -> 417[label="",style="dashed", color="magenta", weight=3]; 261 -> 29[label="",style="dashed", color="red", weight=0]; 261[label="vwx300 == vwx400",fontsize=16,color="magenta"];261 -> 418[label="",style="dashed", color="magenta", weight=3]; 261 -> 419[label="",style="dashed", color="magenta", weight=3]; 262 -> 30[label="",style="dashed", color="red", weight=0]; 262[label="vwx300 == vwx400",fontsize=16,color="magenta"];262 -> 420[label="",style="dashed", color="magenta", weight=3]; 262 -> 421[label="",style="dashed", color="magenta", weight=3]; 263 -> 31[label="",style="dashed", color="red", weight=0]; 263[label="vwx300 == vwx400",fontsize=16,color="magenta"];263 -> 422[label="",style="dashed", color="magenta", weight=3]; 263 -> 423[label="",style="dashed", color="magenta", weight=3]; 264 -> 32[label="",style="dashed", color="red", weight=0]; 264[label="vwx300 == vwx400",fontsize=16,color="magenta"];264 -> 424[label="",style="dashed", color="magenta", weight=3]; 264 -> 425[label="",style="dashed", color="magenta", weight=3]; 265 -> 33[label="",style="dashed", color="red", weight=0]; 265[label="vwx300 == vwx400",fontsize=16,color="magenta"];265 -> 426[label="",style="dashed", color="magenta", weight=3]; 265 -> 427[label="",style="dashed", color="magenta", weight=3]; 266 -> 34[label="",style="dashed", color="red", weight=0]; 266[label="vwx300 == vwx400",fontsize=16,color="magenta"];266 -> 428[label="",style="dashed", color="magenta", weight=3]; 266 -> 429[label="",style="dashed", color="magenta", weight=3]; 267 -> 35[label="",style="dashed", color="red", weight=0]; 267[label="vwx300 == vwx400",fontsize=16,color="magenta"];267 -> 430[label="",style="dashed", color="magenta", weight=3]; 267 -> 431[label="",style="dashed", color="magenta", weight=3]; 268 -> 36[label="",style="dashed", color="red", weight=0]; 268[label="vwx300 == vwx400",fontsize=16,color="magenta"];268 -> 432[label="",style="dashed", color="magenta", weight=3]; 268 -> 433[label="",style="dashed", color="magenta", weight=3]; 269 -> 37[label="",style="dashed", color="red", weight=0]; 269[label="vwx300 == vwx400",fontsize=16,color="magenta"];269 -> 434[label="",style="dashed", color="magenta", weight=3]; 269 -> 435[label="",style="dashed", color="magenta", weight=3]; 270 -> 38[label="",style="dashed", color="red", weight=0]; 270[label="vwx300 == vwx400",fontsize=16,color="magenta"];270 -> 436[label="",style="dashed", color="magenta", weight=3]; 270 -> 437[label="",style="dashed", color="magenta", weight=3]; 271 -> 39[label="",style="dashed", color="red", weight=0]; 271[label="vwx300 == vwx400",fontsize=16,color="magenta"];271 -> 438[label="",style="dashed", color="magenta", weight=3]; 271 -> 439[label="",style="dashed", color="magenta", weight=3]; 272 -> 40[label="",style="dashed", color="red", weight=0]; 272[label="vwx300 == vwx400",fontsize=16,color="magenta"];272 -> 440[label="",style="dashed", color="magenta", weight=3]; 272 -> 441[label="",style="dashed", color="magenta", weight=3]; 386[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1973[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 1973[label="",style="solid", color="blue", weight=9]; 1973 -> 442[label="",style="solid", color="blue", weight=3]; 1974[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];386 -> 1974[label="",style="solid", color="blue", weight=9]; 1974 -> 443[label="",style="solid", color="blue", weight=3]; 387[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];1975[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 1975[label="",style="solid", color="blue", weight=9]; 1975 -> 444[label="",style="solid", color="blue", weight=3]; 1976[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];387 -> 1976[label="",style="solid", color="blue", weight=9]; 1976 -> 445[label="",style="solid", color="blue", weight=3]; 388[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];1977[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1977[label="",style="solid", color="blue", weight=9]; 1977 -> 446[label="",style="solid", color="blue", weight=3]; 1978[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1978[label="",style="solid", color="blue", weight=9]; 1978 -> 447[label="",style="solid", color="blue", weight=3]; 1979[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1979[label="",style="solid", color="blue", weight=9]; 1979 -> 448[label="",style="solid", color="blue", weight=3]; 1980[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1980[label="",style="solid", color="blue", weight=9]; 1980 -> 449[label="",style="solid", color="blue", weight=3]; 1981[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1981[label="",style="solid", color="blue", weight=9]; 1981 -> 450[label="",style="solid", color="blue", weight=3]; 1982[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1982[label="",style="solid", color="blue", weight=9]; 1982 -> 451[label="",style="solid", color="blue", weight=3]; 1983[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1983[label="",style="solid", color="blue", weight=9]; 1983 -> 452[label="",style="solid", color="blue", weight=3]; 1984[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1984[label="",style="solid", color="blue", weight=9]; 1984 -> 453[label="",style="solid", color="blue", weight=3]; 1985[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1985[label="",style="solid", color="blue", weight=9]; 1985 -> 454[label="",style="solid", color="blue", weight=3]; 1986[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1986[label="",style="solid", color="blue", weight=9]; 1986 -> 455[label="",style="solid", color="blue", weight=3]; 1987[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1987[label="",style="solid", color="blue", weight=9]; 1987 -> 456[label="",style="solid", color="blue", weight=3]; 1988[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1988[label="",style="solid", color="blue", weight=9]; 1988 -> 457[label="",style="solid", color="blue", weight=3]; 1989[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1989[label="",style="solid", color="blue", weight=9]; 1989 -> 458[label="",style="solid", color="blue", weight=3]; 1990[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];388 -> 1990[label="",style="solid", color="blue", weight=9]; 1990 -> 459[label="",style="solid", color="blue", weight=3]; 389[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];1991[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1991[label="",style="solid", color="blue", weight=9]; 1991 -> 460[label="",style="solid", color="blue", weight=3]; 1992[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1992[label="",style="solid", color="blue", weight=9]; 1992 -> 461[label="",style="solid", color="blue", weight=3]; 1993[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1993[label="",style="solid", color="blue", weight=9]; 1993 -> 462[label="",style="solid", color="blue", weight=3]; 1994[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1994[label="",style="solid", color="blue", weight=9]; 1994 -> 463[label="",style="solid", color="blue", weight=3]; 1995[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1995[label="",style="solid", color="blue", weight=9]; 1995 -> 464[label="",style="solid", color="blue", weight=3]; 1996[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1996[label="",style="solid", color="blue", weight=9]; 1996 -> 465[label="",style="solid", color="blue", weight=3]; 1997[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1997[label="",style="solid", color="blue", weight=9]; 1997 -> 466[label="",style="solid", color="blue", weight=3]; 1998[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1998[label="",style="solid", color="blue", weight=9]; 1998 -> 467[label="",style="solid", color="blue", weight=3]; 1999[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 1999[label="",style="solid", color="blue", weight=9]; 1999 -> 468[label="",style="solid", color="blue", weight=3]; 2000[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2000[label="",style="solid", color="blue", weight=9]; 2000 -> 469[label="",style="solid", color="blue", weight=3]; 2001[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2001[label="",style="solid", color="blue", weight=9]; 2001 -> 470[label="",style="solid", color="blue", weight=3]; 2002[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2002[label="",style="solid", color="blue", weight=9]; 2002 -> 471[label="",style="solid", color="blue", weight=3]; 2003[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2003[label="",style="solid", color="blue", weight=9]; 2003 -> 472[label="",style="solid", color="blue", weight=3]; 2004[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];389 -> 2004[label="",style="solid", color="blue", weight=9]; 2004 -> 473[label="",style="solid", color="blue", weight=3]; 273 -> 27[label="",style="dashed", color="red", weight=0]; 273[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];273 -> 474[label="",style="dashed", color="magenta", weight=3]; 273 -> 475[label="",style="dashed", color="magenta", weight=3]; 390[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2005[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2005[label="",style="solid", color="blue", weight=9]; 2005 -> 476[label="",style="solid", color="blue", weight=3]; 2006[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2006[label="",style="solid", color="blue", weight=9]; 2006 -> 477[label="",style="solid", color="blue", weight=3]; 2007[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2007[label="",style="solid", color="blue", weight=9]; 2007 -> 478[label="",style="solid", color="blue", weight=3]; 2008[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2008[label="",style="solid", color="blue", weight=9]; 2008 -> 479[label="",style="solid", color="blue", weight=3]; 2009[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2009[label="",style="solid", color="blue", weight=9]; 2009 -> 480[label="",style="solid", color="blue", weight=3]; 2010[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2010[label="",style="solid", color="blue", weight=9]; 2010 -> 481[label="",style="solid", color="blue", weight=3]; 2011[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2011[label="",style="solid", color="blue", weight=9]; 2011 -> 482[label="",style="solid", color="blue", weight=3]; 2012[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2012[label="",style="solid", color="blue", weight=9]; 2012 -> 483[label="",style="solid", color="blue", weight=3]; 2013[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2013[label="",style="solid", color="blue", weight=9]; 2013 -> 484[label="",style="solid", color="blue", weight=3]; 2014[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2014[label="",style="solid", color="blue", weight=9]; 2014 -> 485[label="",style="solid", color="blue", weight=3]; 2015[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2015[label="",style="solid", color="blue", weight=9]; 2015 -> 486[label="",style="solid", color="blue", weight=3]; 2016[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2016[label="",style="solid", color="blue", weight=9]; 2016 -> 487[label="",style="solid", color="blue", weight=3]; 2017[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2017[label="",style="solid", color="blue", weight=9]; 2017 -> 488[label="",style="solid", color="blue", weight=3]; 2018[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];390 -> 2018[label="",style="solid", color="blue", weight=9]; 2018 -> 489[label="",style="solid", color="blue", weight=3]; 391 -> 383[label="",style="dashed", color="red", weight=0]; 391[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];391 -> 490[label="",style="dashed", color="magenta", weight=3]; 391 -> 491[label="",style="dashed", color="magenta", weight=3]; 274[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];2019[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];274 -> 2019[label="",style="solid", color="burlywood", weight=9]; 2019 -> 492[label="",style="solid", color="burlywood", weight=3]; 2020[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];274 -> 2020[label="",style="solid", color="burlywood", weight=9]; 2020 -> 493[label="",style="solid", color="burlywood", weight=3]; 275[label="vwx400",fontsize=16,color="green",shape="box"];276[label="vwx300",fontsize=16,color="green",shape="box"];277[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];277 -> 494[label="",style="solid", color="black", weight=3]; 278[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2021[label="vwx9/Left vwx90",fontsize=10,color="white",style="solid",shape="box"];278 -> 2021[label="",style="solid", color="burlywood", weight=9]; 2021 -> 495[label="",style="solid", color="burlywood", weight=3]; 2022[label="vwx9/Right vwx90",fontsize=10,color="white",style="solid",shape="box"];278 -> 2022[label="",style="solid", color="burlywood", weight=9]; 2022 -> 496[label="",style="solid", color="burlywood", weight=3]; 279[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2023[label="vwx9/False",fontsize=10,color="white",style="solid",shape="box"];279 -> 2023[label="",style="solid", color="burlywood", weight=9]; 2023 -> 497[label="",style="solid", color="burlywood", weight=3]; 2024[label="vwx9/True",fontsize=10,color="white",style="solid",shape="box"];279 -> 2024[label="",style="solid", color="burlywood", weight=9]; 2024 -> 498[label="",style="solid", color="burlywood", weight=3]; 280[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];280 -> 499[label="",style="solid", color="black", weight=3]; 281[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];281 -> 500[label="",style="solid", color="black", weight=3]; 282[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2025[label="vwx9/(vwx90,vwx91)",fontsize=10,color="white",style="solid",shape="box"];282 -> 2025[label="",style="solid", color="burlywood", weight=9]; 2025 -> 501[label="",style="solid", color="burlywood", weight=3]; 283[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2026[label="vwx9/LT",fontsize=10,color="white",style="solid",shape="box"];283 -> 2026[label="",style="solid", color="burlywood", weight=9]; 2026 -> 502[label="",style="solid", color="burlywood", weight=3]; 2027[label="vwx9/EQ",fontsize=10,color="white",style="solid",shape="box"];283 -> 2027[label="",style="solid", color="burlywood", weight=9]; 2027 -> 503[label="",style="solid", color="burlywood", weight=3]; 2028[label="vwx9/GT",fontsize=10,color="white",style="solid",shape="box"];283 -> 2028[label="",style="solid", color="burlywood", weight=9]; 2028 -> 504[label="",style="solid", color="burlywood", weight=3]; 284[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];284 -> 505[label="",style="solid", color="black", weight=3]; 285[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];285 -> 506[label="",style="solid", color="black", weight=3]; 286[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2029[label="vwx9/(vwx90,vwx91,vwx92)",fontsize=10,color="white",style="solid",shape="box"];286 -> 2029[label="",style="solid", color="burlywood", weight=9]; 2029 -> 507[label="",style="solid", color="burlywood", weight=3]; 287[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];287 -> 508[label="",style="solid", color="black", weight=3]; 288[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];2030[label="vwx9/Nothing",fontsize=10,color="white",style="solid",shape="box"];288 -> 2030[label="",style="solid", color="burlywood", weight=9]; 2030 -> 509[label="",style="solid", color="burlywood", weight=3]; 2031[label="vwx9/Just vwx90",fontsize=10,color="white",style="solid",shape="box"];288 -> 2031[label="",style="solid", color="burlywood", weight=9]; 2031 -> 510[label="",style="solid", color="burlywood", weight=3]; 289[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];289 -> 511[label="",style="solid", color="black", weight=3]; 290[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];290 -> 512[label="",style="solid", color="black", weight=3]; 291[label="compare0 (Left vwx23) (Left vwx24) otherwise",fontsize=16,color="black",shape="box"];291 -> 513[label="",style="solid", color="black", weight=3]; 292[label="LT",fontsize=16,color="green",shape="box"];293 -> 277[label="",style="dashed", color="red", weight=0]; 293[label="vwx16 <= vwx17",fontsize=16,color="magenta"];293 -> 514[label="",style="dashed", color="magenta", weight=3]; 293 -> 515[label="",style="dashed", color="magenta", weight=3]; 294 -> 278[label="",style="dashed", color="red", weight=0]; 294[label="vwx16 <= vwx17",fontsize=16,color="magenta"];294 -> 516[label="",style="dashed", color="magenta", weight=3]; 294 -> 517[label="",style="dashed", color="magenta", weight=3]; 295 -> 279[label="",style="dashed", color="red", weight=0]; 295[label="vwx16 <= vwx17",fontsize=16,color="magenta"];295 -> 518[label="",style="dashed", color="magenta", weight=3]; 295 -> 519[label="",style="dashed", color="magenta", weight=3]; 296 -> 280[label="",style="dashed", color="red", weight=0]; 296[label="vwx16 <= vwx17",fontsize=16,color="magenta"];296 -> 520[label="",style="dashed", color="magenta", weight=3]; 296 -> 521[label="",style="dashed", color="magenta", weight=3]; 297 -> 281[label="",style="dashed", color="red", weight=0]; 297[label="vwx16 <= vwx17",fontsize=16,color="magenta"];297 -> 522[label="",style="dashed", color="magenta", weight=3]; 297 -> 523[label="",style="dashed", color="magenta", weight=3]; 298 -> 282[label="",style="dashed", color="red", weight=0]; 298[label="vwx16 <= vwx17",fontsize=16,color="magenta"];298 -> 524[label="",style="dashed", color="magenta", weight=3]; 298 -> 525[label="",style="dashed", color="magenta", weight=3]; 299 -> 283[label="",style="dashed", color="red", weight=0]; 299[label="vwx16 <= vwx17",fontsize=16,color="magenta"];299 -> 526[label="",style="dashed", color="magenta", weight=3]; 299 -> 527[label="",style="dashed", color="magenta", weight=3]; 300 -> 284[label="",style="dashed", color="red", weight=0]; 300[label="vwx16 <= vwx17",fontsize=16,color="magenta"];300 -> 528[label="",style="dashed", color="magenta", weight=3]; 300 -> 529[label="",style="dashed", color="magenta", weight=3]; 301 -> 285[label="",style="dashed", color="red", weight=0]; 301[label="vwx16 <= vwx17",fontsize=16,color="magenta"];301 -> 530[label="",style="dashed", color="magenta", weight=3]; 301 -> 531[label="",style="dashed", color="magenta", weight=3]; 302 -> 286[label="",style="dashed", color="red", weight=0]; 302[label="vwx16 <= vwx17",fontsize=16,color="magenta"];302 -> 532[label="",style="dashed", color="magenta", weight=3]; 302 -> 533[label="",style="dashed", color="magenta", weight=3]; 303 -> 287[label="",style="dashed", color="red", weight=0]; 303[label="vwx16 <= vwx17",fontsize=16,color="magenta"];303 -> 534[label="",style="dashed", color="magenta", weight=3]; 303 -> 535[label="",style="dashed", color="magenta", weight=3]; 304 -> 288[label="",style="dashed", color="red", weight=0]; 304[label="vwx16 <= vwx17",fontsize=16,color="magenta"];304 -> 536[label="",style="dashed", color="magenta", weight=3]; 304 -> 537[label="",style="dashed", color="magenta", weight=3]; 305 -> 289[label="",style="dashed", color="red", weight=0]; 305[label="vwx16 <= vwx17",fontsize=16,color="magenta"];305 -> 538[label="",style="dashed", color="magenta", weight=3]; 305 -> 539[label="",style="dashed", color="magenta", weight=3]; 306 -> 290[label="",style="dashed", color="red", weight=0]; 306[label="vwx16 <= vwx17",fontsize=16,color="magenta"];306 -> 540[label="",style="dashed", color="magenta", weight=3]; 306 -> 541[label="",style="dashed", color="magenta", weight=3]; 307[label="compare0 (Right vwx30) (Right vwx31) otherwise",fontsize=16,color="black",shape="box"];307 -> 542[label="",style="solid", color="black", weight=3]; 308[label="LT",fontsize=16,color="green",shape="box"];309[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];309 -> 543[label="",style="solid", color="black", weight=3]; 310[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];310 -> 544[label="",style="solid", color="black", weight=3]; 311[label="False",fontsize=16,color="green",shape="box"];312[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];312 -> 545[label="",style="solid", color="black", weight=3]; 313[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];313 -> 546[label="",style="solid", color="black", weight=3]; 314[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];314 -> 547[label="",style="solid", color="black", weight=3]; 315[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];315 -> 548[label="",style="solid", color="black", weight=3]; 316[label="False",fontsize=16,color="green",shape="box"];317[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];317 -> 549[label="",style="solid", color="black", weight=3]; 318[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];318 -> 550[label="",style="solid", color="black", weight=3]; 319[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];319 -> 551[label="",style="solid", color="black", weight=3]; 320[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];320 -> 552[label="",style="solid", color="black", weight=3]; 321[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];321 -> 553[label="",style="solid", color="black", weight=3]; 322[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];322 -> 554[label="",style="solid", color="black", weight=3]; 323[label="vwx301 * vwx400",fontsize=16,color="black",shape="triangle"];323 -> 555[label="",style="solid", color="black", weight=3]; 324 -> 323[label="",style="dashed", color="red", weight=0]; 324[label="vwx300 * vwx401",fontsize=16,color="magenta"];324 -> 556[label="",style="dashed", color="magenta", weight=3]; 324 -> 557[label="",style="dashed", color="magenta", weight=3]; 325[label="vwx400",fontsize=16,color="green",shape="box"];326[label="vwx300",fontsize=16,color="green",shape="box"];327[label="vwx400",fontsize=16,color="green",shape="box"];328[label="vwx300",fontsize=16,color="green",shape="box"];329[label="vwx400",fontsize=16,color="green",shape="box"];330[label="vwx300",fontsize=16,color="green",shape="box"];331[label="vwx400",fontsize=16,color="green",shape="box"];332[label="vwx300",fontsize=16,color="green",shape="box"];333[label="vwx400",fontsize=16,color="green",shape="box"];334[label="vwx300",fontsize=16,color="green",shape="box"];335[label="vwx400",fontsize=16,color="green",shape="box"];336[label="vwx300",fontsize=16,color="green",shape="box"];337[label="vwx400",fontsize=16,color="green",shape="box"];338[label="vwx300",fontsize=16,color="green",shape="box"];339[label="vwx400",fontsize=16,color="green",shape="box"];340[label="vwx300",fontsize=16,color="green",shape="box"];341[label="vwx400",fontsize=16,color="green",shape="box"];342[label="vwx300",fontsize=16,color="green",shape="box"];343[label="vwx400",fontsize=16,color="green",shape="box"];344[label="vwx300",fontsize=16,color="green",shape="box"];345[label="vwx400",fontsize=16,color="green",shape="box"];346[label="vwx300",fontsize=16,color="green",shape="box"];347[label="vwx400",fontsize=16,color="green",shape="box"];348[label="vwx300",fontsize=16,color="green",shape="box"];349[label="vwx400",fontsize=16,color="green",shape="box"];350[label="vwx300",fontsize=16,color="green",shape="box"];351[label="vwx400",fontsize=16,color="green",shape="box"];352[label="vwx300",fontsize=16,color="green",shape="box"];353[label="vwx400",fontsize=16,color="green",shape="box"];354[label="vwx300",fontsize=16,color="green",shape="box"];355[label="vwx400",fontsize=16,color="green",shape="box"];356[label="vwx300",fontsize=16,color="green",shape="box"];357[label="vwx400",fontsize=16,color="green",shape="box"];358[label="vwx300",fontsize=16,color="green",shape="box"];359[label="vwx400",fontsize=16,color="green",shape="box"];360[label="vwx300",fontsize=16,color="green",shape="box"];361[label="vwx400",fontsize=16,color="green",shape="box"];362[label="vwx300",fontsize=16,color="green",shape="box"];363[label="vwx400",fontsize=16,color="green",shape="box"];364[label="vwx300",fontsize=16,color="green",shape="box"];365[label="vwx400",fontsize=16,color="green",shape="box"];366[label="vwx300",fontsize=16,color="green",shape="box"];367[label="vwx400",fontsize=16,color="green",shape="box"];368[label="vwx300",fontsize=16,color="green",shape="box"];369[label="vwx400",fontsize=16,color="green",shape="box"];370[label="vwx300",fontsize=16,color="green",shape="box"];371[label="vwx400",fontsize=16,color="green",shape="box"];372[label="vwx300",fontsize=16,color="green",shape="box"];373[label="vwx400",fontsize=16,color="green",shape="box"];374[label="vwx300",fontsize=16,color="green",shape="box"];375[label="vwx400",fontsize=16,color="green",shape="box"];376[label="vwx300",fontsize=16,color="green",shape="box"];377[label="vwx400",fontsize=16,color="green",shape="box"];378[label="vwx300",fontsize=16,color="green",shape="box"];379[label="vwx400",fontsize=16,color="green",shape="box"];380[label="vwx300",fontsize=16,color="green",shape="box"];396 -> 27[label="",style="dashed", color="red", weight=0]; 396[label="vwx300 == vwx400",fontsize=16,color="magenta"];396 -> 558[label="",style="dashed", color="magenta", weight=3]; 396 -> 559[label="",style="dashed", color="magenta", weight=3]; 397 -> 28[label="",style="dashed", color="red", weight=0]; 397[label="vwx300 == vwx400",fontsize=16,color="magenta"];397 -> 560[label="",style="dashed", color="magenta", weight=3]; 397 -> 561[label="",style="dashed", color="magenta", weight=3]; 398 -> 29[label="",style="dashed", color="red", weight=0]; 398[label="vwx300 == vwx400",fontsize=16,color="magenta"];398 -> 562[label="",style="dashed", color="magenta", weight=3]; 398 -> 563[label="",style="dashed", color="magenta", weight=3]; 399 -> 30[label="",style="dashed", color="red", weight=0]; 399[label="vwx300 == vwx400",fontsize=16,color="magenta"];399 -> 564[label="",style="dashed", color="magenta", weight=3]; 399 -> 565[label="",style="dashed", color="magenta", weight=3]; 400 -> 31[label="",style="dashed", color="red", weight=0]; 400[label="vwx300 == vwx400",fontsize=16,color="magenta"];400 -> 566[label="",style="dashed", color="magenta", weight=3]; 400 -> 567[label="",style="dashed", color="magenta", weight=3]; 401 -> 32[label="",style="dashed", color="red", weight=0]; 401[label="vwx300 == vwx400",fontsize=16,color="magenta"];401 -> 568[label="",style="dashed", color="magenta", weight=3]; 401 -> 569[label="",style="dashed", color="magenta", weight=3]; 402 -> 33[label="",style="dashed", color="red", weight=0]; 402[label="vwx300 == vwx400",fontsize=16,color="magenta"];402 -> 570[label="",style="dashed", color="magenta", weight=3]; 402 -> 571[label="",style="dashed", color="magenta", weight=3]; 403 -> 34[label="",style="dashed", color="red", weight=0]; 403[label="vwx300 == vwx400",fontsize=16,color="magenta"];403 -> 572[label="",style="dashed", color="magenta", weight=3]; 403 -> 573[label="",style="dashed", color="magenta", weight=3]; 404 -> 35[label="",style="dashed", color="red", weight=0]; 404[label="vwx300 == vwx400",fontsize=16,color="magenta"];404 -> 574[label="",style="dashed", color="magenta", weight=3]; 404 -> 575[label="",style="dashed", color="magenta", weight=3]; 405 -> 36[label="",style="dashed", color="red", weight=0]; 405[label="vwx300 == vwx400",fontsize=16,color="magenta"];405 -> 576[label="",style="dashed", color="magenta", weight=3]; 405 -> 577[label="",style="dashed", color="magenta", weight=3]; 406 -> 37[label="",style="dashed", color="red", weight=0]; 406[label="vwx300 == vwx400",fontsize=16,color="magenta"];406 -> 578[label="",style="dashed", color="magenta", weight=3]; 406 -> 579[label="",style="dashed", color="magenta", weight=3]; 407 -> 38[label="",style="dashed", color="red", weight=0]; 407[label="vwx300 == vwx400",fontsize=16,color="magenta"];407 -> 580[label="",style="dashed", color="magenta", weight=3]; 407 -> 581[label="",style="dashed", color="magenta", weight=3]; 408 -> 39[label="",style="dashed", color="red", weight=0]; 408[label="vwx300 == vwx400",fontsize=16,color="magenta"];408 -> 582[label="",style="dashed", color="magenta", weight=3]; 408 -> 583[label="",style="dashed", color="magenta", weight=3]; 409 -> 40[label="",style="dashed", color="red", weight=0]; 409[label="vwx300 == vwx400",fontsize=16,color="magenta"];409 -> 584[label="",style="dashed", color="magenta", weight=3]; 409 -> 585[label="",style="dashed", color="magenta", weight=3]; 410[label="vwx401",fontsize=16,color="green",shape="box"];411[label="vwx301",fontsize=16,color="green",shape="box"];412[label="False && vwx38",fontsize=16,color="black",shape="box"];412 -> 586[label="",style="solid", color="black", weight=3]; 413[label="True && vwx38",fontsize=16,color="black",shape="box"];413 -> 587[label="",style="solid", color="black", weight=3]; 414[label="vwx400",fontsize=16,color="green",shape="box"];415[label="vwx300",fontsize=16,color="green",shape="box"];416[label="vwx400",fontsize=16,color="green",shape="box"];417[label="vwx300",fontsize=16,color="green",shape="box"];418[label="vwx400",fontsize=16,color="green",shape="box"];419[label="vwx300",fontsize=16,color="green",shape="box"];420[label="vwx400",fontsize=16,color="green",shape="box"];421[label="vwx300",fontsize=16,color="green",shape="box"];422[label="vwx400",fontsize=16,color="green",shape="box"];423[label="vwx300",fontsize=16,color="green",shape="box"];424[label="vwx400",fontsize=16,color="green",shape="box"];425[label="vwx300",fontsize=16,color="green",shape="box"];426[label="vwx400",fontsize=16,color="green",shape="box"];427[label="vwx300",fontsize=16,color="green",shape="box"];428[label="vwx400",fontsize=16,color="green",shape="box"];429[label="vwx300",fontsize=16,color="green",shape="box"];430[label="vwx400",fontsize=16,color="green",shape="box"];431[label="vwx300",fontsize=16,color="green",shape="box"];432[label="vwx400",fontsize=16,color="green",shape="box"];433[label="vwx300",fontsize=16,color="green",shape="box"];434[label="vwx400",fontsize=16,color="green",shape="box"];435[label="vwx300",fontsize=16,color="green",shape="box"];436[label="vwx400",fontsize=16,color="green",shape="box"];437[label="vwx300",fontsize=16,color="green",shape="box"];438[label="vwx400",fontsize=16,color="green",shape="box"];439[label="vwx300",fontsize=16,color="green",shape="box"];440[label="vwx400",fontsize=16,color="green",shape="box"];441[label="vwx300",fontsize=16,color="green",shape="box"];442 -> 27[label="",style="dashed", color="red", weight=0]; 442[label="vwx300 == vwx400",fontsize=16,color="magenta"];442 -> 588[label="",style="dashed", color="magenta", weight=3]; 442 -> 589[label="",style="dashed", color="magenta", weight=3]; 443 -> 40[label="",style="dashed", color="red", weight=0]; 443[label="vwx300 == vwx400",fontsize=16,color="magenta"];443 -> 590[label="",style="dashed", color="magenta", weight=3]; 443 -> 591[label="",style="dashed", color="magenta", weight=3]; 444 -> 27[label="",style="dashed", color="red", weight=0]; 444[label="vwx301 == vwx401",fontsize=16,color="magenta"];444 -> 592[label="",style="dashed", color="magenta", weight=3]; 444 -> 593[label="",style="dashed", color="magenta", weight=3]; 445 -> 40[label="",style="dashed", color="red", weight=0]; 445[label="vwx301 == vwx401",fontsize=16,color="magenta"];445 -> 594[label="",style="dashed", color="magenta", weight=3]; 445 -> 595[label="",style="dashed", color="magenta", weight=3]; 446 -> 27[label="",style="dashed", color="red", weight=0]; 446[label="vwx300 == vwx400",fontsize=16,color="magenta"];446 -> 596[label="",style="dashed", color="magenta", weight=3]; 446 -> 597[label="",style="dashed", color="magenta", weight=3]; 447 -> 28[label="",style="dashed", color="red", weight=0]; 447[label="vwx300 == vwx400",fontsize=16,color="magenta"];447 -> 598[label="",style="dashed", color="magenta", weight=3]; 447 -> 599[label="",style="dashed", color="magenta", weight=3]; 448 -> 29[label="",style="dashed", color="red", weight=0]; 448[label="vwx300 == vwx400",fontsize=16,color="magenta"];448 -> 600[label="",style="dashed", color="magenta", weight=3]; 448 -> 601[label="",style="dashed", color="magenta", weight=3]; 449 -> 30[label="",style="dashed", color="red", weight=0]; 449[label="vwx300 == vwx400",fontsize=16,color="magenta"];449 -> 602[label="",style="dashed", color="magenta", weight=3]; 449 -> 603[label="",style="dashed", color="magenta", weight=3]; 450 -> 31[label="",style="dashed", color="red", weight=0]; 450[label="vwx300 == vwx400",fontsize=16,color="magenta"];450 -> 604[label="",style="dashed", color="magenta", weight=3]; 450 -> 605[label="",style="dashed", color="magenta", weight=3]; 451 -> 32[label="",style="dashed", color="red", weight=0]; 451[label="vwx300 == vwx400",fontsize=16,color="magenta"];451 -> 606[label="",style="dashed", color="magenta", weight=3]; 451 -> 607[label="",style="dashed", color="magenta", weight=3]; 452 -> 33[label="",style="dashed", color="red", weight=0]; 452[label="vwx300 == vwx400",fontsize=16,color="magenta"];452 -> 608[label="",style="dashed", color="magenta", weight=3]; 452 -> 609[label="",style="dashed", color="magenta", weight=3]; 453 -> 34[label="",style="dashed", color="red", weight=0]; 453[label="vwx300 == vwx400",fontsize=16,color="magenta"];453 -> 610[label="",style="dashed", color="magenta", weight=3]; 453 -> 611[label="",style="dashed", color="magenta", weight=3]; 454 -> 35[label="",style="dashed", color="red", weight=0]; 454[label="vwx300 == vwx400",fontsize=16,color="magenta"];454 -> 612[label="",style="dashed", color="magenta", weight=3]; 454 -> 613[label="",style="dashed", color="magenta", weight=3]; 455 -> 36[label="",style="dashed", color="red", weight=0]; 455[label="vwx300 == vwx400",fontsize=16,color="magenta"];455 -> 614[label="",style="dashed", color="magenta", weight=3]; 455 -> 615[label="",style="dashed", color="magenta", weight=3]; 456 -> 37[label="",style="dashed", color="red", weight=0]; 456[label="vwx300 == vwx400",fontsize=16,color="magenta"];456 -> 616[label="",style="dashed", color="magenta", weight=3]; 456 -> 617[label="",style="dashed", color="magenta", weight=3]; 457 -> 38[label="",style="dashed", color="red", weight=0]; 457[label="vwx300 == vwx400",fontsize=16,color="magenta"];457 -> 618[label="",style="dashed", color="magenta", weight=3]; 457 -> 619[label="",style="dashed", color="magenta", weight=3]; 458 -> 39[label="",style="dashed", color="red", weight=0]; 458[label="vwx300 == vwx400",fontsize=16,color="magenta"];458 -> 620[label="",style="dashed", color="magenta", weight=3]; 458 -> 621[label="",style="dashed", color="magenta", weight=3]; 459 -> 40[label="",style="dashed", color="red", weight=0]; 459[label="vwx300 == vwx400",fontsize=16,color="magenta"];459 -> 622[label="",style="dashed", color="magenta", weight=3]; 459 -> 623[label="",style="dashed", color="magenta", weight=3]; 460 -> 27[label="",style="dashed", color="red", weight=0]; 460[label="vwx301 == vwx401",fontsize=16,color="magenta"];460 -> 624[label="",style="dashed", color="magenta", weight=3]; 460 -> 625[label="",style="dashed", color="magenta", weight=3]; 461 -> 28[label="",style="dashed", color="red", weight=0]; 461[label="vwx301 == vwx401",fontsize=16,color="magenta"];461 -> 626[label="",style="dashed", color="magenta", weight=3]; 461 -> 627[label="",style="dashed", color="magenta", weight=3]; 462 -> 29[label="",style="dashed", color="red", weight=0]; 462[label="vwx301 == vwx401",fontsize=16,color="magenta"];462 -> 628[label="",style="dashed", color="magenta", weight=3]; 462 -> 629[label="",style="dashed", color="magenta", weight=3]; 463 -> 30[label="",style="dashed", color="red", weight=0]; 463[label="vwx301 == vwx401",fontsize=16,color="magenta"];463 -> 630[label="",style="dashed", color="magenta", weight=3]; 463 -> 631[label="",style="dashed", color="magenta", weight=3]; 464 -> 31[label="",style="dashed", color="red", weight=0]; 464[label="vwx301 == vwx401",fontsize=16,color="magenta"];464 -> 632[label="",style="dashed", color="magenta", weight=3]; 464 -> 633[label="",style="dashed", color="magenta", weight=3]; 465 -> 32[label="",style="dashed", color="red", weight=0]; 465[label="vwx301 == vwx401",fontsize=16,color="magenta"];465 -> 634[label="",style="dashed", color="magenta", weight=3]; 465 -> 635[label="",style="dashed", color="magenta", weight=3]; 466 -> 33[label="",style="dashed", color="red", weight=0]; 466[label="vwx301 == vwx401",fontsize=16,color="magenta"];466 -> 636[label="",style="dashed", color="magenta", weight=3]; 466 -> 637[label="",style="dashed", color="magenta", weight=3]; 467 -> 34[label="",style="dashed", color="red", weight=0]; 467[label="vwx301 == vwx401",fontsize=16,color="magenta"];467 -> 638[label="",style="dashed", color="magenta", weight=3]; 467 -> 639[label="",style="dashed", color="magenta", weight=3]; 468 -> 35[label="",style="dashed", color="red", weight=0]; 468[label="vwx301 == vwx401",fontsize=16,color="magenta"];468 -> 640[label="",style="dashed", color="magenta", weight=3]; 468 -> 641[label="",style="dashed", color="magenta", weight=3]; 469 -> 36[label="",style="dashed", color="red", weight=0]; 469[label="vwx301 == vwx401",fontsize=16,color="magenta"];469 -> 642[label="",style="dashed", color="magenta", weight=3]; 469 -> 643[label="",style="dashed", color="magenta", weight=3]; 470 -> 37[label="",style="dashed", color="red", weight=0]; 470[label="vwx301 == vwx401",fontsize=16,color="magenta"];470 -> 644[label="",style="dashed", color="magenta", weight=3]; 470 -> 645[label="",style="dashed", color="magenta", weight=3]; 471 -> 38[label="",style="dashed", color="red", weight=0]; 471[label="vwx301 == vwx401",fontsize=16,color="magenta"];471 -> 646[label="",style="dashed", color="magenta", weight=3]; 471 -> 647[label="",style="dashed", color="magenta", weight=3]; 472 -> 39[label="",style="dashed", color="red", weight=0]; 472[label="vwx301 == vwx401",fontsize=16,color="magenta"];472 -> 648[label="",style="dashed", color="magenta", weight=3]; 472 -> 649[label="",style="dashed", color="magenta", weight=3]; 473 -> 40[label="",style="dashed", color="red", weight=0]; 473[label="vwx301 == vwx401",fontsize=16,color="magenta"];473 -> 650[label="",style="dashed", color="magenta", weight=3]; 473 -> 651[label="",style="dashed", color="magenta", weight=3]; 474 -> 323[label="",style="dashed", color="red", weight=0]; 474[label="vwx301 * vwx400",fontsize=16,color="magenta"];474 -> 652[label="",style="dashed", color="magenta", weight=3]; 474 -> 653[label="",style="dashed", color="magenta", weight=3]; 475 -> 323[label="",style="dashed", color="red", weight=0]; 475[label="vwx300 * vwx401",fontsize=16,color="magenta"];475 -> 654[label="",style="dashed", color="magenta", weight=3]; 475 -> 655[label="",style="dashed", color="magenta", weight=3]; 476 -> 27[label="",style="dashed", color="red", weight=0]; 476[label="vwx300 == vwx400",fontsize=16,color="magenta"];476 -> 656[label="",style="dashed", color="magenta", weight=3]; 476 -> 657[label="",style="dashed", color="magenta", weight=3]; 477 -> 28[label="",style="dashed", color="red", weight=0]; 477[label="vwx300 == vwx400",fontsize=16,color="magenta"];477 -> 658[label="",style="dashed", color="magenta", weight=3]; 477 -> 659[label="",style="dashed", color="magenta", weight=3]; 478 -> 29[label="",style="dashed", color="red", weight=0]; 478[label="vwx300 == vwx400",fontsize=16,color="magenta"];478 -> 660[label="",style="dashed", color="magenta", weight=3]; 478 -> 661[label="",style="dashed", color="magenta", weight=3]; 479 -> 30[label="",style="dashed", color="red", weight=0]; 479[label="vwx300 == vwx400",fontsize=16,color="magenta"];479 -> 662[label="",style="dashed", color="magenta", weight=3]; 479 -> 663[label="",style="dashed", color="magenta", weight=3]; 480 -> 31[label="",style="dashed", color="red", weight=0]; 480[label="vwx300 == vwx400",fontsize=16,color="magenta"];480 -> 664[label="",style="dashed", color="magenta", weight=3]; 480 -> 665[label="",style="dashed", color="magenta", weight=3]; 481 -> 32[label="",style="dashed", color="red", weight=0]; 481[label="vwx300 == vwx400",fontsize=16,color="magenta"];481 -> 666[label="",style="dashed", color="magenta", weight=3]; 481 -> 667[label="",style="dashed", color="magenta", weight=3]; 482 -> 33[label="",style="dashed", color="red", weight=0]; 482[label="vwx300 == vwx400",fontsize=16,color="magenta"];482 -> 668[label="",style="dashed", color="magenta", weight=3]; 482 -> 669[label="",style="dashed", color="magenta", weight=3]; 483 -> 34[label="",style="dashed", color="red", weight=0]; 483[label="vwx300 == vwx400",fontsize=16,color="magenta"];483 -> 670[label="",style="dashed", color="magenta", weight=3]; 483 -> 671[label="",style="dashed", color="magenta", weight=3]; 484 -> 35[label="",style="dashed", color="red", weight=0]; 484[label="vwx300 == vwx400",fontsize=16,color="magenta"];484 -> 672[label="",style="dashed", color="magenta", weight=3]; 484 -> 673[label="",style="dashed", color="magenta", weight=3]; 485 -> 36[label="",style="dashed", color="red", weight=0]; 485[label="vwx300 == vwx400",fontsize=16,color="magenta"];485 -> 674[label="",style="dashed", color="magenta", weight=3]; 485 -> 675[label="",style="dashed", color="magenta", weight=3]; 486 -> 37[label="",style="dashed", color="red", weight=0]; 486[label="vwx300 == vwx400",fontsize=16,color="magenta"];486 -> 676[label="",style="dashed", color="magenta", weight=3]; 486 -> 677[label="",style="dashed", color="magenta", weight=3]; 487 -> 38[label="",style="dashed", color="red", weight=0]; 487[label="vwx300 == vwx400",fontsize=16,color="magenta"];487 -> 678[label="",style="dashed", color="magenta", weight=3]; 487 -> 679[label="",style="dashed", color="magenta", weight=3]; 488 -> 39[label="",style="dashed", color="red", weight=0]; 488[label="vwx300 == vwx400",fontsize=16,color="magenta"];488 -> 680[label="",style="dashed", color="magenta", weight=3]; 488 -> 681[label="",style="dashed", color="magenta", weight=3]; 489 -> 40[label="",style="dashed", color="red", weight=0]; 489[label="vwx300 == vwx400",fontsize=16,color="magenta"];489 -> 682[label="",style="dashed", color="magenta", weight=3]; 489 -> 683[label="",style="dashed", color="magenta", weight=3]; 490[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2032[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2032[label="",style="solid", color="blue", weight=9]; 2032 -> 684[label="",style="solid", color="blue", weight=3]; 2033[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2033[label="",style="solid", color="blue", weight=9]; 2033 -> 685[label="",style="solid", color="blue", weight=3]; 2034[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2034[label="",style="solid", color="blue", weight=9]; 2034 -> 686[label="",style="solid", color="blue", weight=3]; 2035[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2035[label="",style="solid", color="blue", weight=9]; 2035 -> 687[label="",style="solid", color="blue", weight=3]; 2036[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2036[label="",style="solid", color="blue", weight=9]; 2036 -> 688[label="",style="solid", color="blue", weight=3]; 2037[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2037[label="",style="solid", color="blue", weight=9]; 2037 -> 689[label="",style="solid", color="blue", weight=3]; 2038[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2038[label="",style="solid", color="blue", weight=9]; 2038 -> 690[label="",style="solid", color="blue", weight=3]; 2039[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2039[label="",style="solid", color="blue", weight=9]; 2039 -> 691[label="",style="solid", color="blue", weight=3]; 2040[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2040[label="",style="solid", color="blue", weight=9]; 2040 -> 692[label="",style="solid", color="blue", weight=3]; 2041[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2041[label="",style="solid", color="blue", weight=9]; 2041 -> 693[label="",style="solid", color="blue", weight=3]; 2042[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2042[label="",style="solid", color="blue", weight=9]; 2042 -> 694[label="",style="solid", color="blue", weight=3]; 2043[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2043[label="",style="solid", color="blue", weight=9]; 2043 -> 695[label="",style="solid", color="blue", weight=3]; 2044[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2044[label="",style="solid", color="blue", weight=9]; 2044 -> 696[label="",style="solid", color="blue", weight=3]; 2045[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];490 -> 2045[label="",style="solid", color="blue", weight=9]; 2045 -> 697[label="",style="solid", color="blue", weight=3]; 491[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];2046[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2046[label="",style="solid", color="blue", weight=9]; 2046 -> 698[label="",style="solid", color="blue", weight=3]; 2047[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2047[label="",style="solid", color="blue", weight=9]; 2047 -> 699[label="",style="solid", color="blue", weight=3]; 2048[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2048[label="",style="solid", color="blue", weight=9]; 2048 -> 700[label="",style="solid", color="blue", weight=3]; 2049[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2049[label="",style="solid", color="blue", weight=9]; 2049 -> 701[label="",style="solid", color="blue", weight=3]; 2050[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2050[label="",style="solid", color="blue", weight=9]; 2050 -> 702[label="",style="solid", color="blue", weight=3]; 2051[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2051[label="",style="solid", color="blue", weight=9]; 2051 -> 703[label="",style="solid", color="blue", weight=3]; 2052[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2052[label="",style="solid", color="blue", weight=9]; 2052 -> 704[label="",style="solid", color="blue", weight=3]; 2053[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2053[label="",style="solid", color="blue", weight=9]; 2053 -> 705[label="",style="solid", color="blue", weight=3]; 2054[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2054[label="",style="solid", color="blue", weight=9]; 2054 -> 706[label="",style="solid", color="blue", weight=3]; 2055[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2055[label="",style="solid", color="blue", weight=9]; 2055 -> 707[label="",style="solid", color="blue", weight=3]; 2056[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2056[label="",style="solid", color="blue", weight=9]; 2056 -> 708[label="",style="solid", color="blue", weight=3]; 2057[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2057[label="",style="solid", color="blue", weight=9]; 2057 -> 709[label="",style="solid", color="blue", weight=3]; 2058[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2058[label="",style="solid", color="blue", weight=9]; 2058 -> 710[label="",style="solid", color="blue", weight=3]; 2059[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 2059[label="",style="solid", color="blue", weight=9]; 2059 -> 711[label="",style="solid", color="blue", weight=3]; 492[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2060[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];492 -> 2060[label="",style="solid", color="burlywood", weight=9]; 2060 -> 712[label="",style="solid", color="burlywood", weight=3]; 2061[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];492 -> 2061[label="",style="solid", color="burlywood", weight=9]; 2061 -> 713[label="",style="solid", color="burlywood", weight=3]; 493[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];2062[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];493 -> 2062[label="",style="solid", color="burlywood", weight=9]; 2062 -> 714[label="",style="solid", color="burlywood", weight=3]; 2063[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];493 -> 2063[label="",style="solid", color="burlywood", weight=9]; 2063 -> 715[label="",style="solid", color="burlywood", weight=3]; 494[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];494 -> 716[label="",style="solid", color="black", weight=3]; 495[label="Left vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];2064[label="vwx10/Left vwx100",fontsize=10,color="white",style="solid",shape="box"];495 -> 2064[label="",style="solid", color="burlywood", weight=9]; 2064 -> 717[label="",style="solid", color="burlywood", weight=3]; 2065[label="vwx10/Right vwx100",fontsize=10,color="white",style="solid",shape="box"];495 -> 2065[label="",style="solid", color="burlywood", weight=9]; 2065 -> 718[label="",style="solid", color="burlywood", weight=3]; 496[label="Right vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];2066[label="vwx10/Left vwx100",fontsize=10,color="white",style="solid",shape="box"];496 -> 2066[label="",style="solid", color="burlywood", weight=9]; 2066 -> 719[label="",style="solid", color="burlywood", weight=3]; 2067[label="vwx10/Right vwx100",fontsize=10,color="white",style="solid",shape="box"];496 -> 2067[label="",style="solid", color="burlywood", weight=9]; 2067 -> 720[label="",style="solid", color="burlywood", weight=3]; 497[label="False <= vwx10",fontsize=16,color="burlywood",shape="box"];2068[label="vwx10/False",fontsize=10,color="white",style="solid",shape="box"];497 -> 2068[label="",style="solid", color="burlywood", weight=9]; 2068 -> 721[label="",style="solid", color="burlywood", weight=3]; 2069[label="vwx10/True",fontsize=10,color="white",style="solid",shape="box"];497 -> 2069[label="",style="solid", color="burlywood", weight=9]; 2069 -> 722[label="",style="solid", color="burlywood", weight=3]; 498[label="True <= vwx10",fontsize=16,color="burlywood",shape="box"];2070[label="vwx10/False",fontsize=10,color="white",style="solid",shape="box"];498 -> 2070[label="",style="solid", color="burlywood", weight=9]; 2070 -> 723[label="",style="solid", color="burlywood", weight=3]; 2071[label="vwx10/True",fontsize=10,color="white",style="solid",shape="box"];498 -> 2071[label="",style="solid", color="burlywood", weight=9]; 2071 -> 724[label="",style="solid", color="burlywood", weight=3]; 499[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];499 -> 725[label="",style="solid", color="black", weight=3]; 500[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];500 -> 726[label="",style="solid", color="black", weight=3]; 501[label="(vwx90,vwx91) <= vwx10",fontsize=16,color="burlywood",shape="box"];2072[label="vwx10/(vwx100,vwx101)",fontsize=10,color="white",style="solid",shape="box"];501 -> 2072[label="",style="solid", color="burlywood", weight=9]; 2072 -> 727[label="",style="solid", color="burlywood", weight=3]; 502[label="LT <= vwx10",fontsize=16,color="burlywood",shape="box"];2073[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];502 -> 2073[label="",style="solid", color="burlywood", weight=9]; 2073 -> 728[label="",style="solid", color="burlywood", weight=3]; 2074[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];502 -> 2074[label="",style="solid", color="burlywood", weight=9]; 2074 -> 729[label="",style="solid", color="burlywood", weight=3]; 2075[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];502 -> 2075[label="",style="solid", color="burlywood", weight=9]; 2075 -> 730[label="",style="solid", color="burlywood", weight=3]; 503[label="EQ <= vwx10",fontsize=16,color="burlywood",shape="box"];2076[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];503 -> 2076[label="",style="solid", color="burlywood", weight=9]; 2076 -> 731[label="",style="solid", color="burlywood", weight=3]; 2077[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];503 -> 2077[label="",style="solid", color="burlywood", weight=9]; 2077 -> 732[label="",style="solid", color="burlywood", weight=3]; 2078[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];503 -> 2078[label="",style="solid", color="burlywood", weight=9]; 2078 -> 733[label="",style="solid", color="burlywood", weight=3]; 504[label="GT <= vwx10",fontsize=16,color="burlywood",shape="box"];2079[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];504 -> 2079[label="",style="solid", color="burlywood", weight=9]; 2079 -> 734[label="",style="solid", color="burlywood", weight=3]; 2080[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];504 -> 2080[label="",style="solid", color="burlywood", weight=9]; 2080 -> 735[label="",style="solid", color="burlywood", weight=3]; 2081[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];504 -> 2081[label="",style="solid", color="burlywood", weight=9]; 2081 -> 736[label="",style="solid", color="burlywood", weight=3]; 505[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];505 -> 737[label="",style="solid", color="black", weight=3]; 506[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];506 -> 738[label="",style="solid", color="black", weight=3]; 507[label="(vwx90,vwx91,vwx92) <= vwx10",fontsize=16,color="burlywood",shape="box"];2082[label="vwx10/(vwx100,vwx101,vwx102)",fontsize=10,color="white",style="solid",shape="box"];507 -> 2082[label="",style="solid", color="burlywood", weight=9]; 2082 -> 739[label="",style="solid", color="burlywood", weight=3]; 508[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];508 -> 740[label="",style="solid", color="black", weight=3]; 509[label="Nothing <= vwx10",fontsize=16,color="burlywood",shape="box"];2083[label="vwx10/Nothing",fontsize=10,color="white",style="solid",shape="box"];509 -> 2083[label="",style="solid", color="burlywood", weight=9]; 2083 -> 741[label="",style="solid", color="burlywood", weight=3]; 2084[label="vwx10/Just vwx100",fontsize=10,color="white",style="solid",shape="box"];509 -> 2084[label="",style="solid", color="burlywood", weight=9]; 2084 -> 742[label="",style="solid", color="burlywood", weight=3]; 510[label="Just vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];2085[label="vwx10/Nothing",fontsize=10,color="white",style="solid",shape="box"];510 -> 2085[label="",style="solid", color="burlywood", weight=9]; 2085 -> 743[label="",style="solid", color="burlywood", weight=3]; 2086[label="vwx10/Just vwx100",fontsize=10,color="white",style="solid",shape="box"];510 -> 2086[label="",style="solid", color="burlywood", weight=9]; 2086 -> 744[label="",style="solid", color="burlywood", weight=3]; 511[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];511 -> 745[label="",style="solid", color="black", weight=3]; 512[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];512 -> 746[label="",style="solid", color="black", weight=3]; 513[label="compare0 (Left vwx23) (Left vwx24) True",fontsize=16,color="black",shape="box"];513 -> 747[label="",style="solid", color="black", weight=3]; 514[label="vwx17",fontsize=16,color="green",shape="box"];515[label="vwx16",fontsize=16,color="green",shape="box"];516[label="vwx17",fontsize=16,color="green",shape="box"];517[label="vwx16",fontsize=16,color="green",shape="box"];518[label="vwx17",fontsize=16,color="green",shape="box"];519[label="vwx16",fontsize=16,color="green",shape="box"];520[label="vwx17",fontsize=16,color="green",shape="box"];521[label="vwx16",fontsize=16,color="green",shape="box"];522[label="vwx17",fontsize=16,color="green",shape="box"];523[label="vwx16",fontsize=16,color="green",shape="box"];524[label="vwx17",fontsize=16,color="green",shape="box"];525[label="vwx16",fontsize=16,color="green",shape="box"];526[label="vwx17",fontsize=16,color="green",shape="box"];527[label="vwx16",fontsize=16,color="green",shape="box"];528[label="vwx17",fontsize=16,color="green",shape="box"];529[label="vwx16",fontsize=16,color="green",shape="box"];530[label="vwx17",fontsize=16,color="green",shape="box"];531[label="vwx16",fontsize=16,color="green",shape="box"];532[label="vwx17",fontsize=16,color="green",shape="box"];533[label="vwx16",fontsize=16,color="green",shape="box"];534[label="vwx17",fontsize=16,color="green",shape="box"];535[label="vwx16",fontsize=16,color="green",shape="box"];536[label="vwx17",fontsize=16,color="green",shape="box"];537[label="vwx16",fontsize=16,color="green",shape="box"];538[label="vwx17",fontsize=16,color="green",shape="box"];539[label="vwx16",fontsize=16,color="green",shape="box"];540[label="vwx17",fontsize=16,color="green",shape="box"];541[label="vwx16",fontsize=16,color="green",shape="box"];542[label="compare0 (Right vwx30) (Right vwx31) True",fontsize=16,color="black",shape="box"];542 -> 748[label="",style="solid", color="black", weight=3]; 543 -> 274[label="",style="dashed", color="red", weight=0]; 543[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];543 -> 749[label="",style="dashed", color="magenta", weight=3]; 543 -> 750[label="",style="dashed", color="magenta", weight=3]; 544[label="False",fontsize=16,color="green",shape="box"];545[label="False",fontsize=16,color="green",shape="box"];546[label="True",fontsize=16,color="green",shape="box"];547[label="False",fontsize=16,color="green",shape="box"];548[label="True",fontsize=16,color="green",shape="box"];549 -> 274[label="",style="dashed", color="red", weight=0]; 549[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];549 -> 751[label="",style="dashed", color="magenta", weight=3]; 549 -> 752[label="",style="dashed", color="magenta", weight=3]; 550[label="False",fontsize=16,color="green",shape="box"];551[label="False",fontsize=16,color="green",shape="box"];552[label="True",fontsize=16,color="green",shape="box"];553[label="False",fontsize=16,color="green",shape="box"];554[label="True",fontsize=16,color="green",shape="box"];555[label="primMulInt vwx301 vwx400",fontsize=16,color="burlywood",shape="triangle"];2087[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];555 -> 2087[label="",style="solid", color="burlywood", weight=9]; 2087 -> 753[label="",style="solid", color="burlywood", weight=3]; 2088[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];555 -> 2088[label="",style="solid", color="burlywood", weight=9]; 2088 -> 754[label="",style="solid", color="burlywood", weight=3]; 556[label="vwx300",fontsize=16,color="green",shape="box"];557[label="vwx401",fontsize=16,color="green",shape="box"];558[label="vwx400",fontsize=16,color="green",shape="box"];559[label="vwx300",fontsize=16,color="green",shape="box"];560[label="vwx400",fontsize=16,color="green",shape="box"];561[label="vwx300",fontsize=16,color="green",shape="box"];562[label="vwx400",fontsize=16,color="green",shape="box"];563[label="vwx300",fontsize=16,color="green",shape="box"];564[label="vwx400",fontsize=16,color="green",shape="box"];565[label="vwx300",fontsize=16,color="green",shape="box"];566[label="vwx400",fontsize=16,color="green",shape="box"];567[label="vwx300",fontsize=16,color="green",shape="box"];568[label="vwx400",fontsize=16,color="green",shape="box"];569[label="vwx300",fontsize=16,color="green",shape="box"];570[label="vwx400",fontsize=16,color="green",shape="box"];571[label="vwx300",fontsize=16,color="green",shape="box"];572[label="vwx400",fontsize=16,color="green",shape="box"];573[label="vwx300",fontsize=16,color="green",shape="box"];574[label="vwx400",fontsize=16,color="green",shape="box"];575[label="vwx300",fontsize=16,color="green",shape="box"];576[label="vwx400",fontsize=16,color="green",shape="box"];577[label="vwx300",fontsize=16,color="green",shape="box"];578[label="vwx400",fontsize=16,color="green",shape="box"];579[label="vwx300",fontsize=16,color="green",shape="box"];580[label="vwx400",fontsize=16,color="green",shape="box"];581[label="vwx300",fontsize=16,color="green",shape="box"];582[label="vwx400",fontsize=16,color="green",shape="box"];583[label="vwx300",fontsize=16,color="green",shape="box"];584[label="vwx400",fontsize=16,color="green",shape="box"];585[label="vwx300",fontsize=16,color="green",shape="box"];586[label="False",fontsize=16,color="green",shape="box"];587[label="vwx38",fontsize=16,color="green",shape="box"];588[label="vwx400",fontsize=16,color="green",shape="box"];589[label="vwx300",fontsize=16,color="green",shape="box"];590[label="vwx400",fontsize=16,color="green",shape="box"];591[label="vwx300",fontsize=16,color="green",shape="box"];592[label="vwx401",fontsize=16,color="green",shape="box"];593[label="vwx301",fontsize=16,color="green",shape="box"];594[label="vwx401",fontsize=16,color="green",shape="box"];595[label="vwx301",fontsize=16,color="green",shape="box"];596[label="vwx400",fontsize=16,color="green",shape="box"];597[label="vwx300",fontsize=16,color="green",shape="box"];598[label="vwx400",fontsize=16,color="green",shape="box"];599[label="vwx300",fontsize=16,color="green",shape="box"];600[label="vwx400",fontsize=16,color="green",shape="box"];601[label="vwx300",fontsize=16,color="green",shape="box"];602[label="vwx400",fontsize=16,color="green",shape="box"];603[label="vwx300",fontsize=16,color="green",shape="box"];604[label="vwx400",fontsize=16,color="green",shape="box"];605[label="vwx300",fontsize=16,color="green",shape="box"];606[label="vwx400",fontsize=16,color="green",shape="box"];607[label="vwx300",fontsize=16,color="green",shape="box"];608[label="vwx400",fontsize=16,color="green",shape="box"];609[label="vwx300",fontsize=16,color="green",shape="box"];610[label="vwx400",fontsize=16,color="green",shape="box"];611[label="vwx300",fontsize=16,color="green",shape="box"];612[label="vwx400",fontsize=16,color="green",shape="box"];613[label="vwx300",fontsize=16,color="green",shape="box"];614[label="vwx400",fontsize=16,color="green",shape="box"];615[label="vwx300",fontsize=16,color="green",shape="box"];616[label="vwx400",fontsize=16,color="green",shape="box"];617[label="vwx300",fontsize=16,color="green",shape="box"];618[label="vwx400",fontsize=16,color="green",shape="box"];619[label="vwx300",fontsize=16,color="green",shape="box"];620[label="vwx400",fontsize=16,color="green",shape="box"];621[label="vwx300",fontsize=16,color="green",shape="box"];622[label="vwx400",fontsize=16,color="green",shape="box"];623[label="vwx300",fontsize=16,color="green",shape="box"];624[label="vwx401",fontsize=16,color="green",shape="box"];625[label="vwx301",fontsize=16,color="green",shape="box"];626[label="vwx401",fontsize=16,color="green",shape="box"];627[label="vwx301",fontsize=16,color="green",shape="box"];628[label="vwx401",fontsize=16,color="green",shape="box"];629[label="vwx301",fontsize=16,color="green",shape="box"];630[label="vwx401",fontsize=16,color="green",shape="box"];631[label="vwx301",fontsize=16,color="green",shape="box"];632[label="vwx401",fontsize=16,color="green",shape="box"];633[label="vwx301",fontsize=16,color="green",shape="box"];634[label="vwx401",fontsize=16,color="green",shape="box"];635[label="vwx301",fontsize=16,color="green",shape="box"];636[label="vwx401",fontsize=16,color="green",shape="box"];637[label="vwx301",fontsize=16,color="green",shape="box"];638[label="vwx401",fontsize=16,color="green",shape="box"];639[label="vwx301",fontsize=16,color="green",shape="box"];640[label="vwx401",fontsize=16,color="green",shape="box"];641[label="vwx301",fontsize=16,color="green",shape="box"];642[label="vwx401",fontsize=16,color="green",shape="box"];643[label="vwx301",fontsize=16,color="green",shape="box"];644[label="vwx401",fontsize=16,color="green",shape="box"];645[label="vwx301",fontsize=16,color="green",shape="box"];646[label="vwx401",fontsize=16,color="green",shape="box"];647[label="vwx301",fontsize=16,color="green",shape="box"];648[label="vwx401",fontsize=16,color="green",shape="box"];649[label="vwx301",fontsize=16,color="green",shape="box"];650[label="vwx401",fontsize=16,color="green",shape="box"];651[label="vwx301",fontsize=16,color="green",shape="box"];652[label="vwx301",fontsize=16,color="green",shape="box"];653[label="vwx400",fontsize=16,color="green",shape="box"];654[label="vwx300",fontsize=16,color="green",shape="box"];655[label="vwx401",fontsize=16,color="green",shape="box"];656[label="vwx400",fontsize=16,color="green",shape="box"];657[label="vwx300",fontsize=16,color="green",shape="box"];658[label="vwx400",fontsize=16,color="green",shape="box"];659[label="vwx300",fontsize=16,color="green",shape="box"];660[label="vwx400",fontsize=16,color="green",shape="box"];661[label="vwx300",fontsize=16,color="green",shape="box"];662[label="vwx400",fontsize=16,color="green",shape="box"];663[label="vwx300",fontsize=16,color="green",shape="box"];664[label="vwx400",fontsize=16,color="green",shape="box"];665[label="vwx300",fontsize=16,color="green",shape="box"];666[label="vwx400",fontsize=16,color="green",shape="box"];667[label="vwx300",fontsize=16,color="green",shape="box"];668[label="vwx400",fontsize=16,color="green",shape="box"];669[label="vwx300",fontsize=16,color="green",shape="box"];670[label="vwx400",fontsize=16,color="green",shape="box"];671[label="vwx300",fontsize=16,color="green",shape="box"];672[label="vwx400",fontsize=16,color="green",shape="box"];673[label="vwx300",fontsize=16,color="green",shape="box"];674[label="vwx400",fontsize=16,color="green",shape="box"];675[label="vwx300",fontsize=16,color="green",shape="box"];676[label="vwx400",fontsize=16,color="green",shape="box"];677[label="vwx300",fontsize=16,color="green",shape="box"];678[label="vwx400",fontsize=16,color="green",shape="box"];679[label="vwx300",fontsize=16,color="green",shape="box"];680[label="vwx400",fontsize=16,color="green",shape="box"];681[label="vwx300",fontsize=16,color="green",shape="box"];682[label="vwx400",fontsize=16,color="green",shape="box"];683[label="vwx300",fontsize=16,color="green",shape="box"];684 -> 27[label="",style="dashed", color="red", weight=0]; 684[label="vwx301 == vwx401",fontsize=16,color="magenta"];684 -> 755[label="",style="dashed", color="magenta", weight=3]; 684 -> 756[label="",style="dashed", color="magenta", weight=3]; 685 -> 28[label="",style="dashed", color="red", weight=0]; 685[label="vwx301 == vwx401",fontsize=16,color="magenta"];685 -> 757[label="",style="dashed", color="magenta", weight=3]; 685 -> 758[label="",style="dashed", color="magenta", weight=3]; 686 -> 29[label="",style="dashed", color="red", weight=0]; 686[label="vwx301 == vwx401",fontsize=16,color="magenta"];686 -> 759[label="",style="dashed", color="magenta", weight=3]; 686 -> 760[label="",style="dashed", color="magenta", weight=3]; 687 -> 30[label="",style="dashed", color="red", weight=0]; 687[label="vwx301 == vwx401",fontsize=16,color="magenta"];687 -> 761[label="",style="dashed", color="magenta", weight=3]; 687 -> 762[label="",style="dashed", color="magenta", weight=3]; 688 -> 31[label="",style="dashed", color="red", weight=0]; 688[label="vwx301 == vwx401",fontsize=16,color="magenta"];688 -> 763[label="",style="dashed", color="magenta", weight=3]; 688 -> 764[label="",style="dashed", color="magenta", weight=3]; 689 -> 32[label="",style="dashed", color="red", weight=0]; 689[label="vwx301 == vwx401",fontsize=16,color="magenta"];689 -> 765[label="",style="dashed", color="magenta", weight=3]; 689 -> 766[label="",style="dashed", color="magenta", weight=3]; 690 -> 33[label="",style="dashed", color="red", weight=0]; 690[label="vwx301 == vwx401",fontsize=16,color="magenta"];690 -> 767[label="",style="dashed", color="magenta", weight=3]; 690 -> 768[label="",style="dashed", color="magenta", weight=3]; 691 -> 34[label="",style="dashed", color="red", weight=0]; 691[label="vwx301 == vwx401",fontsize=16,color="magenta"];691 -> 769[label="",style="dashed", color="magenta", weight=3]; 691 -> 770[label="",style="dashed", color="magenta", weight=3]; 692 -> 35[label="",style="dashed", color="red", weight=0]; 692[label="vwx301 == vwx401",fontsize=16,color="magenta"];692 -> 771[label="",style="dashed", color="magenta", weight=3]; 692 -> 772[label="",style="dashed", color="magenta", weight=3]; 693 -> 36[label="",style="dashed", color="red", weight=0]; 693[label="vwx301 == vwx401",fontsize=16,color="magenta"];693 -> 773[label="",style="dashed", color="magenta", weight=3]; 693 -> 774[label="",style="dashed", color="magenta", weight=3]; 694 -> 37[label="",style="dashed", color="red", weight=0]; 694[label="vwx301 == vwx401",fontsize=16,color="magenta"];694 -> 775[label="",style="dashed", color="magenta", weight=3]; 694 -> 776[label="",style="dashed", color="magenta", weight=3]; 695 -> 38[label="",style="dashed", color="red", weight=0]; 695[label="vwx301 == vwx401",fontsize=16,color="magenta"];695 -> 777[label="",style="dashed", color="magenta", weight=3]; 695 -> 778[label="",style="dashed", color="magenta", weight=3]; 696 -> 39[label="",style="dashed", color="red", weight=0]; 696[label="vwx301 == vwx401",fontsize=16,color="magenta"];696 -> 779[label="",style="dashed", color="magenta", weight=3]; 696 -> 780[label="",style="dashed", color="magenta", weight=3]; 697 -> 40[label="",style="dashed", color="red", weight=0]; 697[label="vwx301 == vwx401",fontsize=16,color="magenta"];697 -> 781[label="",style="dashed", color="magenta", weight=3]; 697 -> 782[label="",style="dashed", color="magenta", weight=3]; 698 -> 27[label="",style="dashed", color="red", weight=0]; 698[label="vwx302 == vwx402",fontsize=16,color="magenta"];698 -> 783[label="",style="dashed", color="magenta", weight=3]; 698 -> 784[label="",style="dashed", color="magenta", weight=3]; 699 -> 28[label="",style="dashed", color="red", weight=0]; 699[label="vwx302 == vwx402",fontsize=16,color="magenta"];699 -> 785[label="",style="dashed", color="magenta", weight=3]; 699 -> 786[label="",style="dashed", color="magenta", weight=3]; 700 -> 29[label="",style="dashed", color="red", weight=0]; 700[label="vwx302 == vwx402",fontsize=16,color="magenta"];700 -> 787[label="",style="dashed", color="magenta", weight=3]; 700 -> 788[label="",style="dashed", color="magenta", weight=3]; 701 -> 30[label="",style="dashed", color="red", weight=0]; 701[label="vwx302 == vwx402",fontsize=16,color="magenta"];701 -> 789[label="",style="dashed", color="magenta", weight=3]; 701 -> 790[label="",style="dashed", color="magenta", weight=3]; 702 -> 31[label="",style="dashed", color="red", weight=0]; 702[label="vwx302 == vwx402",fontsize=16,color="magenta"];702 -> 791[label="",style="dashed", color="magenta", weight=3]; 702 -> 792[label="",style="dashed", color="magenta", weight=3]; 703 -> 32[label="",style="dashed", color="red", weight=0]; 703[label="vwx302 == vwx402",fontsize=16,color="magenta"];703 -> 793[label="",style="dashed", color="magenta", weight=3]; 703 -> 794[label="",style="dashed", color="magenta", weight=3]; 704 -> 33[label="",style="dashed", color="red", weight=0]; 704[label="vwx302 == vwx402",fontsize=16,color="magenta"];704 -> 795[label="",style="dashed", color="magenta", weight=3]; 704 -> 796[label="",style="dashed", color="magenta", weight=3]; 705 -> 34[label="",style="dashed", color="red", weight=0]; 705[label="vwx302 == vwx402",fontsize=16,color="magenta"];705 -> 797[label="",style="dashed", color="magenta", weight=3]; 705 -> 798[label="",style="dashed", color="magenta", weight=3]; 706 -> 35[label="",style="dashed", color="red", weight=0]; 706[label="vwx302 == vwx402",fontsize=16,color="magenta"];706 -> 799[label="",style="dashed", color="magenta", weight=3]; 706 -> 800[label="",style="dashed", color="magenta", weight=3]; 707 -> 36[label="",style="dashed", color="red", weight=0]; 707[label="vwx302 == vwx402",fontsize=16,color="magenta"];707 -> 801[label="",style="dashed", color="magenta", weight=3]; 707 -> 802[label="",style="dashed", color="magenta", weight=3]; 708 -> 37[label="",style="dashed", color="red", weight=0]; 708[label="vwx302 == vwx402",fontsize=16,color="magenta"];708 -> 803[label="",style="dashed", color="magenta", weight=3]; 708 -> 804[label="",style="dashed", color="magenta", weight=3]; 709 -> 38[label="",style="dashed", color="red", weight=0]; 709[label="vwx302 == vwx402",fontsize=16,color="magenta"];709 -> 805[label="",style="dashed", color="magenta", weight=3]; 709 -> 806[label="",style="dashed", color="magenta", weight=3]; 710 -> 39[label="",style="dashed", color="red", weight=0]; 710[label="vwx302 == vwx402",fontsize=16,color="magenta"];710 -> 807[label="",style="dashed", color="magenta", weight=3]; 710 -> 808[label="",style="dashed", color="magenta", weight=3]; 711 -> 40[label="",style="dashed", color="red", weight=0]; 711[label="vwx302 == vwx402",fontsize=16,color="magenta"];711 -> 809[label="",style="dashed", color="magenta", weight=3]; 711 -> 810[label="",style="dashed", color="magenta", weight=3]; 712[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];712 -> 811[label="",style="solid", color="black", weight=3]; 713[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];713 -> 812[label="",style="solid", color="black", weight=3]; 714[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];714 -> 813[label="",style="solid", color="black", weight=3]; 715[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];715 -> 814[label="",style="solid", color="black", weight=3]; 716 -> 815[label="",style="dashed", color="red", weight=0]; 716[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];716 -> 816[label="",style="dashed", color="magenta", weight=3]; 717[label="Left vwx90 <= Left vwx100",fontsize=16,color="black",shape="box"];717 -> 824[label="",style="solid", color="black", weight=3]; 718[label="Left vwx90 <= Right vwx100",fontsize=16,color="black",shape="box"];718 -> 825[label="",style="solid", color="black", weight=3]; 719[label="Right vwx90 <= Left vwx100",fontsize=16,color="black",shape="box"];719 -> 826[label="",style="solid", color="black", weight=3]; 720[label="Right vwx90 <= Right vwx100",fontsize=16,color="black",shape="box"];720 -> 827[label="",style="solid", color="black", weight=3]; 721[label="False <= False",fontsize=16,color="black",shape="box"];721 -> 828[label="",style="solid", color="black", weight=3]; 722[label="False <= True",fontsize=16,color="black",shape="box"];722 -> 829[label="",style="solid", color="black", weight=3]; 723[label="True <= False",fontsize=16,color="black",shape="box"];723 -> 830[label="",style="solid", color="black", weight=3]; 724[label="True <= True",fontsize=16,color="black",shape="box"];724 -> 831[label="",style="solid", color="black", weight=3]; 725 -> 815[label="",style="dashed", color="red", weight=0]; 725[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];725 -> 817[label="",style="dashed", color="magenta", weight=3]; 726 -> 815[label="",style="dashed", color="red", weight=0]; 726[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];726 -> 818[label="",style="dashed", color="magenta", weight=3]; 727[label="(vwx90,vwx91) <= (vwx100,vwx101)",fontsize=16,color="black",shape="box"];727 -> 832[label="",style="solid", color="black", weight=3]; 728[label="LT <= LT",fontsize=16,color="black",shape="box"];728 -> 833[label="",style="solid", color="black", weight=3]; 729[label="LT <= EQ",fontsize=16,color="black",shape="box"];729 -> 834[label="",style="solid", color="black", weight=3]; 730[label="LT <= GT",fontsize=16,color="black",shape="box"];730 -> 835[label="",style="solid", color="black", weight=3]; 731[label="EQ <= LT",fontsize=16,color="black",shape="box"];731 -> 836[label="",style="solid", color="black", weight=3]; 732[label="EQ <= EQ",fontsize=16,color="black",shape="box"];732 -> 837[label="",style="solid", color="black", weight=3]; 733[label="EQ <= GT",fontsize=16,color="black",shape="box"];733 -> 838[label="",style="solid", color="black", weight=3]; 734[label="GT <= LT",fontsize=16,color="black",shape="box"];734 -> 839[label="",style="solid", color="black", weight=3]; 735[label="GT <= EQ",fontsize=16,color="black",shape="box"];735 -> 840[label="",style="solid", color="black", weight=3]; 736[label="GT <= GT",fontsize=16,color="black",shape="box"];736 -> 841[label="",style="solid", color="black", weight=3]; 737 -> 815[label="",style="dashed", color="red", weight=0]; 737[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];737 -> 819[label="",style="dashed", color="magenta", weight=3]; 738 -> 815[label="",style="dashed", color="red", weight=0]; 738[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];738 -> 820[label="",style="dashed", color="magenta", weight=3]; 739[label="(vwx90,vwx91,vwx92) <= (vwx100,vwx101,vwx102)",fontsize=16,color="black",shape="box"];739 -> 842[label="",style="solid", color="black", weight=3]; 740 -> 815[label="",style="dashed", color="red", weight=0]; 740[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];740 -> 821[label="",style="dashed", color="magenta", weight=3]; 741[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];741 -> 843[label="",style="solid", color="black", weight=3]; 742[label="Nothing <= Just vwx100",fontsize=16,color="black",shape="box"];742 -> 844[label="",style="solid", color="black", weight=3]; 743[label="Just vwx90 <= Nothing",fontsize=16,color="black",shape="box"];743 -> 845[label="",style="solid", color="black", weight=3]; 744[label="Just vwx90 <= Just vwx100",fontsize=16,color="black",shape="box"];744 -> 846[label="",style="solid", color="black", weight=3]; 745 -> 815[label="",style="dashed", color="red", weight=0]; 745[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];745 -> 822[label="",style="dashed", color="magenta", weight=3]; 746 -> 815[label="",style="dashed", color="red", weight=0]; 746[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];746 -> 823[label="",style="dashed", color="magenta", weight=3]; 747[label="GT",fontsize=16,color="green",shape="box"];748[label="GT",fontsize=16,color="green",shape="box"];749[label="vwx3000",fontsize=16,color="green",shape="box"];750[label="vwx4000",fontsize=16,color="green",shape="box"];751[label="vwx3000",fontsize=16,color="green",shape="box"];752[label="vwx4000",fontsize=16,color="green",shape="box"];753[label="primMulInt (Pos vwx3010) vwx400",fontsize=16,color="burlywood",shape="box"];2089[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];753 -> 2089[label="",style="solid", color="burlywood", weight=9]; 2089 -> 847[label="",style="solid", color="burlywood", weight=3]; 2090[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];753 -> 2090[label="",style="solid", color="burlywood", weight=9]; 2090 -> 848[label="",style="solid", color="burlywood", weight=3]; 754[label="primMulInt (Neg vwx3010) vwx400",fontsize=16,color="burlywood",shape="box"];2091[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];754 -> 2091[label="",style="solid", color="burlywood", weight=9]; 2091 -> 849[label="",style="solid", color="burlywood", weight=3]; 2092[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];754 -> 2092[label="",style="solid", color="burlywood", weight=9]; 2092 -> 850[label="",style="solid", color="burlywood", weight=3]; 755[label="vwx401",fontsize=16,color="green",shape="box"];756[label="vwx301",fontsize=16,color="green",shape="box"];757[label="vwx401",fontsize=16,color="green",shape="box"];758[label="vwx301",fontsize=16,color="green",shape="box"];759[label="vwx401",fontsize=16,color="green",shape="box"];760[label="vwx301",fontsize=16,color="green",shape="box"];761[label="vwx401",fontsize=16,color="green",shape="box"];762[label="vwx301",fontsize=16,color="green",shape="box"];763[label="vwx401",fontsize=16,color="green",shape="box"];764[label="vwx301",fontsize=16,color="green",shape="box"];765[label="vwx401",fontsize=16,color="green",shape="box"];766[label="vwx301",fontsize=16,color="green",shape="box"];767[label="vwx401",fontsize=16,color="green",shape="box"];768[label="vwx301",fontsize=16,color="green",shape="box"];769[label="vwx401",fontsize=16,color="green",shape="box"];770[label="vwx301",fontsize=16,color="green",shape="box"];771[label="vwx401",fontsize=16,color="green",shape="box"];772[label="vwx301",fontsize=16,color="green",shape="box"];773[label="vwx401",fontsize=16,color="green",shape="box"];774[label="vwx301",fontsize=16,color="green",shape="box"];775[label="vwx401",fontsize=16,color="green",shape="box"];776[label="vwx301",fontsize=16,color="green",shape="box"];777[label="vwx401",fontsize=16,color="green",shape="box"];778[label="vwx301",fontsize=16,color="green",shape="box"];779[label="vwx401",fontsize=16,color="green",shape="box"];780[label="vwx301",fontsize=16,color="green",shape="box"];781[label="vwx401",fontsize=16,color="green",shape="box"];782[label="vwx301",fontsize=16,color="green",shape="box"];783[label="vwx402",fontsize=16,color="green",shape="box"];784[label="vwx302",fontsize=16,color="green",shape="box"];785[label="vwx402",fontsize=16,color="green",shape="box"];786[label="vwx302",fontsize=16,color="green",shape="box"];787[label="vwx402",fontsize=16,color="green",shape="box"];788[label="vwx302",fontsize=16,color="green",shape="box"];789[label="vwx402",fontsize=16,color="green",shape="box"];790[label="vwx302",fontsize=16,color="green",shape="box"];791[label="vwx402",fontsize=16,color="green",shape="box"];792[label="vwx302",fontsize=16,color="green",shape="box"];793[label="vwx402",fontsize=16,color="green",shape="box"];794[label="vwx302",fontsize=16,color="green",shape="box"];795[label="vwx402",fontsize=16,color="green",shape="box"];796[label="vwx302",fontsize=16,color="green",shape="box"];797[label="vwx402",fontsize=16,color="green",shape="box"];798[label="vwx302",fontsize=16,color="green",shape="box"];799[label="vwx402",fontsize=16,color="green",shape="box"];800[label="vwx302",fontsize=16,color="green",shape="box"];801[label="vwx402",fontsize=16,color="green",shape="box"];802[label="vwx302",fontsize=16,color="green",shape="box"];803[label="vwx402",fontsize=16,color="green",shape="box"];804[label="vwx302",fontsize=16,color="green",shape="box"];805[label="vwx402",fontsize=16,color="green",shape="box"];806[label="vwx302",fontsize=16,color="green",shape="box"];807[label="vwx402",fontsize=16,color="green",shape="box"];808[label="vwx302",fontsize=16,color="green",shape="box"];809[label="vwx402",fontsize=16,color="green",shape="box"];810[label="vwx302",fontsize=16,color="green",shape="box"];811 -> 274[label="",style="dashed", color="red", weight=0]; 811[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];811 -> 851[label="",style="dashed", color="magenta", weight=3]; 811 -> 852[label="",style="dashed", color="magenta", weight=3]; 812[label="False",fontsize=16,color="green",shape="box"];813[label="False",fontsize=16,color="green",shape="box"];814[label="True",fontsize=16,color="green",shape="box"];816 -> 32[label="",style="dashed", color="red", weight=0]; 816[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];816 -> 853[label="",style="dashed", color="magenta", weight=3]; 816 -> 854[label="",style="dashed", color="magenta", weight=3]; 815[label="not vwx39",fontsize=16,color="burlywood",shape="triangle"];2093[label="vwx39/False",fontsize=10,color="white",style="solid",shape="box"];815 -> 2093[label="",style="solid", color="burlywood", weight=9]; 2093 -> 855[label="",style="solid", color="burlywood", weight=3]; 2094[label="vwx39/True",fontsize=10,color="white",style="solid",shape="box"];815 -> 2094[label="",style="solid", color="burlywood", weight=9]; 2094 -> 856[label="",style="solid", color="burlywood", weight=3]; 824[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];2095[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2095[label="",style="solid", color="blue", weight=9]; 2095 -> 871[label="",style="solid", color="blue", weight=3]; 2096[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2096[label="",style="solid", color="blue", weight=9]; 2096 -> 872[label="",style="solid", color="blue", weight=3]; 2097[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2097[label="",style="solid", color="blue", weight=9]; 2097 -> 873[label="",style="solid", color="blue", weight=3]; 2098[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2098[label="",style="solid", color="blue", weight=9]; 2098 -> 874[label="",style="solid", color="blue", weight=3]; 2099[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2099[label="",style="solid", color="blue", weight=9]; 2099 -> 875[label="",style="solid", color="blue", weight=3]; 2100[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2100[label="",style="solid", color="blue", weight=9]; 2100 -> 876[label="",style="solid", color="blue", weight=3]; 2101[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2101[label="",style="solid", color="blue", weight=9]; 2101 -> 877[label="",style="solid", color="blue", weight=3]; 2102[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2102[label="",style="solid", color="blue", weight=9]; 2102 -> 878[label="",style="solid", color="blue", weight=3]; 2103[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2103[label="",style="solid", color="blue", weight=9]; 2103 -> 879[label="",style="solid", color="blue", weight=3]; 2104[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2104[label="",style="solid", color="blue", weight=9]; 2104 -> 880[label="",style="solid", color="blue", weight=3]; 2105[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2105[label="",style="solid", color="blue", weight=9]; 2105 -> 881[label="",style="solid", color="blue", weight=3]; 2106[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2106[label="",style="solid", color="blue", weight=9]; 2106 -> 882[label="",style="solid", color="blue", weight=3]; 2107[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2107[label="",style="solid", color="blue", weight=9]; 2107 -> 883[label="",style="solid", color="blue", weight=3]; 2108[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2108[label="",style="solid", color="blue", weight=9]; 2108 -> 884[label="",style="solid", color="blue", weight=3]; 825[label="True",fontsize=16,color="green",shape="box"];826[label="False",fontsize=16,color="green",shape="box"];827[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];2109[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2109[label="",style="solid", color="blue", weight=9]; 2109 -> 885[label="",style="solid", color="blue", weight=3]; 2110[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2110[label="",style="solid", color="blue", weight=9]; 2110 -> 886[label="",style="solid", color="blue", weight=3]; 2111[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2111[label="",style="solid", color="blue", weight=9]; 2111 -> 887[label="",style="solid", color="blue", weight=3]; 2112[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2112[label="",style="solid", color="blue", weight=9]; 2112 -> 888[label="",style="solid", color="blue", weight=3]; 2113[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2113[label="",style="solid", color="blue", weight=9]; 2113 -> 889[label="",style="solid", color="blue", weight=3]; 2114[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2114[label="",style="solid", color="blue", weight=9]; 2114 -> 890[label="",style="solid", color="blue", weight=3]; 2115[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2115[label="",style="solid", color="blue", weight=9]; 2115 -> 891[label="",style="solid", color="blue", weight=3]; 2116[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2116[label="",style="solid", color="blue", weight=9]; 2116 -> 892[label="",style="solid", color="blue", weight=3]; 2117[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2117[label="",style="solid", color="blue", weight=9]; 2117 -> 893[label="",style="solid", color="blue", weight=3]; 2118[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2118[label="",style="solid", color="blue", weight=9]; 2118 -> 894[label="",style="solid", color="blue", weight=3]; 2119[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2119[label="",style="solid", color="blue", weight=9]; 2119 -> 895[label="",style="solid", color="blue", weight=3]; 2120[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2120[label="",style="solid", color="blue", weight=9]; 2120 -> 896[label="",style="solid", color="blue", weight=3]; 2121[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2121[label="",style="solid", color="blue", weight=9]; 2121 -> 897[label="",style="solid", color="blue", weight=3]; 2122[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];827 -> 2122[label="",style="solid", color="blue", weight=9]; 2122 -> 898[label="",style="solid", color="blue", weight=3]; 828[label="True",fontsize=16,color="green",shape="box"];829[label="True",fontsize=16,color="green",shape="box"];830[label="False",fontsize=16,color="green",shape="box"];831[label="True",fontsize=16,color="green",shape="box"];817 -> 32[label="",style="dashed", color="red", weight=0]; 817[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];817 -> 857[label="",style="dashed", color="magenta", weight=3]; 817 -> 858[label="",style="dashed", color="magenta", weight=3]; 818 -> 32[label="",style="dashed", color="red", weight=0]; 818[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];818 -> 859[label="",style="dashed", color="magenta", weight=3]; 818 -> 860[label="",style="dashed", color="magenta", weight=3]; 832 -> 985[label="",style="dashed", color="red", weight=0]; 832[label="vwx90 < vwx100 || vwx90 == vwx100 && vwx91 <= vwx101",fontsize=16,color="magenta"];832 -> 986[label="",style="dashed", color="magenta", weight=3]; 832 -> 987[label="",style="dashed", color="magenta", weight=3]; 833[label="True",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="True",fontsize=16,color="green",shape="box"];838[label="True",fontsize=16,color="green",shape="box"];839[label="False",fontsize=16,color="green",shape="box"];840[label="False",fontsize=16,color="green",shape="box"];841[label="True",fontsize=16,color="green",shape="box"];819 -> 32[label="",style="dashed", color="red", weight=0]; 819[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];819 -> 861[label="",style="dashed", color="magenta", weight=3]; 819 -> 862[label="",style="dashed", color="magenta", weight=3]; 820 -> 32[label="",style="dashed", color="red", weight=0]; 820[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];820 -> 863[label="",style="dashed", color="magenta", weight=3]; 820 -> 864[label="",style="dashed", color="magenta", weight=3]; 842 -> 985[label="",style="dashed", color="red", weight=0]; 842[label="vwx90 < vwx100 || vwx90 == vwx100 && (vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102)",fontsize=16,color="magenta"];842 -> 988[label="",style="dashed", color="magenta", weight=3]; 842 -> 989[label="",style="dashed", color="magenta", weight=3]; 821 -> 32[label="",style="dashed", color="red", weight=0]; 821[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];821 -> 865[label="",style="dashed", color="magenta", weight=3]; 821 -> 866[label="",style="dashed", color="magenta", weight=3]; 843[label="True",fontsize=16,color="green",shape="box"];844[label="True",fontsize=16,color="green",shape="box"];845[label="False",fontsize=16,color="green",shape="box"];846[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];2123[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2123[label="",style="solid", color="blue", weight=9]; 2123 -> 904[label="",style="solid", color="blue", weight=3]; 2124[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2124[label="",style="solid", color="blue", weight=9]; 2124 -> 905[label="",style="solid", color="blue", weight=3]; 2125[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2125[label="",style="solid", color="blue", weight=9]; 2125 -> 906[label="",style="solid", color="blue", weight=3]; 2126[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2126[label="",style="solid", color="blue", weight=9]; 2126 -> 907[label="",style="solid", color="blue", weight=3]; 2127[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2127[label="",style="solid", color="blue", weight=9]; 2127 -> 908[label="",style="solid", color="blue", weight=3]; 2128[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2128[label="",style="solid", color="blue", weight=9]; 2128 -> 909[label="",style="solid", color="blue", weight=3]; 2129[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2129[label="",style="solid", color="blue", weight=9]; 2129 -> 910[label="",style="solid", color="blue", weight=3]; 2130[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2130[label="",style="solid", color="blue", weight=9]; 2130 -> 911[label="",style="solid", color="blue", weight=3]; 2131[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2131[label="",style="solid", color="blue", weight=9]; 2131 -> 912[label="",style="solid", color="blue", weight=3]; 2132[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2132[label="",style="solid", color="blue", weight=9]; 2132 -> 913[label="",style="solid", color="blue", weight=3]; 2133[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2133[label="",style="solid", color="blue", weight=9]; 2133 -> 914[label="",style="solid", color="blue", weight=3]; 2134[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2134[label="",style="solid", color="blue", weight=9]; 2134 -> 915[label="",style="solid", color="blue", weight=3]; 2135[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2135[label="",style="solid", color="blue", weight=9]; 2135 -> 916[label="",style="solid", color="blue", weight=3]; 2136[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 2136[label="",style="solid", color="blue", weight=9]; 2136 -> 917[label="",style="solid", color="blue", weight=3]; 822 -> 32[label="",style="dashed", color="red", weight=0]; 822[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];822 -> 867[label="",style="dashed", color="magenta", weight=3]; 822 -> 868[label="",style="dashed", color="magenta", weight=3]; 823 -> 32[label="",style="dashed", color="red", weight=0]; 823[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];823 -> 869[label="",style="dashed", color="magenta", weight=3]; 823 -> 870[label="",style="dashed", color="magenta", weight=3]; 847[label="primMulInt (Pos vwx3010) (Pos vwx4000)",fontsize=16,color="black",shape="box"];847 -> 918[label="",style="solid", color="black", weight=3]; 848[label="primMulInt (Pos vwx3010) (Neg vwx4000)",fontsize=16,color="black",shape="box"];848 -> 919[label="",style="solid", color="black", weight=3]; 849[label="primMulInt (Neg vwx3010) (Pos vwx4000)",fontsize=16,color="black",shape="box"];849 -> 920[label="",style="solid", color="black", weight=3]; 850[label="primMulInt (Neg vwx3010) (Neg vwx4000)",fontsize=16,color="black",shape="box"];850 -> 921[label="",style="solid", color="black", weight=3]; 851[label="vwx3000",fontsize=16,color="green",shape="box"];852[label="vwx4000",fontsize=16,color="green",shape="box"];853[label="GT",fontsize=16,color="green",shape="box"];854[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];854 -> 922[label="",style="solid", color="black", weight=3]; 855[label="not False",fontsize=16,color="black",shape="box"];855 -> 923[label="",style="solid", color="black", weight=3]; 856[label="not True",fontsize=16,color="black",shape="box"];856 -> 924[label="",style="solid", color="black", weight=3]; 871 -> 277[label="",style="dashed", color="red", weight=0]; 871[label="vwx90 <= vwx100",fontsize=16,color="magenta"];871 -> 925[label="",style="dashed", color="magenta", weight=3]; 871 -> 926[label="",style="dashed", color="magenta", weight=3]; 872 -> 278[label="",style="dashed", color="red", weight=0]; 872[label="vwx90 <= vwx100",fontsize=16,color="magenta"];872 -> 927[label="",style="dashed", color="magenta", weight=3]; 872 -> 928[label="",style="dashed", color="magenta", weight=3]; 873 -> 279[label="",style="dashed", color="red", weight=0]; 873[label="vwx90 <= vwx100",fontsize=16,color="magenta"];873 -> 929[label="",style="dashed", color="magenta", weight=3]; 873 -> 930[label="",style="dashed", color="magenta", weight=3]; 874 -> 280[label="",style="dashed", color="red", weight=0]; 874[label="vwx90 <= vwx100",fontsize=16,color="magenta"];874 -> 931[label="",style="dashed", color="magenta", weight=3]; 874 -> 932[label="",style="dashed", color="magenta", weight=3]; 875 -> 281[label="",style="dashed", color="red", weight=0]; 875[label="vwx90 <= vwx100",fontsize=16,color="magenta"];875 -> 933[label="",style="dashed", color="magenta", weight=3]; 875 -> 934[label="",style="dashed", color="magenta", weight=3]; 876 -> 282[label="",style="dashed", color="red", weight=0]; 876[label="vwx90 <= vwx100",fontsize=16,color="magenta"];876 -> 935[label="",style="dashed", color="magenta", weight=3]; 876 -> 936[label="",style="dashed", color="magenta", weight=3]; 877 -> 283[label="",style="dashed", color="red", weight=0]; 877[label="vwx90 <= vwx100",fontsize=16,color="magenta"];877 -> 937[label="",style="dashed", color="magenta", weight=3]; 877 -> 938[label="",style="dashed", color="magenta", weight=3]; 878 -> 284[label="",style="dashed", color="red", weight=0]; 878[label="vwx90 <= vwx100",fontsize=16,color="magenta"];878 -> 939[label="",style="dashed", color="magenta", weight=3]; 878 -> 940[label="",style="dashed", color="magenta", weight=3]; 879 -> 285[label="",style="dashed", color="red", weight=0]; 879[label="vwx90 <= vwx100",fontsize=16,color="magenta"];879 -> 941[label="",style="dashed", color="magenta", weight=3]; 879 -> 942[label="",style="dashed", color="magenta", weight=3]; 880 -> 286[label="",style="dashed", color="red", weight=0]; 880[label="vwx90 <= vwx100",fontsize=16,color="magenta"];880 -> 943[label="",style="dashed", color="magenta", weight=3]; 880 -> 944[label="",style="dashed", color="magenta", weight=3]; 881 -> 287[label="",style="dashed", color="red", weight=0]; 881[label="vwx90 <= vwx100",fontsize=16,color="magenta"];881 -> 945[label="",style="dashed", color="magenta", weight=3]; 881 -> 946[label="",style="dashed", color="magenta", weight=3]; 882 -> 288[label="",style="dashed", color="red", weight=0]; 882[label="vwx90 <= vwx100",fontsize=16,color="magenta"];882 -> 947[label="",style="dashed", color="magenta", weight=3]; 882 -> 948[label="",style="dashed", color="magenta", weight=3]; 883 -> 289[label="",style="dashed", color="red", weight=0]; 883[label="vwx90 <= vwx100",fontsize=16,color="magenta"];883 -> 949[label="",style="dashed", color="magenta", weight=3]; 883 -> 950[label="",style="dashed", color="magenta", weight=3]; 884 -> 290[label="",style="dashed", color="red", weight=0]; 884[label="vwx90 <= vwx100",fontsize=16,color="magenta"];884 -> 951[label="",style="dashed", color="magenta", weight=3]; 884 -> 952[label="",style="dashed", color="magenta", weight=3]; 885 -> 277[label="",style="dashed", color="red", weight=0]; 885[label="vwx90 <= vwx100",fontsize=16,color="magenta"];885 -> 953[label="",style="dashed", color="magenta", weight=3]; 885 -> 954[label="",style="dashed", color="magenta", weight=3]; 886 -> 278[label="",style="dashed", color="red", weight=0]; 886[label="vwx90 <= vwx100",fontsize=16,color="magenta"];886 -> 955[label="",style="dashed", color="magenta", weight=3]; 886 -> 956[label="",style="dashed", color="magenta", weight=3]; 887 -> 279[label="",style="dashed", color="red", weight=0]; 887[label="vwx90 <= vwx100",fontsize=16,color="magenta"];887 -> 957[label="",style="dashed", color="magenta", weight=3]; 887 -> 958[label="",style="dashed", color="magenta", weight=3]; 888 -> 280[label="",style="dashed", color="red", weight=0]; 888[label="vwx90 <= vwx100",fontsize=16,color="magenta"];888 -> 959[label="",style="dashed", color="magenta", weight=3]; 888 -> 960[label="",style="dashed", color="magenta", weight=3]; 889 -> 281[label="",style="dashed", color="red", weight=0]; 889[label="vwx90 <= vwx100",fontsize=16,color="magenta"];889 -> 961[label="",style="dashed", color="magenta", weight=3]; 889 -> 962[label="",style="dashed", color="magenta", weight=3]; 890 -> 282[label="",style="dashed", color="red", weight=0]; 890[label="vwx90 <= vwx100",fontsize=16,color="magenta"];890 -> 963[label="",style="dashed", color="magenta", weight=3]; 890 -> 964[label="",style="dashed", color="magenta", weight=3]; 891 -> 283[label="",style="dashed", color="red", weight=0]; 891[label="vwx90 <= vwx100",fontsize=16,color="magenta"];891 -> 965[label="",style="dashed", color="magenta", weight=3]; 891 -> 966[label="",style="dashed", color="magenta", weight=3]; 892 -> 284[label="",style="dashed", color="red", weight=0]; 892[label="vwx90 <= vwx100",fontsize=16,color="magenta"];892 -> 967[label="",style="dashed", color="magenta", weight=3]; 892 -> 968[label="",style="dashed", color="magenta", weight=3]; 893 -> 285[label="",style="dashed", color="red", weight=0]; 893[label="vwx90 <= vwx100",fontsize=16,color="magenta"];893 -> 969[label="",style="dashed", color="magenta", weight=3]; 893 -> 970[label="",style="dashed", color="magenta", weight=3]; 894 -> 286[label="",style="dashed", color="red", weight=0]; 894[label="vwx90 <= vwx100",fontsize=16,color="magenta"];894 -> 971[label="",style="dashed", color="magenta", weight=3]; 894 -> 972[label="",style="dashed", color="magenta", weight=3]; 895 -> 287[label="",style="dashed", color="red", weight=0]; 895[label="vwx90 <= vwx100",fontsize=16,color="magenta"];895 -> 973[label="",style="dashed", color="magenta", weight=3]; 895 -> 974[label="",style="dashed", color="magenta", weight=3]; 896 -> 288[label="",style="dashed", color="red", weight=0]; 896[label="vwx90 <= vwx100",fontsize=16,color="magenta"];896 -> 975[label="",style="dashed", color="magenta", weight=3]; 896 -> 976[label="",style="dashed", color="magenta", weight=3]; 897 -> 289[label="",style="dashed", color="red", weight=0]; 897[label="vwx90 <= vwx100",fontsize=16,color="magenta"];897 -> 977[label="",style="dashed", color="magenta", weight=3]; 897 -> 978[label="",style="dashed", color="magenta", weight=3]; 898 -> 290[label="",style="dashed", color="red", weight=0]; 898[label="vwx90 <= vwx100",fontsize=16,color="magenta"];898 -> 979[label="",style="dashed", color="magenta", weight=3]; 898 -> 980[label="",style="dashed", color="magenta", weight=3]; 857[label="GT",fontsize=16,color="green",shape="box"];858[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2137[label="vwx9/()",fontsize=10,color="white",style="solid",shape="box"];858 -> 2137[label="",style="solid", color="burlywood", weight=9]; 2137 -> 981[label="",style="solid", color="burlywood", weight=3]; 859[label="GT",fontsize=16,color="green",shape="box"];860[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2138[label="vwx9/Integer vwx90",fontsize=10,color="white",style="solid",shape="box"];860 -> 2138[label="",style="solid", color="burlywood", weight=9]; 2138 -> 982[label="",style="solid", color="burlywood", weight=3]; 986[label="vwx90 < vwx100",fontsize=16,color="blue",shape="box"];2139[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2139[label="",style="solid", color="blue", weight=9]; 2139 -> 992[label="",style="solid", color="blue", weight=3]; 2140[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2140[label="",style="solid", color="blue", weight=9]; 2140 -> 993[label="",style="solid", color="blue", weight=3]; 2141[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2141[label="",style="solid", color="blue", weight=9]; 2141 -> 994[label="",style="solid", color="blue", weight=3]; 2142[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2142[label="",style="solid", color="blue", weight=9]; 2142 -> 995[label="",style="solid", color="blue", weight=3]; 2143[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2143[label="",style="solid", color="blue", weight=9]; 2143 -> 996[label="",style="solid", color="blue", weight=3]; 2144[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2144[label="",style="solid", color="blue", weight=9]; 2144 -> 997[label="",style="solid", color="blue", weight=3]; 2145[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2145[label="",style="solid", color="blue", weight=9]; 2145 -> 998[label="",style="solid", color="blue", weight=3]; 2146[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2146[label="",style="solid", color="blue", weight=9]; 2146 -> 999[label="",style="solid", color="blue", weight=3]; 2147[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2147[label="",style="solid", color="blue", weight=9]; 2147 -> 1000[label="",style="solid", color="blue", weight=3]; 2148[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2148[label="",style="solid", color="blue", weight=9]; 2148 -> 1001[label="",style="solid", color="blue", weight=3]; 2149[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2149[label="",style="solid", color="blue", weight=9]; 2149 -> 1002[label="",style="solid", color="blue", weight=3]; 2150[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2150[label="",style="solid", color="blue", weight=9]; 2150 -> 1003[label="",style="solid", color="blue", weight=3]; 2151[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2151[label="",style="solid", color="blue", weight=9]; 2151 -> 1004[label="",style="solid", color="blue", weight=3]; 2152[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 2152[label="",style="solid", color="blue", weight=9]; 2152 -> 1005[label="",style="solid", color="blue", weight=3]; 987 -> 383[label="",style="dashed", color="red", weight=0]; 987[label="vwx90 == vwx100 && vwx91 <= vwx101",fontsize=16,color="magenta"];987 -> 1006[label="",style="dashed", color="magenta", weight=3]; 987 -> 1007[label="",style="dashed", color="magenta", weight=3]; 985[label="vwx44 || vwx45",fontsize=16,color="burlywood",shape="triangle"];2153[label="vwx44/False",fontsize=10,color="white",style="solid",shape="box"];985 -> 2153[label="",style="solid", color="burlywood", weight=9]; 2153 -> 1008[label="",style="solid", color="burlywood", weight=3]; 2154[label="vwx44/True",fontsize=10,color="white",style="solid",shape="box"];985 -> 2154[label="",style="solid", color="burlywood", weight=9]; 2154 -> 1009[label="",style="solid", color="burlywood", weight=3]; 861[label="GT",fontsize=16,color="green",shape="box"];862[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];862 -> 1010[label="",style="solid", color="black", weight=3]; 863[label="GT",fontsize=16,color="green",shape="box"];864[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2155[label="vwx9/vwx90 :% vwx91",fontsize=10,color="white",style="solid",shape="box"];864 -> 2155[label="",style="solid", color="burlywood", weight=9]; 2155 -> 1011[label="",style="solid", color="burlywood", weight=3]; 988[label="vwx90 < vwx100",fontsize=16,color="blue",shape="box"];2156[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2156[label="",style="solid", color="blue", weight=9]; 2156 -> 1012[label="",style="solid", color="blue", weight=3]; 2157[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2157[label="",style="solid", color="blue", weight=9]; 2157 -> 1013[label="",style="solid", color="blue", weight=3]; 2158[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2158[label="",style="solid", color="blue", weight=9]; 2158 -> 1014[label="",style="solid", color="blue", weight=3]; 2159[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2159[label="",style="solid", color="blue", weight=9]; 2159 -> 1015[label="",style="solid", color="blue", weight=3]; 2160[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2160[label="",style="solid", color="blue", weight=9]; 2160 -> 1016[label="",style="solid", color="blue", weight=3]; 2161[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2161[label="",style="solid", color="blue", weight=9]; 2161 -> 1017[label="",style="solid", color="blue", weight=3]; 2162[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2162[label="",style="solid", color="blue", weight=9]; 2162 -> 1018[label="",style="solid", color="blue", weight=3]; 2163[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2163[label="",style="solid", color="blue", weight=9]; 2163 -> 1019[label="",style="solid", color="blue", weight=3]; 2164[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2164[label="",style="solid", color="blue", weight=9]; 2164 -> 1020[label="",style="solid", color="blue", weight=3]; 2165[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2165[label="",style="solid", color="blue", weight=9]; 2165 -> 1021[label="",style="solid", color="blue", weight=3]; 2166[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2166[label="",style="solid", color="blue", weight=9]; 2166 -> 1022[label="",style="solid", color="blue", weight=3]; 2167[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2167[label="",style="solid", color="blue", weight=9]; 2167 -> 1023[label="",style="solid", color="blue", weight=3]; 2168[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2168[label="",style="solid", color="blue", weight=9]; 2168 -> 1024[label="",style="solid", color="blue", weight=3]; 2169[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];988 -> 2169[label="",style="solid", color="blue", weight=9]; 2169 -> 1025[label="",style="solid", color="blue", weight=3]; 989 -> 383[label="",style="dashed", color="red", weight=0]; 989[label="vwx90 == vwx100 && (vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102)",fontsize=16,color="magenta"];989 -> 1026[label="",style="dashed", color="magenta", weight=3]; 989 -> 1027[label="",style="dashed", color="magenta", weight=3]; 865[label="GT",fontsize=16,color="green",shape="box"];866[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2170[label="vwx9/vwx90 : vwx91",fontsize=10,color="white",style="solid",shape="box"];866 -> 2170[label="",style="solid", color="burlywood", weight=9]; 2170 -> 1028[label="",style="solid", color="burlywood", weight=3]; 2171[label="vwx9/[]",fontsize=10,color="white",style="solid",shape="box"];866 -> 2171[label="",style="solid", color="burlywood", weight=9]; 2171 -> 1029[label="",style="solid", color="burlywood", weight=3]; 904 -> 277[label="",style="dashed", color="red", weight=0]; 904[label="vwx90 <= vwx100",fontsize=16,color="magenta"];904 -> 1030[label="",style="dashed", color="magenta", weight=3]; 904 -> 1031[label="",style="dashed", color="magenta", weight=3]; 905 -> 278[label="",style="dashed", color="red", weight=0]; 905[label="vwx90 <= vwx100",fontsize=16,color="magenta"];905 -> 1032[label="",style="dashed", color="magenta", weight=3]; 905 -> 1033[label="",style="dashed", color="magenta", weight=3]; 906 -> 279[label="",style="dashed", color="red", weight=0]; 906[label="vwx90 <= vwx100",fontsize=16,color="magenta"];906 -> 1034[label="",style="dashed", color="magenta", weight=3]; 906 -> 1035[label="",style="dashed", color="magenta", weight=3]; 907 -> 280[label="",style="dashed", color="red", weight=0]; 907[label="vwx90 <= vwx100",fontsize=16,color="magenta"];907 -> 1036[label="",style="dashed", color="magenta", weight=3]; 907 -> 1037[label="",style="dashed", color="magenta", weight=3]; 908 -> 281[label="",style="dashed", color="red", weight=0]; 908[label="vwx90 <= vwx100",fontsize=16,color="magenta"];908 -> 1038[label="",style="dashed", color="magenta", weight=3]; 908 -> 1039[label="",style="dashed", color="magenta", weight=3]; 909 -> 282[label="",style="dashed", color="red", weight=0]; 909[label="vwx90 <= vwx100",fontsize=16,color="magenta"];909 -> 1040[label="",style="dashed", color="magenta", weight=3]; 909 -> 1041[label="",style="dashed", color="magenta", weight=3]; 910 -> 283[label="",style="dashed", color="red", weight=0]; 910[label="vwx90 <= vwx100",fontsize=16,color="magenta"];910 -> 1042[label="",style="dashed", color="magenta", weight=3]; 910 -> 1043[label="",style="dashed", color="magenta", weight=3]; 911 -> 284[label="",style="dashed", color="red", weight=0]; 911[label="vwx90 <= vwx100",fontsize=16,color="magenta"];911 -> 1044[label="",style="dashed", color="magenta", weight=3]; 911 -> 1045[label="",style="dashed", color="magenta", weight=3]; 912 -> 285[label="",style="dashed", color="red", weight=0]; 912[label="vwx90 <= vwx100",fontsize=16,color="magenta"];912 -> 1046[label="",style="dashed", color="magenta", weight=3]; 912 -> 1047[label="",style="dashed", color="magenta", weight=3]; 913 -> 286[label="",style="dashed", color="red", weight=0]; 913[label="vwx90 <= vwx100",fontsize=16,color="magenta"];913 -> 1048[label="",style="dashed", color="magenta", weight=3]; 913 -> 1049[label="",style="dashed", color="magenta", weight=3]; 914 -> 287[label="",style="dashed", color="red", weight=0]; 914[label="vwx90 <= vwx100",fontsize=16,color="magenta"];914 -> 1050[label="",style="dashed", color="magenta", weight=3]; 914 -> 1051[label="",style="dashed", color="magenta", weight=3]; 915 -> 288[label="",style="dashed", color="red", weight=0]; 915[label="vwx90 <= vwx100",fontsize=16,color="magenta"];915 -> 1052[label="",style="dashed", color="magenta", weight=3]; 915 -> 1053[label="",style="dashed", color="magenta", weight=3]; 916 -> 289[label="",style="dashed", color="red", weight=0]; 916[label="vwx90 <= vwx100",fontsize=16,color="magenta"];916 -> 1054[label="",style="dashed", color="magenta", weight=3]; 916 -> 1055[label="",style="dashed", color="magenta", weight=3]; 917 -> 290[label="",style="dashed", color="red", weight=0]; 917[label="vwx90 <= vwx100",fontsize=16,color="magenta"];917 -> 1056[label="",style="dashed", color="magenta", weight=3]; 917 -> 1057[label="",style="dashed", color="magenta", weight=3]; 867[label="GT",fontsize=16,color="green",shape="box"];868[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];868 -> 1058[label="",style="solid", color="black", weight=3]; 869[label="GT",fontsize=16,color="green",shape="box"];870[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];870 -> 1059[label="",style="solid", color="black", weight=3]; 918[label="Pos (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];918 -> 1060[label="",style="dashed", color="green", weight=3]; 919[label="Neg (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];919 -> 1061[label="",style="dashed", color="green", weight=3]; 920[label="Neg (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];920 -> 1062[label="",style="dashed", color="green", weight=3]; 921[label="Pos (primMulNat vwx3010 vwx4000)",fontsize=16,color="green",shape="box"];921 -> 1063[label="",style="dashed", color="green", weight=3]; 922[label="primCmpInt vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2172[label="vwx9/Pos vwx90",fontsize=10,color="white",style="solid",shape="box"];922 -> 2172[label="",style="solid", color="burlywood", weight=9]; 2172 -> 1064[label="",style="solid", color="burlywood", weight=3]; 2173[label="vwx9/Neg vwx90",fontsize=10,color="white",style="solid",shape="box"];922 -> 2173[label="",style="solid", color="burlywood", weight=9]; 2173 -> 1065[label="",style="solid", color="burlywood", weight=3]; 923[label="True",fontsize=16,color="green",shape="box"];924[label="False",fontsize=16,color="green",shape="box"];925[label="vwx100",fontsize=16,color="green",shape="box"];926[label="vwx90",fontsize=16,color="green",shape="box"];927[label="vwx100",fontsize=16,color="green",shape="box"];928[label="vwx90",fontsize=16,color="green",shape="box"];929[label="vwx100",fontsize=16,color="green",shape="box"];930[label="vwx90",fontsize=16,color="green",shape="box"];931[label="vwx100",fontsize=16,color="green",shape="box"];932[label="vwx90",fontsize=16,color="green",shape="box"];933[label="vwx100",fontsize=16,color="green",shape="box"];934[label="vwx90",fontsize=16,color="green",shape="box"];935[label="vwx100",fontsize=16,color="green",shape="box"];936[label="vwx90",fontsize=16,color="green",shape="box"];937[label="vwx100",fontsize=16,color="green",shape="box"];938[label="vwx90",fontsize=16,color="green",shape="box"];939[label="vwx100",fontsize=16,color="green",shape="box"];940[label="vwx90",fontsize=16,color="green",shape="box"];941[label="vwx100",fontsize=16,color="green",shape="box"];942[label="vwx90",fontsize=16,color="green",shape="box"];943[label="vwx100",fontsize=16,color="green",shape="box"];944[label="vwx90",fontsize=16,color="green",shape="box"];945[label="vwx100",fontsize=16,color="green",shape="box"];946[label="vwx90",fontsize=16,color="green",shape="box"];947[label="vwx100",fontsize=16,color="green",shape="box"];948[label="vwx90",fontsize=16,color="green",shape="box"];949[label="vwx100",fontsize=16,color="green",shape="box"];950[label="vwx90",fontsize=16,color="green",shape="box"];951[label="vwx100",fontsize=16,color="green",shape="box"];952[label="vwx90",fontsize=16,color="green",shape="box"];953[label="vwx100",fontsize=16,color="green",shape="box"];954[label="vwx90",fontsize=16,color="green",shape="box"];955[label="vwx100",fontsize=16,color="green",shape="box"];956[label="vwx90",fontsize=16,color="green",shape="box"];957[label="vwx100",fontsize=16,color="green",shape="box"];958[label="vwx90",fontsize=16,color="green",shape="box"];959[label="vwx100",fontsize=16,color="green",shape="box"];960[label="vwx90",fontsize=16,color="green",shape="box"];961[label="vwx100",fontsize=16,color="green",shape="box"];962[label="vwx90",fontsize=16,color="green",shape="box"];963[label="vwx100",fontsize=16,color="green",shape="box"];964[label="vwx90",fontsize=16,color="green",shape="box"];965[label="vwx100",fontsize=16,color="green",shape="box"];966[label="vwx90",fontsize=16,color="green",shape="box"];967[label="vwx100",fontsize=16,color="green",shape="box"];968[label="vwx90",fontsize=16,color="green",shape="box"];969[label="vwx100",fontsize=16,color="green",shape="box"];970[label="vwx90",fontsize=16,color="green",shape="box"];971[label="vwx100",fontsize=16,color="green",shape="box"];972[label="vwx90",fontsize=16,color="green",shape="box"];973[label="vwx100",fontsize=16,color="green",shape="box"];974[label="vwx90",fontsize=16,color="green",shape="box"];975[label="vwx100",fontsize=16,color="green",shape="box"];976[label="vwx90",fontsize=16,color="green",shape="box"];977[label="vwx100",fontsize=16,color="green",shape="box"];978[label="vwx90",fontsize=16,color="green",shape="box"];979[label="vwx100",fontsize=16,color="green",shape="box"];980[label="vwx90",fontsize=16,color="green",shape="box"];981[label="compare () vwx10",fontsize=16,color="burlywood",shape="box"];2174[label="vwx10/()",fontsize=10,color="white",style="solid",shape="box"];981 -> 2174[label="",style="solid", color="burlywood", weight=9]; 2174 -> 1066[label="",style="solid", color="burlywood", weight=3]; 982[label="compare (Integer vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];2175[label="vwx10/Integer vwx100",fontsize=10,color="white",style="solid",shape="box"];982 -> 2175[label="",style="solid", color="burlywood", weight=9]; 2175 -> 1067[label="",style="solid", color="burlywood", weight=3]; 992[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];992 -> 1068[label="",style="solid", color="black", weight=3]; 993[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];993 -> 1069[label="",style="solid", color="black", weight=3]; 994[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];994 -> 1070[label="",style="solid", color="black", weight=3]; 995[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];995 -> 1071[label="",style="solid", color="black", weight=3]; 996[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];996 -> 1072[label="",style="solid", color="black", weight=3]; 997[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];997 -> 1073[label="",style="solid", color="black", weight=3]; 998[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];998 -> 1074[label="",style="solid", color="black", weight=3]; 999[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];999 -> 1075[label="",style="solid", color="black", weight=3]; 1000[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1000 -> 1076[label="",style="solid", color="black", weight=3]; 1001[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1001 -> 1077[label="",style="solid", color="black", weight=3]; 1002[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1002 -> 1078[label="",style="solid", color="black", weight=3]; 1003[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1003 -> 1079[label="",style="solid", color="black", weight=3]; 1004[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1004 -> 1080[label="",style="solid", color="black", weight=3]; 1005[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];1005 -> 1081[label="",style="solid", color="black", weight=3]; 1006[label="vwx90 == vwx100",fontsize=16,color="blue",shape="box"];2176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2176[label="",style="solid", color="blue", weight=9]; 2176 -> 1082[label="",style="solid", color="blue", weight=3]; 2177[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2177[label="",style="solid", color="blue", weight=9]; 2177 -> 1083[label="",style="solid", color="blue", weight=3]; 2178[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2178[label="",style="solid", color="blue", weight=9]; 2178 -> 1084[label="",style="solid", color="blue", weight=3]; 2179[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2179[label="",style="solid", color="blue", weight=9]; 2179 -> 1085[label="",style="solid", color="blue", weight=3]; 2180[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2180[label="",style="solid", color="blue", weight=9]; 2180 -> 1086[label="",style="solid", color="blue", weight=3]; 2181[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2181[label="",style="solid", color="blue", weight=9]; 2181 -> 1087[label="",style="solid", color="blue", weight=3]; 2182[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2182[label="",style="solid", color="blue", weight=9]; 2182 -> 1088[label="",style="solid", color="blue", weight=3]; 2183[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2183[label="",style="solid", color="blue", weight=9]; 2183 -> 1089[label="",style="solid", color="blue", weight=3]; 2184[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2184[label="",style="solid", color="blue", weight=9]; 2184 -> 1090[label="",style="solid", color="blue", weight=3]; 2185[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2185[label="",style="solid", color="blue", weight=9]; 2185 -> 1091[label="",style="solid", color="blue", weight=3]; 2186[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2186[label="",style="solid", color="blue", weight=9]; 2186 -> 1092[label="",style="solid", color="blue", weight=3]; 2187[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2187[label="",style="solid", color="blue", weight=9]; 2187 -> 1093[label="",style="solid", color="blue", weight=3]; 2188[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2188[label="",style="solid", color="blue", weight=9]; 2188 -> 1094[label="",style="solid", color="blue", weight=3]; 2189[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2189[label="",style="solid", color="blue", weight=9]; 2189 -> 1095[label="",style="solid", color="blue", weight=3]; 1007[label="vwx91 <= vwx101",fontsize=16,color="blue",shape="box"];2190[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2190[label="",style="solid", color="blue", weight=9]; 2190 -> 1096[label="",style="solid", color="blue", weight=3]; 2191[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2191[label="",style="solid", color="blue", weight=9]; 2191 -> 1097[label="",style="solid", color="blue", weight=3]; 2192[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2192[label="",style="solid", color="blue", weight=9]; 2192 -> 1098[label="",style="solid", color="blue", weight=3]; 2193[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2193[label="",style="solid", color="blue", weight=9]; 2193 -> 1099[label="",style="solid", color="blue", weight=3]; 2194[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2194[label="",style="solid", color="blue", weight=9]; 2194 -> 1100[label="",style="solid", color="blue", weight=3]; 2195[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2195[label="",style="solid", color="blue", weight=9]; 2195 -> 1101[label="",style="solid", color="blue", weight=3]; 2196[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2196[label="",style="solid", color="blue", weight=9]; 2196 -> 1102[label="",style="solid", color="blue", weight=3]; 2197[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2197[label="",style="solid", color="blue", weight=9]; 2197 -> 1103[label="",style="solid", color="blue", weight=3]; 2198[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2198[label="",style="solid", color="blue", weight=9]; 2198 -> 1104[label="",style="solid", color="blue", weight=3]; 2199[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2199[label="",style="solid", color="blue", weight=9]; 2199 -> 1105[label="",style="solid", color="blue", weight=3]; 2200[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2200[label="",style="solid", color="blue", weight=9]; 2200 -> 1106[label="",style="solid", color="blue", weight=3]; 2201[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2201[label="",style="solid", color="blue", weight=9]; 2201 -> 1107[label="",style="solid", color="blue", weight=3]; 2202[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2202[label="",style="solid", color="blue", weight=9]; 2202 -> 1108[label="",style="solid", color="blue", weight=3]; 2203[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1007 -> 2203[label="",style="solid", color="blue", weight=9]; 2203 -> 1109[label="",style="solid", color="blue", weight=3]; 1008[label="False || vwx45",fontsize=16,color="black",shape="box"];1008 -> 1110[label="",style="solid", color="black", weight=3]; 1009[label="True || vwx45",fontsize=16,color="black",shape="box"];1009 -> 1111[label="",style="solid", color="black", weight=3]; 1010[label="primCmpChar vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];2204[label="vwx9/Char vwx90",fontsize=10,color="white",style="solid",shape="box"];1010 -> 2204[label="",style="solid", color="burlywood", weight=9]; 2204 -> 1112[label="",style="solid", color="burlywood", weight=3]; 1011[label="compare (vwx90 :% vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];2205[label="vwx10/vwx100 :% vwx101",fontsize=10,color="white",style="solid",shape="box"];1011 -> 2205[label="",style="solid", color="burlywood", weight=9]; 2205 -> 1113[label="",style="solid", color="burlywood", weight=3]; 1012 -> 992[label="",style="dashed", color="red", weight=0]; 1012[label="vwx90 < vwx100",fontsize=16,color="magenta"];1012 -> 1114[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1115[label="",style="dashed", color="magenta", weight=3]; 1013 -> 993[label="",style="dashed", color="red", weight=0]; 1013[label="vwx90 < vwx100",fontsize=16,color="magenta"];1013 -> 1116[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1117[label="",style="dashed", color="magenta", weight=3]; 1014 -> 994[label="",style="dashed", color="red", weight=0]; 1014[label="vwx90 < vwx100",fontsize=16,color="magenta"];1014 -> 1118[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1119[label="",style="dashed", color="magenta", weight=3]; 1015 -> 995[label="",style="dashed", color="red", weight=0]; 1015[label="vwx90 < vwx100",fontsize=16,color="magenta"];1015 -> 1120[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1121[label="",style="dashed", color="magenta", weight=3]; 1016 -> 996[label="",style="dashed", color="red", weight=0]; 1016[label="vwx90 < vwx100",fontsize=16,color="magenta"];1016 -> 1122[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1123[label="",style="dashed", color="magenta", weight=3]; 1017 -> 997[label="",style="dashed", color="red", weight=0]; 1017[label="vwx90 < vwx100",fontsize=16,color="magenta"];1017 -> 1124[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1125[label="",style="dashed", color="magenta", weight=3]; 1018 -> 998[label="",style="dashed", color="red", weight=0]; 1018[label="vwx90 < vwx100",fontsize=16,color="magenta"];1018 -> 1126[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1127[label="",style="dashed", color="magenta", weight=3]; 1019 -> 999[label="",style="dashed", color="red", weight=0]; 1019[label="vwx90 < vwx100",fontsize=16,color="magenta"];1019 -> 1128[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1129[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1000[label="",style="dashed", color="red", weight=0]; 1020[label="vwx90 < vwx100",fontsize=16,color="magenta"];1020 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1131[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1001[label="",style="dashed", color="red", weight=0]; 1021[label="vwx90 < vwx100",fontsize=16,color="magenta"];1021 -> 1132[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1133[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1002[label="",style="dashed", color="red", weight=0]; 1022[label="vwx90 < vwx100",fontsize=16,color="magenta"];1022 -> 1134[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1135[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1003[label="",style="dashed", color="red", weight=0]; 1023[label="vwx90 < vwx100",fontsize=16,color="magenta"];1023 -> 1136[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1137[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1004[label="",style="dashed", color="red", weight=0]; 1024[label="vwx90 < vwx100",fontsize=16,color="magenta"];1024 -> 1138[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1139[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1005[label="",style="dashed", color="red", weight=0]; 1025[label="vwx90 < vwx100",fontsize=16,color="magenta"];1025 -> 1140[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1141[label="",style="dashed", color="magenta", weight=3]; 1026[label="vwx90 == vwx100",fontsize=16,color="blue",shape="box"];2206[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2206[label="",style="solid", color="blue", weight=9]; 2206 -> 1142[label="",style="solid", color="blue", weight=3]; 2207[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2207[label="",style="solid", color="blue", weight=9]; 2207 -> 1143[label="",style="solid", color="blue", weight=3]; 2208[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2208[label="",style="solid", color="blue", weight=9]; 2208 -> 1144[label="",style="solid", color="blue", weight=3]; 2209[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2209[label="",style="solid", color="blue", weight=9]; 2209 -> 1145[label="",style="solid", color="blue", weight=3]; 2210[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2210[label="",style="solid", color="blue", weight=9]; 2210 -> 1146[label="",style="solid", color="blue", weight=3]; 2211[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2211[label="",style="solid", color="blue", weight=9]; 2211 -> 1147[label="",style="solid", color="blue", weight=3]; 2212[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2212[label="",style="solid", color="blue", weight=9]; 2212 -> 1148[label="",style="solid", color="blue", weight=3]; 2213[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2213[label="",style="solid", color="blue", weight=9]; 2213 -> 1149[label="",style="solid", color="blue", weight=3]; 2214[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2214[label="",style="solid", color="blue", weight=9]; 2214 -> 1150[label="",style="solid", color="blue", weight=3]; 2215[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2215[label="",style="solid", color="blue", weight=9]; 2215 -> 1151[label="",style="solid", color="blue", weight=3]; 2216[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2216[label="",style="solid", color="blue", weight=9]; 2216 -> 1152[label="",style="solid", color="blue", weight=3]; 2217[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2217[label="",style="solid", color="blue", weight=9]; 2217 -> 1153[label="",style="solid", color="blue", weight=3]; 2218[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2218[label="",style="solid", color="blue", weight=9]; 2218 -> 1154[label="",style="solid", color="blue", weight=3]; 2219[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 2219[label="",style="solid", color="blue", weight=9]; 2219 -> 1155[label="",style="solid", color="blue", weight=3]; 1027 -> 985[label="",style="dashed", color="red", weight=0]; 1027[label="vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102",fontsize=16,color="magenta"];1027 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1028[label="compare (vwx90 : vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];2220[label="vwx10/vwx100 : vwx101",fontsize=10,color="white",style="solid",shape="box"];1028 -> 2220[label="",style="solid", color="burlywood", weight=9]; 2220 -> 1158[label="",style="solid", color="burlywood", weight=3]; 2221[label="vwx10/[]",fontsize=10,color="white",style="solid",shape="box"];1028 -> 2221[label="",style="solid", color="burlywood", weight=9]; 2221 -> 1159[label="",style="solid", color="burlywood", weight=3]; 1029[label="compare [] vwx10",fontsize=16,color="burlywood",shape="box"];2222[label="vwx10/vwx100 : vwx101",fontsize=10,color="white",style="solid",shape="box"];1029 -> 2222[label="",style="solid", color="burlywood", weight=9]; 2222 -> 1160[label="",style="solid", color="burlywood", weight=3]; 2223[label="vwx10/[]",fontsize=10,color="white",style="solid",shape="box"];1029 -> 2223[label="",style="solid", color="burlywood", weight=9]; 2223 -> 1161[label="",style="solid", color="burlywood", weight=3]; 1030[label="vwx100",fontsize=16,color="green",shape="box"];1031[label="vwx90",fontsize=16,color="green",shape="box"];1032[label="vwx100",fontsize=16,color="green",shape="box"];1033[label="vwx90",fontsize=16,color="green",shape="box"];1034[label="vwx100",fontsize=16,color="green",shape="box"];1035[label="vwx90",fontsize=16,color="green",shape="box"];1036[label="vwx100",fontsize=16,color="green",shape="box"];1037[label="vwx90",fontsize=16,color="green",shape="box"];1038[label="vwx100",fontsize=16,color="green",shape="box"];1039[label="vwx90",fontsize=16,color="green",shape="box"];1040[label="vwx100",fontsize=16,color="green",shape="box"];1041[label="vwx90",fontsize=16,color="green",shape="box"];1042[label="vwx100",fontsize=16,color="green",shape="box"];1043[label="vwx90",fontsize=16,color="green",shape="box"];1044[label="vwx100",fontsize=16,color="green",shape="box"];1045[label="vwx90",fontsize=16,color="green",shape="box"];1046[label="vwx100",fontsize=16,color="green",shape="box"];1047[label="vwx90",fontsize=16,color="green",shape="box"];1048[label="vwx100",fontsize=16,color="green",shape="box"];1049[label="vwx90",fontsize=16,color="green",shape="box"];1050[label="vwx100",fontsize=16,color="green",shape="box"];1051[label="vwx90",fontsize=16,color="green",shape="box"];1052[label="vwx100",fontsize=16,color="green",shape="box"];1053[label="vwx90",fontsize=16,color="green",shape="box"];1054[label="vwx100",fontsize=16,color="green",shape="box"];1055[label="vwx90",fontsize=16,color="green",shape="box"];1056[label="vwx100",fontsize=16,color="green",shape="box"];1057[label="vwx90",fontsize=16,color="green",shape="box"];1058[label="primCmpDouble vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];2224[label="vwx9/Double vwx90 vwx91",fontsize=10,color="white",style="solid",shape="box"];1058 -> 2224[label="",style="solid", color="burlywood", weight=9]; 2224 -> 1162[label="",style="solid", color="burlywood", weight=3]; 1059[label="primCmpFloat vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];2225[label="vwx9/Float vwx90 vwx91",fontsize=10,color="white",style="solid",shape="box"];1059 -> 2225[label="",style="solid", color="burlywood", weight=9]; 2225 -> 1163[label="",style="solid", color="burlywood", weight=3]; 1060[label="primMulNat vwx3010 vwx4000",fontsize=16,color="burlywood",shape="triangle"];2226[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];1060 -> 2226[label="",style="solid", color="burlywood", weight=9]; 2226 -> 1164[label="",style="solid", color="burlywood", weight=3]; 2227[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1060 -> 2227[label="",style="solid", color="burlywood", weight=9]; 2227 -> 1165[label="",style="solid", color="burlywood", weight=3]; 1061 -> 1060[label="",style="dashed", color="red", weight=0]; 1061[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];1061 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1060[label="",style="dashed", color="red", weight=0]; 1062[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];1062 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1060[label="",style="dashed", color="red", weight=0]; 1063[label="primMulNat vwx3010 vwx4000",fontsize=16,color="magenta"];1063 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1064[label="primCmpInt (Pos vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];2228[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];1064 -> 2228[label="",style="solid", color="burlywood", weight=9]; 2228 -> 1170[label="",style="solid", color="burlywood", weight=3]; 2229[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];1064 -> 2229[label="",style="solid", color="burlywood", weight=9]; 2229 -> 1171[label="",style="solid", color="burlywood", weight=3]; 1065[label="primCmpInt (Neg vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];2230[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];1065 -> 2230[label="",style="solid", color="burlywood", weight=9]; 2230 -> 1172[label="",style="solid", color="burlywood", weight=3]; 2231[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];1065 -> 2231[label="",style="solid", color="burlywood", weight=9]; 2231 -> 1173[label="",style="solid", color="burlywood", weight=3]; 1066[label="compare () ()",fontsize=16,color="black",shape="box"];1066 -> 1174[label="",style="solid", color="black", weight=3]; 1067[label="compare (Integer vwx90) (Integer vwx100)",fontsize=16,color="black",shape="box"];1067 -> 1175[label="",style="solid", color="black", weight=3]; 1068 -> 32[label="",style="dashed", color="red", weight=0]; 1068[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1068 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1068 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1069 -> 32[label="",style="dashed", color="red", weight=0]; 1069[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1069 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1069 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1070 -> 32[label="",style="dashed", color="red", weight=0]; 1070[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1070 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1070 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1071 -> 32[label="",style="dashed", color="red", weight=0]; 1071[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1071 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1071 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1072 -> 32[label="",style="dashed", color="red", weight=0]; 1072[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1072 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1073 -> 32[label="",style="dashed", color="red", weight=0]; 1073[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1073 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1073 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1074 -> 32[label="",style="dashed", color="red", weight=0]; 1074[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1074 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1074 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1075 -> 32[label="",style="dashed", color="red", weight=0]; 1075[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1075 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1075 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1076 -> 32[label="",style="dashed", color="red", weight=0]; 1076[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1076 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1076 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1077 -> 32[label="",style="dashed", color="red", weight=0]; 1077[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1077 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1077 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1078 -> 32[label="",style="dashed", color="red", weight=0]; 1078[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1078 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1078 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1079 -> 32[label="",style="dashed", color="red", weight=0]; 1079[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1079 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1079 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1080 -> 32[label="",style="dashed", color="red", weight=0]; 1080[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1080 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1080 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1081 -> 32[label="",style="dashed", color="red", weight=0]; 1081[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];1081 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1081 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1082 -> 27[label="",style="dashed", color="red", weight=0]; 1082[label="vwx90 == vwx100",fontsize=16,color="magenta"];1082 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1082 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1083 -> 29[label="",style="dashed", color="red", weight=0]; 1083[label="vwx90 == vwx100",fontsize=16,color="magenta"];1083 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1083 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1084 -> 34[label="",style="dashed", color="red", weight=0]; 1084[label="vwx90 == vwx100",fontsize=16,color="magenta"];1084 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1084 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1085 -> 36[label="",style="dashed", color="red", weight=0]; 1085[label="vwx90 == vwx100",fontsize=16,color="magenta"];1085 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1085 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1086 -> 40[label="",style="dashed", color="red", weight=0]; 1086[label="vwx90 == vwx100",fontsize=16,color="magenta"];1086 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1087 -> 35[label="",style="dashed", color="red", weight=0]; 1087[label="vwx90 == vwx100",fontsize=16,color="magenta"];1087 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1087 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1088 -> 32[label="",style="dashed", color="red", weight=0]; 1088[label="vwx90 == vwx100",fontsize=16,color="magenta"];1088 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1088 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1089 -> 39[label="",style="dashed", color="red", weight=0]; 1089[label="vwx90 == vwx100",fontsize=16,color="magenta"];1089 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1090 -> 33[label="",style="dashed", color="red", weight=0]; 1090[label="vwx90 == vwx100",fontsize=16,color="magenta"];1090 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1091 -> 38[label="",style="dashed", color="red", weight=0]; 1091[label="vwx90 == vwx100",fontsize=16,color="magenta"];1091 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1092 -> 30[label="",style="dashed", color="red", weight=0]; 1092[label="vwx90 == vwx100",fontsize=16,color="magenta"];1092 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1093 -> 31[label="",style="dashed", color="red", weight=0]; 1093[label="vwx90 == vwx100",fontsize=16,color="magenta"];1093 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1094 -> 37[label="",style="dashed", color="red", weight=0]; 1094[label="vwx90 == vwx100",fontsize=16,color="magenta"];1094 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1095 -> 28[label="",style="dashed", color="red", weight=0]; 1095[label="vwx90 == vwx100",fontsize=16,color="magenta"];1095 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1096 -> 277[label="",style="dashed", color="red", weight=0]; 1096[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1096 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1097 -> 278[label="",style="dashed", color="red", weight=0]; 1097[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1097 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1098 -> 279[label="",style="dashed", color="red", weight=0]; 1098[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1098 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1099 -> 280[label="",style="dashed", color="red", weight=0]; 1099[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1099 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1100 -> 281[label="",style="dashed", color="red", weight=0]; 1100[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1100 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1101 -> 282[label="",style="dashed", color="red", weight=0]; 1101[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1101 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1102 -> 283[label="",style="dashed", color="red", weight=0]; 1102[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1102 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1103 -> 284[label="",style="dashed", color="red", weight=0]; 1103[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1103 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1104 -> 285[label="",style="dashed", color="red", weight=0]; 1104[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1104 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1104 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1105 -> 286[label="",style="dashed", color="red", weight=0]; 1105[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1105 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1105 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1106 -> 287[label="",style="dashed", color="red", weight=0]; 1106[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1106 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1106 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1107 -> 288[label="",style="dashed", color="red", weight=0]; 1107[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1107 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1107 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1108 -> 289[label="",style="dashed", color="red", weight=0]; 1108[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1108 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1109 -> 290[label="",style="dashed", color="red", weight=0]; 1109[label="vwx91 <= vwx101",fontsize=16,color="magenta"];1109 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1109 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1110[label="vwx45",fontsize=16,color="green",shape="box"];1111[label="True",fontsize=16,color="green",shape="box"];1112[label="primCmpChar (Char vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];2232[label="vwx10/Char vwx100",fontsize=10,color="white",style="solid",shape="box"];1112 -> 2232[label="",style="solid", color="burlywood", weight=9]; 2232 -> 1260[label="",style="solid", color="burlywood", weight=3]; 1113[label="compare (vwx90 :% vwx91) (vwx100 :% vwx101)",fontsize=16,color="black",shape="box"];1113 -> 1261[label="",style="solid", color="black", weight=3]; 1114[label="vwx90",fontsize=16,color="green",shape="box"];1115[label="vwx100",fontsize=16,color="green",shape="box"];1116[label="vwx90",fontsize=16,color="green",shape="box"];1117[label="vwx100",fontsize=16,color="green",shape="box"];1118[label="vwx90",fontsize=16,color="green",shape="box"];1119[label="vwx100",fontsize=16,color="green",shape="box"];1120[label="vwx90",fontsize=16,color="green",shape="box"];1121[label="vwx100",fontsize=16,color="green",shape="box"];1122[label="vwx90",fontsize=16,color="green",shape="box"];1123[label="vwx100",fontsize=16,color="green",shape="box"];1124[label="vwx90",fontsize=16,color="green",shape="box"];1125[label="vwx100",fontsize=16,color="green",shape="box"];1126[label="vwx90",fontsize=16,color="green",shape="box"];1127[label="vwx100",fontsize=16,color="green",shape="box"];1128[label="vwx90",fontsize=16,color="green",shape="box"];1129[label="vwx100",fontsize=16,color="green",shape="box"];1130[label="vwx90",fontsize=16,color="green",shape="box"];1131[label="vwx100",fontsize=16,color="green",shape="box"];1132[label="vwx90",fontsize=16,color="green",shape="box"];1133[label="vwx100",fontsize=16,color="green",shape="box"];1134[label="vwx90",fontsize=16,color="green",shape="box"];1135[label="vwx100",fontsize=16,color="green",shape="box"];1136[label="vwx90",fontsize=16,color="green",shape="box"];1137[label="vwx100",fontsize=16,color="green",shape="box"];1138[label="vwx90",fontsize=16,color="green",shape="box"];1139[label="vwx100",fontsize=16,color="green",shape="box"];1140[label="vwx90",fontsize=16,color="green",shape="box"];1141[label="vwx100",fontsize=16,color="green",shape="box"];1142 -> 27[label="",style="dashed", color="red", weight=0]; 1142[label="vwx90 == vwx100",fontsize=16,color="magenta"];1142 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1143 -> 29[label="",style="dashed", color="red", weight=0]; 1143[label="vwx90 == vwx100",fontsize=16,color="magenta"];1143 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1144 -> 34[label="",style="dashed", color="red", weight=0]; 1144[label="vwx90 == vwx100",fontsize=16,color="magenta"];1144 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1145 -> 36[label="",style="dashed", color="red", weight=0]; 1145[label="vwx90 == vwx100",fontsize=16,color="magenta"];1145 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1146 -> 40[label="",style="dashed", color="red", weight=0]; 1146[label="vwx90 == vwx100",fontsize=16,color="magenta"];1146 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1147 -> 35[label="",style="dashed", color="red", weight=0]; 1147[label="vwx90 == vwx100",fontsize=16,color="magenta"];1147 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1148 -> 32[label="",style="dashed", color="red", weight=0]; 1148[label="vwx90 == vwx100",fontsize=16,color="magenta"];1148 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1149 -> 39[label="",style="dashed", color="red", weight=0]; 1149[label="vwx90 == vwx100",fontsize=16,color="magenta"];1149 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1150 -> 33[label="",style="dashed", color="red", weight=0]; 1150[label="vwx90 == vwx100",fontsize=16,color="magenta"];1150 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1151 -> 38[label="",style="dashed", color="red", weight=0]; 1151[label="vwx90 == vwx100",fontsize=16,color="magenta"];1151 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1152 -> 30[label="",style="dashed", color="red", weight=0]; 1152[label="vwx90 == vwx100",fontsize=16,color="magenta"];1152 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1152 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1153 -> 31[label="",style="dashed", color="red", weight=0]; 1153[label="vwx90 == vwx100",fontsize=16,color="magenta"];1153 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1153 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1154 -> 37[label="",style="dashed", color="red", weight=0]; 1154[label="vwx90 == vwx100",fontsize=16,color="magenta"];1154 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1154 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1155 -> 28[label="",style="dashed", color="red", weight=0]; 1155[label="vwx90 == vwx100",fontsize=16,color="magenta"];1155 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1155 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1156[label="vwx91 < vwx101",fontsize=16,color="blue",shape="box"];2233[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2233[label="",style="solid", color="blue", weight=9]; 2233 -> 1290[label="",style="solid", color="blue", weight=3]; 2234[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2234[label="",style="solid", color="blue", weight=9]; 2234 -> 1291[label="",style="solid", color="blue", weight=3]; 2235[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2235[label="",style="solid", color="blue", weight=9]; 2235 -> 1292[label="",style="solid", color="blue", weight=3]; 2236[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2236[label="",style="solid", color="blue", weight=9]; 2236 -> 1293[label="",style="solid", color="blue", weight=3]; 2237[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2237[label="",style="solid", color="blue", weight=9]; 2237 -> 1294[label="",style="solid", color="blue", weight=3]; 2238[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2238[label="",style="solid", color="blue", weight=9]; 2238 -> 1295[label="",style="solid", color="blue", weight=3]; 2239[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2239[label="",style="solid", color="blue", weight=9]; 2239 -> 1296[label="",style="solid", color="blue", weight=3]; 2240[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2240[label="",style="solid", color="blue", weight=9]; 2240 -> 1297[label="",style="solid", color="blue", weight=3]; 2241[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2241[label="",style="solid", color="blue", weight=9]; 2241 -> 1298[label="",style="solid", color="blue", weight=3]; 2242[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2242[label="",style="solid", color="blue", weight=9]; 2242 -> 1299[label="",style="solid", color="blue", weight=3]; 2243[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2243[label="",style="solid", color="blue", weight=9]; 2243 -> 1300[label="",style="solid", color="blue", weight=3]; 2244[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2244[label="",style="solid", color="blue", weight=9]; 2244 -> 1301[label="",style="solid", color="blue", weight=3]; 2245[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2245[label="",style="solid", color="blue", weight=9]; 2245 -> 1302[label="",style="solid", color="blue", weight=3]; 2246[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2246[label="",style="solid", color="blue", weight=9]; 2246 -> 1303[label="",style="solid", color="blue", weight=3]; 1157 -> 383[label="",style="dashed", color="red", weight=0]; 1157[label="vwx91 == vwx101 && vwx92 <= vwx102",fontsize=16,color="magenta"];1157 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1157 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1158[label="compare (vwx90 : vwx91) (vwx100 : vwx101)",fontsize=16,color="black",shape="box"];1158 -> 1306[label="",style="solid", color="black", weight=3]; 1159[label="compare (vwx90 : vwx91) []",fontsize=16,color="black",shape="box"];1159 -> 1307[label="",style="solid", color="black", weight=3]; 1160[label="compare [] (vwx100 : vwx101)",fontsize=16,color="black",shape="box"];1160 -> 1308[label="",style="solid", color="black", weight=3]; 1161[label="compare [] []",fontsize=16,color="black",shape="box"];1161 -> 1309[label="",style="solid", color="black", weight=3]; 1162[label="primCmpDouble (Double vwx90 vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];2247[label="vwx91/Pos vwx910",fontsize=10,color="white",style="solid",shape="box"];1162 -> 2247[label="",style="solid", color="burlywood", weight=9]; 2247 -> 1310[label="",style="solid", color="burlywood", weight=3]; 2248[label="vwx91/Neg vwx910",fontsize=10,color="white",style="solid",shape="box"];1162 -> 2248[label="",style="solid", color="burlywood", weight=9]; 2248 -> 1311[label="",style="solid", color="burlywood", weight=3]; 1163[label="primCmpFloat (Float vwx90 vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];2249[label="vwx91/Pos vwx910",fontsize=10,color="white",style="solid",shape="box"];1163 -> 2249[label="",style="solid", color="burlywood", weight=9]; 2249 -> 1312[label="",style="solid", color="burlywood", weight=3]; 2250[label="vwx91/Neg vwx910",fontsize=10,color="white",style="solid",shape="box"];1163 -> 2250[label="",style="solid", color="burlywood", weight=9]; 2250 -> 1313[label="",style="solid", color="burlywood", weight=3]; 1164[label="primMulNat (Succ vwx30100) vwx4000",fontsize=16,color="burlywood",shape="box"];2251[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1164 -> 2251[label="",style="solid", color="burlywood", weight=9]; 2251 -> 1314[label="",style="solid", color="burlywood", weight=3]; 2252[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1164 -> 2252[label="",style="solid", color="burlywood", weight=9]; 2252 -> 1315[label="",style="solid", color="burlywood", weight=3]; 1165[label="primMulNat Zero vwx4000",fontsize=16,color="burlywood",shape="box"];2253[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1165 -> 2253[label="",style="solid", color="burlywood", weight=9]; 2253 -> 1316[label="",style="solid", color="burlywood", weight=3]; 2254[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1165 -> 2254[label="",style="solid", color="burlywood", weight=9]; 2254 -> 1317[label="",style="solid", color="burlywood", weight=3]; 1166[label="vwx4000",fontsize=16,color="green",shape="box"];1167[label="vwx3010",fontsize=16,color="green",shape="box"];1168[label="vwx4000",fontsize=16,color="green",shape="box"];1169[label="vwx3010",fontsize=16,color="green",shape="box"];1170[label="primCmpInt (Pos (Succ vwx900)) vwx10",fontsize=16,color="burlywood",shape="box"];2255[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];1170 -> 2255[label="",style="solid", color="burlywood", weight=9]; 2255 -> 1318[label="",style="solid", color="burlywood", weight=3]; 2256[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];1170 -> 2256[label="",style="solid", color="burlywood", weight=9]; 2256 -> 1319[label="",style="solid", color="burlywood", weight=3]; 1171[label="primCmpInt (Pos Zero) vwx10",fontsize=16,color="burlywood",shape="box"];2257[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];1171 -> 2257[label="",style="solid", color="burlywood", weight=9]; 2257 -> 1320[label="",style="solid", color="burlywood", weight=3]; 2258[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];1171 -> 2258[label="",style="solid", color="burlywood", weight=9]; 2258 -> 1321[label="",style="solid", color="burlywood", weight=3]; 1172[label="primCmpInt (Neg (Succ vwx900)) vwx10",fontsize=16,color="burlywood",shape="box"];2259[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];1172 -> 2259[label="",style="solid", color="burlywood", weight=9]; 2259 -> 1322[label="",style="solid", color="burlywood", weight=3]; 2260[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];1172 -> 2260[label="",style="solid", color="burlywood", weight=9]; 2260 -> 1323[label="",style="solid", color="burlywood", weight=3]; 1173[label="primCmpInt (Neg Zero) vwx10",fontsize=16,color="burlywood",shape="box"];2261[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];1173 -> 2261[label="",style="solid", color="burlywood", weight=9]; 2261 -> 1324[label="",style="solid", color="burlywood", weight=3]; 2262[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];1173 -> 2262[label="",style="solid", color="burlywood", weight=9]; 2262 -> 1325[label="",style="solid", color="burlywood", weight=3]; 1174[label="EQ",fontsize=16,color="green",shape="box"];1175 -> 922[label="",style="dashed", color="red", weight=0]; 1175[label="primCmpInt vwx90 vwx100",fontsize=16,color="magenta"];1175 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1175 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1176[label="LT",fontsize=16,color="green",shape="box"];1177 -> 854[label="",style="dashed", color="red", weight=0]; 1177[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1177 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1178[label="LT",fontsize=16,color="green",shape="box"];1179 -> 4[label="",style="dashed", color="red", weight=0]; 1179[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1179 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1180[label="LT",fontsize=16,color="green",shape="box"];1181[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1181 -> 1332[label="",style="solid", color="black", weight=3]; 1182[label="LT",fontsize=16,color="green",shape="box"];1183 -> 858[label="",style="dashed", color="red", weight=0]; 1183[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1183 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1184[label="LT",fontsize=16,color="green",shape="box"];1185 -> 860[label="",style="dashed", color="red", weight=0]; 1185[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1185 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1186[label="LT",fontsize=16,color="green",shape="box"];1187[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1187 -> 1337[label="",style="solid", color="black", weight=3]; 1188[label="LT",fontsize=16,color="green",shape="box"];1189[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1189 -> 1338[label="",style="solid", color="black", weight=3]; 1190[label="LT",fontsize=16,color="green",shape="box"];1191 -> 862[label="",style="dashed", color="red", weight=0]; 1191[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1191 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1192[label="LT",fontsize=16,color="green",shape="box"];1193 -> 864[label="",style="dashed", color="red", weight=0]; 1193[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1193 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1194[label="LT",fontsize=16,color="green",shape="box"];1195[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1195 -> 1343[label="",style="solid", color="black", weight=3]; 1196[label="LT",fontsize=16,color="green",shape="box"];1197 -> 866[label="",style="dashed", color="red", weight=0]; 1197[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1197 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1198[label="LT",fontsize=16,color="green",shape="box"];1199[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];1199 -> 1346[label="",style="solid", color="black", weight=3]; 1200[label="LT",fontsize=16,color="green",shape="box"];1201 -> 868[label="",style="dashed", color="red", weight=0]; 1201[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1201 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1202[label="LT",fontsize=16,color="green",shape="box"];1203 -> 870[label="",style="dashed", color="red", weight=0]; 1203[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1203 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1204[label="vwx100",fontsize=16,color="green",shape="box"];1205[label="vwx90",fontsize=16,color="green",shape="box"];1206[label="vwx100",fontsize=16,color="green",shape="box"];1207[label="vwx90",fontsize=16,color="green",shape="box"];1208[label="vwx100",fontsize=16,color="green",shape="box"];1209[label="vwx90",fontsize=16,color="green",shape="box"];1210[label="vwx100",fontsize=16,color="green",shape="box"];1211[label="vwx90",fontsize=16,color="green",shape="box"];1212[label="vwx100",fontsize=16,color="green",shape="box"];1213[label="vwx90",fontsize=16,color="green",shape="box"];1214[label="vwx100",fontsize=16,color="green",shape="box"];1215[label="vwx90",fontsize=16,color="green",shape="box"];1216[label="vwx100",fontsize=16,color="green",shape="box"];1217[label="vwx90",fontsize=16,color="green",shape="box"];1218[label="vwx100",fontsize=16,color="green",shape="box"];1219[label="vwx90",fontsize=16,color="green",shape="box"];1220[label="vwx100",fontsize=16,color="green",shape="box"];1221[label="vwx90",fontsize=16,color="green",shape="box"];1222[label="vwx100",fontsize=16,color="green",shape="box"];1223[label="vwx90",fontsize=16,color="green",shape="box"];1224[label="vwx100",fontsize=16,color="green",shape="box"];1225[label="vwx90",fontsize=16,color="green",shape="box"];1226[label="vwx100",fontsize=16,color="green",shape="box"];1227[label="vwx90",fontsize=16,color="green",shape="box"];1228[label="vwx100",fontsize=16,color="green",shape="box"];1229[label="vwx90",fontsize=16,color="green",shape="box"];1230[label="vwx100",fontsize=16,color="green",shape="box"];1231[label="vwx90",fontsize=16,color="green",shape="box"];1232[label="vwx101",fontsize=16,color="green",shape="box"];1233[label="vwx91",fontsize=16,color="green",shape="box"];1234[label="vwx101",fontsize=16,color="green",shape="box"];1235[label="vwx91",fontsize=16,color="green",shape="box"];1236[label="vwx101",fontsize=16,color="green",shape="box"];1237[label="vwx91",fontsize=16,color="green",shape="box"];1238[label="vwx101",fontsize=16,color="green",shape="box"];1239[label="vwx91",fontsize=16,color="green",shape="box"];1240[label="vwx101",fontsize=16,color="green",shape="box"];1241[label="vwx91",fontsize=16,color="green",shape="box"];1242[label="vwx101",fontsize=16,color="green",shape="box"];1243[label="vwx91",fontsize=16,color="green",shape="box"];1244[label="vwx101",fontsize=16,color="green",shape="box"];1245[label="vwx91",fontsize=16,color="green",shape="box"];1246[label="vwx101",fontsize=16,color="green",shape="box"];1247[label="vwx91",fontsize=16,color="green",shape="box"];1248[label="vwx101",fontsize=16,color="green",shape="box"];1249[label="vwx91",fontsize=16,color="green",shape="box"];1250[label="vwx101",fontsize=16,color="green",shape="box"];1251[label="vwx91",fontsize=16,color="green",shape="box"];1252[label="vwx101",fontsize=16,color="green",shape="box"];1253[label="vwx91",fontsize=16,color="green",shape="box"];1254[label="vwx101",fontsize=16,color="green",shape="box"];1255[label="vwx91",fontsize=16,color="green",shape="box"];1256[label="vwx101",fontsize=16,color="green",shape="box"];1257[label="vwx91",fontsize=16,color="green",shape="box"];1258[label="vwx101",fontsize=16,color="green",shape="box"];1259[label="vwx91",fontsize=16,color="green",shape="box"];1260[label="primCmpChar (Char vwx90) (Char vwx100)",fontsize=16,color="black",shape="box"];1260 -> 1351[label="",style="solid", color="black", weight=3]; 1261[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="blue",shape="box"];2263[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1261 -> 2263[label="",style="solid", color="blue", weight=9]; 2263 -> 1352[label="",style="solid", color="blue", weight=3]; 2264[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1261 -> 2264[label="",style="solid", color="blue", weight=9]; 2264 -> 1353[label="",style="solid", color="blue", weight=3]; 1262[label="vwx100",fontsize=16,color="green",shape="box"];1263[label="vwx90",fontsize=16,color="green",shape="box"];1264[label="vwx100",fontsize=16,color="green",shape="box"];1265[label="vwx90",fontsize=16,color="green",shape="box"];1266[label="vwx100",fontsize=16,color="green",shape="box"];1267[label="vwx90",fontsize=16,color="green",shape="box"];1268[label="vwx100",fontsize=16,color="green",shape="box"];1269[label="vwx90",fontsize=16,color="green",shape="box"];1270[label="vwx100",fontsize=16,color="green",shape="box"];1271[label="vwx90",fontsize=16,color="green",shape="box"];1272[label="vwx100",fontsize=16,color="green",shape="box"];1273[label="vwx90",fontsize=16,color="green",shape="box"];1274[label="vwx100",fontsize=16,color="green",shape="box"];1275[label="vwx90",fontsize=16,color="green",shape="box"];1276[label="vwx100",fontsize=16,color="green",shape="box"];1277[label="vwx90",fontsize=16,color="green",shape="box"];1278[label="vwx100",fontsize=16,color="green",shape="box"];1279[label="vwx90",fontsize=16,color="green",shape="box"];1280[label="vwx100",fontsize=16,color="green",shape="box"];1281[label="vwx90",fontsize=16,color="green",shape="box"];1282[label="vwx100",fontsize=16,color="green",shape="box"];1283[label="vwx90",fontsize=16,color="green",shape="box"];1284[label="vwx100",fontsize=16,color="green",shape="box"];1285[label="vwx90",fontsize=16,color="green",shape="box"];1286[label="vwx100",fontsize=16,color="green",shape="box"];1287[label="vwx90",fontsize=16,color="green",shape="box"];1288[label="vwx100",fontsize=16,color="green",shape="box"];1289[label="vwx90",fontsize=16,color="green",shape="box"];1290 -> 992[label="",style="dashed", color="red", weight=0]; 1290[label="vwx91 < vwx101",fontsize=16,color="magenta"];1290 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1290 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1291 -> 993[label="",style="dashed", color="red", weight=0]; 1291[label="vwx91 < vwx101",fontsize=16,color="magenta"];1291 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1291 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1292 -> 994[label="",style="dashed", color="red", weight=0]; 1292[label="vwx91 < vwx101",fontsize=16,color="magenta"];1292 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1292 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1293 -> 995[label="",style="dashed", color="red", weight=0]; 1293[label="vwx91 < vwx101",fontsize=16,color="magenta"];1293 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1293 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1294 -> 996[label="",style="dashed", color="red", weight=0]; 1294[label="vwx91 < vwx101",fontsize=16,color="magenta"];1294 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1295 -> 997[label="",style="dashed", color="red", weight=0]; 1295[label="vwx91 < vwx101",fontsize=16,color="magenta"];1295 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1296 -> 998[label="",style="dashed", color="red", weight=0]; 1296[label="vwx91 < vwx101",fontsize=16,color="magenta"];1296 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1297 -> 999[label="",style="dashed", color="red", weight=0]; 1297[label="vwx91 < vwx101",fontsize=16,color="magenta"];1297 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1000[label="",style="dashed", color="red", weight=0]; 1298[label="vwx91 < vwx101",fontsize=16,color="magenta"];1298 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1001[label="",style="dashed", color="red", weight=0]; 1299[label="vwx91 < vwx101",fontsize=16,color="magenta"];1299 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1002[label="",style="dashed", color="red", weight=0]; 1300[label="vwx91 < vwx101",fontsize=16,color="magenta"];1300 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1003[label="",style="dashed", color="red", weight=0]; 1301[label="vwx91 < vwx101",fontsize=16,color="magenta"];1301 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1004[label="",style="dashed", color="red", weight=0]; 1302[label="vwx91 < vwx101",fontsize=16,color="magenta"];1302 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1005[label="",style="dashed", color="red", weight=0]; 1303[label="vwx91 < vwx101",fontsize=16,color="magenta"];1303 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1304[label="vwx91 == vwx101",fontsize=16,color="blue",shape="box"];2265[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2265[label="",style="solid", color="blue", weight=9]; 2265 -> 1382[label="",style="solid", color="blue", weight=3]; 2266[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2266[label="",style="solid", color="blue", weight=9]; 2266 -> 1383[label="",style="solid", color="blue", weight=3]; 2267[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2267[label="",style="solid", color="blue", weight=9]; 2267 -> 1384[label="",style="solid", color="blue", weight=3]; 2268[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2268[label="",style="solid", color="blue", weight=9]; 2268 -> 1385[label="",style="solid", color="blue", weight=3]; 2269[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2269[label="",style="solid", color="blue", weight=9]; 2269 -> 1386[label="",style="solid", color="blue", weight=3]; 2270[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2270[label="",style="solid", color="blue", weight=9]; 2270 -> 1387[label="",style="solid", color="blue", weight=3]; 2271[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2271[label="",style="solid", color="blue", weight=9]; 2271 -> 1388[label="",style="solid", color="blue", weight=3]; 2272[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2272[label="",style="solid", color="blue", weight=9]; 2272 -> 1389[label="",style="solid", color="blue", weight=3]; 2273[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2273[label="",style="solid", color="blue", weight=9]; 2273 -> 1390[label="",style="solid", color="blue", weight=3]; 2274[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2274[label="",style="solid", color="blue", weight=9]; 2274 -> 1391[label="",style="solid", color="blue", weight=3]; 2275[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2275[label="",style="solid", color="blue", weight=9]; 2275 -> 1392[label="",style="solid", color="blue", weight=3]; 2276[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2276[label="",style="solid", color="blue", weight=9]; 2276 -> 1393[label="",style="solid", color="blue", weight=3]; 2277[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2277[label="",style="solid", color="blue", weight=9]; 2277 -> 1394[label="",style="solid", color="blue", weight=3]; 2278[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2278[label="",style="solid", color="blue", weight=9]; 2278 -> 1395[label="",style="solid", color="blue", weight=3]; 1305[label="vwx92 <= vwx102",fontsize=16,color="blue",shape="box"];2279[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2279[label="",style="solid", color="blue", weight=9]; 2279 -> 1396[label="",style="solid", color="blue", weight=3]; 2280[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2280[label="",style="solid", color="blue", weight=9]; 2280 -> 1397[label="",style="solid", color="blue", weight=3]; 2281[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2281[label="",style="solid", color="blue", weight=9]; 2281 -> 1398[label="",style="solid", color="blue", weight=3]; 2282[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2282[label="",style="solid", color="blue", weight=9]; 2282 -> 1399[label="",style="solid", color="blue", weight=3]; 2283[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2283[label="",style="solid", color="blue", weight=9]; 2283 -> 1400[label="",style="solid", color="blue", weight=3]; 2284[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2284[label="",style="solid", color="blue", weight=9]; 2284 -> 1401[label="",style="solid", color="blue", weight=3]; 2285[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2285[label="",style="solid", color="blue", weight=9]; 2285 -> 1402[label="",style="solid", color="blue", weight=3]; 2286[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2286[label="",style="solid", color="blue", weight=9]; 2286 -> 1403[label="",style="solid", color="blue", weight=3]; 2287[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2287[label="",style="solid", color="blue", weight=9]; 2287 -> 1404[label="",style="solid", color="blue", weight=3]; 2288[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2288[label="",style="solid", color="blue", weight=9]; 2288 -> 1405[label="",style="solid", color="blue", weight=3]; 2289[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2289[label="",style="solid", color="blue", weight=9]; 2289 -> 1406[label="",style="solid", color="blue", weight=3]; 2290[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2290[label="",style="solid", color="blue", weight=9]; 2290 -> 1407[label="",style="solid", color="blue", weight=3]; 2291[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2291[label="",style="solid", color="blue", weight=9]; 2291 -> 1408[label="",style="solid", color="blue", weight=3]; 2292[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2292[label="",style="solid", color="blue", weight=9]; 2292 -> 1409[label="",style="solid", color="blue", weight=3]; 1306 -> 1410[label="",style="dashed", color="red", weight=0]; 1306[label="primCompAux vwx90 vwx100 (compare vwx91 vwx101)",fontsize=16,color="magenta"];1306 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1307[label="GT",fontsize=16,color="green",shape="box"];1308[label="LT",fontsize=16,color="green",shape="box"];1309[label="EQ",fontsize=16,color="green",shape="box"];1310[label="primCmpDouble (Double vwx90 (Pos vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];2293[label="vwx10/Double vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];1310 -> 2293[label="",style="solid", color="burlywood", weight=9]; 2293 -> 1412[label="",style="solid", color="burlywood", weight=3]; 1311[label="primCmpDouble (Double vwx90 (Neg vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];2294[label="vwx10/Double vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2294[label="",style="solid", color="burlywood", weight=9]; 2294 -> 1413[label="",style="solid", color="burlywood", weight=3]; 1312[label="primCmpFloat (Float vwx90 (Pos vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];2295[label="vwx10/Float vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];1312 -> 2295[label="",style="solid", color="burlywood", weight=9]; 2295 -> 1414[label="",style="solid", color="burlywood", weight=3]; 1313[label="primCmpFloat (Float vwx90 (Neg vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];2296[label="vwx10/Float vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];1313 -> 2296[label="",style="solid", color="burlywood", weight=9]; 2296 -> 1415[label="",style="solid", color="burlywood", weight=3]; 1314[label="primMulNat (Succ vwx30100) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1314 -> 1416[label="",style="solid", color="black", weight=3]; 1315[label="primMulNat (Succ vwx30100) Zero",fontsize=16,color="black",shape="box"];1315 -> 1417[label="",style="solid", color="black", weight=3]; 1316[label="primMulNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1316 -> 1418[label="",style="solid", color="black", weight=3]; 1317[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1317 -> 1419[label="",style="solid", color="black", weight=3]; 1318[label="primCmpInt (Pos (Succ vwx900)) (Pos vwx100)",fontsize=16,color="black",shape="box"];1318 -> 1420[label="",style="solid", color="black", weight=3]; 1319[label="primCmpInt (Pos (Succ vwx900)) (Neg vwx100)",fontsize=16,color="black",shape="box"];1319 -> 1421[label="",style="solid", color="black", weight=3]; 1320[label="primCmpInt (Pos Zero) (Pos vwx100)",fontsize=16,color="burlywood",shape="box"];2297[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1320 -> 2297[label="",style="solid", color="burlywood", weight=9]; 2297 -> 1422[label="",style="solid", color="burlywood", weight=3]; 2298[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1320 -> 2298[label="",style="solid", color="burlywood", weight=9]; 2298 -> 1423[label="",style="solid", color="burlywood", weight=3]; 1321[label="primCmpInt (Pos Zero) (Neg vwx100)",fontsize=16,color="burlywood",shape="box"];2299[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1321 -> 2299[label="",style="solid", color="burlywood", weight=9]; 2299 -> 1424[label="",style="solid", color="burlywood", weight=3]; 2300[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1321 -> 2300[label="",style="solid", color="burlywood", weight=9]; 2300 -> 1425[label="",style="solid", color="burlywood", weight=3]; 1322[label="primCmpInt (Neg (Succ vwx900)) (Pos vwx100)",fontsize=16,color="black",shape="box"];1322 -> 1426[label="",style="solid", color="black", weight=3]; 1323[label="primCmpInt (Neg (Succ vwx900)) (Neg vwx100)",fontsize=16,color="black",shape="box"];1323 -> 1427[label="",style="solid", color="black", weight=3]; 1324[label="primCmpInt (Neg Zero) (Pos vwx100)",fontsize=16,color="burlywood",shape="box"];2301[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1324 -> 2301[label="",style="solid", color="burlywood", weight=9]; 2301 -> 1428[label="",style="solid", color="burlywood", weight=3]; 2302[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1324 -> 2302[label="",style="solid", color="burlywood", weight=9]; 2302 -> 1429[label="",style="solid", color="burlywood", weight=3]; 1325[label="primCmpInt (Neg Zero) (Neg vwx100)",fontsize=16,color="burlywood",shape="box"];2303[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1325 -> 2303[label="",style="solid", color="burlywood", weight=9]; 2303 -> 1430[label="",style="solid", color="burlywood", weight=3]; 2304[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1325 -> 2304[label="",style="solid", color="burlywood", weight=9]; 2304 -> 1431[label="",style="solid", color="burlywood", weight=3]; 1326[label="vwx100",fontsize=16,color="green",shape="box"];1327[label="vwx90",fontsize=16,color="green",shape="box"];1328[label="vwx100",fontsize=16,color="green",shape="box"];1329[label="vwx90",fontsize=16,color="green",shape="box"];1330[label="vwx90",fontsize=16,color="green",shape="box"];1331[label="vwx100",fontsize=16,color="green",shape="box"];1332[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1332 -> 1432[label="",style="solid", color="black", weight=3]; 1333[label="vwx100",fontsize=16,color="green",shape="box"];1334[label="vwx90",fontsize=16,color="green",shape="box"];1335[label="vwx100",fontsize=16,color="green",shape="box"];1336[label="vwx90",fontsize=16,color="green",shape="box"];1337[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1337 -> 1433[label="",style="solid", color="black", weight=3]; 1338[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1338 -> 1434[label="",style="solid", color="black", weight=3]; 1339[label="vwx100",fontsize=16,color="green",shape="box"];1340[label="vwx90",fontsize=16,color="green",shape="box"];1341[label="vwx100",fontsize=16,color="green",shape="box"];1342[label="vwx90",fontsize=16,color="green",shape="box"];1343[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1343 -> 1435[label="",style="solid", color="black", weight=3]; 1344[label="vwx100",fontsize=16,color="green",shape="box"];1345[label="vwx90",fontsize=16,color="green",shape="box"];1346[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];1346 -> 1436[label="",style="solid", color="black", weight=3]; 1347[label="vwx100",fontsize=16,color="green",shape="box"];1348[label="vwx90",fontsize=16,color="green",shape="box"];1349[label="vwx100",fontsize=16,color="green",shape="box"];1350[label="vwx90",fontsize=16,color="green",shape="box"];1351[label="primCmpNat vwx90 vwx100",fontsize=16,color="burlywood",shape="triangle"];2305[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];1351 -> 2305[label="",style="solid", color="burlywood", weight=9]; 2305 -> 1437[label="",style="solid", color="burlywood", weight=3]; 2306[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];1351 -> 2306[label="",style="solid", color="burlywood", weight=9]; 2306 -> 1438[label="",style="solid", color="burlywood", weight=3]; 1352 -> 854[label="",style="dashed", color="red", weight=0]; 1352[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="magenta"];1352 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1353 -> 860[label="",style="dashed", color="red", weight=0]; 1353[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="magenta"];1353 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1354[label="vwx91",fontsize=16,color="green",shape="box"];1355[label="vwx101",fontsize=16,color="green",shape="box"];1356[label="vwx91",fontsize=16,color="green",shape="box"];1357[label="vwx101",fontsize=16,color="green",shape="box"];1358[label="vwx91",fontsize=16,color="green",shape="box"];1359[label="vwx101",fontsize=16,color="green",shape="box"];1360[label="vwx91",fontsize=16,color="green",shape="box"];1361[label="vwx101",fontsize=16,color="green",shape="box"];1362[label="vwx91",fontsize=16,color="green",shape="box"];1363[label="vwx101",fontsize=16,color="green",shape="box"];1364[label="vwx91",fontsize=16,color="green",shape="box"];1365[label="vwx101",fontsize=16,color="green",shape="box"];1366[label="vwx91",fontsize=16,color="green",shape="box"];1367[label="vwx101",fontsize=16,color="green",shape="box"];1368[label="vwx91",fontsize=16,color="green",shape="box"];1369[label="vwx101",fontsize=16,color="green",shape="box"];1370[label="vwx91",fontsize=16,color="green",shape="box"];1371[label="vwx101",fontsize=16,color="green",shape="box"];1372[label="vwx91",fontsize=16,color="green",shape="box"];1373[label="vwx101",fontsize=16,color="green",shape="box"];1374[label="vwx91",fontsize=16,color="green",shape="box"];1375[label="vwx101",fontsize=16,color="green",shape="box"];1376[label="vwx91",fontsize=16,color="green",shape="box"];1377[label="vwx101",fontsize=16,color="green",shape="box"];1378[label="vwx91",fontsize=16,color="green",shape="box"];1379[label="vwx101",fontsize=16,color="green",shape="box"];1380[label="vwx91",fontsize=16,color="green",shape="box"];1381[label="vwx101",fontsize=16,color="green",shape="box"];1382 -> 27[label="",style="dashed", color="red", weight=0]; 1382[label="vwx91 == vwx101",fontsize=16,color="magenta"];1382 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1383 -> 29[label="",style="dashed", color="red", weight=0]; 1383[label="vwx91 == vwx101",fontsize=16,color="magenta"];1383 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1383 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1384 -> 34[label="",style="dashed", color="red", weight=0]; 1384[label="vwx91 == vwx101",fontsize=16,color="magenta"];1384 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1384 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1385 -> 36[label="",style="dashed", color="red", weight=0]; 1385[label="vwx91 == vwx101",fontsize=16,color="magenta"];1385 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1385 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1386 -> 40[label="",style="dashed", color="red", weight=0]; 1386[label="vwx91 == vwx101",fontsize=16,color="magenta"];1386 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1387 -> 35[label="",style="dashed", color="red", weight=0]; 1387[label="vwx91 == vwx101",fontsize=16,color="magenta"];1387 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1388 -> 32[label="",style="dashed", color="red", weight=0]; 1388[label="vwx91 == vwx101",fontsize=16,color="magenta"];1388 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1389 -> 39[label="",style="dashed", color="red", weight=0]; 1389[label="vwx91 == vwx101",fontsize=16,color="magenta"];1389 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1390 -> 33[label="",style="dashed", color="red", weight=0]; 1390[label="vwx91 == vwx101",fontsize=16,color="magenta"];1390 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1391 -> 38[label="",style="dashed", color="red", weight=0]; 1391[label="vwx91 == vwx101",fontsize=16,color="magenta"];1391 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1392 -> 30[label="",style="dashed", color="red", weight=0]; 1392[label="vwx91 == vwx101",fontsize=16,color="magenta"];1392 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1393 -> 31[label="",style="dashed", color="red", weight=0]; 1393[label="vwx91 == vwx101",fontsize=16,color="magenta"];1393 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1394 -> 37[label="",style="dashed", color="red", weight=0]; 1394[label="vwx91 == vwx101",fontsize=16,color="magenta"];1394 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1395 -> 28[label="",style="dashed", color="red", weight=0]; 1395[label="vwx91 == vwx101",fontsize=16,color="magenta"];1395 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1396 -> 277[label="",style="dashed", color="red", weight=0]; 1396[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1396 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1397 -> 278[label="",style="dashed", color="red", weight=0]; 1397[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1397 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1398 -> 279[label="",style="dashed", color="red", weight=0]; 1398[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1398 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1399 -> 280[label="",style="dashed", color="red", weight=0]; 1399[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1399 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1400 -> 281[label="",style="dashed", color="red", weight=0]; 1400[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1400 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1401 -> 282[label="",style="dashed", color="red", weight=0]; 1401[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1401 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1402 -> 283[label="",style="dashed", color="red", weight=0]; 1402[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1402 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1403 -> 284[label="",style="dashed", color="red", weight=0]; 1403[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1403 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1404 -> 285[label="",style="dashed", color="red", weight=0]; 1404[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1404 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1405 -> 286[label="",style="dashed", color="red", weight=0]; 1405[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1405 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1406 -> 287[label="",style="dashed", color="red", weight=0]; 1406[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1406 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1407 -> 288[label="",style="dashed", color="red", weight=0]; 1407[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1407 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1408 -> 289[label="",style="dashed", color="red", weight=0]; 1408[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1408 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1409 -> 290[label="",style="dashed", color="red", weight=0]; 1409[label="vwx92 <= vwx102",fontsize=16,color="magenta"];1409 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1411 -> 866[label="",style="dashed", color="red", weight=0]; 1411[label="compare vwx91 vwx101",fontsize=16,color="magenta"];1411 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1410[label="primCompAux vwx90 vwx100 vwx46",fontsize=16,color="black",shape="triangle"];1410 -> 1501[label="",style="solid", color="black", weight=3]; 1412[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];2307[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];1412 -> 2307[label="",style="solid", color="burlywood", weight=9]; 2307 -> 1502[label="",style="solid", color="burlywood", weight=3]; 2308[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];1412 -> 2308[label="",style="solid", color="burlywood", weight=9]; 2308 -> 1503[label="",style="solid", color="burlywood", weight=3]; 1413[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];2309[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];1413 -> 2309[label="",style="solid", color="burlywood", weight=9]; 2309 -> 1504[label="",style="solid", color="burlywood", weight=3]; 2310[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];1413 -> 2310[label="",style="solid", color="burlywood", weight=9]; 2310 -> 1505[label="",style="solid", color="burlywood", weight=3]; 1414[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];2311[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];1414 -> 2311[label="",style="solid", color="burlywood", weight=9]; 2311 -> 1506[label="",style="solid", color="burlywood", weight=3]; 2312[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];1414 -> 2312[label="",style="solid", color="burlywood", weight=9]; 2312 -> 1507[label="",style="solid", color="burlywood", weight=3]; 1415[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];2313[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];1415 -> 2313[label="",style="solid", color="burlywood", weight=9]; 2313 -> 1508[label="",style="solid", color="burlywood", weight=3]; 2314[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];1415 -> 2314[label="",style="solid", color="burlywood", weight=9]; 2314 -> 1509[label="",style="solid", color="burlywood", weight=3]; 1416 -> 1510[label="",style="dashed", color="red", weight=0]; 1416[label="primPlusNat (primMulNat vwx30100 (Succ vwx40000)) (Succ vwx40000)",fontsize=16,color="magenta"];1416 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1417[label="Zero",fontsize=16,color="green",shape="box"];1418[label="Zero",fontsize=16,color="green",shape="box"];1419[label="Zero",fontsize=16,color="green",shape="box"];1420 -> 1351[label="",style="dashed", color="red", weight=0]; 1420[label="primCmpNat (Succ vwx900) vwx100",fontsize=16,color="magenta"];1420 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1421[label="GT",fontsize=16,color="green",shape="box"];1422[label="primCmpInt (Pos Zero) (Pos (Succ vwx1000))",fontsize=16,color="black",shape="box"];1422 -> 1514[label="",style="solid", color="black", weight=3]; 1423[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1423 -> 1515[label="",style="solid", color="black", weight=3]; 1424[label="primCmpInt (Pos Zero) (Neg (Succ vwx1000))",fontsize=16,color="black",shape="box"];1424 -> 1516[label="",style="solid", color="black", weight=3]; 1425[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1425 -> 1517[label="",style="solid", color="black", weight=3]; 1426[label="LT",fontsize=16,color="green",shape="box"];1427 -> 1351[label="",style="dashed", color="red", weight=0]; 1427[label="primCmpNat vwx100 (Succ vwx900)",fontsize=16,color="magenta"];1427 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1428[label="primCmpInt (Neg Zero) (Pos (Succ vwx1000))",fontsize=16,color="black",shape="box"];1428 -> 1520[label="",style="solid", color="black", weight=3]; 1429[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1429 -> 1521[label="",style="solid", color="black", weight=3]; 1430[label="primCmpInt (Neg Zero) (Neg (Succ vwx1000))",fontsize=16,color="black",shape="box"];1430 -> 1522[label="",style="solid", color="black", weight=3]; 1431[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1431 -> 1523[label="",style="solid", color="black", weight=3]; 1432 -> 1524[label="",style="dashed", color="red", weight=0]; 1432[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1432 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1526[label="",style="dashed", color="red", weight=0]; 1433[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1433 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1528[label="",style="dashed", color="red", weight=0]; 1434[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1434 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1530[label="",style="dashed", color="red", weight=0]; 1435[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1435 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1532[label="",style="dashed", color="red", weight=0]; 1436[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];1436 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1437[label="primCmpNat (Succ vwx900) vwx100",fontsize=16,color="burlywood",shape="box"];2315[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1437 -> 2315[label="",style="solid", color="burlywood", weight=9]; 2315 -> 1534[label="",style="solid", color="burlywood", weight=3]; 2316[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1437 -> 2316[label="",style="solid", color="burlywood", weight=9]; 2316 -> 1535[label="",style="solid", color="burlywood", weight=3]; 1438[label="primCmpNat Zero vwx100",fontsize=16,color="burlywood",shape="box"];2317[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];1438 -> 2317[label="",style="solid", color="burlywood", weight=9]; 2317 -> 1536[label="",style="solid", color="burlywood", weight=3]; 2318[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];1438 -> 2318[label="",style="solid", color="burlywood", weight=9]; 2318 -> 1537[label="",style="solid", color="burlywood", weight=3]; 1439 -> 323[label="",style="dashed", color="red", weight=0]; 1439[label="vwx100 * vwx91",fontsize=16,color="magenta"];1439 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1440 -> 323[label="",style="dashed", color="red", weight=0]; 1440[label="vwx90 * vwx101",fontsize=16,color="magenta"];1440 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1441[label="vwx100 * vwx91",fontsize=16,color="burlywood",shape="triangle"];2319[label="vwx100/Integer vwx1000",fontsize=10,color="white",style="solid",shape="box"];1441 -> 2319[label="",style="solid", color="burlywood", weight=9]; 2319 -> 1542[label="",style="solid", color="burlywood", weight=3]; 1442 -> 1441[label="",style="dashed", color="red", weight=0]; 1442[label="vwx90 * vwx101",fontsize=16,color="magenta"];1442 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1443[label="vwx101",fontsize=16,color="green",shape="box"];1444[label="vwx91",fontsize=16,color="green",shape="box"];1445[label="vwx101",fontsize=16,color="green",shape="box"];1446[label="vwx91",fontsize=16,color="green",shape="box"];1447[label="vwx101",fontsize=16,color="green",shape="box"];1448[label="vwx91",fontsize=16,color="green",shape="box"];1449[label="vwx101",fontsize=16,color="green",shape="box"];1450[label="vwx91",fontsize=16,color="green",shape="box"];1451[label="vwx101",fontsize=16,color="green",shape="box"];1452[label="vwx91",fontsize=16,color="green",shape="box"];1453[label="vwx101",fontsize=16,color="green",shape="box"];1454[label="vwx91",fontsize=16,color="green",shape="box"];1455[label="vwx101",fontsize=16,color="green",shape="box"];1456[label="vwx91",fontsize=16,color="green",shape="box"];1457[label="vwx101",fontsize=16,color="green",shape="box"];1458[label="vwx91",fontsize=16,color="green",shape="box"];1459[label="vwx101",fontsize=16,color="green",shape="box"];1460[label="vwx91",fontsize=16,color="green",shape="box"];1461[label="vwx101",fontsize=16,color="green",shape="box"];1462[label="vwx91",fontsize=16,color="green",shape="box"];1463[label="vwx101",fontsize=16,color="green",shape="box"];1464[label="vwx91",fontsize=16,color="green",shape="box"];1465[label="vwx101",fontsize=16,color="green",shape="box"];1466[label="vwx91",fontsize=16,color="green",shape="box"];1467[label="vwx101",fontsize=16,color="green",shape="box"];1468[label="vwx91",fontsize=16,color="green",shape="box"];1469[label="vwx101",fontsize=16,color="green",shape="box"];1470[label="vwx91",fontsize=16,color="green",shape="box"];1471[label="vwx102",fontsize=16,color="green",shape="box"];1472[label="vwx92",fontsize=16,color="green",shape="box"];1473[label="vwx102",fontsize=16,color="green",shape="box"];1474[label="vwx92",fontsize=16,color="green",shape="box"];1475[label="vwx102",fontsize=16,color="green",shape="box"];1476[label="vwx92",fontsize=16,color="green",shape="box"];1477[label="vwx102",fontsize=16,color="green",shape="box"];1478[label="vwx92",fontsize=16,color="green",shape="box"];1479[label="vwx102",fontsize=16,color="green",shape="box"];1480[label="vwx92",fontsize=16,color="green",shape="box"];1481[label="vwx102",fontsize=16,color="green",shape="box"];1482[label="vwx92",fontsize=16,color="green",shape="box"];1483[label="vwx102",fontsize=16,color="green",shape="box"];1484[label="vwx92",fontsize=16,color="green",shape="box"];1485[label="vwx102",fontsize=16,color="green",shape="box"];1486[label="vwx92",fontsize=16,color="green",shape="box"];1487[label="vwx102",fontsize=16,color="green",shape="box"];1488[label="vwx92",fontsize=16,color="green",shape="box"];1489[label="vwx102",fontsize=16,color="green",shape="box"];1490[label="vwx92",fontsize=16,color="green",shape="box"];1491[label="vwx102",fontsize=16,color="green",shape="box"];1492[label="vwx92",fontsize=16,color="green",shape="box"];1493[label="vwx102",fontsize=16,color="green",shape="box"];1494[label="vwx92",fontsize=16,color="green",shape="box"];1495[label="vwx102",fontsize=16,color="green",shape="box"];1496[label="vwx92",fontsize=16,color="green",shape="box"];1497[label="vwx102",fontsize=16,color="green",shape="box"];1498[label="vwx92",fontsize=16,color="green",shape="box"];1499[label="vwx101",fontsize=16,color="green",shape="box"];1500[label="vwx91",fontsize=16,color="green",shape="box"];1501 -> 1545[label="",style="dashed", color="red", weight=0]; 1501[label="primCompAux0 vwx46 (compare vwx90 vwx100)",fontsize=16,color="magenta"];1501 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1502[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];1502 -> 1548[label="",style="solid", color="black", weight=3]; 1503[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];1503 -> 1549[label="",style="solid", color="black", weight=3]; 1504[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];1504 -> 1550[label="",style="solid", color="black", weight=3]; 1505[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];1505 -> 1551[label="",style="solid", color="black", weight=3]; 1506[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];1506 -> 1552[label="",style="solid", color="black", weight=3]; 1507[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];1507 -> 1553[label="",style="solid", color="black", weight=3]; 1508[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];1508 -> 1554[label="",style="solid", color="black", weight=3]; 1509[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];1509 -> 1555[label="",style="solid", color="black", weight=3]; 1511 -> 1060[label="",style="dashed", color="red", weight=0]; 1511[label="primMulNat vwx30100 (Succ vwx40000)",fontsize=16,color="magenta"];1511 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1510[label="primPlusNat vwx47 (Succ vwx40000)",fontsize=16,color="burlywood",shape="triangle"];2320[label="vwx47/Succ vwx470",fontsize=10,color="white",style="solid",shape="box"];1510 -> 2320[label="",style="solid", color="burlywood", weight=9]; 2320 -> 1558[label="",style="solid", color="burlywood", weight=3]; 2321[label="vwx47/Zero",fontsize=10,color="white",style="solid",shape="box"];1510 -> 2321[label="",style="solid", color="burlywood", weight=9]; 2321 -> 1559[label="",style="solid", color="burlywood", weight=3]; 1512[label="vwx100",fontsize=16,color="green",shape="box"];1513[label="Succ vwx900",fontsize=16,color="green",shape="box"];1514 -> 1351[label="",style="dashed", color="red", weight=0]; 1514[label="primCmpNat Zero (Succ vwx1000)",fontsize=16,color="magenta"];1514 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1515[label="EQ",fontsize=16,color="green",shape="box"];1516[label="GT",fontsize=16,color="green",shape="box"];1517[label="EQ",fontsize=16,color="green",shape="box"];1518[label="Succ vwx900",fontsize=16,color="green",shape="box"];1519[label="vwx100",fontsize=16,color="green",shape="box"];1520[label="LT",fontsize=16,color="green",shape="box"];1521[label="EQ",fontsize=16,color="green",shape="box"];1522 -> 1351[label="",style="dashed", color="red", weight=0]; 1522[label="primCmpNat (Succ vwx1000) Zero",fontsize=16,color="magenta"];1522 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1523[label="EQ",fontsize=16,color="green",shape="box"];1525 -> 34[label="",style="dashed", color="red", weight=0]; 1525[label="vwx90 == vwx100",fontsize=16,color="magenta"];1525 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1524[label="compare2 vwx90 vwx100 vwx48",fontsize=16,color="burlywood",shape="triangle"];2322[label="vwx48/False",fontsize=10,color="white",style="solid",shape="box"];1524 -> 2322[label="",style="solid", color="burlywood", weight=9]; 2322 -> 1566[label="",style="solid", color="burlywood", weight=3]; 2323[label="vwx48/True",fontsize=10,color="white",style="solid",shape="box"];1524 -> 2323[label="",style="solid", color="burlywood", weight=9]; 2323 -> 1567[label="",style="solid", color="burlywood", weight=3]; 1527 -> 35[label="",style="dashed", color="red", weight=0]; 1527[label="vwx90 == vwx100",fontsize=16,color="magenta"];1527 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1526[label="compare2 vwx90 vwx100 vwx49",fontsize=16,color="burlywood",shape="triangle"];2324[label="vwx49/False",fontsize=10,color="white",style="solid",shape="box"];1526 -> 2324[label="",style="solid", color="burlywood", weight=9]; 2324 -> 1570[label="",style="solid", color="burlywood", weight=3]; 2325[label="vwx49/True",fontsize=10,color="white",style="solid",shape="box"];1526 -> 2325[label="",style="solid", color="burlywood", weight=9]; 2325 -> 1571[label="",style="solid", color="burlywood", weight=3]; 1529 -> 32[label="",style="dashed", color="red", weight=0]; 1529[label="vwx90 == vwx100",fontsize=16,color="magenta"];1529 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1528[label="compare2 vwx90 vwx100 vwx50",fontsize=16,color="burlywood",shape="triangle"];2326[label="vwx50/False",fontsize=10,color="white",style="solid",shape="box"];1528 -> 2326[label="",style="solid", color="burlywood", weight=9]; 2326 -> 1574[label="",style="solid", color="burlywood", weight=3]; 2327[label="vwx50/True",fontsize=10,color="white",style="solid",shape="box"];1528 -> 2327[label="",style="solid", color="burlywood", weight=9]; 2327 -> 1575[label="",style="solid", color="burlywood", weight=3]; 1531 -> 38[label="",style="dashed", color="red", weight=0]; 1531[label="vwx90 == vwx100",fontsize=16,color="magenta"];1531 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1530[label="compare2 vwx90 vwx100 vwx51",fontsize=16,color="burlywood",shape="triangle"];2328[label="vwx51/False",fontsize=10,color="white",style="solid",shape="box"];1530 -> 2328[label="",style="solid", color="burlywood", weight=9]; 2328 -> 1578[label="",style="solid", color="burlywood", weight=3]; 2329[label="vwx51/True",fontsize=10,color="white",style="solid",shape="box"];1530 -> 2329[label="",style="solid", color="burlywood", weight=9]; 2329 -> 1579[label="",style="solid", color="burlywood", weight=3]; 1533 -> 31[label="",style="dashed", color="red", weight=0]; 1533[label="vwx90 == vwx100",fontsize=16,color="magenta"];1533 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1532[label="compare2 vwx90 vwx100 vwx52",fontsize=16,color="burlywood",shape="triangle"];2330[label="vwx52/False",fontsize=10,color="white",style="solid",shape="box"];1532 -> 2330[label="",style="solid", color="burlywood", weight=9]; 2330 -> 1582[label="",style="solid", color="burlywood", weight=3]; 2331[label="vwx52/True",fontsize=10,color="white",style="solid",shape="box"];1532 -> 2331[label="",style="solid", color="burlywood", weight=9]; 2331 -> 1583[label="",style="solid", color="burlywood", weight=3]; 1534[label="primCmpNat (Succ vwx900) (Succ vwx1000)",fontsize=16,color="black",shape="box"];1534 -> 1584[label="",style="solid", color="black", weight=3]; 1535[label="primCmpNat (Succ vwx900) Zero",fontsize=16,color="black",shape="box"];1535 -> 1585[label="",style="solid", color="black", weight=3]; 1536[label="primCmpNat Zero (Succ vwx1000)",fontsize=16,color="black",shape="box"];1536 -> 1586[label="",style="solid", color="black", weight=3]; 1537[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1537 -> 1587[label="",style="solid", color="black", weight=3]; 1538[label="vwx100",fontsize=16,color="green",shape="box"];1539[label="vwx91",fontsize=16,color="green",shape="box"];1540[label="vwx90",fontsize=16,color="green",shape="box"];1541[label="vwx101",fontsize=16,color="green",shape="box"];1542[label="Integer vwx1000 * vwx91",fontsize=16,color="burlywood",shape="box"];2332[label="vwx91/Integer vwx910",fontsize=10,color="white",style="solid",shape="box"];1542 -> 2332[label="",style="solid", color="burlywood", weight=9]; 2332 -> 1588[label="",style="solid", color="burlywood", weight=3]; 1543[label="vwx90",fontsize=16,color="green",shape="box"];1544[label="vwx101",fontsize=16,color="green",shape="box"];1546[label="compare vwx90 vwx100",fontsize=16,color="blue",shape="box"];2333[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2333[label="",style="solid", color="blue", weight=9]; 2333 -> 1589[label="",style="solid", color="blue", weight=3]; 2334[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2334[label="",style="solid", color="blue", weight=9]; 2334 -> 1590[label="",style="solid", color="blue", weight=3]; 2335[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2335[label="",style="solid", color="blue", weight=9]; 2335 -> 1591[label="",style="solid", color="blue", weight=3]; 2336[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2336[label="",style="solid", color="blue", weight=9]; 2336 -> 1592[label="",style="solid", color="blue", weight=3]; 2337[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2337[label="",style="solid", color="blue", weight=9]; 2337 -> 1593[label="",style="solid", color="blue", weight=3]; 2338[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2338[label="",style="solid", color="blue", weight=9]; 2338 -> 1594[label="",style="solid", color="blue", weight=3]; 2339[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2339[label="",style="solid", color="blue", weight=9]; 2339 -> 1595[label="",style="solid", color="blue", weight=3]; 2340[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2340[label="",style="solid", color="blue", weight=9]; 2340 -> 1596[label="",style="solid", color="blue", weight=3]; 2341[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2341[label="",style="solid", color="blue", weight=9]; 2341 -> 1597[label="",style="solid", color="blue", weight=3]; 2342[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2342[label="",style="solid", color="blue", weight=9]; 2342 -> 1598[label="",style="solid", color="blue", weight=3]; 2343[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2343[label="",style="solid", color="blue", weight=9]; 2343 -> 1599[label="",style="solid", color="blue", weight=3]; 2344[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2344[label="",style="solid", color="blue", weight=9]; 2344 -> 1600[label="",style="solid", color="blue", weight=3]; 2345[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2345[label="",style="solid", color="blue", weight=9]; 2345 -> 1601[label="",style="solid", color="blue", weight=3]; 2346[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1546 -> 2346[label="",style="solid", color="blue", weight=9]; 2346 -> 1602[label="",style="solid", color="blue", weight=3]; 1547[label="vwx46",fontsize=16,color="green",shape="box"];1545[label="primCompAux0 vwx56 vwx57",fontsize=16,color="burlywood",shape="triangle"];2347[label="vwx57/LT",fontsize=10,color="white",style="solid",shape="box"];1545 -> 2347[label="",style="solid", color="burlywood", weight=9]; 2347 -> 1603[label="",style="solid", color="burlywood", weight=3]; 2348[label="vwx57/EQ",fontsize=10,color="white",style="solid",shape="box"];1545 -> 2348[label="",style="solid", color="burlywood", weight=9]; 2348 -> 1604[label="",style="solid", color="burlywood", weight=3]; 2349[label="vwx57/GT",fontsize=10,color="white",style="solid",shape="box"];1545 -> 2349[label="",style="solid", color="burlywood", weight=9]; 2349 -> 1605[label="",style="solid", color="burlywood", weight=3]; 1548 -> 854[label="",style="dashed", color="red", weight=0]; 1548[label="compare (vwx90 * Pos vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];1548 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1549 -> 854[label="",style="dashed", color="red", weight=0]; 1549[label="compare (vwx90 * Pos vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];1549 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1550 -> 854[label="",style="dashed", color="red", weight=0]; 1550[label="compare (vwx90 * Neg vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];1550 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1551 -> 854[label="",style="dashed", color="red", weight=0]; 1551[label="compare (vwx90 * Neg vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];1551 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1552 -> 854[label="",style="dashed", color="red", weight=0]; 1552[label="compare (vwx90 * Pos vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];1552 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1553 -> 854[label="",style="dashed", color="red", weight=0]; 1553[label="compare (vwx90 * Pos vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];1553 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1554 -> 854[label="",style="dashed", color="red", weight=0]; 1554[label="compare (vwx90 * Neg vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];1554 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1555 -> 854[label="",style="dashed", color="red", weight=0]; 1555[label="compare (vwx90 * Neg vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];1555 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1556[label="Succ vwx40000",fontsize=16,color="green",shape="box"];1557[label="vwx30100",fontsize=16,color="green",shape="box"];1558[label="primPlusNat (Succ vwx470) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1558 -> 1622[label="",style="solid", color="black", weight=3]; 1559[label="primPlusNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1559 -> 1623[label="",style="solid", color="black", weight=3]; 1560[label="Succ vwx1000",fontsize=16,color="green",shape="box"];1561[label="Zero",fontsize=16,color="green",shape="box"];1562[label="Zero",fontsize=16,color="green",shape="box"];1563[label="Succ vwx1000",fontsize=16,color="green",shape="box"];1564[label="vwx100",fontsize=16,color="green",shape="box"];1565[label="vwx90",fontsize=16,color="green",shape="box"];1566[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1566 -> 1624[label="",style="solid", color="black", weight=3]; 1567[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1567 -> 1625[label="",style="solid", color="black", weight=3]; 1568[label="vwx100",fontsize=16,color="green",shape="box"];1569[label="vwx90",fontsize=16,color="green",shape="box"];1570[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1570 -> 1626[label="",style="solid", color="black", weight=3]; 1571[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1571 -> 1627[label="",style="solid", color="black", weight=3]; 1572[label="vwx100",fontsize=16,color="green",shape="box"];1573[label="vwx90",fontsize=16,color="green",shape="box"];1574[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1574 -> 1628[label="",style="solid", color="black", weight=3]; 1575[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1575 -> 1629[label="",style="solid", color="black", weight=3]; 1576[label="vwx100",fontsize=16,color="green",shape="box"];1577[label="vwx90",fontsize=16,color="green",shape="box"];1578[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1578 -> 1630[label="",style="solid", color="black", weight=3]; 1579[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1579 -> 1631[label="",style="solid", color="black", weight=3]; 1580[label="vwx100",fontsize=16,color="green",shape="box"];1581[label="vwx90",fontsize=16,color="green",shape="box"];1582[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1582 -> 1632[label="",style="solid", color="black", weight=3]; 1583[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1583 -> 1633[label="",style="solid", color="black", weight=3]; 1584 -> 1351[label="",style="dashed", color="red", weight=0]; 1584[label="primCmpNat vwx900 vwx1000",fontsize=16,color="magenta"];1584 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1585[label="GT",fontsize=16,color="green",shape="box"];1586[label="LT",fontsize=16,color="green",shape="box"];1587[label="EQ",fontsize=16,color="green",shape="box"];1588[label="Integer vwx1000 * Integer vwx910",fontsize=16,color="black",shape="box"];1588 -> 1636[label="",style="solid", color="black", weight=3]; 1589 -> 854[label="",style="dashed", color="red", weight=0]; 1589[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1589 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1590 -> 4[label="",style="dashed", color="red", weight=0]; 1590[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1590 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1181[label="",style="dashed", color="red", weight=0]; 1591[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1591 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1592 -> 858[label="",style="dashed", color="red", weight=0]; 1592[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1592 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1593 -> 860[label="",style="dashed", color="red", weight=0]; 1593[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1593 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1187[label="",style="dashed", color="red", weight=0]; 1594[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1594 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1189[label="",style="dashed", color="red", weight=0]; 1595[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1595 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1596 -> 862[label="",style="dashed", color="red", weight=0]; 1596[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1596 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1597 -> 864[label="",style="dashed", color="red", weight=0]; 1597[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1597 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1195[label="",style="dashed", color="red", weight=0]; 1598[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1598 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1599 -> 866[label="",style="dashed", color="red", weight=0]; 1599[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1599 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1199[label="",style="dashed", color="red", weight=0]; 1600[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1600 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1601 -> 868[label="",style="dashed", color="red", weight=0]; 1601[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1601 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1602 -> 870[label="",style="dashed", color="red", weight=0]; 1602[label="compare vwx90 vwx100",fontsize=16,color="magenta"];1602 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1603[label="primCompAux0 vwx56 LT",fontsize=16,color="black",shape="box"];1603 -> 1665[label="",style="solid", color="black", weight=3]; 1604[label="primCompAux0 vwx56 EQ",fontsize=16,color="black",shape="box"];1604 -> 1666[label="",style="solid", color="black", weight=3]; 1605[label="primCompAux0 vwx56 GT",fontsize=16,color="black",shape="box"];1605 -> 1667[label="",style="solid", color="black", weight=3]; 1606 -> 323[label="",style="dashed", color="red", weight=0]; 1606[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];1606 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1607 -> 323[label="",style="dashed", color="red", weight=0]; 1607[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];1607 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1608 -> 323[label="",style="dashed", color="red", weight=0]; 1608[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];1608 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1609 -> 323[label="",style="dashed", color="red", weight=0]; 1609[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];1609 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1610 -> 323[label="",style="dashed", color="red", weight=0]; 1610[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];1610 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1611 -> 323[label="",style="dashed", color="red", weight=0]; 1611[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];1611 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1612 -> 323[label="",style="dashed", color="red", weight=0]; 1612[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];1612 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1613 -> 323[label="",style="dashed", color="red", weight=0]; 1613[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];1613 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1614 -> 323[label="",style="dashed", color="red", weight=0]; 1614[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];1614 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1615 -> 323[label="",style="dashed", color="red", weight=0]; 1615[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];1615 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1616 -> 323[label="",style="dashed", color="red", weight=0]; 1616[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];1616 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1617 -> 323[label="",style="dashed", color="red", weight=0]; 1617[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];1617 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1618 -> 323[label="",style="dashed", color="red", weight=0]; 1618[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];1618 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1619 -> 323[label="",style="dashed", color="red", weight=0]; 1619[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];1619 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1620 -> 323[label="",style="dashed", color="red", weight=0]; 1620[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];1620 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1621 -> 323[label="",style="dashed", color="red", weight=0]; 1621[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];1621 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1622[label="Succ (Succ (primPlusNat vwx470 vwx40000))",fontsize=16,color="green",shape="box"];1622 -> 1700[label="",style="dashed", color="green", weight=3]; 1623[label="Succ vwx40000",fontsize=16,color="green",shape="box"];1624 -> 1701[label="",style="dashed", color="red", weight=0]; 1624[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1624 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1625[label="EQ",fontsize=16,color="green",shape="box"];1626 -> 1703[label="",style="dashed", color="red", weight=0]; 1626[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1626 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1627[label="EQ",fontsize=16,color="green",shape="box"];1628 -> 1705[label="",style="dashed", color="red", weight=0]; 1628[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1628 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1629[label="EQ",fontsize=16,color="green",shape="box"];1630 -> 1707[label="",style="dashed", color="red", weight=0]; 1630[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1630 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1631[label="EQ",fontsize=16,color="green",shape="box"];1632 -> 1709[label="",style="dashed", color="red", weight=0]; 1632[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];1632 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1633[label="EQ",fontsize=16,color="green",shape="box"];1634[label="vwx1000",fontsize=16,color="green",shape="box"];1635[label="vwx900",fontsize=16,color="green",shape="box"];1636[label="Integer (primMulInt vwx1000 vwx910)",fontsize=16,color="green",shape="box"];1636 -> 1711[label="",style="dashed", color="green", weight=3]; 1637[label="vwx100",fontsize=16,color="green",shape="box"];1638[label="vwx90",fontsize=16,color="green",shape="box"];1639[label="vwx90",fontsize=16,color="green",shape="box"];1640[label="vwx100",fontsize=16,color="green",shape="box"];1641[label="vwx90",fontsize=16,color="green",shape="box"];1642[label="vwx100",fontsize=16,color="green",shape="box"];1643[label="vwx100",fontsize=16,color="green",shape="box"];1644[label="vwx90",fontsize=16,color="green",shape="box"];1645[label="vwx100",fontsize=16,color="green",shape="box"];1646[label="vwx90",fontsize=16,color="green",shape="box"];1647[label="vwx90",fontsize=16,color="green",shape="box"];1648[label="vwx100",fontsize=16,color="green",shape="box"];1649[label="vwx90",fontsize=16,color="green",shape="box"];1650[label="vwx100",fontsize=16,color="green",shape="box"];1651[label="vwx100",fontsize=16,color="green",shape="box"];1652[label="vwx90",fontsize=16,color="green",shape="box"];1653[label="vwx100",fontsize=16,color="green",shape="box"];1654[label="vwx90",fontsize=16,color="green",shape="box"];1655[label="vwx90",fontsize=16,color="green",shape="box"];1656[label="vwx100",fontsize=16,color="green",shape="box"];1657[label="vwx100",fontsize=16,color="green",shape="box"];1658[label="vwx90",fontsize=16,color="green",shape="box"];1659[label="vwx90",fontsize=16,color="green",shape="box"];1660[label="vwx100",fontsize=16,color="green",shape="box"];1661[label="vwx100",fontsize=16,color="green",shape="box"];1662[label="vwx90",fontsize=16,color="green",shape="box"];1663[label="vwx100",fontsize=16,color="green",shape="box"];1664[label="vwx90",fontsize=16,color="green",shape="box"];1665[label="LT",fontsize=16,color="green",shape="box"];1666[label="vwx56",fontsize=16,color="green",shape="box"];1667[label="GT",fontsize=16,color="green",shape="box"];1668[label="Pos vwx910",fontsize=16,color="green",shape="box"];1669[label="vwx100",fontsize=16,color="green",shape="box"];1670[label="vwx90",fontsize=16,color="green",shape="box"];1671[label="Pos vwx1010",fontsize=16,color="green",shape="box"];1672[label="Neg vwx910",fontsize=16,color="green",shape="box"];1673[label="vwx100",fontsize=16,color="green",shape="box"];1674[label="vwx90",fontsize=16,color="green",shape="box"];1675[label="Pos vwx1010",fontsize=16,color="green",shape="box"];1676[label="Pos vwx910",fontsize=16,color="green",shape="box"];1677[label="vwx100",fontsize=16,color="green",shape="box"];1678[label="vwx90",fontsize=16,color="green",shape="box"];1679[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1680[label="Neg vwx910",fontsize=16,color="green",shape="box"];1681[label="vwx100",fontsize=16,color="green",shape="box"];1682[label="vwx90",fontsize=16,color="green",shape="box"];1683[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1684[label="Pos vwx910",fontsize=16,color="green",shape="box"];1685[label="vwx100",fontsize=16,color="green",shape="box"];1686[label="vwx90",fontsize=16,color="green",shape="box"];1687[label="Pos vwx1010",fontsize=16,color="green",shape="box"];1688[label="Neg vwx910",fontsize=16,color="green",shape="box"];1689[label="vwx100",fontsize=16,color="green",shape="box"];1690[label="vwx90",fontsize=16,color="green",shape="box"];1691[label="Pos vwx1010",fontsize=16,color="green",shape="box"];1692[label="Pos vwx910",fontsize=16,color="green",shape="box"];1693[label="vwx100",fontsize=16,color="green",shape="box"];1694[label="vwx90",fontsize=16,color="green",shape="box"];1695[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1696[label="Neg vwx910",fontsize=16,color="green",shape="box"];1697[label="vwx100",fontsize=16,color="green",shape="box"];1698[label="vwx90",fontsize=16,color="green",shape="box"];1699[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1700[label="primPlusNat vwx470 vwx40000",fontsize=16,color="burlywood",shape="triangle"];2350[label="vwx470/Succ vwx4700",fontsize=10,color="white",style="solid",shape="box"];1700 -> 2350[label="",style="solid", color="burlywood", weight=9]; 2350 -> 1712[label="",style="solid", color="burlywood", weight=3]; 2351[label="vwx470/Zero",fontsize=10,color="white",style="solid",shape="box"];1700 -> 2351[label="",style="solid", color="burlywood", weight=9]; 2351 -> 1713[label="",style="solid", color="burlywood", weight=3]; 1702 -> 279[label="",style="dashed", color="red", weight=0]; 1702[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1702 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1702 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1701[label="compare1 vwx90 vwx100 vwx58",fontsize=16,color="burlywood",shape="triangle"];2352[label="vwx58/False",fontsize=10,color="white",style="solid",shape="box"];1701 -> 2352[label="",style="solid", color="burlywood", weight=9]; 2352 -> 1716[label="",style="solid", color="burlywood", weight=3]; 2353[label="vwx58/True",fontsize=10,color="white",style="solid",shape="box"];1701 -> 2353[label="",style="solid", color="burlywood", weight=9]; 2353 -> 1717[label="",style="solid", color="burlywood", weight=3]; 1704 -> 282[label="",style="dashed", color="red", weight=0]; 1704[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1704 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1704 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1703[label="compare1 vwx90 vwx100 vwx59",fontsize=16,color="burlywood",shape="triangle"];2354[label="vwx59/False",fontsize=10,color="white",style="solid",shape="box"];1703 -> 2354[label="",style="solid", color="burlywood", weight=9]; 2354 -> 1720[label="",style="solid", color="burlywood", weight=3]; 2355[label="vwx59/True",fontsize=10,color="white",style="solid",shape="box"];1703 -> 2355[label="",style="solid", color="burlywood", weight=9]; 2355 -> 1721[label="",style="solid", color="burlywood", weight=3]; 1706 -> 283[label="",style="dashed", color="red", weight=0]; 1706[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1706 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1706 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1705[label="compare1 vwx90 vwx100 vwx60",fontsize=16,color="burlywood",shape="triangle"];2356[label="vwx60/False",fontsize=10,color="white",style="solid",shape="box"];1705 -> 2356[label="",style="solid", color="burlywood", weight=9]; 2356 -> 1724[label="",style="solid", color="burlywood", weight=3]; 2357[label="vwx60/True",fontsize=10,color="white",style="solid",shape="box"];1705 -> 2357[label="",style="solid", color="burlywood", weight=9]; 2357 -> 1725[label="",style="solid", color="burlywood", weight=3]; 1708 -> 286[label="",style="dashed", color="red", weight=0]; 1708[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1708 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1708 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1707[label="compare1 vwx90 vwx100 vwx61",fontsize=16,color="burlywood",shape="triangle"];2358[label="vwx61/False",fontsize=10,color="white",style="solid",shape="box"];1707 -> 2358[label="",style="solid", color="burlywood", weight=9]; 2358 -> 1728[label="",style="solid", color="burlywood", weight=3]; 2359[label="vwx61/True",fontsize=10,color="white",style="solid",shape="box"];1707 -> 2359[label="",style="solid", color="burlywood", weight=9]; 2359 -> 1729[label="",style="solid", color="burlywood", weight=3]; 1710 -> 288[label="",style="dashed", color="red", weight=0]; 1710[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1710 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1710 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1709[label="compare1 vwx90 vwx100 vwx62",fontsize=16,color="burlywood",shape="triangle"];2360[label="vwx62/False",fontsize=10,color="white",style="solid",shape="box"];1709 -> 2360[label="",style="solid", color="burlywood", weight=9]; 2360 -> 1732[label="",style="solid", color="burlywood", weight=3]; 2361[label="vwx62/True",fontsize=10,color="white",style="solid",shape="box"];1709 -> 2361[label="",style="solid", color="burlywood", weight=9]; 2361 -> 1733[label="",style="solid", color="burlywood", weight=3]; 1711 -> 555[label="",style="dashed", color="red", weight=0]; 1711[label="primMulInt vwx1000 vwx910",fontsize=16,color="magenta"];1711 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1712[label="primPlusNat (Succ vwx4700) vwx40000",fontsize=16,color="burlywood",shape="box"];2362[label="vwx40000/Succ vwx400000",fontsize=10,color="white",style="solid",shape="box"];1712 -> 2362[label="",style="solid", color="burlywood", weight=9]; 2362 -> 1736[label="",style="solid", color="burlywood", weight=3]; 2363[label="vwx40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1712 -> 2363[label="",style="solid", color="burlywood", weight=9]; 2363 -> 1737[label="",style="solid", color="burlywood", weight=3]; 1713[label="primPlusNat Zero vwx40000",fontsize=16,color="burlywood",shape="box"];2364[label="vwx40000/Succ vwx400000",fontsize=10,color="white",style="solid",shape="box"];1713 -> 2364[label="",style="solid", color="burlywood", weight=9]; 2364 -> 1738[label="",style="solid", color="burlywood", weight=3]; 2365[label="vwx40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1713 -> 2365[label="",style="solid", color="burlywood", weight=9]; 2365 -> 1739[label="",style="solid", color="burlywood", weight=3]; 1714[label="vwx100",fontsize=16,color="green",shape="box"];1715[label="vwx90",fontsize=16,color="green",shape="box"];1716[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1716 -> 1740[label="",style="solid", color="black", weight=3]; 1717[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1717 -> 1741[label="",style="solid", color="black", weight=3]; 1718[label="vwx100",fontsize=16,color="green",shape="box"];1719[label="vwx90",fontsize=16,color="green",shape="box"];1720[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1720 -> 1742[label="",style="solid", color="black", weight=3]; 1721[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1721 -> 1743[label="",style="solid", color="black", weight=3]; 1722[label="vwx100",fontsize=16,color="green",shape="box"];1723[label="vwx90",fontsize=16,color="green",shape="box"];1724[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1724 -> 1744[label="",style="solid", color="black", weight=3]; 1725[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1725 -> 1745[label="",style="solid", color="black", weight=3]; 1726[label="vwx100",fontsize=16,color="green",shape="box"];1727[label="vwx90",fontsize=16,color="green",shape="box"];1728[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1728 -> 1746[label="",style="solid", color="black", weight=3]; 1729[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1729 -> 1747[label="",style="solid", color="black", weight=3]; 1730[label="vwx100",fontsize=16,color="green",shape="box"];1731[label="vwx90",fontsize=16,color="green",shape="box"];1732[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1732 -> 1748[label="",style="solid", color="black", weight=3]; 1733[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1733 -> 1749[label="",style="solid", color="black", weight=3]; 1734[label="vwx1000",fontsize=16,color="green",shape="box"];1735[label="vwx910",fontsize=16,color="green",shape="box"];1736[label="primPlusNat (Succ vwx4700) (Succ vwx400000)",fontsize=16,color="black",shape="box"];1736 -> 1750[label="",style="solid", color="black", weight=3]; 1737[label="primPlusNat (Succ vwx4700) Zero",fontsize=16,color="black",shape="box"];1737 -> 1751[label="",style="solid", color="black", weight=3]; 1738[label="primPlusNat Zero (Succ vwx400000)",fontsize=16,color="black",shape="box"];1738 -> 1752[label="",style="solid", color="black", weight=3]; 1739[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1739 -> 1753[label="",style="solid", color="black", weight=3]; 1740[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1740 -> 1754[label="",style="solid", color="black", weight=3]; 1741[label="LT",fontsize=16,color="green",shape="box"];1742[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1742 -> 1755[label="",style="solid", color="black", weight=3]; 1743[label="LT",fontsize=16,color="green",shape="box"];1744[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1744 -> 1756[label="",style="solid", color="black", weight=3]; 1745[label="LT",fontsize=16,color="green",shape="box"];1746[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1746 -> 1757[label="",style="solid", color="black", weight=3]; 1747[label="LT",fontsize=16,color="green",shape="box"];1748[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1748 -> 1758[label="",style="solid", color="black", weight=3]; 1749[label="LT",fontsize=16,color="green",shape="box"];1750[label="Succ (Succ (primPlusNat vwx4700 vwx400000))",fontsize=16,color="green",shape="box"];1750 -> 1759[label="",style="dashed", color="green", weight=3]; 1751[label="Succ vwx4700",fontsize=16,color="green",shape="box"];1752[label="Succ vwx400000",fontsize=16,color="green",shape="box"];1753[label="Zero",fontsize=16,color="green",shape="box"];1754[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1754 -> 1760[label="",style="solid", color="black", weight=3]; 1755[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1755 -> 1761[label="",style="solid", color="black", weight=3]; 1756[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1756 -> 1762[label="",style="solid", color="black", weight=3]; 1757[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1757 -> 1763[label="",style="solid", color="black", weight=3]; 1758[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1758 -> 1764[label="",style="solid", color="black", weight=3]; 1759 -> 1700[label="",style="dashed", color="red", weight=0]; 1759[label="primPlusNat vwx4700 vwx400000",fontsize=16,color="magenta"];1759 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1760[label="GT",fontsize=16,color="green",shape="box"];1761[label="GT",fontsize=16,color="green",shape="box"];1762[label="GT",fontsize=16,color="green",shape="box"];1763[label="GT",fontsize=16,color="green",shape="box"];1764[label="GT",fontsize=16,color="green",shape="box"];1765[label="vwx4700",fontsize=16,color="green",shape="box"];1766[label="vwx400000",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(vwx900), Succ(vwx1000)) -> new_primCmpNat(vwx900, vwx1000) 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(vwx900), Succ(vwx1000)) -> new_primCmpNat(vwx900, vwx1000) 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(Right(vwx90), Right(vwx100), cc, app(ty_Maybe, de)) -> new_ltEs3(vwx90, vwx100, de) new_compare23(vwx16, vwx17, False, bde, app(ty_Maybe, bef)) -> new_ltEs3(vwx16, vwx17, bef) new_primCompAux(vwx90, vwx100, vwx46, app(ty_[], bff)) -> new_compare0(vwx90, vwx100, bff) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(app(ty_@3, bbd), bbe), bbf)), bc) -> new_ltEs1(vwx92, vwx102, bbd, bbe, bbf) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(ty_@2, baa), bab), gf) -> new_lt0(vwx91, vwx101, baa, bab) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(ty_Maybe, gb)) -> new_ltEs3(vwx91, vwx101, gb) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_@2, bd), be)), bb), bc) -> new_ltEs0(vwx90, vwx100, bd, be) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_[], bda)), bc) -> new_ltEs2(vwx90, vwx100, bda) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_Either, df), dg)), dh), bc) -> new_compare(vwx90, vwx100, df, dg) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_[], ca)), bb), bc) -> new_ltEs2(vwx90, vwx100, ca) new_lt3(vwx90, vwx100, eg) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_Either, gc), gd), ge, gf) -> new_lt(vwx90, vwx100, gc, gd) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(ty_@2, fc), fd)) -> new_ltEs0(vwx91, vwx101, fc, fd) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(app(ty_@3, bac), bad), bae), gf) -> new_lt1(vwx91, vwx101, bac, bad, bae) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_Maybe, cb)), bb), bc) -> new_ltEs3(vwx90, vwx100, cb) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(ty_Either, fa), fb)) -> new_ltEs(vwx91, vwx101, fa, fb) new_ltEs3(Just(vwx90), Just(vwx100), app(ty_[], bda)) -> new_ltEs2(vwx90, vwx100, bda) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs1(vwx91, vwx101, ff, fg, fh) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(ty_Either, fa), fb)), bc) -> new_ltEs(vwx91, vwx101, fa, fb) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(ty_[], baf), gf) -> new_lt2(vwx91, vwx101, baf) new_compare(Left(vwx30), Left(vwx40), bdc, bdd) -> new_compare2(vwx30, vwx40, new_esEs7(vwx30, vwx40, bdc), bdc, bdd) new_ltEs(Left(vwx90), Left(vwx100), app(ty_Maybe, cb), bb) -> new_ltEs3(vwx90, vwx100, cb) new_ltEs3(Just(vwx90), Just(vwx100), app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx90, vwx100, bcb, bcc) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(ty_Either, cd), ce)), bc) -> new_ltEs(vwx90, vwx100, cd, ce) new_ltEs3(Just(vwx90), Just(vwx100), app(app(ty_@2, bcd), bce)) -> new_ltEs0(vwx90, vwx100, bcd, bce) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(ty_Maybe, de)), bc) -> new_ltEs3(vwx90, vwx100, de) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_@2, ea), eb)), dh), bc) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_[], ef)), dh), bc) -> new_compare0(vwx90, vwx100, ef) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(ty_@2, baa), bab)), gf), bc) -> new_lt0(vwx91, vwx101, baa, bab) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_Maybe, he)), ge), gf), bc) -> new_lt3(vwx90, vwx100, he) new_ltEs(Left(vwx90), Left(vwx100), app(app(ty_@2, bd), be), bb) -> new_ltEs0(vwx90, vwx100, bd, be) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(ty_@2, fc), fd)), bc) -> new_ltEs0(vwx91, vwx101, fc, fd) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(ty_[], bbg)) -> new_ltEs2(vwx92, vwx102, bbg) new_lt1(vwx90, vwx100, ec, ed, ee) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(app(ty_@3, ec), ed), ee)), dh), bc) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(ty_Either, hg), hh)), gf), bc) -> new_lt(vwx91, vwx101, hg, hh) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_Maybe, he), ge, gf) -> new_lt3(vwx90, vwx100, he) new_primCompAux(vwx90, vwx100, vwx46, app(app(ty_@2, bfa), bfb)) -> new_compare3(vwx90, vwx100, bfa, bfb) new_ltEs(Left(vwx90), Left(vwx100), app(app(ty_Either, h), ba), bb) -> new_ltEs(vwx90, vwx100, h, ba) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(app(ty_@3, ff), fg), fh)), bc) -> new_ltEs1(vwx91, vwx101, ff, fg, fh) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(ty_Maybe, bag)), gf), bc) -> new_lt3(vwx91, vwx101, bag) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(ty_[], dd)), bc) -> new_ltEs2(vwx90, vwx100, dd) new_compare2(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], bca), bc) -> new_compare0(vwx91, vwx101, bca) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_Either, bcb), bcc)), bc) -> new_ltEs(vwx90, vwx100, bcb, bcc) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_@2, gg), gh)), ge), gf), bc) -> new_lt0(vwx90, vwx100, gg, gh) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_Maybe, eg)), dh), bc) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(ty_@2, bbb), bbc)), bc) -> new_ltEs0(vwx92, vwx102, bbb, bbc) new_compare5(vwx90, vwx100, eg) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(app(ty_@3, ha), hb), hc), ge, gf) -> new_lt1(vwx90, vwx100, ha, hb, hc) new_lt2(vwx90, vwx100, ef) -> new_compare0(vwx90, vwx100, ef) new_compare0(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_compare0(vwx91, vwx101, bca) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_@2, bcd), bce)), bc) -> new_ltEs0(vwx90, vwx100, bcd, bce) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(ty_Maybe, bbh)), bc) -> new_ltEs3(vwx92, vwx102, bbh) new_compare23(vwx16, vwx17, False, bde, app(app(ty_@2, bdh), bea)) -> new_ltEs0(vwx16, vwx17, bdh, bea) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_Maybe, eg), dh) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_[], hd)), ge), gf), bc) -> new_lt2(vwx90, vwx100, hd) new_compare20(vwx90, vwx100, False, ea, eb) -> new_ltEs0(vwx90, vwx100, ea, eb) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(ty_@2, bbb), bbc)) -> new_ltEs0(vwx92, vwx102, bbb, bbc) new_compare4(vwx90, vwx100, ec, ed, ee) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(ty_[], ga)) -> new_ltEs2(vwx91, vwx101, ga) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(ty_[], ga)), bc) -> new_ltEs2(vwx91, vwx101, ga) new_compare(Right(vwx30), Right(vwx40), bdc, bdd) -> new_compare23(vwx30, vwx40, new_esEs8(vwx30, vwx40, bdd), bdc, bdd) new_primCompAux(vwx90, vwx100, vwx46, app(ty_Maybe, bfg)) -> new_compare5(vwx90, vwx100, bfg) new_primCompAux(vwx90, vwx100, vwx46, app(app(ty_Either, beg), beh)) -> new_compare(vwx90, vwx100, beg, beh) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bc) -> new_ltEs(vwx90, vwx100, h, ba) new_ltEs(Left(vwx90), Left(vwx100), app(ty_[], ca), bb) -> new_ltEs2(vwx90, vwx100, ca) new_compare23(vwx16, vwx17, False, bde, app(app(ty_Either, bdf), bdg)) -> new_ltEs(vwx16, vwx17, bdf, bdg) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch)), bc) -> new_ltEs1(vwx90, vwx100, bcf, bcg, bch) new_ltEs(Right(vwx90), Right(vwx100), cc, app(ty_[], dd)) -> new_ltEs2(vwx90, vwx100, dd) new_compare23(vwx16, vwx17, False, bde, app(ty_[], bee)) -> new_ltEs2(vwx16, vwx17, bee) new_ltEs(Left(vwx90), Left(vwx100), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs1(vwx90, vwx100, bf, bg, bh) new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs(vwx90, vwx100, cd, ce) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(ty_Either, bah), bba)), bc) -> new_ltEs(vwx92, vwx102, bah, bba) new_lt0(vwx90, vwx100, ea, eb) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), ge), gf), bc) -> new_lt(vwx90, vwx100, gc, gd) new_ltEs3(Just(vwx90), Just(vwx100), app(ty_Maybe, bdb)) -> new_ltEs3(vwx90, vwx100, bdb) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(app(ty_@3, bac), bad), bae)), gf), bc) -> new_lt1(vwx91, vwx101, bac, bad, bae) new_compare23(vwx16, vwx17, False, bde, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs1(vwx16, vwx17, beb, bec, bed) new_primCompAux(vwx90, vwx100, vwx46, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare4(vwx90, vwx100, bfc, bfd, bfe) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(app(ty_@3, da), db), dc)), bc) -> new_ltEs1(vwx90, vwx100, da, db, dc) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(ty_[], baf)), gf), bc) -> new_lt2(vwx91, vwx101, baf) new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bb), bc) -> new_ltEs1(vwx90, vwx100, bf, bg, bh) new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(ty_Maybe, gb)), bc) -> new_ltEs3(vwx91, vwx101, gb) new_compare21(vwx90, vwx100, False, ec, ed, ee) -> new_ltEs1(vwx90, vwx100, ec, ed, ee) new_compare0(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, bca), bca) new_compare3(vwx90, vwx100, ea, eb) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(vwx90, vwx100, da, db, dc) new_ltEs2(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, bca), bca) new_ltEs3(Just(vwx90), Just(vwx100), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx90, vwx100, bcf, bcg, bch) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_@2, gg), gh), ge, gf) -> new_lt0(vwx90, vwx100, gg, gh) new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(ty_@2, cf), cg)), bc) -> new_ltEs0(vwx90, vwx100, cf, cg) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(ty_Either, bah), bba)) -> new_ltEs(vwx92, vwx102, bah, bba) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(ty_Maybe, bag), gf) -> new_lt3(vwx91, vwx101, bag) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(app(ty_@3, ha), hb), hc)), ge), gf), bc) -> new_lt1(vwx90, vwx100, ha, hb, hc) new_compare2(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], bca), bc) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, bca), bca) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(ty_Either, hg), hh), gf) -> new_lt(vwx91, vwx101, hg, hh) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_Either, df), dg), dh) -> new_compare(vwx90, vwx100, df, dg) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs1(vwx92, vwx102, bbd, bbe, bbf) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(ty_Maybe, bbh)) -> new_ltEs3(vwx92, vwx102, bbh) new_lt(vwx90, vwx100, df, dg) -> new_compare(vwx90, vwx100, df, dg) new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_Maybe, bdb)), bc) -> new_ltEs3(vwx90, vwx100, bdb) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_[], ef), dh) -> new_compare0(vwx90, vwx100, ef) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_[], hd), ge, gf) -> new_lt2(vwx90, vwx100, hd) new_compare22(vwx90, vwx100, False, eg) -> new_ltEs3(vwx90, vwx100, eg) new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(ty_@2, cf), cg)) -> new_ltEs0(vwx90, vwx100, cf, cg) new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(ty_[], bbg)), bc) -> new_ltEs2(vwx92, vwx102, bbg) new_ltEs2(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_compare0(vwx91, vwx101, bca) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_@2, ea), eb), dh) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(app(ty_@3, ec), ed), ee), dh) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The TRS R consists of the following rules: new_esEs7(vwx30, vwx40, app(ty_Ratio, cfe)) -> new_esEs15(vwx30, vwx40, cfe) new_lt10(vwx91, vwx101, ty_Bool) -> new_lt5(vwx91, vwx101) new_esEs14(Left(vwx300), Left(vwx400), app(app(ty_Either, cge), cgf), cfd) -> new_esEs14(vwx300, vwx400, cge, cgf) new_ltEs19(vwx16, vwx17, ty_Integer) -> new_ltEs11(vwx16, vwx17) new_ltEs21(vwx91, vwx101, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs7(vwx91, vwx101, ff, fg, fh) new_primCmpInt(Neg(Succ(vwx900)), Pos(vwx100)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare31(vwx90, vwx100, ty_Integer) -> new_compare11(vwx90, vwx100) new_lt10(vwx91, vwx101, app(app(ty_Either, hg), hh)) -> new_lt7(vwx91, vwx101, hg, hh) new_ltEs17(Just(vwx90), Just(vwx100), app(ty_[], bda)) -> new_ltEs16(vwx90, vwx100, bda) new_esEs23(vwx300, vwx400, app(ty_Maybe, cae)) -> new_esEs6(vwx300, vwx400, cae) new_pePe(True, vwx45) -> True new_esEs7(vwx30, vwx40, app(app(ty_Either, cfc), cfd)) -> new_esEs14(vwx30, vwx40, cfc, cfd) new_ltEs19(vwx16, vwx17, ty_Double) -> new_ltEs18(vwx16, vwx17) new_ltEs8(vwx92, vwx102, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs7(vwx92, vwx102, bbd, bbe, bbf) new_compare111(vwx90, vwx100, True, ec, ed, ee) -> LT new_ltEs19(vwx16, vwx17, app(app(ty_Either, bdf), bdg)) -> new_ltEs9(vwx16, vwx17, bdf, bdg) new_esEs30(vwx302, vwx402, ty_Char) -> new_esEs19(vwx302, vwx402) new_esEs24(vwx301, vwx401, app(ty_[], cbf)) -> new_esEs11(vwx301, vwx401, cbf) new_esEs30(vwx302, vwx402, app(app(ty_@2, dfa), dfb)) -> new_esEs4(vwx302, vwx402, dfa, dfb) new_esEs8(vwx30, vwx40, ty_Ordering) -> new_esEs9(vwx30, vwx40) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs9(Right(vwx90), Right(vwx100), cc, app(ty_[], dd)) -> new_ltEs16(vwx90, vwx100, dd) new_primCmpInt(Pos(Zero), Neg(Succ(vwx1000))) -> GT new_esEs29(vwx301, vwx401, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs5(vwx301, vwx401, dea, deb, dec) new_esEs28(vwx300, vwx400, app(app(ty_Either, dbh), dca)) -> new_esEs14(vwx300, vwx400, dbh, dca) new_ltEs15(vwx9, vwx10, dbf) -> new_not(new_esEs9(new_compare32(vwx9, vwx10, dbf), GT)) new_ltEs19(vwx16, vwx17, app(app(ty_@2, bdh), bea)) -> new_ltEs12(vwx16, vwx17, bdh, bea) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_primCmpInt(Neg(Succ(vwx900)), Neg(vwx100)) -> new_primCmpNat0(vwx100, Succ(vwx900)) new_esEs30(vwx302, vwx402, ty_Float) -> new_esEs13(vwx302, vwx402) new_esEs24(vwx301, vwx401, ty_Float) -> new_esEs13(vwx301, vwx401) new_ltEs9(Right(vwx90), Right(vwx100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs9(vwx90, vwx100, cd, ce) new_ltEs13(GT, GT) -> True new_lt10(vwx91, vwx101, app(ty_Maybe, bag)) -> new_lt18(vwx91, vwx101, bag) new_ltEs8(vwx92, vwx102, ty_Int) -> new_ltEs6(vwx92, vwx102) new_esEs29(vwx301, vwx401, ty_Char) -> new_esEs19(vwx301, vwx401) new_esEs7(vwx30, vwx40, app(ty_[], bfh)) -> new_esEs11(vwx30, vwx40, bfh) new_esEs30(vwx302, vwx402, ty_Integer) -> new_esEs20(vwx302, vwx402) new_esEs14(Right(vwx300), Right(vwx400), cfc, ty_Float) -> new_esEs13(vwx300, vwx400) new_lt20(vwx90, vwx100, ty_Integer) -> new_lt12(vwx90, vwx100) new_esEs24(vwx301, vwx401, ty_Char) -> new_esEs19(vwx301, vwx401) new_esEs19(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_ltEs13(EQ, GT) -> True new_ltEs8(vwx92, vwx102, app(ty_Maybe, bbh)) -> new_ltEs17(vwx92, vwx102, bbh) new_compare210(vwx16, vwx17, True, bde, cga) -> EQ new_ltEs9(Left(vwx90), Left(vwx100), ty_Integer, bb) -> new_ltEs11(vwx90, vwx100) new_esEs24(vwx301, vwx401, app(ty_Ratio, cbh)) -> new_esEs15(vwx301, vwx401, cbh) new_compare18(vwx90, vwx100, False, eg) -> GT new_lt20(vwx90, vwx100, app(app(ty_@2, ea), eb)) -> new_lt13(vwx90, vwx100, ea, eb) new_esEs24(vwx301, vwx401, app(app(ty_@2, cca), ccb)) -> new_esEs4(vwx301, vwx401, cca, ccb) new_lt18(vwx90, vwx100, eg) -> new_esEs9(new_compare17(vwx90, vwx100, eg), LT) new_lt8(vwx90, vwx100) -> new_esEs9(new_compare9(vwx90, vwx100), LT) new_esEs14(Right(vwx300), Right(vwx400), cfc, ty_Char) -> new_esEs19(vwx300, vwx400) new_ltEs13(EQ, EQ) -> True new_esEs28(vwx300, vwx400, app(ty_[], dcb)) -> new_esEs11(vwx300, vwx400, dcb) new_esEs21(vwx90, vwx100, ty_Bool) -> new_esEs16(vwx90, vwx100) new_esEs14(Right(vwx300), Right(vwx400), cfc, ty_Integer) -> new_esEs20(vwx300, vwx400) new_compare1(:(vwx90, vwx91), [], bca) -> GT new_compare19(vwx90, vwx100, True, ea, eb) -> LT new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs29(vwx301, vwx401, ty_Float) -> new_esEs13(vwx301, vwx401) new_esEs24(vwx301, vwx401, ty_Integer) -> new_esEs20(vwx301, vwx401) new_ltEs9(Left(vwx90), Left(vwx100), ty_@0, bb) -> new_ltEs10(vwx90, vwx100) new_lt10(vwx91, vwx101, ty_Char) -> new_lt14(vwx91, vwx101) new_ltEs9(Left(vwx90), Left(vwx100), app(ty_[], ca), bb) -> new_ltEs16(vwx90, vwx100, ca) new_not(True) -> False new_compare6(vwx90, vwx100) -> new_compare211(vwx90, vwx100, new_esEs9(vwx90, vwx100)) new_esEs6(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs10(vwx300, vwx400) new_primCompAux00(vwx56, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_lt7(vwx90, vwx100, df, dg) -> new_esEs9(new_compare12(vwx90, vwx100, df, dg), LT) new_lt12(vwx90, vwx100) -> new_esEs9(new_compare11(vwx90, vwx100), LT) new_esEs30(vwx302, vwx402, app(app(ty_Either, ded), dee)) -> new_esEs14(vwx302, vwx402, ded, dee) new_esEs8(vwx30, vwx40, ty_Float) -> new_esEs13(vwx30, vwx40) new_compare31(vwx90, vwx100, ty_Char) -> new_compare28(vwx90, vwx100) new_esEs28(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_ltEs19(vwx16, vwx17, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs7(vwx16, vwx17, beb, bec, bed) new_ltEs21(vwx91, vwx101, app(app(ty_Either, fa), fb)) -> new_ltEs9(vwx91, vwx101, fa, fb) new_compare27(vwx90, vwx100, False, ea, eb) -> new_compare19(vwx90, vwx100, new_ltEs12(vwx90, vwx100, ea, eb), ea, eb) new_compare210(vwx16, vwx17, False, bde, cga) -> new_compare13(vwx16, vwx17, new_ltEs19(vwx16, vwx17, cga), bde, cga) new_esEs30(vwx302, vwx402, app(ty_Ratio, deh)) -> new_esEs15(vwx302, vwx402, deh) new_esEs7(vwx30, vwx40, app(app(ty_@2, bhh), caa)) -> new_esEs4(vwx30, vwx40, bhh, caa) new_esEs7(vwx30, vwx40, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs5(vwx30, vwx40, cff, cfg, cfh) new_lt20(vwx90, vwx100, ty_Double) -> new_lt19(vwx90, vwx100) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_ltEs20(vwx9, vwx10, ty_Int) -> new_ltEs6(vwx9, vwx10) new_esEs24(vwx301, vwx401, app(app(ty_Either, cbd), cbe)) -> new_esEs14(vwx301, vwx401, cbd, cbe) new_lt10(vwx91, vwx101, ty_Float) -> new_lt6(vwx91, vwx101) new_ltEs21(vwx91, vwx101, app(app(ty_@2, fc), fd)) -> new_ltEs12(vwx91, vwx101, fc, fd) new_ltEs19(vwx16, vwx17, ty_Int) -> new_ltEs6(vwx16, vwx17) new_compare31(vwx90, vwx100, app(ty_Maybe, bfg)) -> new_compare17(vwx90, vwx100, bfg) new_esEs27(vwx90, vwx100, ty_Int) -> new_esEs10(vwx90, vwx100) new_compare211(vwx90, vwx100, False) -> new_compare110(vwx90, vwx100, new_ltEs13(vwx90, vwx100)) new_ltEs20(vwx9, vwx10, ty_Double) -> new_ltEs18(vwx9, vwx10) new_esEs8(vwx30, vwx40, app(app(ty_@2, cef), ceg)) -> new_esEs4(vwx30, vwx40, cef, ceg) new_lt20(vwx90, vwx100, app(app(ty_Either, df), dg)) -> new_lt7(vwx90, vwx100, df, dg) new_ltEs20(vwx9, vwx10, ty_Integer) -> new_ltEs11(vwx9, vwx10) new_primCompAux00(vwx56, GT) -> GT new_compare110(vwx90, vwx100, True) -> LT new_ltEs9(Left(vwx90), Left(vwx100), ty_Bool, bb) -> new_ltEs5(vwx90, vwx100) new_esEs12(vwx300, vwx400, ty_@0) -> new_esEs17(vwx300, vwx400) new_esEs24(vwx301, vwx401, ty_Double) -> new_esEs18(vwx301, vwx401) new_ltEs21(vwx91, vwx101, ty_Char) -> new_ltEs14(vwx91, vwx101) new_esEs23(vwx300, vwx400, ty_Int) -> new_esEs10(vwx300, vwx400) new_ltEs9(Left(vwx90), Right(vwx100), cc, bb) -> True new_ltEs10(vwx9, vwx10) -> new_not(new_esEs9(new_compare16(vwx9, vwx10), GT)) new_lt13(vwx90, vwx100, ea, eb) -> new_esEs9(new_compare30(vwx90, vwx100, ea, eb), LT) new_ltEs21(vwx91, vwx101, ty_Int) -> new_ltEs6(vwx91, vwx101) new_esEs29(vwx301, vwx401, ty_Double) -> new_esEs18(vwx301, vwx401) new_primCmpInt(Pos(Succ(vwx900)), Neg(vwx100)) -> GT new_esEs28(vwx300, vwx400, ty_Int) -> new_esEs10(vwx300, vwx400) new_ltEs20(vwx9, vwx10, ty_@0) -> new_ltEs10(vwx9, vwx10) new_compare9(vwx9, vwx10) -> new_primCmpInt(vwx9, vwx10) new_esEs28(vwx300, vwx400, ty_@0) -> new_esEs17(vwx300, vwx400) new_ltEs5(False, True) -> True new_lt10(vwx91, vwx101, app(app(app(ty_@3, bac), bad), bae)) -> new_lt16(vwx91, vwx101, bac, bad, bae) new_esEs24(vwx301, vwx401, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs5(vwx301, vwx401, ccc, ccd, cce) new_esEs30(vwx302, vwx402, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs5(vwx302, vwx402, dfc, dfd, dfe) new_esEs28(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_esEs7(vwx30, vwx40, app(ty_Maybe, ccf)) -> new_esEs6(vwx30, vwx40, ccf) new_esEs30(vwx302, vwx402, ty_Double) -> new_esEs18(vwx302, vwx402) new_ltEs8(vwx92, vwx102, app(app(ty_@2, bbb), bbc)) -> new_ltEs12(vwx92, vwx102, bbb, bbc) new_esEs21(vwx90, vwx100, ty_Ordering) -> new_esEs9(vwx90, vwx100) new_esEs8(vwx30, vwx40, app(ty_[], cec)) -> new_esEs11(vwx30, vwx40, cec) new_primPlusNat1(Succ(vwx4700), Succ(vwx400000)) -> Succ(Succ(new_primPlusNat1(vwx4700, vwx400000))) new_ltEs21(vwx91, vwx101, ty_Double) -> new_ltEs18(vwx91, vwx101) new_primCompAux0(vwx90, vwx100, vwx46, bca) -> new_primCompAux00(vwx46, new_compare31(vwx90, vwx100, bca)) new_esEs23(vwx300, vwx400, ty_@0) -> new_esEs17(vwx300, vwx400) new_esEs7(vwx30, vwx40, ty_Integer) -> new_esEs20(vwx30, vwx40) new_lt10(vwx91, vwx101, app(app(ty_@2, baa), bab)) -> new_lt13(vwx91, vwx101, baa, bab) new_primCmpNat0(Zero, Succ(vwx1000)) -> LT new_ltEs19(vwx16, vwx17, ty_@0) -> new_ltEs10(vwx16, vwx17) new_esEs14(Left(vwx300), Left(vwx400), app(app(ty_@2, chb), chc), cfd) -> new_esEs4(vwx300, vwx400, chb, chc) new_ltEs20(vwx9, vwx10, app(app(app(ty_@3, hf), ge), gf)) -> new_ltEs7(vwx9, vwx10, hf, ge, gf) new_ltEs17(Just(vwx90), Just(vwx100), ty_Float) -> new_ltEs4(vwx90, vwx100) new_ltEs13(LT, GT) -> True new_lt20(vwx90, vwx100, ty_Char) -> new_lt14(vwx90, vwx100) new_ltEs8(vwx92, vwx102, app(app(ty_Either, bah), bba)) -> new_ltEs9(vwx92, vwx102, bah, bba) new_esEs6(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs17(vwx300, vwx400) new_esEs14(Right(vwx300), Right(vwx400), cfc, ty_Ordering) -> new_esEs9(vwx300, vwx400) new_esEs21(vwx90, vwx100, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs5(vwx90, vwx100, ha, hb, hc) new_compare24(vwx90, vwx100, False) -> new_compare10(vwx90, vwx100, new_ltEs5(vwx90, vwx100)) new_lt9(vwx90, vwx100, app(ty_Maybe, he)) -> new_lt18(vwx90, vwx100, he) new_ltEs9(Left(vwx90), Left(vwx100), ty_Ordering, bb) -> new_ltEs13(vwx90, vwx100) new_primCmpNat0(Succ(vwx900), Zero) -> GT new_ltEs17(Nothing, Nothing, cgc) -> True new_pePe(False, vwx45) -> vwx45 new_lt20(vwx90, vwx100, ty_@0) -> new_lt11(vwx90, vwx100) new_ltEs17(Nothing, Just(vwx100), cgc) -> True new_esEs17(@0, @0) -> True new_esEs27(vwx90, vwx100, app(app(ty_Either, df), dg)) -> new_esEs14(vwx90, vwx100, df, dg) new_esEs22(vwx91, vwx101, ty_@0) -> new_esEs17(vwx91, vwx101) new_ltEs17(Just(vwx90), Nothing, cgc) -> False new_esEs6(Just(vwx300), Just(vwx400), app(ty_[], cda)) -> new_esEs11(vwx300, vwx400, cda) new_ltEs20(vwx9, vwx10, app(ty_Maybe, cgc)) -> new_ltEs17(vwx9, vwx10, cgc) new_compare7(Float(vwx90, Pos(vwx910)), Float(vwx100, Neg(vwx1010))) -> new_compare9(new_sr(vwx90, Pos(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_compare7(Float(vwx90, Neg(vwx910)), Float(vwx100, Pos(vwx1010))) -> new_compare9(new_sr(vwx90, Neg(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_esEs11(:(vwx300, vwx301), [], bfh) -> False new_esEs11([], :(vwx400, vwx401), bfh) -> False new_compare31(vwx90, vwx100, ty_Ordering) -> new_compare6(vwx90, vwx100) new_compare112(vwx23, vwx24, True, dbc, dbd) -> LT new_esEs27(vwx90, vwx100, ty_Bool) -> new_esEs16(vwx90, vwx100) new_lt9(vwx90, vwx100, ty_Bool) -> new_lt5(vwx90, vwx100) new_esEs21(vwx90, vwx100, ty_Char) -> new_esEs19(vwx90, vwx100) new_esEs14(Left(vwx300), Left(vwx400), app(ty_[], cgg), cfd) -> new_esEs11(vwx300, vwx400, cgg) new_esEs14(Left(vwx300), Left(vwx400), ty_Int, cfd) -> new_esEs10(vwx300, vwx400) new_esEs23(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_esEs22(vwx91, vwx101, app(ty_Maybe, bag)) -> new_esEs6(vwx91, vwx101, bag) new_esEs21(vwx90, vwx100, app(app(ty_@2, gg), gh)) -> new_esEs4(vwx90, vwx100, gg, gh) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_lt9(vwx90, vwx100, ty_Ordering) -> new_lt4(vwx90, vwx100) new_lt4(vwx90, vwx100) -> new_esEs9(new_compare6(vwx90, vwx100), LT) new_compare12(Right(vwx30), Left(vwx40), bdc, bdd) -> GT new_compare32(:%(vwx90, vwx91), :%(vwx100, vwx101), ty_Int) -> new_compare9(new_sr(vwx90, vwx101), new_sr(vwx100, vwx91)) new_esEs29(vwx301, vwx401, ty_@0) -> new_esEs17(vwx301, vwx401) new_esEs23(vwx300, vwx400, app(ty_[], cad)) -> new_esEs11(vwx300, vwx400, cad) new_ltEs6(vwx9, vwx10) -> new_not(new_esEs9(new_compare9(vwx9, vwx10), GT)) new_esEs30(vwx302, vwx402, ty_Int) -> new_esEs10(vwx302, vwx402) new_lt20(vwx90, vwx100, ty_Float) -> new_lt6(vwx90, vwx100) new_esEs21(vwx90, vwx100, ty_Float) -> new_esEs13(vwx90, vwx100) new_esEs8(vwx30, vwx40, ty_Int) -> new_esEs10(vwx30, vwx40) new_esEs27(vwx90, vwx100, ty_Integer) -> new_esEs20(vwx90, vwx100) new_ltEs20(vwx9, vwx10, ty_Float) -> new_ltEs4(vwx9, vwx10) new_ltEs19(vwx16, vwx17, app(ty_Maybe, bef)) -> new_ltEs17(vwx16, vwx17, bef) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_ltEs9(Left(vwx90), Left(vwx100), app(app(ty_Either, h), ba), bb) -> new_ltEs9(vwx90, vwx100, h, ba) new_primCmpInt(Neg(Zero), Pos(Succ(vwx1000))) -> LT new_compare25(vwx90, vwx100, True, ec, ed, ee) -> EQ new_esEs12(vwx300, vwx400, app(ty_Ratio, bge)) -> new_esEs15(vwx300, vwx400, bge) new_ltEs19(vwx16, vwx17, ty_Char) -> new_ltEs14(vwx16, vwx17) new_primMulInt(Pos(vwx3010), Pos(vwx4000)) -> Pos(new_primMulNat0(vwx3010, vwx4000)) new_esEs29(vwx301, vwx401, ty_Bool) -> new_esEs16(vwx301, vwx401) new_esEs11(:(vwx300, vwx301), :(vwx400, vwx401), bfh) -> new_asAs(new_esEs12(vwx300, vwx400, bfh), new_esEs11(vwx301, vwx401, bfh)) new_compare31(vwx90, vwx100, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare15(vwx90, vwx100, bfc, bfd, bfe) new_ltEs9(Left(vwx90), Left(vwx100), app(app(ty_@2, bd), be), bb) -> new_ltEs12(vwx90, vwx100, bd, be) new_lt9(vwx90, vwx100, ty_Char) -> new_lt14(vwx90, vwx100) new_esEs24(vwx301, vwx401, app(ty_Maybe, cbg)) -> new_esEs6(vwx301, vwx401, cbg) new_esEs29(vwx301, vwx401, ty_Int) -> new_esEs10(vwx301, vwx401) new_esEs30(vwx302, vwx402, ty_@0) -> new_esEs17(vwx302, vwx402) new_ltEs9(Right(vwx90), Right(vwx100), cc, ty_Int) -> new_ltEs6(vwx90, vwx100) new_primMulNat0(Succ(vwx30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40000)) -> Zero new_primPlusNat0(Zero, vwx40000) -> Succ(vwx40000) new_esEs6(Just(vwx300), Just(vwx400), app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs5(vwx300, vwx400, cdf, cdg, cdh) new_esEs29(vwx301, vwx401, app(app(ty_Either, ddb), ddc)) -> new_esEs14(vwx301, vwx401, ddb, ddc) new_ltEs9(Left(vwx90), Left(vwx100), app(ty_Ratio, dff), bb) -> new_ltEs15(vwx90, vwx100, dff) new_esEs23(vwx300, vwx400, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs5(vwx300, vwx400, cba, cbb, cbc) new_esEs8(vwx30, vwx40, app(ty_Ratio, cee)) -> new_esEs15(vwx30, vwx40, cee) new_compare26(vwx90, vwx100, True, eg) -> EQ new_ltEs8(vwx92, vwx102, ty_Double) -> new_ltEs18(vwx92, vwx102) new_esEs14(Right(vwx300), Right(vwx400), cfc, ty_Bool) -> new_esEs16(vwx300, vwx400) new_ltEs5(True, False) -> False new_ltEs9(Right(vwx90), Right(vwx100), cc, ty_Double) -> new_ltEs18(vwx90, vwx100) new_esEs20(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_esEs7(vwx30, vwx40, ty_Char) -> new_esEs19(vwx30, vwx40) new_lt9(vwx90, vwx100, app(app(ty_@2, gg), gh)) -> new_lt13(vwx90, vwx100, gg, gh) new_esEs7(vwx30, vwx40, ty_Double) -> new_esEs18(vwx30, vwx40) new_ltEs20(vwx9, vwx10, app(app(ty_@2, eh), dh)) -> new_ltEs12(vwx9, vwx10, eh, dh) new_esEs12(vwx300, vwx400, app(ty_Maybe, bgd)) -> new_esEs6(vwx300, vwx400, bgd) new_esEs29(vwx301, vwx401, ty_Integer) -> new_esEs20(vwx301, vwx401) new_esEs7(vwx30, vwx40, ty_@0) -> new_esEs17(vwx30, vwx40) new_ltEs4(vwx9, vwx10) -> new_not(new_esEs9(new_compare7(vwx9, vwx10), GT)) new_esEs12(vwx300, vwx400, app(ty_[], bgc)) -> new_esEs11(vwx300, vwx400, bgc) new_esEs23(vwx300, vwx400, ty_Ordering) -> new_esEs9(vwx300, vwx400) new_compare1([], [], bca) -> EQ new_esEs22(vwx91, vwx101, app(ty_Ratio, bhf)) -> new_esEs15(vwx91, vwx101, bhf) new_ltEs13(GT, LT) -> False new_primPlusNat1(Succ(vwx4700), Zero) -> Succ(vwx4700) new_primPlusNat1(Zero, Succ(vwx400000)) -> Succ(vwx400000) new_esEs9(LT, LT) -> True new_ltEs20(vwx9, vwx10, app(ty_[], bca)) -> new_ltEs16(vwx9, vwx10, bca) new_ltEs17(Just(vwx90), Just(vwx100), app(ty_Maybe, bdb)) -> new_ltEs17(vwx90, vwx100, bdb) new_esEs7(vwx30, vwx40, ty_Float) -> new_esEs13(vwx30, vwx40) new_lt19(vwx90, vwx100) -> new_esEs9(new_compare14(vwx90, vwx100), LT) new_esEs12(vwx300, vwx400, app(app(ty_@2, bgf), bgg)) -> new_esEs4(vwx300, vwx400, bgf, bgg) new_ltEs19(vwx16, vwx17, ty_Float) -> new_ltEs4(vwx16, vwx17) new_lt11(vwx90, vwx100) -> new_esEs9(new_compare16(vwx90, vwx100), LT) new_ltEs20(vwx9, vwx10, app(app(ty_Either, cc), bb)) -> new_ltEs9(vwx9, vwx10, cc, bb) new_esEs8(vwx30, vwx40, ty_@0) -> new_esEs17(vwx30, vwx40) new_esEs8(vwx30, vwx40, ty_Char) -> new_esEs19(vwx30, vwx40) new_lt9(vwx90, vwx100, ty_Int) -> new_lt8(vwx90, vwx100) new_esEs23(vwx300, vwx400, app(ty_Ratio, caf)) -> new_esEs15(vwx300, vwx400, caf) new_esEs8(vwx30, vwx40, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs5(vwx30, vwx40, ceh, cfa, cfb) new_lt5(vwx90, vwx100) -> new_esEs9(new_compare8(vwx90, vwx100), LT) new_esEs14(Left(vwx300), Left(vwx400), ty_Double, cfd) -> new_esEs18(vwx300, vwx400) new_ltEs9(Left(vwx90), Left(vwx100), ty_Float, bb) -> new_ltEs4(vwx90, vwx100) new_esEs6(Just(vwx300), Just(vwx400), app(app(ty_@2, cdd), cde)) -> new_esEs4(vwx300, vwx400, cdd, cde) new_compare19(vwx90, vwx100, False, ea, eb) -> GT new_ltEs19(vwx16, vwx17, app(ty_[], bee)) -> new_ltEs16(vwx16, vwx17, bee) new_lt10(vwx91, vwx101, ty_@0) -> new_lt11(vwx91, vwx101) new_esEs14(Left(vwx300), Left(vwx400), ty_@0, cfd) -> new_esEs17(vwx300, vwx400) new_lt9(vwx90, vwx100, app(app(app(ty_@3, ha), hb), hc)) -> new_lt16(vwx90, vwx100, ha, hb, hc) new_esEs6(Just(vwx300), Just(vwx400), app(ty_Ratio, cdc)) -> new_esEs15(vwx300, vwx400, cdc) new_compare25(vwx90, vwx100, False, ec, ed, ee) -> new_compare111(vwx90, vwx100, new_ltEs7(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_esEs14(Left(vwx300), Left(vwx400), ty_Char, cfd) -> new_esEs19(vwx300, vwx400) new_primMulInt(Neg(vwx3010), Neg(vwx4000)) -> Pos(new_primMulNat0(vwx3010, vwx4000)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx1000))) -> new_primCmpNat0(Zero, Succ(vwx1000)) new_compare31(vwx90, vwx100, app(app(ty_Either, beg), beh)) -> new_compare12(vwx90, vwx100, beg, beh) new_ltEs16(vwx9, vwx10, bca) -> new_not(new_esEs9(new_compare1(vwx9, vwx10, bca), GT)) new_ltEs9(Right(vwx90), Right(vwx100), cc, app(app(ty_@2, cf), cg)) -> new_ltEs12(vwx90, vwx100, cf, cg) new_compare31(vwx90, vwx100, ty_Int) -> new_compare9(vwx90, vwx100) new_compare12(Right(vwx30), Right(vwx40), bdc, bdd) -> new_compare210(vwx30, vwx40, new_esEs8(vwx30, vwx40, bdd), bdc, bdd) new_esEs6(Just(vwx300), Just(vwx400), app(ty_Maybe, cdb)) -> new_esEs6(vwx300, vwx400, cdb) new_lt10(vwx91, vwx101, ty_Integer) -> new_lt12(vwx91, vwx101) new_ltEs13(GT, EQ) -> False new_esEs6(Nothing, Just(vwx400), ccf) -> False new_esEs6(Just(vwx300), Nothing, ccf) -> False new_esEs6(Nothing, Nothing, ccf) -> True new_esEs14(Left(vwx300), Right(vwx400), cfc, cfd) -> False new_esEs14(Right(vwx300), Left(vwx400), cfc, cfd) -> False new_ltEs21(vwx91, vwx101, app(ty_Maybe, gb)) -> new_ltEs17(vwx91, vwx101, gb) new_esEs7(vwx30, vwx40, ty_Int) -> new_esEs10(vwx30, vwx40) new_esEs8(vwx30, vwx40, ty_Double) -> new_esEs18(vwx30, vwx40) new_lt9(vwx90, vwx100, app(ty_[], hd)) -> new_lt17(vwx90, vwx100, hd) new_ltEs9(Left(vwx90), Left(vwx100), ty_Char, bb) -> new_ltEs14(vwx90, vwx100) new_esEs28(vwx300, vwx400, ty_Integer) -> new_esEs20(vwx300, vwx400) new_esEs21(vwx90, vwx100, ty_Double) -> new_esEs18(vwx90, vwx100) new_esEs24(vwx301, vwx401, ty_Ordering) -> new_esEs9(vwx301, vwx401) new_esEs23(vwx300, vwx400, app(app(ty_@2, cag), cah)) -> new_esEs4(vwx300, vwx400, cag, cah) new_esEs28(vwx300, vwx400, ty_Bool) -> new_esEs16(vwx300, vwx400) new_esEs27(vwx90, vwx100, ty_Ordering) -> new_esEs9(vwx90, vwx100) new_esEs7(vwx30, vwx40, ty_Bool) -> new_esEs16(vwx30, vwx40) new_esEs14(Left(vwx300), Left(vwx400), app(ty_Maybe, cgh), cfd) -> new_esEs6(vwx300, vwx400, cgh) new_ltEs17(Just(vwx90), Just(vwx100), ty_Int) -> new_ltEs6(vwx90, vwx100) new_esEs22(vwx91, vwx101, ty_Char) -> new_esEs19(vwx91, vwx101) new_primMulInt(Pos(vwx3010), Neg(vwx4000)) -> Neg(new_primMulNat0(vwx3010, vwx4000)) new_primMulInt(Neg(vwx3010), Pos(vwx4000)) -> Neg(new_primMulNat0(vwx3010, vwx4000)) new_esEs21(vwx90, vwx100, ty_@0) -> new_esEs17(vwx90, vwx100) new_esEs14(Left(vwx300), Left(vwx400), app(app(app(ty_@3, chd), che), chf), cfd) -> new_esEs5(vwx300, vwx400, chd, che, chf) new_esEs22(vwx91, vwx101, app(app(ty_@2, baa), bab)) -> new_esEs4(vwx91, vwx101, baa, bab) new_esEs22(vwx91, vwx101, ty_Double) -> new_esEs18(vwx91, vwx101) new_compare31(vwx90, vwx100, app(ty_Ratio, dba)) -> new_compare32(vwx90, vwx100, dba) new_lt20(vwx90, vwx100, app(ty_[], ef)) -> new_lt17(vwx90, vwx100, ef) new_ltEs9(Right(vwx90), Right(vwx100), cc, ty_@0) -> new_ltEs10(vwx90, vwx100) new_esEs22(vwx91, vwx101, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(vwx91, vwx101, bac, bad, bae) new_compare8(vwx90, vwx100) -> new_compare24(vwx90, vwx100, new_esEs16(vwx90, vwx100)) new_ltEs9(Right(vwx90), Right(vwx100), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs7(vwx90, vwx100, da, db, dc) new_compare111(vwx90, vwx100, False, ec, ed, ee) -> GT new_sr0(Integer(vwx1000), Integer(vwx910)) -> Integer(new_primMulInt(vwx1000, vwx910)) new_ltEs21(vwx91, vwx101, ty_Float) -> new_ltEs4(vwx91, vwx101) new_esEs12(vwx300, vwx400, ty_Ordering) -> new_esEs9(vwx300, vwx400) new_ltEs5(False, False) -> True new_esEs26(vwx301, vwx401, ty_Integer) -> new_esEs20(vwx301, vwx401) new_esEs14(Left(vwx300), Left(vwx400), ty_Ordering, cfd) -> new_esEs9(vwx300, vwx400) new_ltEs8(vwx92, vwx102, ty_Float) -> new_ltEs4(vwx92, vwx102) new_ltEs9(Right(vwx90), Left(vwx100), cc, bb) -> False new_compare14(Double(vwx90, Pos(vwx910)), Double(vwx100, Neg(vwx1010))) -> new_compare9(new_sr(vwx90, Pos(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_compare14(Double(vwx90, Neg(vwx910)), Double(vwx100, Pos(vwx1010))) -> new_compare9(new_sr(vwx90, Neg(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_lt9(vwx90, vwx100, ty_Double) -> new_lt19(vwx90, vwx100) new_esEs6(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs9(vwx300, vwx400) new_ltEs21(vwx91, vwx101, app(ty_[], ga)) -> new_ltEs16(vwx91, vwx101, ga) new_asAs(True, vwx38) -> vwx38 new_esEs12(vwx300, vwx400, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(vwx300, vwx400, bgh, bha, bhb) new_esEs21(vwx90, vwx100, app(ty_Maybe, he)) -> new_esEs6(vwx90, vwx100, he) new_compare18(vwx90, vwx100, True, eg) -> LT new_ltEs17(Just(vwx90), Just(vwx100), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs7(vwx90, vwx100, bcf, bcg, bch) new_esEs22(vwx91, vwx101, app(ty_[], baf)) -> new_esEs11(vwx91, vwx101, baf) new_esEs21(vwx90, vwx100, app(ty_Ratio, bhe)) -> new_esEs15(vwx90, vwx100, bhe) new_esEs13(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs10(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs21(vwx90, vwx100, app(app(ty_Either, gc), gd)) -> new_esEs14(vwx90, vwx100, gc, gd) new_ltEs21(vwx91, vwx101, ty_Ordering) -> new_ltEs13(vwx91, vwx101) new_ltEs20(vwx9, vwx10, ty_Char) -> new_ltEs14(vwx9, vwx10) new_esEs14(Left(vwx300), Left(vwx400), ty_Float, cfd) -> new_esEs13(vwx300, vwx400) new_esEs5(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), cff, cfg, cfh) -> new_asAs(new_esEs28(vwx300, vwx400, cff), new_asAs(new_esEs29(vwx301, vwx401, cfg), new_esEs30(vwx302, vwx402, cfh))) new_ltEs9(Right(vwx90), Right(vwx100), cc, ty_Bool) -> new_ltEs5(vwx90, vwx100) new_esEs21(vwx90, vwx100, ty_Int) -> new_esEs10(vwx90, vwx100) new_compare31(vwx90, vwx100, ty_@0) -> new_compare16(vwx90, vwx100) new_primCmpInt(Pos(Succ(vwx900)), Pos(vwx100)) -> new_primCmpNat0(Succ(vwx900), vwx100) new_compare110(vwx90, vwx100, False) -> GT new_esEs12(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs24(vwx301, vwx401, ty_Bool) -> new_esEs16(vwx301, vwx401) new_primCompAux00(vwx56, EQ) -> vwx56 new_esEs30(vwx302, vwx402, ty_Bool) -> new_esEs16(vwx302, vwx402) new_sr(vwx301, vwx400) -> new_primMulInt(vwx301, vwx400) new_esEs8(vwx30, vwx40, app(ty_Maybe, ced)) -> new_esEs6(vwx30, vwx40, ced) new_esEs27(vwx90, vwx100, ty_Char) -> new_esEs19(vwx90, vwx100) new_primMulNat0(Zero, Zero) -> Zero new_compare16(@0, @0) -> EQ new_ltEs9(Right(vwx90), Right(vwx100), cc, ty_Integer) -> new_ltEs11(vwx90, vwx100) new_compare10(vwx90, vwx100, False) -> GT new_compare31(vwx90, vwx100, app(ty_[], bff)) -> new_compare1(vwx90, vwx100, bff) new_ltEs8(vwx92, vwx102, ty_Bool) -> new_ltEs5(vwx92, vwx102) new_compare11(Integer(vwx90), Integer(vwx100)) -> new_primCmpInt(vwx90, vwx100) new_ltEs9(Left(vwx90), Left(vwx100), app(ty_Maybe, cb), bb) -> new_ltEs17(vwx90, vwx100, cb) new_compare211(vwx90, vwx100, True) -> EQ new_compare1(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux0(vwx90, vwx100, new_compare1(vwx91, vwx101, bca), bca) new_esEs27(vwx90, vwx100, ty_Float) -> new_esEs13(vwx90, vwx100) new_esEs14(Left(vwx300), Left(vwx400), app(ty_Ratio, cha), cfd) -> new_esEs15(vwx300, vwx400, cha) new_esEs6(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs18(vwx300, vwx400) new_ltEs17(Just(vwx90), Just(vwx100), ty_Double) -> new_ltEs18(vwx90, vwx100) new_esEs14(Left(vwx300), Left(vwx400), ty_Integer, cfd) -> new_esEs20(vwx300, vwx400) new_lt20(vwx90, vwx100, app(ty_Ratio, dbb)) -> new_lt15(vwx90, vwx100, dbb) new_lt10(vwx91, vwx101, ty_Int) -> new_lt8(vwx91, vwx101) new_compare30(vwx90, vwx100, ea, eb) -> new_compare27(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) new_ltEs13(EQ, LT) -> False new_esEs12(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_lt20(vwx90, vwx100, ty_Ordering) -> new_lt4(vwx90, vwx100) new_esEs22(vwx91, vwx101, ty_Ordering) -> new_esEs9(vwx91, vwx101) new_esEs14(Right(vwx300), Right(vwx400), cfc, app(app(ty_@2, dad), dae)) -> new_esEs4(vwx300, vwx400, dad, dae) new_ltEs9(Right(vwx90), Right(vwx100), cc, app(ty_Maybe, de)) -> new_ltEs17(vwx90, vwx100, de) new_lt10(vwx91, vwx101, ty_Ordering) -> new_lt4(vwx91, vwx101) new_esEs9(EQ, EQ) -> True new_lt10(vwx91, vwx101, app(ty_Ratio, bhf)) -> new_lt15(vwx91, vwx101, bhf) new_esEs27(vwx90, vwx100, app(ty_[], ef)) -> new_esEs11(vwx90, vwx100, ef) new_ltEs17(Just(vwx90), Just(vwx100), app(app(ty_Either, bcb), bcc)) -> new_ltEs9(vwx90, vwx100, bcb, bcc) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_lt6(vwx90, vwx100) -> new_esEs9(new_compare7(vwx90, vwx100), LT) new_esEs14(Right(vwx300), Right(vwx400), cfc, app(ty_Ratio, dac)) -> new_esEs15(vwx300, vwx400, dac) new_compare31(vwx90, vwx100, ty_Double) -> new_compare14(vwx90, vwx100) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs12(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_lt10(vwx91, vwx101, app(ty_[], baf)) -> new_lt17(vwx91, vwx101, baf) new_esEs22(vwx91, vwx101, ty_Int) -> new_esEs10(vwx91, vwx101) new_lt9(vwx90, vwx100, ty_@0) -> new_lt11(vwx90, vwx100) new_lt17(vwx90, vwx100, ef) -> new_esEs9(new_compare1(vwx90, vwx100, ef), LT) new_compare31(vwx90, vwx100, ty_Bool) -> new_compare8(vwx90, vwx100) new_compare24(vwx90, vwx100, True) -> EQ new_ltEs17(Just(vwx90), Just(vwx100), app(app(ty_@2, bcd), bce)) -> new_ltEs12(vwx90, vwx100, bcd, bce) new_ltEs19(vwx16, vwx17, ty_Ordering) -> new_ltEs13(vwx16, vwx17) new_esEs16(True, True) -> True new_esEs23(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_esEs14(Right(vwx300), Right(vwx400), cfc, app(ty_Maybe, dab)) -> new_esEs6(vwx300, vwx400, dab) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_lt9(vwx90, vwx100, ty_Integer) -> new_lt12(vwx90, vwx100) new_primCmpInt(Neg(Zero), Neg(Succ(vwx1000))) -> new_primCmpNat0(Succ(vwx1000), Zero) new_esEs22(vwx91, vwx101, ty_Float) -> new_esEs13(vwx91, vwx101) new_ltEs8(vwx92, vwx102, app(ty_Ratio, bhg)) -> new_ltEs15(vwx92, vwx102, bhg) new_ltEs8(vwx92, vwx102, app(ty_[], bbg)) -> new_ltEs16(vwx92, vwx102, bbg) new_esEs6(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs19(vwx300, vwx400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(vwx90, vwx100, app(ty_[], hd)) -> new_esEs11(vwx90, vwx100, hd) new_esEs6(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs20(vwx300, vwx400) new_ltEs19(vwx16, vwx17, ty_Bool) -> new_ltEs5(vwx16, vwx17) new_ltEs20(vwx9, vwx10, ty_Ordering) -> new_ltEs13(vwx9, vwx10) new_lt9(vwx90, vwx100, app(app(ty_Either, gc), gd)) -> new_lt7(vwx90, vwx100, gc, gd) new_esEs30(vwx302, vwx402, app(ty_Maybe, deg)) -> new_esEs6(vwx302, vwx402, deg) new_compare13(vwx30, vwx31, True, bhc, bhd) -> LT new_esEs14(Right(vwx300), Right(vwx400), cfc, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs5(vwx300, vwx400, daf, dag, dah) new_esEs25(vwx300, vwx400, ty_Integer) -> new_esEs20(vwx300, vwx400) new_esEs14(Right(vwx300), Right(vwx400), cfc, ty_Int) -> new_esEs10(vwx300, vwx400) new_esEs23(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_compare112(vwx23, vwx24, False, dbc, dbd) -> GT new_esEs14(Right(vwx300), Right(vwx400), cfc, ty_@0) -> new_esEs17(vwx300, vwx400) new_esEs8(vwx30, vwx40, ty_Bool) -> new_esEs16(vwx30, vwx40) new_ltEs17(Just(vwx90), Just(vwx100), ty_Char) -> new_ltEs14(vwx90, vwx100) new_esEs14(Right(vwx300), Right(vwx400), cfc, app(ty_[], daa)) -> new_esEs11(vwx300, vwx400, daa) new_lt20(vwx90, vwx100, app(app(app(ty_@3, ec), ed), ee)) -> new_lt16(vwx90, vwx100, ec, ed, ee) new_not(False) -> True new_ltEs9(Left(vwx90), Left(vwx100), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs7(vwx90, vwx100, bf, bg, bh) new_esEs6(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs13(vwx300, vwx400) new_ltEs14(vwx9, vwx10) -> new_not(new_esEs9(new_compare28(vwx9, vwx10), GT)) new_ltEs17(Just(vwx90), Just(vwx100), app(ty_Ratio, cgd)) -> new_ltEs15(vwx90, vwx100, cgd) new_compare1([], :(vwx100, vwx101), bca) -> LT new_ltEs9(Right(vwx90), Right(vwx100), cc, ty_Ordering) -> new_ltEs13(vwx90, vwx100) new_lt9(vwx90, vwx100, app(ty_Ratio, bhe)) -> new_lt15(vwx90, vwx100, bhe) new_esEs9(GT, GT) -> True new_ltEs18(vwx9, vwx10) -> new_not(new_esEs9(new_compare14(vwx9, vwx10), GT)) new_ltEs13(LT, LT) -> True new_ltEs17(Just(vwx90), Just(vwx100), ty_@0) -> new_ltEs10(vwx90, vwx100) new_compare28(Char(vwx90), Char(vwx100)) -> new_primCmpNat0(vwx90, vwx100) new_esEs27(vwx90, vwx100, app(ty_Ratio, dbb)) -> new_esEs15(vwx90, vwx100, dbb) new_esEs6(Just(vwx300), Just(vwx400), app(app(ty_Either, ccg), cch)) -> new_esEs14(vwx300, vwx400, ccg, cch) new_compare31(vwx90, vwx100, ty_Float) -> new_compare7(vwx90, vwx100) new_esEs28(vwx300, vwx400, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs5(vwx300, vwx400, dcg, dch, dda) new_ltEs8(vwx92, vwx102, ty_Char) -> new_ltEs14(vwx92, vwx102) new_esEs29(vwx301, vwx401, app(ty_Ratio, ddf)) -> new_esEs15(vwx301, vwx401, ddf) new_esEs14(Left(vwx300), Left(vwx400), ty_Bool, cfd) -> new_esEs16(vwx300, vwx400) new_compare27(vwx90, vwx100, True, ea, eb) -> EQ new_ltEs17(Just(vwx90), Just(vwx100), ty_Bool) -> new_ltEs5(vwx90, vwx100) new_esEs12(vwx300, vwx400, ty_Bool) -> new_esEs16(vwx300, vwx400) new_esEs24(vwx301, vwx401, ty_@0) -> new_esEs17(vwx301, vwx401) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_esEs8(vwx30, vwx40, ty_Integer) -> new_esEs20(vwx30, vwx40) new_lt16(vwx90, vwx100, ec, ed, ee) -> new_esEs9(new_compare15(vwx90, vwx100, ec, ed, ee), LT) new_primPlusNat0(Succ(vwx470), vwx40000) -> Succ(Succ(new_primPlusNat1(vwx470, vwx40000))) new_esEs14(Right(vwx300), Right(vwx400), cfc, app(app(ty_Either, chg), chh)) -> new_esEs14(vwx300, vwx400, chg, chh) new_lt20(vwx90, vwx100, ty_Int) -> new_lt8(vwx90, vwx100) new_esEs4(@2(vwx300, vwx301), @2(vwx400, vwx401), bhh, caa) -> new_asAs(new_esEs23(vwx300, vwx400, bhh), new_esEs24(vwx301, vwx401, caa)) new_esEs12(vwx300, vwx400, ty_Int) -> new_esEs10(vwx300, vwx400) new_lt15(vwx90, vwx100, dbb) -> new_esEs9(new_compare32(vwx90, vwx100, dbb), LT) new_ltEs21(vwx91, vwx101, app(ty_Ratio, dbg)) -> new_ltEs15(vwx91, vwx101, dbg) new_lt10(vwx91, vwx101, ty_Double) -> new_lt19(vwx91, vwx101) new_ltEs9(Right(vwx90), Right(vwx100), cc, app(ty_Ratio, dfg)) -> new_ltEs15(vwx90, vwx100, dfg) new_esEs24(vwx301, vwx401, ty_Int) -> new_esEs10(vwx301, vwx401) new_esEs29(vwx301, vwx401, app(ty_Maybe, dde)) -> new_esEs6(vwx301, vwx401, dde) new_esEs10(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_compare10(vwx90, vwx100, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare31(vwx90, vwx100, app(app(ty_@2, bfa), bfb)) -> new_compare30(vwx90, vwx100, bfa, bfb) new_compare13(vwx30, vwx31, False, bhc, bhd) -> GT new_esEs27(vwx90, vwx100, ty_@0) -> new_esEs17(vwx90, vwx100) new_esEs21(vwx90, vwx100, ty_Integer) -> new_esEs20(vwx90, vwx100) new_primPlusNat1(Zero, Zero) -> Zero new_esEs28(vwx300, vwx400, ty_Double) -> new_esEs18(vwx300, vwx400) new_ltEs5(True, True) -> True new_compare15(vwx90, vwx100, ec, ed, ee) -> new_compare25(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_esEs8(vwx30, vwx40, app(app(ty_Either, cea), ceb)) -> new_esEs14(vwx30, vwx40, cea, ceb) new_compare32(:%(vwx90, vwx91), :%(vwx100, vwx101), ty_Integer) -> new_compare11(new_sr0(vwx90, vwx101), new_sr0(vwx100, vwx91)) new_compare29(vwx9, vwx10, False, dbe, bc) -> new_compare112(vwx9, vwx10, new_ltEs20(vwx9, vwx10, dbe), dbe, bc) new_compare7(Float(vwx90, Pos(vwx910)), Float(vwx100, Pos(vwx1010))) -> new_compare9(new_sr(vwx90, Pos(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_ltEs21(vwx91, vwx101, ty_@0) -> new_ltEs10(vwx91, vwx101) new_esEs7(vwx30, vwx40, ty_Ordering) -> new_esEs9(vwx30, vwx40) new_esEs12(vwx300, vwx400, app(app(ty_Either, bga), bgb)) -> new_esEs14(vwx300, vwx400, bga, bgb) new_esEs27(vwx90, vwx100, app(app(ty_@2, ea), eb)) -> new_esEs4(vwx90, vwx100, ea, eb) new_ltEs7(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, gf) -> new_pePe(new_lt9(vwx90, vwx100, hf), new_asAs(new_esEs21(vwx90, vwx100, hf), new_pePe(new_lt10(vwx91, vwx101, ge), new_asAs(new_esEs22(vwx91, vwx101, ge), new_ltEs8(vwx92, vwx102, gf))))) new_esEs28(vwx300, vwx400, ty_Ordering) -> new_esEs9(vwx300, vwx400) new_compare14(Double(vwx90, Neg(vwx910)), Double(vwx100, Neg(vwx1010))) -> new_compare9(new_sr(vwx90, Neg(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_compare17(vwx90, vwx100, eg) -> new_compare26(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) new_esEs29(vwx301, vwx401, app(ty_[], ddd)) -> new_esEs11(vwx301, vwx401, ddd) new_ltEs12(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, dh) -> new_pePe(new_lt20(vwx90, vwx100, eh), new_asAs(new_esEs27(vwx90, vwx100, eh), new_ltEs21(vwx91, vwx101, dh))) new_esEs25(vwx300, vwx400, ty_Int) -> new_esEs10(vwx300, vwx400) new_esEs22(vwx91, vwx101, ty_Bool) -> new_esEs16(vwx91, vwx101) new_esEs28(vwx300, vwx400, app(ty_Maybe, dcc)) -> new_esEs6(vwx300, vwx400, dcc) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs11(vwx9, vwx10) -> new_not(new_esEs9(new_compare11(vwx9, vwx10), GT)) new_primMulNat0(Succ(vwx30100), Succ(vwx40000)) -> new_primPlusNat0(new_primMulNat0(vwx30100, Succ(vwx40000)), vwx40000) new_esEs28(vwx300, vwx400, app(app(ty_@2, dce), dcf)) -> new_esEs4(vwx300, vwx400, dce, dcf) new_esEs23(vwx300, vwx400, app(app(ty_Either, cab), cac)) -> new_esEs14(vwx300, vwx400, cab, cac) new_ltEs21(vwx91, vwx101, ty_Integer) -> new_ltEs11(vwx91, vwx101) new_compare29(vwx9, vwx10, True, dbe, bc) -> EQ new_primCmpNat0(Succ(vwx900), Succ(vwx1000)) -> new_primCmpNat0(vwx900, vwx1000) new_ltEs19(vwx16, vwx17, app(ty_Ratio, cgb)) -> new_ltEs15(vwx16, vwx17, cgb) new_ltEs13(LT, EQ) -> True new_esEs12(vwx300, vwx400, ty_Integer) -> new_esEs20(vwx300, vwx400) new_esEs16(False, False) -> True new_compare26(vwx90, vwx100, False, eg) -> new_compare18(vwx90, vwx100, new_ltEs17(vwx90, vwx100, eg), eg) new_compare12(Left(vwx30), Left(vwx40), bdc, bdd) -> new_compare29(vwx30, vwx40, new_esEs7(vwx30, vwx40, bdc), bdc, bdd) new_esEs23(vwx300, vwx400, ty_Bool) -> new_esEs16(vwx300, vwx400) new_compare7(Float(vwx90, Neg(vwx910)), Float(vwx100, Neg(vwx1010))) -> new_compare9(new_sr(vwx90, Neg(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_lt20(vwx90, vwx100, app(ty_Maybe, eg)) -> new_lt18(vwx90, vwx100, eg) new_esEs26(vwx301, vwx401, ty_Int) -> new_esEs10(vwx301, vwx401) new_esEs27(vwx90, vwx100, app(ty_Maybe, eg)) -> new_esEs6(vwx90, vwx100, eg) new_esEs27(vwx90, vwx100, ty_Double) -> new_esEs18(vwx90, vwx100) new_lt14(vwx90, vwx100) -> new_esEs9(new_compare28(vwx90, vwx100), LT) new_lt20(vwx90, vwx100, ty_Bool) -> new_lt5(vwx90, vwx100) new_ltEs9(Left(vwx90), Left(vwx100), ty_Int, bb) -> new_ltEs6(vwx90, vwx100) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vwx91, vwx101, ty_Bool) -> new_ltEs5(vwx91, vwx101) new_ltEs17(Just(vwx90), Just(vwx100), ty_Ordering) -> new_ltEs13(vwx90, vwx100) new_esEs29(vwx301, vwx401, app(app(ty_@2, ddg), ddh)) -> new_esEs4(vwx301, vwx401, ddg, ddh) new_ltEs20(vwx9, vwx10, app(ty_Ratio, dbf)) -> new_ltEs15(vwx9, vwx10, dbf) new_compare12(Left(vwx30), Right(vwx40), bdc, bdd) -> LT new_primEqNat0(Zero, Zero) -> True new_ltEs8(vwx92, vwx102, ty_@0) -> new_ltEs10(vwx92, vwx102) new_esEs23(vwx300, vwx400, ty_Integer) -> new_esEs20(vwx300, vwx400) new_esEs11([], [], bfh) -> True new_ltEs17(Just(vwx90), Just(vwx100), ty_Integer) -> new_ltEs11(vwx90, vwx100) new_esEs22(vwx91, vwx101, ty_Integer) -> new_esEs20(vwx91, vwx101) new_ltEs9(Left(vwx90), Left(vwx100), ty_Double, bb) -> new_ltEs18(vwx90, vwx100) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_esEs6(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs16(vwx300, vwx400) new_esEs30(vwx302, vwx402, app(ty_[], def)) -> new_esEs11(vwx302, vwx402, def) new_ltEs9(Right(vwx90), Right(vwx100), cc, ty_Char) -> new_ltEs14(vwx90, vwx100) new_lt9(vwx90, vwx100, ty_Float) -> new_lt6(vwx90, vwx100) new_asAs(False, vwx38) -> False new_ltEs20(vwx9, vwx10, ty_Bool) -> new_ltEs5(vwx9, vwx10) new_esEs29(vwx301, vwx401, ty_Ordering) -> new_esEs9(vwx301, vwx401) new_esEs28(vwx300, vwx400, app(ty_Ratio, dcd)) -> new_esEs15(vwx300, vwx400, dcd) new_ltEs8(vwx92, vwx102, ty_Ordering) -> new_ltEs13(vwx92, vwx102) new_esEs14(Right(vwx300), Right(vwx400), cfc, ty_Double) -> new_esEs18(vwx300, vwx400) new_esEs30(vwx302, vwx402, ty_Ordering) -> new_esEs9(vwx302, vwx402) new_compare14(Double(vwx90, Pos(vwx910)), Double(vwx100, Pos(vwx1010))) -> new_compare9(new_sr(vwx90, Pos(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_esEs22(vwx91, vwx101, app(app(ty_Either, hg), hh)) -> new_esEs14(vwx91, vwx101, hg, hh) new_ltEs9(Right(vwx90), Right(vwx100), cc, ty_Float) -> new_ltEs4(vwx90, vwx100) new_ltEs8(vwx92, vwx102, ty_Integer) -> new_ltEs11(vwx92, vwx102) new_esEs15(:%(vwx300, vwx301), :%(vwx400, vwx401), cfe) -> new_asAs(new_esEs25(vwx300, vwx400, cfe), new_esEs26(vwx301, vwx401, cfe)) new_esEs18(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs10(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_esEs27(vwx90, vwx100, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs5(vwx90, vwx100, ec, ed, ee) The set Q consists of the following terms: new_primMulNat0(Succ(x0), Zero) new_ltEs17(Just(x0), Just(x1), ty_Integer) new_lt10(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, ty_Double) new_ltEs9(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs9(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare31(x0, x1, ty_Float) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primPlusNat1(Zero, Zero) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, True) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs27(x0, x1, ty_Float) new_esEs20(Integer(x0), Integer(x1)) new_ltEs17(Just(x0), Just(x1), ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs5(False, True) new_ltEs5(True, False) new_ltEs13(EQ, EQ) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs8(x0, x1, ty_Float) new_asAs(False, x0) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs14(Left(x0), Left(x1), ty_Bool, x2) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs24(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Double) new_compare111(x0, x1, False, x2, x3, x4) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_lt19(x0, x1) new_ltEs9(Right(x0), Right(x1), x2, ty_Float) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1, ty_Double) new_esEs10(x0, x1) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(x0, x1) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Float) new_esEs9(LT, LT) new_compare10(x0, x1, False) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs14(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Zero, x0) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_compare211(x0, x1, True) new_ltEs17(Just(x0), Just(x1), ty_@0) new_ltEs19(x0, x1, ty_Char) new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs12(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_@0) new_compare15(x0, x1, x2, x3, x4) new_primMulNat0(Zero, Succ(x0)) new_compare26(x0, x1, True, x2) new_esEs25(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs29(x0, x1, ty_@0) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare112(x0, x1, True, x2, x3) new_esEs16(True, True) new_ltEs17(Just(x0), Just(x1), ty_Float) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_lt10(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(LT, GT) new_ltEs13(GT, LT) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Left(x0), Left(x1), ty_Float, x2) new_compare30(x0, x1, x2, x3) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare1(:(x0, x1), [], x2) new_esEs26(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Float) new_lt10(x0, x1, ty_Bool) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs22(x0, x1, ty_Float) new_esEs17(@0, @0) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs30(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, EQ) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(x0, x1) new_compare29(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_compare210(x0, x1, False, x2, x3) new_esEs6(Nothing, Just(x0), x1) new_compare13(x0, x1, False, x2, x3) new_ltEs21(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Int) new_pePe(True, x0) new_ltEs8(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs14(Left(x0), Right(x1), x2, x3) new_esEs14(Right(x0), Left(x1), x2, x3) new_lt17(x0, x1, x2) new_compare18(x0, x1, True, x2) new_compare28(Char(x0), Char(x1)) new_ltEs14(x0, x1) new_ltEs9(Right(x0), Right(x1), x2, ty_Integer) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Integer) new_ltEs17(Just(x0), Just(x1), ty_Double) new_ltEs9(Left(x0), Right(x1), x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs9(Right(x0), Left(x1), x2, x3) new_esEs28(x0, x1, ty_Bool) new_lt10(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs28(x0, x1, ty_Char) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare32(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare31(x0, x1, app(ty_[], x2)) new_sr(x0, x1) new_lt8(x0, x1) new_ltEs9(Left(x0), Left(x1), ty_Float, x2) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Bool) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs8(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Double) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, x2) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(False, False) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Nothing, Nothing, x0) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt9(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(True, True) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs8(x0, x1, ty_Char) new_lt10(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Bool) new_esEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs14(Right(x0), Right(x1), x2, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs23(x0, x1, ty_Char) new_ltEs8(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, ty_@0) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs14(Right(x0), Right(x1), x2, ty_Double) new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs6(Just(x0), Just(x1), ty_Double) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_[], x2)) new_asAs(True, x0) new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) new_esEs21(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs12(x0, x1, ty_Double) new_lt10(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Succ(x1)) new_lt14(x0, x1) new_esEs28(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Zero) new_ltEs21(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Char) new_ltEs9(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(EQ, EQ) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Int) new_lt20(x0, x1, ty_Ordering) new_compare29(x0, x1, True, x2, x3) new_compare24(x0, x1, True) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Zero, Zero) new_lt9(x0, x1, ty_Integer) new_esEs11([], [], x0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare1([], [], x0) new_esEs21(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_primPlusNat1(Zero, Succ(x0)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Right(x0), Right(x1), x2, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Int) new_compare31(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare16(@0, @0) new_esEs6(Just(x0), Nothing, x1) new_esEs8(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(Right(x0), Right(x1), x2, ty_Int) new_esEs12(x0, x1, app(ty_[], x2)) new_ltEs9(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare210(x0, x1, True, x2, x3) new_compare19(x0, x1, True, x2, x3) new_ltEs19(x0, x1, ty_Float) new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs9(Left(x0), Left(x1), ty_Int, x2) new_compare112(x0, x1, False, x2, x3) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs20(x0, x1, ty_@0) new_lt7(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_Ordering) new_ltEs9(Left(x0), Left(x1), ty_Char, x2) new_ltEs21(x0, x1, ty_@0) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_compare25(x0, x1, False, x2, x3, x4) new_compare8(x0, x1) new_ltEs8(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Int) new_ltEs9(Left(x0), Left(x1), ty_Bool, x2) new_esEs24(x0, x1, ty_Double) new_not(True) new_compare10(x0, x1, True) new_esEs30(x0, x1, ty_Ordering) new_compare1([], :(x0, x1), x2) new_ltEs19(x0, x1, ty_Integer) new_lt9(x0, x1, ty_@0) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, True, x2, x3, x4) new_ltEs9(Right(x0), Right(x1), x2, ty_Ordering) new_lt9(x0, x1, ty_Float) new_ltEs13(EQ, GT) new_esEs14(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs13(GT, EQ) new_esEs11(:(x0, x1), [], x2) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_lt12(x0, x1) new_esEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs12(x0, x1, ty_Integer) new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs21(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Integer) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs9(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare211(x0, x1, False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Char) new_esEs14(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Nothing, Just(x0), x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Integer) new_ltEs5(False, False) new_compare6(x0, x1) new_esEs27(x0, x1, ty_Ordering) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs13(LT, LT) new_ltEs9(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs9(GT, GT) new_lt20(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_Integer) new_compare11(Integer(x0), Integer(x1)) new_lt10(x0, x1, ty_Integer) new_ltEs8(x0, x1, ty_Ordering) new_esEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs24(x0, x1, ty_Bool) new_esEs22(x0, x1, ty_@0) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare31(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Ordering) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Float) new_compare31(x0, x1, ty_Char) new_ltEs8(x0, x1, app(ty_[], x2)) new_esEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt20(x0, x1, ty_Int) new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_@0) new_compare12(Right(x0), Right(x1), x2, x3) new_ltEs11(x0, x1) new_esEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs17(Just(x0), Just(x1), ty_Int) new_lt10(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Double) new_ltEs16(x0, x1, x2) new_esEs8(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_lt16(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_lt13(x0, x1, x2, x3) new_compare24(x0, x1, False) new_esEs7(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_esEs14(Left(x0), Left(x1), ty_Char, x2) new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare31(x0, x1, ty_Bool) new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_ltEs13(GT, GT) new_lt20(x0, x1, ty_Integer) new_esEs6(Nothing, Nothing, x0) new_compare31(x0, x1, ty_@0) new_esEs14(Left(x0), Left(x1), ty_Int, x2) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs11([], :(x0, x1), x2) new_ltEs17(Just(x0), Just(x1), ty_Ordering) new_esEs23(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt4(x0, x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs8(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare31(x0, x1, ty_Integer) new_lt9(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, GT) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_esEs30(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Integer) new_ltEs17(Just(x0), Just(x1), ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs8(x0, x1, ty_@0) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs9(Left(x0), Left(x1), ty_Double, x2) new_ltEs9(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_ltEs9(Right(x0), Right(x1), x2, ty_Double) new_ltEs15(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_not(False) new_primPlusNat0(Succ(x0), x1) new_esEs30(x0, x1, ty_Double) new_ltEs9(Right(x0), Right(x1), x2, ty_@0) new_compare26(x0, x1, False, x2) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Ordering) new_esEs12(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), ty_Bool) new_ltEs9(Left(x0), Left(x1), ty_@0, x2) new_esEs21(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, ty_Bool) new_ltEs18(x0, x1) new_esEs12(x0, x1, ty_Float) new_esEs14(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_@0) new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Ordering) new_compare12(Left(x0), Left(x1), x2, x3) new_ltEs17(Just(x0), Nothing, x1) new_lt15(x0, x1, x2) new_esEs16(False, True) new_esEs16(True, False) new_esEs14(Right(x0), Right(x1), x2, ty_Float) new_compare13(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_esEs12(x0, x1, ty_Char) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs19(Char(x0), Char(x1)) new_compare12(Right(x0), Left(x1), x2, x3) new_compare12(Left(x0), Right(x1), x2, x3) new_ltEs8(x0, x1, ty_@0) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, True, x2, x3, x4) new_esEs11(:(x0, x1), :(x2, x3), x4) new_compare110(x0, x1, False) new_primCmpNat0(Zero, Succ(x0)) new_compare19(x0, x1, False, x2, x3) new_esEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs29(x0, x1, ty_Ordering) new_esEs14(Right(x0), Right(x1), x2, ty_Char) new_lt5(x0, x1) new_compare27(x0, x1, False, x2, x3) new_ltEs9(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs12(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, app(ty_[], x2)) new_lt11(x0, x1) new_esEs22(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Zero) new_pePe(False, x0) new_compare18(x0, x1, False, x2) new_esEs14(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) 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_ltEs3(Just(vwx90), Just(vwx100), app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx90, vwx100, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare(Right(vwx30), Right(vwx40), bdc, bdd) -> new_compare23(vwx30, vwx40, new_esEs8(vwx30, vwx40, bdd), bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare0(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_compare0(vwx91, vwx101, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(ty_Either, bah), bba)) -> new_ltEs(vwx92, vwx102, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare(Left(vwx30), Left(vwx40), bdc, bdd) -> new_compare2(vwx30, vwx40, new_esEs7(vwx30, vwx40, bdc), bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vwx90), Just(vwx100), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx90, vwx100, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs1(vwx92, vwx102, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt0(vwx90, vwx100, ea, eb) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vwx90), Just(vwx100), app(app(ty_@2, bcd), bce)) -> new_ltEs0(vwx90, vwx100, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(ty_@2, bbb), bbc)) -> new_ltEs0(vwx92, vwx102, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(ty_Either, fa), fb)) -> new_ltEs(vwx91, vwx101, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs1(vwx91, vwx101, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(ty_@2, fc), fd)) -> new_ltEs0(vwx91, vwx101, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare2(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], bca), bc) -> new_primCompAux(vwx90, vwx100, new_compare1(vwx91, vwx101, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs2(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_compare0(vwx91, vwx101, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare22(vwx90, vwx100, False, eg) -> new_ltEs3(vwx90, vwx100, eg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_lt(vwx90, vwx100, df, dg) -> new_compare(vwx90, vwx100, df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt1(vwx90, vwx100, ec, ed, ee) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs3(Just(vwx90), Just(vwx100), app(ty_Maybe, bdb)) -> new_ltEs3(vwx90, vwx100, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vwx90), Just(vwx100), app(ty_[], bda)) -> new_ltEs2(vwx90, vwx100, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(ty_Maybe, bbh)) -> new_ltEs3(vwx92, vwx102, bbh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(ty_Maybe, gb)) -> new_ltEs3(vwx91, vwx101, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_lt2(vwx90, vwx100, ef) -> new_compare0(vwx90, vwx100, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare23(vwx16, vwx17, False, bde, app(app(ty_Either, bdf), bdg)) -> new_ltEs(vwx16, vwx17, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_Either, df), dg), dh) -> new_compare(vwx90, vwx100, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(vwx16, vwx17, False, bde, app(ty_Maybe, bef)) -> new_ltEs3(vwx16, vwx17, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_Either, df), dg)), dh), bc) -> new_compare(vwx90, vwx100, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_primCompAux(vwx90, vwx100, vwx46, app(app(ty_Either, beg), beh)) -> new_compare(vwx90, vwx100, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare20(vwx90, vwx100, False, ea, eb) -> new_ltEs0(vwx90, vwx100, ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare23(vwx16, vwx17, False, bde, app(app(ty_@2, bdh), bea)) -> new_ltEs0(vwx16, vwx17, bdh, bea) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_lt3(vwx90, vwx100, eg) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare21(vwx90, vwx100, False, ec, ed, ee) -> new_ltEs1(vwx90, vwx100, ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_compare23(vwx16, vwx17, False, bde, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs1(vwx16, vwx17, beb, bec, bed) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare3(vwx90, vwx100, ea, eb) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(vwx90, vwx100, vwx46, app(ty_Maybe, bfg)) -> new_compare5(vwx90, vwx100, bfg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_[], ef), dh) -> new_compare0(vwx90, vwx100, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vwx90, vwx100, vwx46, app(ty_[], bff)) -> new_compare0(vwx90, vwx100, bff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_@2, ea), eb), dh) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_@2, ea), eb)), dh), bc) -> new_compare20(vwx90, vwx100, new_esEs4(vwx90, vwx100, ea, eb), ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(vwx90, vwx100, vwx46, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare4(vwx90, vwx100, bfc, bfd, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(vwx16, vwx17, False, bde, app(ty_[], bee)) -> new_ltEs2(vwx16, vwx17, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare5(vwx90, vwx100, eg) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare4(vwx90, vwx100, ec, ed, ee) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_primCompAux(vwx90, vwx100, vwx46, app(app(ty_@2, bfa), bfb)) -> new_compare3(vwx90, vwx100, bfa, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(app(ty_@3, ec), ed), ee), dh) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(app(ty_@3, ec), ed), ee)), dh), bc) -> new_compare21(vwx90, vwx100, new_esEs5(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(ty_[], bbg)) -> new_ltEs2(vwx92, vwx102, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(ty_[], ga)) -> new_ltEs2(vwx91, vwx101, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_Maybe, eg), dh) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_Maybe, eg)), dh), bc) -> new_compare22(vwx90, vwx100, new_esEs6(vwx90, vwx100, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs(Left(vwx90), Left(vwx100), app(app(ty_Either, h), ba), bb) -> new_ltEs(vwx90, vwx100, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs(vwx90, vwx100, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(ty_Either, fa), fb)), bc) -> new_ltEs(vwx91, vwx101, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(ty_Either, cd), ce)), bc) -> new_ltEs(vwx90, vwx100, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_Either, bcb), bcc)), bc) -> new_ltEs(vwx90, vwx100, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bc) -> new_ltEs(vwx90, vwx100, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(ty_Either, bah), bba)), bc) -> new_ltEs(vwx92, vwx102, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_Maybe, he), ge, gf) -> new_lt3(vwx90, vwx100, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(ty_Maybe, bag), gf) -> new_lt3(vwx91, vwx101, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(app(ty_@3, bac), bad), bae), gf) -> new_lt1(vwx91, vwx101, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(app(ty_@3, ha), hb), hc), ge, gf) -> new_lt1(vwx90, vwx100, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(ty_[], baf), gf) -> new_lt2(vwx91, vwx101, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_[], hd), ge, gf) -> new_lt2(vwx90, vwx100, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(ty_@2, baa), bab), gf) -> new_lt0(vwx91, vwx101, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_@2, gg), gh), ge, gf) -> new_lt0(vwx90, vwx100, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_Either, gc), gd), ge, gf) -> new_lt(vwx90, vwx100, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(ty_Either, hg), hh), gf) -> new_lt(vwx91, vwx101, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vwx90), Left(vwx100), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs1(vwx90, vwx100, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(vwx90, vwx100, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(app(ty_@3, bbd), bbe), bbf)), bc) -> new_ltEs1(vwx92, vwx102, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(app(ty_@3, ff), fg), fh)), bc) -> new_ltEs1(vwx91, vwx101, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch)), bc) -> new_ltEs1(vwx90, vwx100, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(app(ty_@3, da), db), dc)), bc) -> new_ltEs1(vwx90, vwx100, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bb), bc) -> new_ltEs1(vwx90, vwx100, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Left(vwx90), Left(vwx100), app(app(ty_@2, bd), be), bb) -> new_ltEs0(vwx90, vwx100, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(ty_@2, cf), cg)) -> new_ltEs0(vwx90, vwx100, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_@2, bd), be)), bb), bc) -> new_ltEs0(vwx90, vwx100, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(ty_@2, fc), fd)), bc) -> new_ltEs0(vwx91, vwx101, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(ty_@2, bbb), bbc)), bc) -> new_ltEs0(vwx92, vwx102, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_@2, bcd), bce)), bc) -> new_ltEs0(vwx90, vwx100, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(ty_@2, cf), cg)), bc) -> new_ltEs0(vwx90, vwx100, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_Maybe, he)), ge), gf), bc) -> new_lt3(vwx90, vwx100, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(ty_Maybe, bag)), gf), bc) -> new_lt3(vwx91, vwx101, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(ty_Maybe, de)) -> new_ltEs3(vwx90, vwx100, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx90), Left(vwx100), app(ty_Maybe, cb), bb) -> new_ltEs3(vwx90, vwx100, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Left(vwx90), Left(vwx100), app(ty_[], ca), bb) -> new_ltEs2(vwx90, vwx100, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(ty_[], dd)) -> new_ltEs2(vwx90, vwx100, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_Maybe, cb)), bb), bc) -> new_ltEs3(vwx90, vwx100, cb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(ty_Maybe, de)), bc) -> new_ltEs3(vwx90, vwx100, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(ty_Maybe, bbh)), bc) -> new_ltEs3(vwx92, vwx102, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(ty_Maybe, gb)), bc) -> new_ltEs3(vwx91, vwx101, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_Maybe, bdb)), bc) -> new_ltEs3(vwx90, vwx100, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(app(ty_@3, bac), bad), bae)), gf), bc) -> new_lt1(vwx91, vwx101, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(app(ty_@3, ha), hb), hc)), ge), gf), bc) -> new_lt1(vwx90, vwx100, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_[], hd)), ge), gf), bc) -> new_lt2(vwx90, vwx100, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(ty_[], baf)), gf), bc) -> new_lt2(vwx91, vwx101, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_[], ef)), dh), bc) -> new_compare0(vwx90, vwx100, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], bca), bc) -> new_compare0(vwx91, vwx101, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(ty_@2, baa), bab)), gf), bc) -> new_lt0(vwx91, vwx101, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_@2, gg), gh)), ge), gf), bc) -> new_lt0(vwx90, vwx100, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_[], bda)), bc) -> new_ltEs2(vwx90, vwx100, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_[], ca)), bb), bc) -> new_ltEs2(vwx90, vwx100, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(ty_[], dd)), bc) -> new_ltEs2(vwx90, vwx100, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(ty_[], ga)), bc) -> new_ltEs2(vwx91, vwx101, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(ty_[], bbg)), bc) -> new_ltEs2(vwx92, vwx102, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(ty_Either, hg), hh)), gf), bc) -> new_lt(vwx91, vwx101, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), ge), gf), bc) -> new_lt(vwx90, vwx100, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(ty_[], hf)) -> new_esEs0(vwx301, vwx401, hf) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, gh), ha), hb), gc) -> new_esEs3(vwx300, vwx400, gh, ha, hb) new_esEs(Left(vwx300), Left(vwx400), app(ty_[], bc), bb) -> new_esEs0(vwx300, vwx400, bc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bbe), bbf), bbg), bag, bah) -> new_esEs3(vwx300, vwx400, bbe, bbf, bbg) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(ty_@2, hh), baa)) -> new_esEs2(vwx301, vwx401, hh, baa) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vwx300, vwx400, db, dc, dd) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, ea), eb)) -> new_esEs2(vwx300, vwx400, ea, eb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(ty_Either, bdb), bdc)) -> new_esEs(vwx302, vwx402, bdb, bdc) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], gd), gc) -> new_esEs0(vwx300, vwx400, gd) new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_Either, eg), eh)) -> new_esEs(vwx300, vwx400, eg, eh) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, ga), gb), gc) -> new_esEs(vwx300, vwx400, ga, gb) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, de), df)) -> new_esEs(vwx300, vwx400, de, df) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], dg)) -> new_esEs0(vwx300, vwx400, dg) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_@2, cg), da)) -> new_esEs2(vwx300, vwx400, cg, da) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx302, vwx402, bdh, bea, beb) new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_Maybe, cf)) -> new_esEs1(vwx300, vwx400, cf) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, gf), gg), gc) -> new_esEs2(vwx300, vwx400, gf, gg) new_esEs(Left(vwx300), Left(vwx400), app(app(ty_@2, be), bf), bb) -> new_esEs2(vwx300, vwx400, be, bf) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vwx300, vwx400, cc, cd) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), ef) -> new_esEs0(vwx301, vwx401, ef) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_@2, bce), bcf), bah) -> new_esEs2(vwx301, vwx401, bce, bcf) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, dh)) -> new_esEs1(vwx300, vwx400, dh) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bba), bag, bah) -> new_esEs0(vwx300, vwx400, bba) new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], fa)) -> new_esEs0(vwx300, vwx400, fa) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(ty_@2, bdf), bdg)) -> new_esEs2(vwx302, vwx402, bdf, bdg) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx301, vwx401, bab, bac, bad) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, ec), ed), ee)) -> new_esEs3(vwx300, vwx400, ec, ed, ee) new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_@2, fc), fd)) -> new_esEs2(vwx300, vwx400, fc, fd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(app(ty_@3, bcg), bch), bda), bah) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) new_esEs1(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx300, vwx400, ff, fg, fh) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(ty_[], bdd)) -> new_esEs0(vwx302, vwx402, bdd) new_esEs(Left(vwx300), Left(vwx400), app(app(ty_Either, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bbc), bbd), bag, bah) -> new_esEs2(vwx300, vwx400, bbc, bbd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_[], bcc), bah) -> new_esEs0(vwx301, vwx401, bcc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbb), bag, bah) -> new_esEs1(vwx300, vwx400, bbb) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(ty_Maybe, hg)) -> new_esEs1(vwx301, vwx401, hg) new_esEs(Left(vwx300), Left(vwx400), app(ty_Maybe, bd), bb) -> new_esEs1(vwx300, vwx400, bd) new_esEs(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vwx300, vwx400, bg, bh, ca) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(ty_Either, hd), he)) -> new_esEs(vwx301, vwx401, hd, he) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_Maybe, bcd), bah) -> new_esEs1(vwx301, vwx401, bcd) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, ge), gc) -> new_esEs1(vwx300, vwx400, ge) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bae), baf), bag, bah) -> new_esEs(vwx300, vwx400, bae, baf) new_esEs1(Just(vwx300), Just(vwx400), app(ty_Maybe, fb)) -> new_esEs1(vwx300, vwx400, fb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(ty_Maybe, bde)) -> new_esEs1(vwx302, vwx402, bde) new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_[], ce)) -> new_esEs0(vwx300, vwx400, ce) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_Either, bca), bcb), bah) -> new_esEs(vwx301, vwx401, bca, bcb) 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_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, ea), eb)) -> new_esEs2(vwx300, vwx400, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, de), df)) -> new_esEs(vwx300, vwx400, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, ec), ed), ee)) -> new_esEs3(vwx300, vwx400, ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, dh)) -> new_esEs1(vwx300, vwx400, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_@2, fc), fd)) -> new_esEs2(vwx300, vwx400, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_Either, eg), eh)) -> new_esEs(vwx300, vwx400, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx300, vwx400, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], fa)) -> new_esEs0(vwx300, vwx400, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx300), Just(vwx400), app(ty_Maybe, fb)) -> new_esEs1(vwx300, vwx400, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], dg)) -> new_esEs0(vwx300, vwx400, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), ef) -> new_esEs0(vwx301, vwx401, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_@2, bce), bcf), bah) -> new_esEs2(vwx301, vwx401, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(ty_@2, bdf), bdg)) -> new_esEs2(vwx302, vwx402, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bbc), bbd), bag, bah) -> new_esEs2(vwx300, vwx400, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(ty_@2, hh), baa)) -> new_esEs2(vwx301, vwx401, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, gf), gg), gc) -> new_esEs2(vwx300, vwx400, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_@2, cg), da)) -> new_esEs2(vwx300, vwx400, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vwx300), Left(vwx400), app(app(ty_@2, be), bf), bb) -> new_esEs2(vwx300, vwx400, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(ty_Either, bdb), bdc)) -> new_esEs(vwx302, vwx402, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bae), baf), bag, bah) -> new_esEs(vwx300, vwx400, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_Either, bca), bcb), bah) -> new_esEs(vwx301, vwx401, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bbe), bbf), bbg), bag, bah) -> new_esEs3(vwx300, vwx400, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx302, vwx402, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(app(ty_@3, bcg), bch), bda), bah) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bba), bag, bah) -> new_esEs0(vwx300, vwx400, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(ty_[], bdd)) -> new_esEs0(vwx302, vwx402, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_[], bcc), bah) -> new_esEs0(vwx301, vwx401, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbb), bag, bah) -> new_esEs1(vwx300, vwx400, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_Maybe, bcd), bah) -> new_esEs1(vwx301, vwx401, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(ty_Maybe, bde)) -> new_esEs1(vwx302, vwx402, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, ga), gb), gc) -> new_esEs(vwx300, vwx400, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(ty_Either, hd), he)) -> new_esEs(vwx301, vwx401, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vwx300, vwx400, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vwx300), Left(vwx400), app(app(ty_Either, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, gh), ha), hb), gc) -> new_esEs3(vwx300, vwx400, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx301, vwx401, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vwx300, vwx400, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vwx300, vwx400, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(ty_[], hf)) -> new_esEs0(vwx301, vwx401, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], gd), gc) -> new_esEs0(vwx300, vwx400, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(ty_Maybe, hg)) -> new_esEs1(vwx301, vwx401, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, ge), gc) -> new_esEs1(vwx300, vwx400, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Left(vwx300), Left(vwx400), app(ty_[], bc), bb) -> new_esEs0(vwx300, vwx400, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_[], ce)) -> new_esEs0(vwx300, vwx400, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_Maybe, cf)) -> new_esEs1(vwx300, vwx400, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vwx300), Left(vwx400), app(ty_Maybe, bd), bb) -> new_esEs1(vwx300, vwx400, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30100), Succ(vwx40000)) -> new_primMulNat(vwx30100, Succ(vwx40000)) 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_primMulNat(Succ(vwx30100), Succ(vwx40000)) -> new_primMulNat(vwx30100, Succ(vwx40000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx4700), Succ(vwx400000)) -> new_primPlusNat(vwx4700, vwx400000) 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(vwx4700), Succ(vwx400000)) -> new_primPlusNat(vwx4700, vwx400000) 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(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) 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(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES