14.84/5.63 YES 16.91/6.21 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 16.91/6.21 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 16.91/6.21 16.91/6.21 16.91/6.21 H-Termination with start terms of the given HASKELL could be proven: 16.91/6.21 16.91/6.21 (0) HASKELL 16.91/6.21 (1) BR [EQUIVALENT, 0 ms] 16.91/6.21 (2) HASKELL 16.91/6.21 (3) COR [EQUIVALENT, 14 ms] 16.91/6.21 (4) HASKELL 16.91/6.21 (5) LetRed [EQUIVALENT, 0 ms] 16.91/6.21 (6) HASKELL 16.91/6.21 (7) Narrow [SOUND, 0 ms] 16.91/6.21 (8) AND 16.91/6.21 (9) QDP 16.91/6.21 (10) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.91/6.21 (11) YES 16.91/6.21 (12) QDP 16.91/6.21 (13) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.91/6.21 (14) YES 16.91/6.21 (15) QDP 16.91/6.21 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.91/6.21 (17) YES 16.91/6.21 (18) QDP 16.91/6.21 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.91/6.21 (20) YES 16.91/6.21 (21) QDP 16.91/6.21 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 16.91/6.21 (23) YES 16.91/6.21 16.91/6.21 16.91/6.21 ---------------------------------------- 16.91/6.21 16.91/6.21 (0) 16.91/6.21 Obligation: 16.91/6.21 mainModule Main 16.91/6.21 module Maybe where { 16.91/6.21 import qualified List; 16.91/6.21 import qualified Main; 16.91/6.21 import qualified Prelude; 16.91/6.21 } 16.91/6.21 module List where { 16.91/6.21 import qualified Main; 16.91/6.21 import qualified Maybe; 16.91/6.21 import qualified Prelude; 16.91/6.21 nub :: Eq a => [a] -> [a]; 16.91/6.21 nub l = nub' l [] where { 16.91/6.21 nub' [] _ = []; 16.91/6.21 nub' (x : xs) ls | x `elem` ls = nub' xs ls 16.91/6.21 | otherwise = x : nub' xs (x : ls); 16.91/6.21 }; 16.91/6.21 16.91/6.21 } 16.91/6.21 module Main where { 16.91/6.21 import qualified List; 16.91/6.21 import qualified Maybe; 16.91/6.21 import qualified Prelude; 16.91/6.21 } 16.91/6.21 16.91/6.21 ---------------------------------------- 16.91/6.21 16.91/6.21 (1) BR (EQUIVALENT) 16.91/6.21 Replaced joker patterns by fresh variables and removed binding patterns. 16.91/6.21 ---------------------------------------- 16.91/6.21 16.91/6.21 (2) 16.91/6.21 Obligation: 16.91/6.21 mainModule Main 16.91/6.21 module Maybe where { 16.91/6.21 import qualified List; 16.91/6.21 import qualified Main; 16.91/6.21 import qualified Prelude; 16.91/6.21 } 16.91/6.21 module List where { 16.91/6.21 import qualified Main; 16.91/6.21 import qualified Maybe; 16.91/6.21 import qualified Prelude; 16.91/6.21 nub :: Eq a => [a] -> [a]; 16.91/6.21 nub l = nub' l [] where { 16.91/6.21 nub' [] xw = []; 16.91/6.21 nub' (x : xs) ls | x `elem` ls = nub' xs ls 16.91/6.21 | otherwise = x : nub' xs (x : ls); 16.91/6.21 }; 16.91/6.21 16.91/6.21 } 16.91/6.21 module Main where { 16.91/6.21 import qualified List; 16.91/6.21 import qualified Maybe; 16.91/6.21 import qualified Prelude; 16.91/6.21 } 16.91/6.21 16.91/6.21 ---------------------------------------- 16.91/6.21 16.91/6.21 (3) COR (EQUIVALENT) 16.91/6.21 Cond Reductions: 16.91/6.21 The following Function with conditions 16.91/6.21 "undefined |Falseundefined; 16.91/6.21 " 16.91/6.21 is transformed to 16.91/6.21 "undefined = undefined1; 16.91/6.21 " 16.91/6.21 "undefined0 True = undefined; 16.91/6.21 " 16.91/6.21 "undefined1 = undefined0 False; 16.91/6.21 " 16.91/6.21 The following Function with conditions 16.91/6.21 "nub' [] xw = []; 16.91/6.21 nub' (x : xs) ls|x `elem` lsnub' xs ls|otherwisex : nub' xs (x : ls); 16.91/6.21 " 16.91/6.21 is transformed to 16.91/6.21 "nub' [] xw = nub'3 [] xw; 16.91/6.21 nub' (x : xs) ls = nub'2 (x : xs) ls; 16.91/6.21 " 16.91/6.21 "nub'0 x xs ls True = x : nub' xs (x : ls); 16.91/6.21 " 16.91/6.21 "nub'1 x xs ls True = nub' xs ls; 16.91/6.21 nub'1 x xs ls False = nub'0 x xs ls otherwise; 16.91/6.21 " 16.91/6.21 "nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 16.91/6.21 " 16.91/6.21 "nub'3 [] xw = []; 16.91/6.21 nub'3 xz yu = nub'2 xz yu; 16.91/6.21 " 16.91/6.21 16.91/6.21 ---------------------------------------- 16.91/6.21 16.91/6.21 (4) 16.91/6.21 Obligation: 16.91/6.21 mainModule Main 16.91/6.21 module Maybe where { 16.91/6.21 import qualified List; 16.91/6.21 import qualified Main; 16.91/6.21 import qualified Prelude; 16.91/6.21 } 16.91/6.21 module List where { 16.91/6.21 import qualified Main; 16.91/6.21 import qualified Maybe; 16.91/6.21 import qualified Prelude; 16.91/6.21 nub :: Eq a => [a] -> [a]; 16.91/6.21 nub l = nub' l [] where { 16.91/6.21 nub' [] xw = nub'3 [] xw; 16.91/6.21 nub' (x : xs) ls = nub'2 (x : xs) ls; 16.91/6.21 nub'0 x xs ls True = x : nub' xs (x : ls); 16.91/6.21 nub'1 x xs ls True = nub' xs ls; 16.91/6.21 nub'1 x xs ls False = nub'0 x xs ls otherwise; 16.91/6.21 nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 16.91/6.21 nub'3 [] xw = []; 16.91/6.21 nub'3 xz yu = nub'2 xz yu; 16.91/6.21 }; 16.91/6.21 16.91/6.21 } 16.91/6.21 module Main where { 16.91/6.21 import qualified List; 16.91/6.21 import qualified Maybe; 16.91/6.21 import qualified Prelude; 16.91/6.21 } 16.91/6.21 16.91/6.21 ---------------------------------------- 16.91/6.21 16.91/6.21 (5) LetRed (EQUIVALENT) 16.91/6.21 Let/Where Reductions: 16.91/6.21 The bindings of the following Let/Where expression 16.91/6.21 "nub' l [] where { 16.91/6.21 nub' [] xw = nub'3 [] xw; 16.91/6.21 nub' (x : xs) ls = nub'2 (x : xs) ls; 16.91/6.21 ; 16.91/6.21 nub'0 x xs ls True = x : nub' xs (x : ls); 16.91/6.21 ; 16.91/6.21 nub'1 x xs ls True = nub' xs ls; 16.91/6.21 nub'1 x xs ls False = nub'0 x xs ls otherwise; 16.91/6.21 ; 16.91/6.21 nub'2 (x : xs) ls = nub'1 x xs ls (x `elem` ls); 16.91/6.21 ; 16.91/6.21 nub'3 [] xw = []; 16.91/6.21 nub'3 xz yu = nub'2 xz yu; 16.91/6.21 } 16.91/6.21 " 16.91/6.21 are unpacked to the following functions on top level 16.91/6.21 "nubNub'1 x xs ls True = nubNub' xs ls; 16.91/6.21 nubNub'1 x xs ls False = nubNub'0 x xs ls otherwise; 16.91/6.21 " 16.91/6.21 "nubNub' [] xw = nubNub'3 [] xw; 16.91/6.21 nubNub' (x : xs) ls = nubNub'2 (x : xs) ls; 16.91/6.21 " 16.91/6.21 "nubNub'0 x xs ls True = x : nubNub' xs (x : ls); 16.91/6.21 " 16.91/6.21 "nubNub'2 (x : xs) ls = nubNub'1 x xs ls (x `elem` ls); 16.91/6.21 " 16.91/6.21 "nubNub'3 [] xw = []; 16.91/6.21 nubNub'3 xz yu = nubNub'2 xz yu; 16.91/6.21 " 16.91/6.21 16.91/6.21 ---------------------------------------- 16.91/6.21 16.91/6.21 (6) 16.91/6.21 Obligation: 16.91/6.21 mainModule Main 16.91/6.21 module Maybe where { 16.91/6.21 import qualified List; 16.91/6.21 import qualified Main; 16.91/6.21 import qualified Prelude; 16.91/6.21 } 16.91/6.21 module List where { 16.91/6.21 import qualified Main; 16.91/6.21 import qualified Maybe; 16.91/6.21 import qualified Prelude; 16.91/6.21 nub :: Eq a => [a] -> [a]; 16.91/6.21 nub l = nubNub' l []; 16.91/6.21 16.91/6.21 nubNub' [] xw = nubNub'3 [] xw; 16.91/6.21 nubNub' (x : xs) ls = nubNub'2 (x : xs) ls; 16.91/6.21 16.91/6.21 nubNub'0 x xs ls True = x : nubNub' xs (x : ls); 16.91/6.21 16.91/6.21 nubNub'1 x xs ls True = nubNub' xs ls; 16.91/6.21 nubNub'1 x xs ls False = nubNub'0 x xs ls otherwise; 16.91/6.21 16.91/6.21 nubNub'2 (x : xs) ls = nubNub'1 x xs ls (x `elem` ls); 16.91/6.21 16.91/6.21 nubNub'3 [] xw = []; 16.91/6.21 nubNub'3 xz yu = nubNub'2 xz yu; 16.91/6.21 16.91/6.21 } 16.91/6.21 module Main where { 16.91/6.21 import qualified List; 16.91/6.21 import qualified Maybe; 16.91/6.21 import qualified Prelude; 16.91/6.21 } 16.91/6.21 16.91/6.21 ---------------------------------------- 16.91/6.21 16.91/6.21 (7) Narrow (SOUND) 16.91/6.21 Haskell To QDPs 16.91/6.21 16.91/6.21 digraph dp_graph { 16.91/6.21 node [outthreshold=100, inthreshold=100];1[label="List.nub",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 16.91/6.21 3[label="List.nub yv3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 16.91/6.21 4[label="List.nubNub' yv3 []",fontsize=16,color="burlywood",shape="box"];2995[label="yv3/yv30 : yv31",fontsize=10,color="white",style="solid",shape="box"];4 -> 2995[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 2995 -> 5[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2996[label="yv3/[]",fontsize=10,color="white",style="solid",shape="box"];4 -> 2996[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 2996 -> 6[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 5[label="List.nubNub' (yv30 : yv31) []",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 16.91/6.21 6[label="List.nubNub' [] []",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 16.91/6.21 7[label="List.nubNub'2 (yv30 : yv31) []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 16.91/6.21 8[label="List.nubNub'3 [] []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 16.91/6.21 9[label="List.nubNub'1 yv30 yv31 [] (yv30 `elem` [])",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 16.91/6.21 10[label="[]",fontsize=16,color="green",shape="box"];11[label="List.nubNub'1 yv30 yv31 [] (any . (==))",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 16.91/6.21 12[label="List.nubNub'1 yv30 yv31 [] (any ((==) yv30) [])",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 16.91/6.21 13[label="List.nubNub'1 yv30 yv31 [] (or . map ((==) yv30))",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 16.91/6.21 14[label="List.nubNub'1 yv30 yv31 [] (or (map ((==) yv30) []))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 16.91/6.21 15[label="List.nubNub'1 yv30 yv31 [] (foldr (||) False (map ((==) yv30) []))",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 16.91/6.21 16[label="List.nubNub'1 yv30 yv31 [] (foldr (||) False [])",fontsize=16,color="black",shape="box"];16 -> 17[label="",style="solid", color="black", weight=3]; 16.91/6.21 17[label="List.nubNub'1 yv30 yv31 [] False",fontsize=16,color="black",shape="box"];17 -> 18[label="",style="solid", color="black", weight=3]; 16.91/6.21 18[label="List.nubNub'0 yv30 yv31 [] otherwise",fontsize=16,color="black",shape="box"];18 -> 19[label="",style="solid", color="black", weight=3]; 16.91/6.21 19[label="List.nubNub'0 yv30 yv31 [] True",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 16.91/6.21 20[label="yv30 : List.nubNub' yv31 (yv30 : [])",fontsize=16,color="green",shape="box"];20 -> 21[label="",style="dashed", color="green", weight=3]; 16.91/6.21 21 -> 1243[label="",style="dashed", color="red", weight=0]; 16.91/6.21 21[label="List.nubNub' yv31 (yv30 : [])",fontsize=16,color="magenta"];21 -> 1244[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 21 -> 1245[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 21 -> 1246[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 1244[label="yv30",fontsize=16,color="green",shape="box"];1245[label="yv31",fontsize=16,color="green",shape="box"];1246[label="[]",fontsize=16,color="green",shape="box"];1243[label="List.nubNub' yv48 (yv49 : yv50)",fontsize=16,color="burlywood",shape="triangle"];2997[label="yv48/yv480 : yv481",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2997[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 2997 -> 1295[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2998[label="yv48/[]",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2998[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 2998 -> 1296[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 1295[label="List.nubNub' (yv480 : yv481) (yv49 : yv50)",fontsize=16,color="black",shape="box"];1295 -> 1297[label="",style="solid", color="black", weight=3]; 16.91/6.21 1296[label="List.nubNub' [] (yv49 : yv50)",fontsize=16,color="black",shape="box"];1296 -> 1298[label="",style="solid", color="black", weight=3]; 16.91/6.21 1297[label="List.nubNub'2 (yv480 : yv481) (yv49 : yv50)",fontsize=16,color="black",shape="box"];1297 -> 1299[label="",style="solid", color="black", weight=3]; 16.91/6.21 1298[label="List.nubNub'3 [] (yv49 : yv50)",fontsize=16,color="black",shape="box"];1298 -> 1300[label="",style="solid", color="black", weight=3]; 16.91/6.21 1299[label="List.nubNub'1 yv480 yv481 (yv49 : yv50) (yv480 `elem` yv49 : yv50)",fontsize=16,color="black",shape="box"];1299 -> 1301[label="",style="solid", color="black", weight=3]; 16.91/6.21 1300[label="[]",fontsize=16,color="green",shape="box"];1301[label="List.nubNub'1 yv480 yv481 (yv49 : yv50) (any . (==))",fontsize=16,color="black",shape="box"];1301 -> 1302[label="",style="solid", color="black", weight=3]; 16.91/6.21 1302[label="List.nubNub'1 yv480 yv481 (yv49 : yv50) (any ((==) yv480) (yv49 : yv50))",fontsize=16,color="black",shape="box"];1302 -> 1303[label="",style="solid", color="black", weight=3]; 16.91/6.21 1303[label="List.nubNub'1 yv480 yv481 (yv49 : yv50) (or . map ((==) yv480))",fontsize=16,color="black",shape="box"];1303 -> 1304[label="",style="solid", color="black", weight=3]; 16.91/6.21 1304[label="List.nubNub'1 yv480 yv481 (yv49 : yv50) (or (map ((==) yv480) (yv49 : yv50)))",fontsize=16,color="black",shape="box"];1304 -> 1305[label="",style="solid", color="black", weight=3]; 16.91/6.21 1305[label="List.nubNub'1 yv480 yv481 (yv49 : yv50) (foldr (||) False (map ((==) yv480) (yv49 : yv50)))",fontsize=16,color="black",shape="box"];1305 -> 1306[label="",style="solid", color="black", weight=3]; 16.91/6.21 1306 -> 2268[label="",style="dashed", color="red", weight=0]; 16.91/6.21 1306[label="List.nubNub'1 yv480 yv481 (yv49 : yv50) (foldr (||) False (((==) yv480 yv49) : map ((==) yv480) yv50))",fontsize=16,color="magenta"];1306 -> 2269[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 1306 -> 2270[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 1306 -> 2271[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 1306 -> 2272[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 1306 -> 2273[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 1306 -> 2274[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2269[label="yv49",fontsize=16,color="green",shape="box"];2270[label="yv480",fontsize=16,color="green",shape="box"];2271[label="yv481",fontsize=16,color="green",shape="box"];2272[label="yv50",fontsize=16,color="green",shape="box"];2273[label="yv50",fontsize=16,color="green",shape="box"];2274[label="yv49",fontsize=16,color="green",shape="box"];2268[label="List.nubNub'1 yv141 yv142 (yv143 : yv144) (foldr (||) False (((==) yv141 yv145) : map ((==) yv141) yv146))",fontsize=16,color="black",shape="triangle"];2268 -> 2305[label="",style="solid", color="black", weight=3]; 16.91/6.21 2305 -> 2306[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2305[label="List.nubNub'1 yv141 yv142 (yv143 : yv144) ((||) (==) yv141 yv145 foldr (||) False (map ((==) yv141) yv146))",fontsize=16,color="magenta"];2305 -> 2307[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2305 -> 2308[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2305 -> 2309[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2305 -> 2310[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2305 -> 2311[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2305 -> 2312[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2307[label="yv143",fontsize=16,color="green",shape="box"];2308[label="yv141",fontsize=16,color="green",shape="box"];2309[label="yv142",fontsize=16,color="green",shape="box"];2310[label="yv144",fontsize=16,color="green",shape="box"];2311[label="(==) yv141 yv145",fontsize=16,color="blue",shape="box"];2999[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 2999[label="",style="solid", color="blue", weight=9]; 16.91/6.21 2999 -> 2313[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3000[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3000[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3000 -> 2314[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3001[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3001[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3001 -> 2315[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3002[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3002[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3002 -> 2316[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3003[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3003[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3003 -> 2317[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3004[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3004[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3004 -> 2318[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3005[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3005[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3005 -> 2319[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3006[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3006[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3006 -> 2320[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3007[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3007[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3007 -> 2321[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3008[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3008[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3008 -> 2322[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3009[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3009[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3009 -> 2323[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3010[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3010[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3010 -> 2324[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3011[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3011[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3011 -> 2325[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3012[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2311 -> 3012[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3012 -> 2326[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2312[label="yv146",fontsize=16,color="green",shape="box"];2306[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) ((||) yv158 foldr (||) False (map ((==) yv154) yv159))",fontsize=16,color="burlywood",shape="triangle"];3013[label="yv158/False",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3013[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3013 -> 2327[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3014[label="yv158/True",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3014[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3014 -> 2328[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2313[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3015[label="yv141/()",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3015[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3015 -> 2329[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2314[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3016[label="yv141/yv1410 :% yv1411",fontsize=10,color="white",style="solid",shape="box"];2314 -> 3016[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3016 -> 2330[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2315[label="(==) yv141 yv145",fontsize=16,color="black",shape="triangle"];2315 -> 2331[label="",style="solid", color="black", weight=3]; 16.91/6.21 2316[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3017[label="yv141/LT",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3017[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3017 -> 2332[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3018[label="yv141/EQ",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3018[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3018 -> 2333[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3019[label="yv141/GT",fontsize=10,color="white",style="solid",shape="box"];2316 -> 3019[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3019 -> 2334[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2317[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3020[label="yv141/(yv1410,yv1411,yv1412)",fontsize=10,color="white",style="solid",shape="box"];2317 -> 3020[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3020 -> 2335[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2318[label="(==) yv141 yv145",fontsize=16,color="black",shape="triangle"];2318 -> 2336[label="",style="solid", color="black", weight=3]; 16.91/6.21 2319[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3021[label="yv141/(yv1410,yv1411)",fontsize=10,color="white",style="solid",shape="box"];2319 -> 3021[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3021 -> 2337[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2320[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3022[label="yv141/yv1410 : yv1411",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3022[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3022 -> 2338[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3023[label="yv141/[]",fontsize=10,color="white",style="solid",shape="box"];2320 -> 3023[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3023 -> 2339[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2321[label="(==) yv141 yv145",fontsize=16,color="black",shape="triangle"];2321 -> 2340[label="",style="solid", color="black", weight=3]; 16.91/6.21 2322[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3024[label="yv141/False",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3024[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3024 -> 2341[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3025[label="yv141/True",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3025[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3025 -> 2342[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2323[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3026[label="yv141/Left yv1410",fontsize=10,color="white",style="solid",shape="box"];2323 -> 3026[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3026 -> 2343[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3027[label="yv141/Right yv1410",fontsize=10,color="white",style="solid",shape="box"];2323 -> 3027[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3027 -> 2344[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2324[label="(==) yv141 yv145",fontsize=16,color="black",shape="triangle"];2324 -> 2345[label="",style="solid", color="black", weight=3]; 16.91/6.21 2325[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3028[label="yv141/Integer yv1410",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3028[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3028 -> 2346[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2326[label="(==) yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3029[label="yv141/Nothing",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3029[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3029 -> 2347[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3030[label="yv141/Just yv1410",fontsize=10,color="white",style="solid",shape="box"];2326 -> 3030[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3030 -> 2348[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2327[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) ((||) False foldr (||) False (map ((==) yv154) yv159))",fontsize=16,color="black",shape="box"];2327 -> 2349[label="",style="solid", color="black", weight=3]; 16.91/6.21 2328[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) ((||) True foldr (||) False (map ((==) yv154) yv159))",fontsize=16,color="black",shape="box"];2328 -> 2350[label="",style="solid", color="black", weight=3]; 16.91/6.21 2329[label="(==) () yv145",fontsize=16,color="burlywood",shape="box"];3031[label="yv145/()",fontsize=10,color="white",style="solid",shape="box"];2329 -> 3031[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3031 -> 2351[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2330[label="(==) yv1410 :% yv1411 yv145",fontsize=16,color="burlywood",shape="box"];3032[label="yv145/yv1450 :% yv1451",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3032[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3032 -> 2352[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2331[label="primEqDouble yv141 yv145",fontsize=16,color="burlywood",shape="box"];3033[label="yv141/Double yv1410 yv1411",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3033[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3033 -> 2353[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2332[label="(==) LT yv145",fontsize=16,color="burlywood",shape="box"];3034[label="yv145/LT",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3034[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3034 -> 2354[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3035[label="yv145/EQ",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3035[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3035 -> 2355[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3036[label="yv145/GT",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3036[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3036 -> 2356[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2333[label="(==) EQ yv145",fontsize=16,color="burlywood",shape="box"];3037[label="yv145/LT",fontsize=10,color="white",style="solid",shape="box"];2333 -> 3037[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3037 -> 2357[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3038[label="yv145/EQ",fontsize=10,color="white",style="solid",shape="box"];2333 -> 3038[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3038 -> 2358[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3039[label="yv145/GT",fontsize=10,color="white",style="solid",shape="box"];2333 -> 3039[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3039 -> 2359[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2334[label="(==) GT yv145",fontsize=16,color="burlywood",shape="box"];3040[label="yv145/LT",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3040[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3040 -> 2360[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3041[label="yv145/EQ",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3041[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3041 -> 2361[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3042[label="yv145/GT",fontsize=10,color="white",style="solid",shape="box"];2334 -> 3042[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3042 -> 2362[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2335[label="(==) (yv1410,yv1411,yv1412) yv145",fontsize=16,color="burlywood",shape="box"];3043[label="yv145/(yv1450,yv1451,yv1452)",fontsize=10,color="white",style="solid",shape="box"];2335 -> 3043[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3043 -> 2363[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2336[label="primEqInt yv141 yv145",fontsize=16,color="burlywood",shape="triangle"];3044[label="yv141/Pos yv1410",fontsize=10,color="white",style="solid",shape="box"];2336 -> 3044[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3044 -> 2364[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3045[label="yv141/Neg yv1410",fontsize=10,color="white",style="solid",shape="box"];2336 -> 3045[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3045 -> 2365[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2337[label="(==) (yv1410,yv1411) yv145",fontsize=16,color="burlywood",shape="box"];3046[label="yv145/(yv1450,yv1451)",fontsize=10,color="white",style="solid",shape="box"];2337 -> 3046[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3046 -> 2366[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2338[label="(==) yv1410 : yv1411 yv145",fontsize=16,color="burlywood",shape="box"];3047[label="yv145/yv1450 : yv1451",fontsize=10,color="white",style="solid",shape="box"];2338 -> 3047[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3047 -> 2367[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3048[label="yv145/[]",fontsize=10,color="white",style="solid",shape="box"];2338 -> 3048[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3048 -> 2368[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2339[label="(==) [] yv145",fontsize=16,color="burlywood",shape="box"];3049[label="yv145/yv1450 : yv1451",fontsize=10,color="white",style="solid",shape="box"];2339 -> 3049[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3049 -> 2369[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3050[label="yv145/[]",fontsize=10,color="white",style="solid",shape="box"];2339 -> 3050[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3050 -> 2370[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2340[label="primEqFloat yv141 yv145",fontsize=16,color="burlywood",shape="box"];3051[label="yv141/Float yv1410 yv1411",fontsize=10,color="white",style="solid",shape="box"];2340 -> 3051[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3051 -> 2371[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2341[label="(==) False yv145",fontsize=16,color="burlywood",shape="box"];3052[label="yv145/False",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3052[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3052 -> 2372[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3053[label="yv145/True",fontsize=10,color="white",style="solid",shape="box"];2341 -> 3053[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3053 -> 2373[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2342[label="(==) True yv145",fontsize=16,color="burlywood",shape="box"];3054[label="yv145/False",fontsize=10,color="white",style="solid",shape="box"];2342 -> 3054[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3054 -> 2374[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3055[label="yv145/True",fontsize=10,color="white",style="solid",shape="box"];2342 -> 3055[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3055 -> 2375[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2343[label="(==) Left yv1410 yv145",fontsize=16,color="burlywood",shape="box"];3056[label="yv145/Left yv1450",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3056[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3056 -> 2376[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3057[label="yv145/Right yv1450",fontsize=10,color="white",style="solid",shape="box"];2343 -> 3057[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3057 -> 2377[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2344[label="(==) Right yv1410 yv145",fontsize=16,color="burlywood",shape="box"];3058[label="yv145/Left yv1450",fontsize=10,color="white",style="solid",shape="box"];2344 -> 3058[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3058 -> 2378[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3059[label="yv145/Right yv1450",fontsize=10,color="white",style="solid",shape="box"];2344 -> 3059[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3059 -> 2379[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2345[label="primEqChar yv141 yv145",fontsize=16,color="burlywood",shape="box"];3060[label="yv141/Char yv1410",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3060[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3060 -> 2380[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2346[label="(==) Integer yv1410 yv145",fontsize=16,color="burlywood",shape="box"];3061[label="yv145/Integer yv1450",fontsize=10,color="white",style="solid",shape="box"];2346 -> 3061[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3061 -> 2381[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2347[label="(==) Nothing yv145",fontsize=16,color="burlywood",shape="box"];3062[label="yv145/Nothing",fontsize=10,color="white",style="solid",shape="box"];2347 -> 3062[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3062 -> 2382[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3063[label="yv145/Just yv1450",fontsize=10,color="white",style="solid",shape="box"];2347 -> 3063[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3063 -> 2383[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2348[label="(==) Just yv1410 yv145",fontsize=16,color="burlywood",shape="box"];3064[label="yv145/Nothing",fontsize=10,color="white",style="solid",shape="box"];2348 -> 3064[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3064 -> 2384[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3065[label="yv145/Just yv1450",fontsize=10,color="white",style="solid",shape="box"];2348 -> 3065[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3065 -> 2385[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2349[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) (foldr (||) False (map ((==) yv154) yv159))",fontsize=16,color="burlywood",shape="box"];3066[label="yv159/yv1590 : yv1591",fontsize=10,color="white",style="solid",shape="box"];2349 -> 3066[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3066 -> 2386[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3067[label="yv159/[]",fontsize=10,color="white",style="solid",shape="box"];2349 -> 3067[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3067 -> 2387[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2350[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) True",fontsize=16,color="black",shape="box"];2350 -> 2388[label="",style="solid", color="black", weight=3]; 16.91/6.21 2351[label="(==) () ()",fontsize=16,color="black",shape="box"];2351 -> 2389[label="",style="solid", color="black", weight=3]; 16.91/6.21 2352[label="(==) yv1410 :% yv1411 yv1450 :% yv1451",fontsize=16,color="black",shape="box"];2352 -> 2390[label="",style="solid", color="black", weight=3]; 16.91/6.21 2353[label="primEqDouble (Double yv1410 yv1411) yv145",fontsize=16,color="burlywood",shape="box"];3068[label="yv145/Double yv1450 yv1451",fontsize=10,color="white",style="solid",shape="box"];2353 -> 3068[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3068 -> 2391[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2354[label="(==) LT LT",fontsize=16,color="black",shape="box"];2354 -> 2392[label="",style="solid", color="black", weight=3]; 16.91/6.21 2355[label="(==) LT EQ",fontsize=16,color="black",shape="box"];2355 -> 2393[label="",style="solid", color="black", weight=3]; 16.91/6.21 2356[label="(==) LT GT",fontsize=16,color="black",shape="box"];2356 -> 2394[label="",style="solid", color="black", weight=3]; 16.91/6.21 2357[label="(==) EQ LT",fontsize=16,color="black",shape="box"];2357 -> 2395[label="",style="solid", color="black", weight=3]; 16.91/6.21 2358[label="(==) EQ EQ",fontsize=16,color="black",shape="box"];2358 -> 2396[label="",style="solid", color="black", weight=3]; 16.91/6.21 2359[label="(==) EQ GT",fontsize=16,color="black",shape="box"];2359 -> 2397[label="",style="solid", color="black", weight=3]; 16.91/6.21 2360[label="(==) GT LT",fontsize=16,color="black",shape="box"];2360 -> 2398[label="",style="solid", color="black", weight=3]; 16.91/6.21 2361[label="(==) GT EQ",fontsize=16,color="black",shape="box"];2361 -> 2399[label="",style="solid", color="black", weight=3]; 16.91/6.21 2362[label="(==) GT GT",fontsize=16,color="black",shape="box"];2362 -> 2400[label="",style="solid", color="black", weight=3]; 16.91/6.21 2363[label="(==) (yv1410,yv1411,yv1412) (yv1450,yv1451,yv1452)",fontsize=16,color="black",shape="box"];2363 -> 2401[label="",style="solid", color="black", weight=3]; 16.91/6.21 2364[label="primEqInt (Pos yv1410) yv145",fontsize=16,color="burlywood",shape="box"];3069[label="yv1410/Succ yv14100",fontsize=10,color="white",style="solid",shape="box"];2364 -> 3069[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3069 -> 2402[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3070[label="yv1410/Zero",fontsize=10,color="white",style="solid",shape="box"];2364 -> 3070[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3070 -> 2403[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2365[label="primEqInt (Neg yv1410) yv145",fontsize=16,color="burlywood",shape="box"];3071[label="yv1410/Succ yv14100",fontsize=10,color="white",style="solid",shape="box"];2365 -> 3071[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3071 -> 2404[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3072[label="yv1410/Zero",fontsize=10,color="white",style="solid",shape="box"];2365 -> 3072[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3072 -> 2405[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2366[label="(==) (yv1410,yv1411) (yv1450,yv1451)",fontsize=16,color="black",shape="box"];2366 -> 2406[label="",style="solid", color="black", weight=3]; 16.91/6.21 2367[label="(==) yv1410 : yv1411 yv1450 : yv1451",fontsize=16,color="black",shape="box"];2367 -> 2407[label="",style="solid", color="black", weight=3]; 16.91/6.21 2368[label="(==) yv1410 : yv1411 []",fontsize=16,color="black",shape="box"];2368 -> 2408[label="",style="solid", color="black", weight=3]; 16.91/6.21 2369[label="(==) [] yv1450 : yv1451",fontsize=16,color="black",shape="box"];2369 -> 2409[label="",style="solid", color="black", weight=3]; 16.91/6.21 2370[label="(==) [] []",fontsize=16,color="black",shape="box"];2370 -> 2410[label="",style="solid", color="black", weight=3]; 16.91/6.21 2371[label="primEqFloat (Float yv1410 yv1411) yv145",fontsize=16,color="burlywood",shape="box"];3073[label="yv145/Float yv1450 yv1451",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3073[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3073 -> 2411[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2372[label="(==) False False",fontsize=16,color="black",shape="box"];2372 -> 2412[label="",style="solid", color="black", weight=3]; 16.91/6.21 2373[label="(==) False True",fontsize=16,color="black",shape="box"];2373 -> 2413[label="",style="solid", color="black", weight=3]; 16.91/6.21 2374[label="(==) True False",fontsize=16,color="black",shape="box"];2374 -> 2414[label="",style="solid", color="black", weight=3]; 16.91/6.21 2375[label="(==) True True",fontsize=16,color="black",shape="box"];2375 -> 2415[label="",style="solid", color="black", weight=3]; 16.91/6.21 2376[label="(==) Left yv1410 Left yv1450",fontsize=16,color="black",shape="box"];2376 -> 2416[label="",style="solid", color="black", weight=3]; 16.91/6.21 2377[label="(==) Left yv1410 Right yv1450",fontsize=16,color="black",shape="box"];2377 -> 2417[label="",style="solid", color="black", weight=3]; 16.91/6.21 2378[label="(==) Right yv1410 Left yv1450",fontsize=16,color="black",shape="box"];2378 -> 2418[label="",style="solid", color="black", weight=3]; 16.91/6.21 2379[label="(==) Right yv1410 Right yv1450",fontsize=16,color="black",shape="box"];2379 -> 2419[label="",style="solid", color="black", weight=3]; 16.91/6.21 2380[label="primEqChar (Char yv1410) yv145",fontsize=16,color="burlywood",shape="box"];3074[label="yv145/Char yv1450",fontsize=10,color="white",style="solid",shape="box"];2380 -> 3074[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3074 -> 2420[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2381[label="(==) Integer yv1410 Integer yv1450",fontsize=16,color="black",shape="box"];2381 -> 2421[label="",style="solid", color="black", weight=3]; 16.91/6.21 2382[label="(==) Nothing Nothing",fontsize=16,color="black",shape="box"];2382 -> 2422[label="",style="solid", color="black", weight=3]; 16.91/6.21 2383[label="(==) Nothing Just yv1450",fontsize=16,color="black",shape="box"];2383 -> 2423[label="",style="solid", color="black", weight=3]; 16.91/6.21 2384[label="(==) Just yv1410 Nothing",fontsize=16,color="black",shape="box"];2384 -> 2424[label="",style="solid", color="black", weight=3]; 16.91/6.21 2385[label="(==) Just yv1410 Just yv1450",fontsize=16,color="black",shape="box"];2385 -> 2425[label="",style="solid", color="black", weight=3]; 16.91/6.21 2386[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) (foldr (||) False (map ((==) yv154) (yv1590 : yv1591)))",fontsize=16,color="black",shape="box"];2386 -> 2426[label="",style="solid", color="black", weight=3]; 16.91/6.21 2387[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) (foldr (||) False (map ((==) yv154) []))",fontsize=16,color="black",shape="box"];2387 -> 2427[label="",style="solid", color="black", weight=3]; 16.91/6.21 2388 -> 1243[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2388[label="List.nubNub' yv155 (yv156 : yv157)",fontsize=16,color="magenta"];2388 -> 2428[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2388 -> 2429[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2388 -> 2430[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2389[label="True",fontsize=16,color="green",shape="box"];2390 -> 2516[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2390[label="yv1410 == yv1450 && yv1411 == yv1451",fontsize=16,color="magenta"];2390 -> 2517[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2390 -> 2518[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2391[label="primEqDouble (Double yv1410 yv1411) (Double yv1450 yv1451)",fontsize=16,color="black",shape="box"];2391 -> 2441[label="",style="solid", color="black", weight=3]; 16.91/6.21 2392[label="True",fontsize=16,color="green",shape="box"];2393[label="False",fontsize=16,color="green",shape="box"];2394[label="False",fontsize=16,color="green",shape="box"];2395[label="False",fontsize=16,color="green",shape="box"];2396[label="True",fontsize=16,color="green",shape="box"];2397[label="False",fontsize=16,color="green",shape="box"];2398[label="False",fontsize=16,color="green",shape="box"];2399[label="False",fontsize=16,color="green",shape="box"];2400[label="True",fontsize=16,color="green",shape="box"];2401 -> 2516[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2401[label="yv1410 == yv1450 && yv1411 == yv1451 && yv1412 == yv1452",fontsize=16,color="magenta"];2401 -> 2519[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2401 -> 2520[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2402[label="primEqInt (Pos (Succ yv14100)) yv145",fontsize=16,color="burlywood",shape="box"];3075[label="yv145/Pos yv1450",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3075[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3075 -> 2453[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3076[label="yv145/Neg yv1450",fontsize=10,color="white",style="solid",shape="box"];2402 -> 3076[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3076 -> 2454[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2403[label="primEqInt (Pos Zero) yv145",fontsize=16,color="burlywood",shape="box"];3077[label="yv145/Pos yv1450",fontsize=10,color="white",style="solid",shape="box"];2403 -> 3077[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3077 -> 2455[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3078[label="yv145/Neg yv1450",fontsize=10,color="white",style="solid",shape="box"];2403 -> 3078[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3078 -> 2456[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2404[label="primEqInt (Neg (Succ yv14100)) yv145",fontsize=16,color="burlywood",shape="box"];3079[label="yv145/Pos yv1450",fontsize=10,color="white",style="solid",shape="box"];2404 -> 3079[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3079 -> 2457[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3080[label="yv145/Neg yv1450",fontsize=10,color="white",style="solid",shape="box"];2404 -> 3080[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3080 -> 2458[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2405[label="primEqInt (Neg Zero) yv145",fontsize=16,color="burlywood",shape="box"];3081[label="yv145/Pos yv1450",fontsize=10,color="white",style="solid",shape="box"];2405 -> 3081[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3081 -> 2459[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3082[label="yv145/Neg yv1450",fontsize=10,color="white",style="solid",shape="box"];2405 -> 3082[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3082 -> 2460[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2406 -> 2516[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2406[label="yv1410 == yv1450 && yv1411 == yv1451",fontsize=16,color="magenta"];2406 -> 2521[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2406 -> 2522[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2407 -> 2516[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2407[label="yv1410 == yv1450 && yv1411 == yv1451",fontsize=16,color="magenta"];2407 -> 2523[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2407 -> 2524[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2408[label="False",fontsize=16,color="green",shape="box"];2409[label="False",fontsize=16,color="green",shape="box"];2410[label="True",fontsize=16,color="green",shape="box"];2411[label="primEqFloat (Float yv1410 yv1411) (Float yv1450 yv1451)",fontsize=16,color="black",shape="box"];2411 -> 2461[label="",style="solid", color="black", weight=3]; 16.91/6.21 2412[label="True",fontsize=16,color="green",shape="box"];2413[label="False",fontsize=16,color="green",shape="box"];2414[label="False",fontsize=16,color="green",shape="box"];2415[label="True",fontsize=16,color="green",shape="box"];2416[label="yv1410 == yv1450",fontsize=16,color="blue",shape="box"];3083[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3083[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3083 -> 2462[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3084[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3084[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3084 -> 2463[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3085[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3085[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3085 -> 2464[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3086[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3086[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3086 -> 2465[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3087[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3087[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3087 -> 2466[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3088[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3088[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3088 -> 2467[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3089[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3089[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3089 -> 2468[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3090[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3090[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3090 -> 2469[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3091[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3091[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3091 -> 2470[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3092[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3092[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3092 -> 2471[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3093[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3093[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3093 -> 2472[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3094[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3094[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3094 -> 2473[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3095[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3095[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3095 -> 2474[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3096[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 3096[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3096 -> 2475[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2417[label="False",fontsize=16,color="green",shape="box"];2418[label="False",fontsize=16,color="green",shape="box"];2419[label="yv1410 == yv1450",fontsize=16,color="blue",shape="box"];3097[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3097[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3097 -> 2476[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3098[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3098[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3098 -> 2477[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3099[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3099[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3099 -> 2478[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3100[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3100[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3100 -> 2479[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3101[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3101[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3101 -> 2480[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3102[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3102[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3102 -> 2481[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3103[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3103[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3103 -> 2482[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3104[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3104[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3104 -> 2483[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3105[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3105[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3105 -> 2484[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3106[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3106[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3106 -> 2485[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3107[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3107[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3107 -> 2486[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3108[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3108[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3108 -> 2487[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3109[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3109[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3109 -> 2488[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3110[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2419 -> 3110[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3110 -> 2489[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2420[label="primEqChar (Char yv1410) (Char yv1450)",fontsize=16,color="black",shape="box"];2420 -> 2490[label="",style="solid", color="black", weight=3]; 16.91/6.21 2421 -> 2336[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2421[label="primEqInt yv1410 yv1450",fontsize=16,color="magenta"];2421 -> 2491[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2421 -> 2492[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2422[label="True",fontsize=16,color="green",shape="box"];2423[label="False",fontsize=16,color="green",shape="box"];2424[label="False",fontsize=16,color="green",shape="box"];2425[label="yv1410 == yv1450",fontsize=16,color="blue",shape="box"];3111[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3111[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3111 -> 2493[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3112[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3112[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3112 -> 2494[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3113[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3113[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3113 -> 2495[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3114[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3114[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3114 -> 2496[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3115[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3115[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3115 -> 2497[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3116[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3116[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3116 -> 2498[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3117[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3117[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3117 -> 2499[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3118[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3118[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3118 -> 2500[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3119[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3119[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3119 -> 2501[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3120[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3120[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3120 -> 2502[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3121[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3121[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3121 -> 2503[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3122[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3122[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3122 -> 2504[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3123[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3123[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3123 -> 2505[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3124[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3124[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3124 -> 2506[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2426 -> 2268[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2426[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) (foldr (||) False (((==) yv154 yv1590) : map ((==) yv154) yv1591))",fontsize=16,color="magenta"];2426 -> 2507[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2426 -> 2508[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2426 -> 2509[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2426 -> 2510[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2426 -> 2511[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2426 -> 2512[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2427[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) (foldr (||) False [])",fontsize=16,color="black",shape="box"];2427 -> 2513[label="",style="solid", color="black", weight=3]; 16.91/6.21 2428[label="yv156",fontsize=16,color="green",shape="box"];2429[label="yv155",fontsize=16,color="green",shape="box"];2430[label="yv157",fontsize=16,color="green",shape="box"];2517[label="yv1411 == yv1451",fontsize=16,color="blue",shape="box"];3125[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2517 -> 3125[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3125 -> 2529[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3126[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2517 -> 3126[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3126 -> 2530[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2518[label="yv1410 == yv1450",fontsize=16,color="blue",shape="box"];3127[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3127[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3127 -> 2531[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3128[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3128[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3128 -> 2532[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2516[label="yv171 && yv172",fontsize=16,color="burlywood",shape="triangle"];3129[label="yv171/False",fontsize=10,color="white",style="solid",shape="box"];2516 -> 3129[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3129 -> 2533[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3130[label="yv171/True",fontsize=10,color="white",style="solid",shape="box"];2516 -> 3130[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3130 -> 2534[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2441 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2441[label="yv1410 * yv1451 == yv1411 * yv1450",fontsize=16,color="magenta"];2441 -> 2535[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2441 -> 2536[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2519 -> 2516[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2519[label="yv1411 == yv1451 && yv1412 == yv1452",fontsize=16,color="magenta"];2519 -> 2537[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2519 -> 2538[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2520[label="yv1410 == yv1450",fontsize=16,color="blue",shape="box"];3131[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3131[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3131 -> 2539[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3132[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3132[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3132 -> 2540[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3133[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3133[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3133 -> 2541[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3134[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3134[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3134 -> 2542[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3135[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3135[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3135 -> 2543[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3136[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3136[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3136 -> 2544[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3137[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3137[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3137 -> 2545[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3138[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3138[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3138 -> 2546[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3139[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3139[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3139 -> 2547[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3140[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3140[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3140 -> 2548[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3141[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3141[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3141 -> 2549[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3142[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3142[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3142 -> 2550[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3143[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3143[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3143 -> 2551[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3144[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2520 -> 3144[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3144 -> 2552[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2453[label="primEqInt (Pos (Succ yv14100)) (Pos yv1450)",fontsize=16,color="burlywood",shape="box"];3145[label="yv1450/Succ yv14500",fontsize=10,color="white",style="solid",shape="box"];2453 -> 3145[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3145 -> 2553[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3146[label="yv1450/Zero",fontsize=10,color="white",style="solid",shape="box"];2453 -> 3146[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3146 -> 2554[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2454[label="primEqInt (Pos (Succ yv14100)) (Neg yv1450)",fontsize=16,color="black",shape="box"];2454 -> 2555[label="",style="solid", color="black", weight=3]; 16.91/6.21 2455[label="primEqInt (Pos Zero) (Pos yv1450)",fontsize=16,color="burlywood",shape="box"];3147[label="yv1450/Succ yv14500",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3147[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3147 -> 2556[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3148[label="yv1450/Zero",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3148[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3148 -> 2557[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2456[label="primEqInt (Pos Zero) (Neg yv1450)",fontsize=16,color="burlywood",shape="box"];3149[label="yv1450/Succ yv14500",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3149[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3149 -> 2558[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3150[label="yv1450/Zero",fontsize=10,color="white",style="solid",shape="box"];2456 -> 3150[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3150 -> 2559[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2457[label="primEqInt (Neg (Succ yv14100)) (Pos yv1450)",fontsize=16,color="black",shape="box"];2457 -> 2560[label="",style="solid", color="black", weight=3]; 16.91/6.21 2458[label="primEqInt (Neg (Succ yv14100)) (Neg yv1450)",fontsize=16,color="burlywood",shape="box"];3151[label="yv1450/Succ yv14500",fontsize=10,color="white",style="solid",shape="box"];2458 -> 3151[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3151 -> 2561[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3152[label="yv1450/Zero",fontsize=10,color="white",style="solid",shape="box"];2458 -> 3152[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3152 -> 2562[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2459[label="primEqInt (Neg Zero) (Pos yv1450)",fontsize=16,color="burlywood",shape="box"];3153[label="yv1450/Succ yv14500",fontsize=10,color="white",style="solid",shape="box"];2459 -> 3153[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3153 -> 2563[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3154[label="yv1450/Zero",fontsize=10,color="white",style="solid",shape="box"];2459 -> 3154[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3154 -> 2564[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2460[label="primEqInt (Neg Zero) (Neg yv1450)",fontsize=16,color="burlywood",shape="box"];3155[label="yv1450/Succ yv14500",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3155[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3155 -> 2565[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3156[label="yv1450/Zero",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3156[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3156 -> 2566[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2521[label="yv1411 == yv1451",fontsize=16,color="blue",shape="box"];3157[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3157[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3157 -> 2567[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3158[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3158[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3158 -> 2568[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3159[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3159[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3159 -> 2569[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3160[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3160[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3160 -> 2570[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3161[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3161[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3161 -> 2571[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3162[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3162[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3162 -> 2572[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3163[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3163[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3163 -> 2573[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3164[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3164[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3164 -> 2574[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3165[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3165[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3165 -> 2575[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3166[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3166[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3166 -> 2576[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3167[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3167[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3167 -> 2577[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3168[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3168[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3168 -> 2578[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3169[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3169[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3169 -> 2579[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3170[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3170[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3170 -> 2580[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2522[label="yv1410 == yv1450",fontsize=16,color="blue",shape="box"];3171[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3171[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3171 -> 2581[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3172[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3172[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3172 -> 2582[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3173[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3173[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3173 -> 2583[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3174[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3174[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3174 -> 2584[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3175[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3175[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3175 -> 2585[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3176[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3176 -> 2586[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3177[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3177[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3177 -> 2587[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3178[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3178[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3178 -> 2588[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3179[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3179[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3179 -> 2589[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3180[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3180[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3180 -> 2590[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3181[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3181[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3181 -> 2591[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3182[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3182[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3182 -> 2592[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3183[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3183[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3183 -> 2593[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3184[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3184[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3184 -> 2594[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2523 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2523[label="yv1411 == yv1451",fontsize=16,color="magenta"];2523 -> 2595[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2523 -> 2596[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2524[label="yv1410 == yv1450",fontsize=16,color="blue",shape="box"];3185[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3185[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3185 -> 2597[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3186[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3186[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3186 -> 2598[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3187[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3187[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3187 -> 2599[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3188[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3188[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3188 -> 2600[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3189[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3189[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3189 -> 2601[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3190[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3190[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3190 -> 2602[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3191[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3191[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3191 -> 2603[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3192[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3192[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3192 -> 2604[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3193[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3193[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3193 -> 2605[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3194[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3194[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3194 -> 2606[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3195[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3195[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3195 -> 2607[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3196[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3196[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3196 -> 2608[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3197[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3197[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3197 -> 2609[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3198[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2524 -> 3198[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3198 -> 2610[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2461 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2461[label="yv1410 * yv1451 == yv1411 * yv1450",fontsize=16,color="magenta"];2461 -> 2611[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2461 -> 2612[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2462 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2462[label="yv1410 == yv1450",fontsize=16,color="magenta"];2462 -> 2613[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2462 -> 2614[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2463 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2463[label="yv1410 == yv1450",fontsize=16,color="magenta"];2463 -> 2615[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2463 -> 2616[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2464 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2464[label="yv1410 == yv1450",fontsize=16,color="magenta"];2464 -> 2617[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2464 -> 2618[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2465 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2465[label="yv1410 == yv1450",fontsize=16,color="magenta"];2465 -> 2619[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2465 -> 2620[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2466 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2466[label="yv1410 == yv1450",fontsize=16,color="magenta"];2466 -> 2621[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2466 -> 2622[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2467 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2467[label="yv1410 == yv1450",fontsize=16,color="magenta"];2467 -> 2623[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2467 -> 2624[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2468 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2468[label="yv1410 == yv1450",fontsize=16,color="magenta"];2468 -> 2625[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2468 -> 2626[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2469 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2469[label="yv1410 == yv1450",fontsize=16,color="magenta"];2469 -> 2627[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2469 -> 2628[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2470 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2470[label="yv1410 == yv1450",fontsize=16,color="magenta"];2470 -> 2629[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2470 -> 2630[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2471 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2471[label="yv1410 == yv1450",fontsize=16,color="magenta"];2471 -> 2631[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2471 -> 2632[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2472 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2472[label="yv1410 == yv1450",fontsize=16,color="magenta"];2472 -> 2633[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2472 -> 2634[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2473 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2473[label="yv1410 == yv1450",fontsize=16,color="magenta"];2473 -> 2635[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2473 -> 2636[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2474 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2474[label="yv1410 == yv1450",fontsize=16,color="magenta"];2474 -> 2637[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2474 -> 2638[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2475 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2475[label="yv1410 == yv1450",fontsize=16,color="magenta"];2475 -> 2639[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2475 -> 2640[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2476 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2476[label="yv1410 == yv1450",fontsize=16,color="magenta"];2476 -> 2641[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2476 -> 2642[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2477 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2477[label="yv1410 == yv1450",fontsize=16,color="magenta"];2477 -> 2643[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2477 -> 2644[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2478 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2478[label="yv1410 == yv1450",fontsize=16,color="magenta"];2478 -> 2645[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2478 -> 2646[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2479 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2479[label="yv1410 == yv1450",fontsize=16,color="magenta"];2479 -> 2647[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2479 -> 2648[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2480 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2480[label="yv1410 == yv1450",fontsize=16,color="magenta"];2480 -> 2649[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2480 -> 2650[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2481 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2481[label="yv1410 == yv1450",fontsize=16,color="magenta"];2481 -> 2651[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2481 -> 2652[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2482 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2482[label="yv1410 == yv1450",fontsize=16,color="magenta"];2482 -> 2653[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2482 -> 2654[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2483 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2483[label="yv1410 == yv1450",fontsize=16,color="magenta"];2483 -> 2655[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2483 -> 2656[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2484 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2484[label="yv1410 == yv1450",fontsize=16,color="magenta"];2484 -> 2657[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2484 -> 2658[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2485 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2485[label="yv1410 == yv1450",fontsize=16,color="magenta"];2485 -> 2659[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2485 -> 2660[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2486 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2486[label="yv1410 == yv1450",fontsize=16,color="magenta"];2486 -> 2661[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2486 -> 2662[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2487 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2487[label="yv1410 == yv1450",fontsize=16,color="magenta"];2487 -> 2663[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2487 -> 2664[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2488 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2488[label="yv1410 == yv1450",fontsize=16,color="magenta"];2488 -> 2665[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2488 -> 2666[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2489 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2489[label="yv1410 == yv1450",fontsize=16,color="magenta"];2489 -> 2667[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2489 -> 2668[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2490[label="primEqNat yv1410 yv1450",fontsize=16,color="burlywood",shape="triangle"];3199[label="yv1410/Succ yv14100",fontsize=10,color="white",style="solid",shape="box"];2490 -> 3199[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3199 -> 2669[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 3200[label="yv1410/Zero",fontsize=10,color="white",style="solid",shape="box"];2490 -> 3200[label="",style="solid", color="burlywood", weight=9]; 16.91/6.21 3200 -> 2670[label="",style="solid", color="burlywood", weight=3]; 16.91/6.21 2491[label="yv1410",fontsize=16,color="green",shape="box"];2492[label="yv1450",fontsize=16,color="green",shape="box"];2493 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2493[label="yv1410 == yv1450",fontsize=16,color="magenta"];2493 -> 2671[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2493 -> 2672[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2494 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2494[label="yv1410 == yv1450",fontsize=16,color="magenta"];2494 -> 2673[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2494 -> 2674[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2495 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2495[label="yv1410 == yv1450",fontsize=16,color="magenta"];2495 -> 2675[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2495 -> 2676[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2496 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2496[label="yv1410 == yv1450",fontsize=16,color="magenta"];2496 -> 2677[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2496 -> 2678[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2497 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2497[label="yv1410 == yv1450",fontsize=16,color="magenta"];2497 -> 2679[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2497 -> 2680[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2498 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2498[label="yv1410 == yv1450",fontsize=16,color="magenta"];2498 -> 2681[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2498 -> 2682[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2499 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2499[label="yv1410 == yv1450",fontsize=16,color="magenta"];2499 -> 2683[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2499 -> 2684[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2500 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2500[label="yv1410 == yv1450",fontsize=16,color="magenta"];2500 -> 2685[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2500 -> 2686[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2501 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2501[label="yv1410 == yv1450",fontsize=16,color="magenta"];2501 -> 2687[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2501 -> 2688[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2502 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2502[label="yv1410 == yv1450",fontsize=16,color="magenta"];2502 -> 2689[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2502 -> 2690[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2503 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2503[label="yv1410 == yv1450",fontsize=16,color="magenta"];2503 -> 2691[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2503 -> 2692[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2504 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2504[label="yv1410 == yv1450",fontsize=16,color="magenta"];2504 -> 2693[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2504 -> 2694[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2505 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2505[label="yv1410 == yv1450",fontsize=16,color="magenta"];2505 -> 2695[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2505 -> 2696[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2506 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2506[label="yv1410 == yv1450",fontsize=16,color="magenta"];2506 -> 2697[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2506 -> 2698[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2507[label="yv156",fontsize=16,color="green",shape="box"];2508[label="yv154",fontsize=16,color="green",shape="box"];2509[label="yv155",fontsize=16,color="green",shape="box"];2510[label="yv1591",fontsize=16,color="green",shape="box"];2511[label="yv157",fontsize=16,color="green",shape="box"];2512[label="yv1590",fontsize=16,color="green",shape="box"];2513[label="List.nubNub'1 yv154 yv155 (yv156 : yv157) False",fontsize=16,color="black",shape="box"];2513 -> 2699[label="",style="solid", color="black", weight=3]; 16.91/6.21 2529 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2529[label="yv1411 == yv1451",fontsize=16,color="magenta"];2529 -> 2700[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2529 -> 2701[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2530 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2530[label="yv1411 == yv1451",fontsize=16,color="magenta"];2530 -> 2702[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2530 -> 2703[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2531 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2531[label="yv1410 == yv1450",fontsize=16,color="magenta"];2531 -> 2704[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2531 -> 2705[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2532 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2532[label="yv1410 == yv1450",fontsize=16,color="magenta"];2532 -> 2706[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2532 -> 2707[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2533[label="False && yv172",fontsize=16,color="black",shape="box"];2533 -> 2708[label="",style="solid", color="black", weight=3]; 16.91/6.21 2534[label="True && yv172",fontsize=16,color="black",shape="box"];2534 -> 2709[label="",style="solid", color="black", weight=3]; 16.91/6.21 2535[label="yv1410 * yv1451",fontsize=16,color="black",shape="triangle"];2535 -> 2710[label="",style="solid", color="black", weight=3]; 16.91/6.21 2536 -> 2535[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2536[label="yv1411 * yv1450",fontsize=16,color="magenta"];2536 -> 2711[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2536 -> 2712[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2537[label="yv1412 == yv1452",fontsize=16,color="blue",shape="box"];3201[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3201[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3201 -> 2713[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3202[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3202[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3202 -> 2714[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3203[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3203[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3203 -> 2715[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3204[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3204[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3204 -> 2716[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3205[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3205[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3205 -> 2717[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3206[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3206[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3206 -> 2718[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3207[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3207[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3207 -> 2719[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3208[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3208[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3208 -> 2720[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3209[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3209[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3209 -> 2721[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3210[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3210[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3210 -> 2722[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3211[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3211[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3211 -> 2723[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3212[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3212[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3212 -> 2724[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3213[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3213[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3213 -> 2725[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3214[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2537 -> 3214[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3214 -> 2726[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2538[label="yv1411 == yv1451",fontsize=16,color="blue",shape="box"];3215[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3215[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3215 -> 2727[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3216[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3216[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3216 -> 2728[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3217[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3217[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3217 -> 2729[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3218[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3218[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3218 -> 2730[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3219[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3219[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3219 -> 2731[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3220[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3220[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3220 -> 2732[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3221[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3221[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3221 -> 2733[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3222[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3222[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3222 -> 2734[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3223[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3223[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3223 -> 2735[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3224[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3224[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3224 -> 2736[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3225[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3225[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3225 -> 2737[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3226[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3226[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3226 -> 2738[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3227[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3227[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3227 -> 2739[label="",style="solid", color="blue", weight=3]; 16.91/6.21 3228[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3228[label="",style="solid", color="blue", weight=9]; 16.91/6.21 3228 -> 2740[label="",style="solid", color="blue", weight=3]; 16.91/6.21 2539 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2539[label="yv1410 == yv1450",fontsize=16,color="magenta"];2539 -> 2741[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2539 -> 2742[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2540 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2540[label="yv1410 == yv1450",fontsize=16,color="magenta"];2540 -> 2743[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2540 -> 2744[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2541 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2541[label="yv1410 == yv1450",fontsize=16,color="magenta"];2541 -> 2745[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2541 -> 2746[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2542 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2542[label="yv1410 == yv1450",fontsize=16,color="magenta"];2542 -> 2747[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2542 -> 2748[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2543 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2543[label="yv1410 == yv1450",fontsize=16,color="magenta"];2543 -> 2749[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2543 -> 2750[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2544 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2544[label="yv1410 == yv1450",fontsize=16,color="magenta"];2544 -> 2751[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2544 -> 2752[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2545 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2545[label="yv1410 == yv1450",fontsize=16,color="magenta"];2545 -> 2753[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2545 -> 2754[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2546 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2546[label="yv1410 == yv1450",fontsize=16,color="magenta"];2546 -> 2755[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2546 -> 2756[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2547 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2547[label="yv1410 == yv1450",fontsize=16,color="magenta"];2547 -> 2757[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2547 -> 2758[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2548 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2548[label="yv1410 == yv1450",fontsize=16,color="magenta"];2548 -> 2759[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2548 -> 2760[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2549 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2549[label="yv1410 == yv1450",fontsize=16,color="magenta"];2549 -> 2761[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2549 -> 2762[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2550 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2550[label="yv1410 == yv1450",fontsize=16,color="magenta"];2550 -> 2763[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2550 -> 2764[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2551 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2551[label="yv1410 == yv1450",fontsize=16,color="magenta"];2551 -> 2765[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2551 -> 2766[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2552 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2552[label="yv1410 == yv1450",fontsize=16,color="magenta"];2552 -> 2767[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2552 -> 2768[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2553[label="primEqInt (Pos (Succ yv14100)) (Pos (Succ yv14500))",fontsize=16,color="black",shape="box"];2553 -> 2769[label="",style="solid", color="black", weight=3]; 16.91/6.21 2554[label="primEqInt (Pos (Succ yv14100)) (Pos Zero)",fontsize=16,color="black",shape="box"];2554 -> 2770[label="",style="solid", color="black", weight=3]; 16.91/6.21 2555[label="False",fontsize=16,color="green",shape="box"];2556[label="primEqInt (Pos Zero) (Pos (Succ yv14500))",fontsize=16,color="black",shape="box"];2556 -> 2771[label="",style="solid", color="black", weight=3]; 16.91/6.21 2557[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2557 -> 2772[label="",style="solid", color="black", weight=3]; 16.91/6.21 2558[label="primEqInt (Pos Zero) (Neg (Succ yv14500))",fontsize=16,color="black",shape="box"];2558 -> 2773[label="",style="solid", color="black", weight=3]; 16.91/6.21 2559[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2559 -> 2774[label="",style="solid", color="black", weight=3]; 16.91/6.21 2560[label="False",fontsize=16,color="green",shape="box"];2561[label="primEqInt (Neg (Succ yv14100)) (Neg (Succ yv14500))",fontsize=16,color="black",shape="box"];2561 -> 2775[label="",style="solid", color="black", weight=3]; 16.91/6.21 2562[label="primEqInt (Neg (Succ yv14100)) (Neg Zero)",fontsize=16,color="black",shape="box"];2562 -> 2776[label="",style="solid", color="black", weight=3]; 16.91/6.21 2563[label="primEqInt (Neg Zero) (Pos (Succ yv14500))",fontsize=16,color="black",shape="box"];2563 -> 2777[label="",style="solid", color="black", weight=3]; 16.91/6.21 2564[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2564 -> 2778[label="",style="solid", color="black", weight=3]; 16.91/6.21 2565[label="primEqInt (Neg Zero) (Neg (Succ yv14500))",fontsize=16,color="black",shape="box"];2565 -> 2779[label="",style="solid", color="black", weight=3]; 16.91/6.21 2566[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2566 -> 2780[label="",style="solid", color="black", weight=3]; 16.91/6.21 2567 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2567[label="yv1411 == yv1451",fontsize=16,color="magenta"];2567 -> 2781[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2567 -> 2782[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2568 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2568[label="yv1411 == yv1451",fontsize=16,color="magenta"];2568 -> 2783[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2568 -> 2784[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2569 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2569[label="yv1411 == yv1451",fontsize=16,color="magenta"];2569 -> 2785[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2569 -> 2786[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2570 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2570[label="yv1411 == yv1451",fontsize=16,color="magenta"];2570 -> 2787[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2570 -> 2788[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2571 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2571[label="yv1411 == yv1451",fontsize=16,color="magenta"];2571 -> 2789[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2571 -> 2790[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2572 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2572[label="yv1411 == yv1451",fontsize=16,color="magenta"];2572 -> 2791[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2572 -> 2792[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2573 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2573[label="yv1411 == yv1451",fontsize=16,color="magenta"];2573 -> 2793[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2573 -> 2794[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2574 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2574[label="yv1411 == yv1451",fontsize=16,color="magenta"];2574 -> 2795[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2574 -> 2796[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2575 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2575[label="yv1411 == yv1451",fontsize=16,color="magenta"];2575 -> 2797[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2575 -> 2798[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2576 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2576[label="yv1411 == yv1451",fontsize=16,color="magenta"];2576 -> 2799[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2576 -> 2800[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2577 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2577[label="yv1411 == yv1451",fontsize=16,color="magenta"];2577 -> 2801[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2577 -> 2802[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2578 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2578[label="yv1411 == yv1451",fontsize=16,color="magenta"];2578 -> 2803[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2578 -> 2804[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2579 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2579[label="yv1411 == yv1451",fontsize=16,color="magenta"];2579 -> 2805[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2579 -> 2806[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2580 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2580[label="yv1411 == yv1451",fontsize=16,color="magenta"];2580 -> 2807[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2580 -> 2808[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2581 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2581[label="yv1410 == yv1450",fontsize=16,color="magenta"];2581 -> 2809[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2581 -> 2810[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2582 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2582[label="yv1410 == yv1450",fontsize=16,color="magenta"];2582 -> 2811[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2582 -> 2812[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2583 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2583[label="yv1410 == yv1450",fontsize=16,color="magenta"];2583 -> 2813[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2583 -> 2814[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2584 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2584[label="yv1410 == yv1450",fontsize=16,color="magenta"];2584 -> 2815[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2584 -> 2816[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2585 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2585[label="yv1410 == yv1450",fontsize=16,color="magenta"];2585 -> 2817[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2585 -> 2818[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2586 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2586[label="yv1410 == yv1450",fontsize=16,color="magenta"];2586 -> 2819[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2586 -> 2820[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2587 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2587[label="yv1410 == yv1450",fontsize=16,color="magenta"];2587 -> 2821[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2587 -> 2822[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2588 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2588[label="yv1410 == yv1450",fontsize=16,color="magenta"];2588 -> 2823[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2588 -> 2824[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2589 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2589[label="yv1410 == yv1450",fontsize=16,color="magenta"];2589 -> 2825[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2589 -> 2826[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2590 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2590[label="yv1410 == yv1450",fontsize=16,color="magenta"];2590 -> 2827[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2590 -> 2828[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2591 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2591[label="yv1410 == yv1450",fontsize=16,color="magenta"];2591 -> 2829[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2591 -> 2830[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2592 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2592[label="yv1410 == yv1450",fontsize=16,color="magenta"];2592 -> 2831[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2592 -> 2832[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2593 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2593[label="yv1410 == yv1450",fontsize=16,color="magenta"];2593 -> 2833[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2593 -> 2834[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2594 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2594[label="yv1410 == yv1450",fontsize=16,color="magenta"];2594 -> 2835[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2594 -> 2836[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2595[label="yv1411",fontsize=16,color="green",shape="box"];2596[label="yv1451",fontsize=16,color="green",shape="box"];2597 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2597[label="yv1410 == yv1450",fontsize=16,color="magenta"];2597 -> 2837[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2597 -> 2838[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2598 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2598[label="yv1410 == yv1450",fontsize=16,color="magenta"];2598 -> 2839[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2598 -> 2840[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2599 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2599[label="yv1410 == yv1450",fontsize=16,color="magenta"];2599 -> 2841[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2599 -> 2842[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2600 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2600[label="yv1410 == yv1450",fontsize=16,color="magenta"];2600 -> 2843[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2600 -> 2844[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2601 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2601[label="yv1410 == yv1450",fontsize=16,color="magenta"];2601 -> 2845[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2601 -> 2846[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2602 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2602[label="yv1410 == yv1450",fontsize=16,color="magenta"];2602 -> 2847[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2602 -> 2848[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2603 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2603[label="yv1410 == yv1450",fontsize=16,color="magenta"];2603 -> 2849[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2603 -> 2850[label="",style="dashed", color="magenta", weight=3]; 16.91/6.21 2604 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.21 2604[label="yv1410 == yv1450",fontsize=16,color="magenta"];2604 -> 2851[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2604 -> 2852[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2605 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2605[label="yv1410 == yv1450",fontsize=16,color="magenta"];2605 -> 2853[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2605 -> 2854[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2606 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2606[label="yv1410 == yv1450",fontsize=16,color="magenta"];2606 -> 2855[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2606 -> 2856[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2607 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2607[label="yv1410 == yv1450",fontsize=16,color="magenta"];2607 -> 2857[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2607 -> 2858[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2608 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2608[label="yv1410 == yv1450",fontsize=16,color="magenta"];2608 -> 2859[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2608 -> 2860[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2609 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2609[label="yv1410 == yv1450",fontsize=16,color="magenta"];2609 -> 2861[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2609 -> 2862[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2610 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2610[label="yv1410 == yv1450",fontsize=16,color="magenta"];2610 -> 2863[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2610 -> 2864[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2611 -> 2535[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2611[label="yv1410 * yv1451",fontsize=16,color="magenta"];2611 -> 2865[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2611 -> 2866[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2612 -> 2535[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2612[label="yv1411 * yv1450",fontsize=16,color="magenta"];2612 -> 2867[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2612 -> 2868[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2613[label="yv1410",fontsize=16,color="green",shape="box"];2614[label="yv1450",fontsize=16,color="green",shape="box"];2615[label="yv1410",fontsize=16,color="green",shape="box"];2616[label="yv1450",fontsize=16,color="green",shape="box"];2617[label="yv1410",fontsize=16,color="green",shape="box"];2618[label="yv1450",fontsize=16,color="green",shape="box"];2619[label="yv1410",fontsize=16,color="green",shape="box"];2620[label="yv1450",fontsize=16,color="green",shape="box"];2621[label="yv1410",fontsize=16,color="green",shape="box"];2622[label="yv1450",fontsize=16,color="green",shape="box"];2623[label="yv1410",fontsize=16,color="green",shape="box"];2624[label="yv1450",fontsize=16,color="green",shape="box"];2625[label="yv1410",fontsize=16,color="green",shape="box"];2626[label="yv1450",fontsize=16,color="green",shape="box"];2627[label="yv1410",fontsize=16,color="green",shape="box"];2628[label="yv1450",fontsize=16,color="green",shape="box"];2629[label="yv1410",fontsize=16,color="green",shape="box"];2630[label="yv1450",fontsize=16,color="green",shape="box"];2631[label="yv1410",fontsize=16,color="green",shape="box"];2632[label="yv1450",fontsize=16,color="green",shape="box"];2633[label="yv1410",fontsize=16,color="green",shape="box"];2634[label="yv1450",fontsize=16,color="green",shape="box"];2635[label="yv1410",fontsize=16,color="green",shape="box"];2636[label="yv1450",fontsize=16,color="green",shape="box"];2637[label="yv1410",fontsize=16,color="green",shape="box"];2638[label="yv1450",fontsize=16,color="green",shape="box"];2639[label="yv1410",fontsize=16,color="green",shape="box"];2640[label="yv1450",fontsize=16,color="green",shape="box"];2641[label="yv1410",fontsize=16,color="green",shape="box"];2642[label="yv1450",fontsize=16,color="green",shape="box"];2643[label="yv1410",fontsize=16,color="green",shape="box"];2644[label="yv1450",fontsize=16,color="green",shape="box"];2645[label="yv1410",fontsize=16,color="green",shape="box"];2646[label="yv1450",fontsize=16,color="green",shape="box"];2647[label="yv1410",fontsize=16,color="green",shape="box"];2648[label="yv1450",fontsize=16,color="green",shape="box"];2649[label="yv1410",fontsize=16,color="green",shape="box"];2650[label="yv1450",fontsize=16,color="green",shape="box"];2651[label="yv1410",fontsize=16,color="green",shape="box"];2652[label="yv1450",fontsize=16,color="green",shape="box"];2653[label="yv1410",fontsize=16,color="green",shape="box"];2654[label="yv1450",fontsize=16,color="green",shape="box"];2655[label="yv1410",fontsize=16,color="green",shape="box"];2656[label="yv1450",fontsize=16,color="green",shape="box"];2657[label="yv1410",fontsize=16,color="green",shape="box"];2658[label="yv1450",fontsize=16,color="green",shape="box"];2659[label="yv1410",fontsize=16,color="green",shape="box"];2660[label="yv1450",fontsize=16,color="green",shape="box"];2661[label="yv1410",fontsize=16,color="green",shape="box"];2662[label="yv1450",fontsize=16,color="green",shape="box"];2663[label="yv1410",fontsize=16,color="green",shape="box"];2664[label="yv1450",fontsize=16,color="green",shape="box"];2665[label="yv1410",fontsize=16,color="green",shape="box"];2666[label="yv1450",fontsize=16,color="green",shape="box"];2667[label="yv1410",fontsize=16,color="green",shape="box"];2668[label="yv1450",fontsize=16,color="green",shape="box"];2669[label="primEqNat (Succ yv14100) yv1450",fontsize=16,color="burlywood",shape="box"];3229[label="yv1450/Succ yv14500",fontsize=10,color="white",style="solid",shape="box"];2669 -> 3229[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3229 -> 2869[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3230[label="yv1450/Zero",fontsize=10,color="white",style="solid",shape="box"];2669 -> 3230[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3230 -> 2870[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2670[label="primEqNat Zero yv1450",fontsize=16,color="burlywood",shape="box"];3231[label="yv1450/Succ yv14500",fontsize=10,color="white",style="solid",shape="box"];2670 -> 3231[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3231 -> 2871[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3232[label="yv1450/Zero",fontsize=10,color="white",style="solid",shape="box"];2670 -> 3232[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3232 -> 2872[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2671[label="yv1410",fontsize=16,color="green",shape="box"];2672[label="yv1450",fontsize=16,color="green",shape="box"];2673[label="yv1410",fontsize=16,color="green",shape="box"];2674[label="yv1450",fontsize=16,color="green",shape="box"];2675[label="yv1410",fontsize=16,color="green",shape="box"];2676[label="yv1450",fontsize=16,color="green",shape="box"];2677[label="yv1410",fontsize=16,color="green",shape="box"];2678[label="yv1450",fontsize=16,color="green",shape="box"];2679[label="yv1410",fontsize=16,color="green",shape="box"];2680[label="yv1450",fontsize=16,color="green",shape="box"];2681[label="yv1410",fontsize=16,color="green",shape="box"];2682[label="yv1450",fontsize=16,color="green",shape="box"];2683[label="yv1410",fontsize=16,color="green",shape="box"];2684[label="yv1450",fontsize=16,color="green",shape="box"];2685[label="yv1410",fontsize=16,color="green",shape="box"];2686[label="yv1450",fontsize=16,color="green",shape="box"];2687[label="yv1410",fontsize=16,color="green",shape="box"];2688[label="yv1450",fontsize=16,color="green",shape="box"];2689[label="yv1410",fontsize=16,color="green",shape="box"];2690[label="yv1450",fontsize=16,color="green",shape="box"];2691[label="yv1410",fontsize=16,color="green",shape="box"];2692[label="yv1450",fontsize=16,color="green",shape="box"];2693[label="yv1410",fontsize=16,color="green",shape="box"];2694[label="yv1450",fontsize=16,color="green",shape="box"];2695[label="yv1410",fontsize=16,color="green",shape="box"];2696[label="yv1450",fontsize=16,color="green",shape="box"];2697[label="yv1410",fontsize=16,color="green",shape="box"];2698[label="yv1450",fontsize=16,color="green",shape="box"];2699[label="List.nubNub'0 yv154 yv155 (yv156 : yv157) otherwise",fontsize=16,color="black",shape="box"];2699 -> 2873[label="",style="solid", color="black", weight=3]; 16.91/6.22 2700[label="yv1411",fontsize=16,color="green",shape="box"];2701[label="yv1451",fontsize=16,color="green",shape="box"];2702[label="yv1411",fontsize=16,color="green",shape="box"];2703[label="yv1451",fontsize=16,color="green",shape="box"];2704[label="yv1410",fontsize=16,color="green",shape="box"];2705[label="yv1450",fontsize=16,color="green",shape="box"];2706[label="yv1410",fontsize=16,color="green",shape="box"];2707[label="yv1450",fontsize=16,color="green",shape="box"];2708[label="False",fontsize=16,color="green",shape="box"];2709[label="yv172",fontsize=16,color="green",shape="box"];2710[label="primMulInt yv1410 yv1451",fontsize=16,color="burlywood",shape="box"];3233[label="yv1410/Pos yv14100",fontsize=10,color="white",style="solid",shape="box"];2710 -> 3233[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3233 -> 2874[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3234[label="yv1410/Neg yv14100",fontsize=10,color="white",style="solid",shape="box"];2710 -> 3234[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3234 -> 2875[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2711[label="yv1450",fontsize=16,color="green",shape="box"];2712[label="yv1411",fontsize=16,color="green",shape="box"];2713 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2713[label="yv1412 == yv1452",fontsize=16,color="magenta"];2713 -> 2876[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2713 -> 2877[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2714 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2714[label="yv1412 == yv1452",fontsize=16,color="magenta"];2714 -> 2878[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2714 -> 2879[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2715 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2715[label="yv1412 == yv1452",fontsize=16,color="magenta"];2715 -> 2880[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2715 -> 2881[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2716 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2716[label="yv1412 == yv1452",fontsize=16,color="magenta"];2716 -> 2882[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2716 -> 2883[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2717 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2717[label="yv1412 == yv1452",fontsize=16,color="magenta"];2717 -> 2884[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2717 -> 2885[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2718 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2718[label="yv1412 == yv1452",fontsize=16,color="magenta"];2718 -> 2886[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2718 -> 2887[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2719 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2719[label="yv1412 == yv1452",fontsize=16,color="magenta"];2719 -> 2888[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2719 -> 2889[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2720 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2720[label="yv1412 == yv1452",fontsize=16,color="magenta"];2720 -> 2890[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2720 -> 2891[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2721 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2721[label="yv1412 == yv1452",fontsize=16,color="magenta"];2721 -> 2892[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2721 -> 2893[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2722 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2722[label="yv1412 == yv1452",fontsize=16,color="magenta"];2722 -> 2894[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2722 -> 2895[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2723 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2723[label="yv1412 == yv1452",fontsize=16,color="magenta"];2723 -> 2896[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2723 -> 2897[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2724 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2724[label="yv1412 == yv1452",fontsize=16,color="magenta"];2724 -> 2898[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2724 -> 2899[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2725 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2725[label="yv1412 == yv1452",fontsize=16,color="magenta"];2725 -> 2900[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2725 -> 2901[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2726 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2726[label="yv1412 == yv1452",fontsize=16,color="magenta"];2726 -> 2902[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2726 -> 2903[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2727 -> 2313[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2727[label="yv1411 == yv1451",fontsize=16,color="magenta"];2727 -> 2904[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2727 -> 2905[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2728 -> 2314[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2728[label="yv1411 == yv1451",fontsize=16,color="magenta"];2728 -> 2906[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2728 -> 2907[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2729 -> 2315[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2729[label="yv1411 == yv1451",fontsize=16,color="magenta"];2729 -> 2908[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2729 -> 2909[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2730 -> 2316[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2730[label="yv1411 == yv1451",fontsize=16,color="magenta"];2730 -> 2910[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2730 -> 2911[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2731 -> 2317[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2731[label="yv1411 == yv1451",fontsize=16,color="magenta"];2731 -> 2912[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2731 -> 2913[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2732 -> 2318[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2732[label="yv1411 == yv1451",fontsize=16,color="magenta"];2732 -> 2914[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2732 -> 2915[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2733 -> 2319[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2733[label="yv1411 == yv1451",fontsize=16,color="magenta"];2733 -> 2916[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2733 -> 2917[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2734 -> 2320[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2734[label="yv1411 == yv1451",fontsize=16,color="magenta"];2734 -> 2918[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2734 -> 2919[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2735 -> 2321[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2735[label="yv1411 == yv1451",fontsize=16,color="magenta"];2735 -> 2920[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2735 -> 2921[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2736 -> 2322[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2736[label="yv1411 == yv1451",fontsize=16,color="magenta"];2736 -> 2922[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2736 -> 2923[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2737 -> 2323[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2737[label="yv1411 == yv1451",fontsize=16,color="magenta"];2737 -> 2924[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2737 -> 2925[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2738 -> 2324[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2738[label="yv1411 == yv1451",fontsize=16,color="magenta"];2738 -> 2926[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2738 -> 2927[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2739 -> 2325[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2739[label="yv1411 == yv1451",fontsize=16,color="magenta"];2739 -> 2928[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2739 -> 2929[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2740 -> 2326[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2740[label="yv1411 == yv1451",fontsize=16,color="magenta"];2740 -> 2930[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2740 -> 2931[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2741[label="yv1410",fontsize=16,color="green",shape="box"];2742[label="yv1450",fontsize=16,color="green",shape="box"];2743[label="yv1410",fontsize=16,color="green",shape="box"];2744[label="yv1450",fontsize=16,color="green",shape="box"];2745[label="yv1410",fontsize=16,color="green",shape="box"];2746[label="yv1450",fontsize=16,color="green",shape="box"];2747[label="yv1410",fontsize=16,color="green",shape="box"];2748[label="yv1450",fontsize=16,color="green",shape="box"];2749[label="yv1410",fontsize=16,color="green",shape="box"];2750[label="yv1450",fontsize=16,color="green",shape="box"];2751[label="yv1410",fontsize=16,color="green",shape="box"];2752[label="yv1450",fontsize=16,color="green",shape="box"];2753[label="yv1410",fontsize=16,color="green",shape="box"];2754[label="yv1450",fontsize=16,color="green",shape="box"];2755[label="yv1410",fontsize=16,color="green",shape="box"];2756[label="yv1450",fontsize=16,color="green",shape="box"];2757[label="yv1410",fontsize=16,color="green",shape="box"];2758[label="yv1450",fontsize=16,color="green",shape="box"];2759[label="yv1410",fontsize=16,color="green",shape="box"];2760[label="yv1450",fontsize=16,color="green",shape="box"];2761[label="yv1410",fontsize=16,color="green",shape="box"];2762[label="yv1450",fontsize=16,color="green",shape="box"];2763[label="yv1410",fontsize=16,color="green",shape="box"];2764[label="yv1450",fontsize=16,color="green",shape="box"];2765[label="yv1410",fontsize=16,color="green",shape="box"];2766[label="yv1450",fontsize=16,color="green",shape="box"];2767[label="yv1410",fontsize=16,color="green",shape="box"];2768[label="yv1450",fontsize=16,color="green",shape="box"];2769 -> 2490[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2769[label="primEqNat yv14100 yv14500",fontsize=16,color="magenta"];2769 -> 2932[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2769 -> 2933[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2770[label="False",fontsize=16,color="green",shape="box"];2771[label="False",fontsize=16,color="green",shape="box"];2772[label="True",fontsize=16,color="green",shape="box"];2773[label="False",fontsize=16,color="green",shape="box"];2774[label="True",fontsize=16,color="green",shape="box"];2775 -> 2490[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2775[label="primEqNat yv14100 yv14500",fontsize=16,color="magenta"];2775 -> 2934[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2775 -> 2935[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2776[label="False",fontsize=16,color="green",shape="box"];2777[label="False",fontsize=16,color="green",shape="box"];2778[label="True",fontsize=16,color="green",shape="box"];2779[label="False",fontsize=16,color="green",shape="box"];2780[label="True",fontsize=16,color="green",shape="box"];2781[label="yv1411",fontsize=16,color="green",shape="box"];2782[label="yv1451",fontsize=16,color="green",shape="box"];2783[label="yv1411",fontsize=16,color="green",shape="box"];2784[label="yv1451",fontsize=16,color="green",shape="box"];2785[label="yv1411",fontsize=16,color="green",shape="box"];2786[label="yv1451",fontsize=16,color="green",shape="box"];2787[label="yv1411",fontsize=16,color="green",shape="box"];2788[label="yv1451",fontsize=16,color="green",shape="box"];2789[label="yv1411",fontsize=16,color="green",shape="box"];2790[label="yv1451",fontsize=16,color="green",shape="box"];2791[label="yv1411",fontsize=16,color="green",shape="box"];2792[label="yv1451",fontsize=16,color="green",shape="box"];2793[label="yv1411",fontsize=16,color="green",shape="box"];2794[label="yv1451",fontsize=16,color="green",shape="box"];2795[label="yv1411",fontsize=16,color="green",shape="box"];2796[label="yv1451",fontsize=16,color="green",shape="box"];2797[label="yv1411",fontsize=16,color="green",shape="box"];2798[label="yv1451",fontsize=16,color="green",shape="box"];2799[label="yv1411",fontsize=16,color="green",shape="box"];2800[label="yv1451",fontsize=16,color="green",shape="box"];2801[label="yv1411",fontsize=16,color="green",shape="box"];2802[label="yv1451",fontsize=16,color="green",shape="box"];2803[label="yv1411",fontsize=16,color="green",shape="box"];2804[label="yv1451",fontsize=16,color="green",shape="box"];2805[label="yv1411",fontsize=16,color="green",shape="box"];2806[label="yv1451",fontsize=16,color="green",shape="box"];2807[label="yv1411",fontsize=16,color="green",shape="box"];2808[label="yv1451",fontsize=16,color="green",shape="box"];2809[label="yv1410",fontsize=16,color="green",shape="box"];2810[label="yv1450",fontsize=16,color="green",shape="box"];2811[label="yv1410",fontsize=16,color="green",shape="box"];2812[label="yv1450",fontsize=16,color="green",shape="box"];2813[label="yv1410",fontsize=16,color="green",shape="box"];2814[label="yv1450",fontsize=16,color="green",shape="box"];2815[label="yv1410",fontsize=16,color="green",shape="box"];2816[label="yv1450",fontsize=16,color="green",shape="box"];2817[label="yv1410",fontsize=16,color="green",shape="box"];2818[label="yv1450",fontsize=16,color="green",shape="box"];2819[label="yv1410",fontsize=16,color="green",shape="box"];2820[label="yv1450",fontsize=16,color="green",shape="box"];2821[label="yv1410",fontsize=16,color="green",shape="box"];2822[label="yv1450",fontsize=16,color="green",shape="box"];2823[label="yv1410",fontsize=16,color="green",shape="box"];2824[label="yv1450",fontsize=16,color="green",shape="box"];2825[label="yv1410",fontsize=16,color="green",shape="box"];2826[label="yv1450",fontsize=16,color="green",shape="box"];2827[label="yv1410",fontsize=16,color="green",shape="box"];2828[label="yv1450",fontsize=16,color="green",shape="box"];2829[label="yv1410",fontsize=16,color="green",shape="box"];2830[label="yv1450",fontsize=16,color="green",shape="box"];2831[label="yv1410",fontsize=16,color="green",shape="box"];2832[label="yv1450",fontsize=16,color="green",shape="box"];2833[label="yv1410",fontsize=16,color="green",shape="box"];2834[label="yv1450",fontsize=16,color="green",shape="box"];2835[label="yv1410",fontsize=16,color="green",shape="box"];2836[label="yv1450",fontsize=16,color="green",shape="box"];2837[label="yv1410",fontsize=16,color="green",shape="box"];2838[label="yv1450",fontsize=16,color="green",shape="box"];2839[label="yv1410",fontsize=16,color="green",shape="box"];2840[label="yv1450",fontsize=16,color="green",shape="box"];2841[label="yv1410",fontsize=16,color="green",shape="box"];2842[label="yv1450",fontsize=16,color="green",shape="box"];2843[label="yv1410",fontsize=16,color="green",shape="box"];2844[label="yv1450",fontsize=16,color="green",shape="box"];2845[label="yv1410",fontsize=16,color="green",shape="box"];2846[label="yv1450",fontsize=16,color="green",shape="box"];2847[label="yv1410",fontsize=16,color="green",shape="box"];2848[label="yv1450",fontsize=16,color="green",shape="box"];2849[label="yv1410",fontsize=16,color="green",shape="box"];2850[label="yv1450",fontsize=16,color="green",shape="box"];2851[label="yv1410",fontsize=16,color="green",shape="box"];2852[label="yv1450",fontsize=16,color="green",shape="box"];2853[label="yv1410",fontsize=16,color="green",shape="box"];2854[label="yv1450",fontsize=16,color="green",shape="box"];2855[label="yv1410",fontsize=16,color="green",shape="box"];2856[label="yv1450",fontsize=16,color="green",shape="box"];2857[label="yv1410",fontsize=16,color="green",shape="box"];2858[label="yv1450",fontsize=16,color="green",shape="box"];2859[label="yv1410",fontsize=16,color="green",shape="box"];2860[label="yv1450",fontsize=16,color="green",shape="box"];2861[label="yv1410",fontsize=16,color="green",shape="box"];2862[label="yv1450",fontsize=16,color="green",shape="box"];2863[label="yv1410",fontsize=16,color="green",shape="box"];2864[label="yv1450",fontsize=16,color="green",shape="box"];2865[label="yv1451",fontsize=16,color="green",shape="box"];2866[label="yv1410",fontsize=16,color="green",shape="box"];2867[label="yv1450",fontsize=16,color="green",shape="box"];2868[label="yv1411",fontsize=16,color="green",shape="box"];2869[label="primEqNat (Succ yv14100) (Succ yv14500)",fontsize=16,color="black",shape="box"];2869 -> 2936[label="",style="solid", color="black", weight=3]; 16.91/6.22 2870[label="primEqNat (Succ yv14100) Zero",fontsize=16,color="black",shape="box"];2870 -> 2937[label="",style="solid", color="black", weight=3]; 16.91/6.22 2871[label="primEqNat Zero (Succ yv14500)",fontsize=16,color="black",shape="box"];2871 -> 2938[label="",style="solid", color="black", weight=3]; 16.91/6.22 2872[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2872 -> 2939[label="",style="solid", color="black", weight=3]; 16.91/6.22 2873[label="List.nubNub'0 yv154 yv155 (yv156 : yv157) True",fontsize=16,color="black",shape="box"];2873 -> 2940[label="",style="solid", color="black", weight=3]; 16.91/6.22 2874[label="primMulInt (Pos yv14100) yv1451",fontsize=16,color="burlywood",shape="box"];3235[label="yv1451/Pos yv14510",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3235[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3235 -> 2941[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3236[label="yv1451/Neg yv14510",fontsize=10,color="white",style="solid",shape="box"];2874 -> 3236[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3236 -> 2942[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2875[label="primMulInt (Neg yv14100) yv1451",fontsize=16,color="burlywood",shape="box"];3237[label="yv1451/Pos yv14510",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3237[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3237 -> 2943[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3238[label="yv1451/Neg yv14510",fontsize=10,color="white",style="solid",shape="box"];2875 -> 3238[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3238 -> 2944[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2876[label="yv1412",fontsize=16,color="green",shape="box"];2877[label="yv1452",fontsize=16,color="green",shape="box"];2878[label="yv1412",fontsize=16,color="green",shape="box"];2879[label="yv1452",fontsize=16,color="green",shape="box"];2880[label="yv1412",fontsize=16,color="green",shape="box"];2881[label="yv1452",fontsize=16,color="green",shape="box"];2882[label="yv1412",fontsize=16,color="green",shape="box"];2883[label="yv1452",fontsize=16,color="green",shape="box"];2884[label="yv1412",fontsize=16,color="green",shape="box"];2885[label="yv1452",fontsize=16,color="green",shape="box"];2886[label="yv1412",fontsize=16,color="green",shape="box"];2887[label="yv1452",fontsize=16,color="green",shape="box"];2888[label="yv1412",fontsize=16,color="green",shape="box"];2889[label="yv1452",fontsize=16,color="green",shape="box"];2890[label="yv1412",fontsize=16,color="green",shape="box"];2891[label="yv1452",fontsize=16,color="green",shape="box"];2892[label="yv1412",fontsize=16,color="green",shape="box"];2893[label="yv1452",fontsize=16,color="green",shape="box"];2894[label="yv1412",fontsize=16,color="green",shape="box"];2895[label="yv1452",fontsize=16,color="green",shape="box"];2896[label="yv1412",fontsize=16,color="green",shape="box"];2897[label="yv1452",fontsize=16,color="green",shape="box"];2898[label="yv1412",fontsize=16,color="green",shape="box"];2899[label="yv1452",fontsize=16,color="green",shape="box"];2900[label="yv1412",fontsize=16,color="green",shape="box"];2901[label="yv1452",fontsize=16,color="green",shape="box"];2902[label="yv1412",fontsize=16,color="green",shape="box"];2903[label="yv1452",fontsize=16,color="green",shape="box"];2904[label="yv1411",fontsize=16,color="green",shape="box"];2905[label="yv1451",fontsize=16,color="green",shape="box"];2906[label="yv1411",fontsize=16,color="green",shape="box"];2907[label="yv1451",fontsize=16,color="green",shape="box"];2908[label="yv1411",fontsize=16,color="green",shape="box"];2909[label="yv1451",fontsize=16,color="green",shape="box"];2910[label="yv1411",fontsize=16,color="green",shape="box"];2911[label="yv1451",fontsize=16,color="green",shape="box"];2912[label="yv1411",fontsize=16,color="green",shape="box"];2913[label="yv1451",fontsize=16,color="green",shape="box"];2914[label="yv1411",fontsize=16,color="green",shape="box"];2915[label="yv1451",fontsize=16,color="green",shape="box"];2916[label="yv1411",fontsize=16,color="green",shape="box"];2917[label="yv1451",fontsize=16,color="green",shape="box"];2918[label="yv1411",fontsize=16,color="green",shape="box"];2919[label="yv1451",fontsize=16,color="green",shape="box"];2920[label="yv1411",fontsize=16,color="green",shape="box"];2921[label="yv1451",fontsize=16,color="green",shape="box"];2922[label="yv1411",fontsize=16,color="green",shape="box"];2923[label="yv1451",fontsize=16,color="green",shape="box"];2924[label="yv1411",fontsize=16,color="green",shape="box"];2925[label="yv1451",fontsize=16,color="green",shape="box"];2926[label="yv1411",fontsize=16,color="green",shape="box"];2927[label="yv1451",fontsize=16,color="green",shape="box"];2928[label="yv1411",fontsize=16,color="green",shape="box"];2929[label="yv1451",fontsize=16,color="green",shape="box"];2930[label="yv1411",fontsize=16,color="green",shape="box"];2931[label="yv1451",fontsize=16,color="green",shape="box"];2932[label="yv14500",fontsize=16,color="green",shape="box"];2933[label="yv14100",fontsize=16,color="green",shape="box"];2934[label="yv14500",fontsize=16,color="green",shape="box"];2935[label="yv14100",fontsize=16,color="green",shape="box"];2936 -> 2490[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2936[label="primEqNat yv14100 yv14500",fontsize=16,color="magenta"];2936 -> 2945[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2936 -> 2946[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2937[label="False",fontsize=16,color="green",shape="box"];2938[label="False",fontsize=16,color="green",shape="box"];2939[label="True",fontsize=16,color="green",shape="box"];2940[label="yv154 : List.nubNub' yv155 (yv154 : yv156 : yv157)",fontsize=16,color="green",shape="box"];2940 -> 2947[label="",style="dashed", color="green", weight=3]; 16.91/6.22 2941[label="primMulInt (Pos yv14100) (Pos yv14510)",fontsize=16,color="black",shape="box"];2941 -> 2948[label="",style="solid", color="black", weight=3]; 16.91/6.22 2942[label="primMulInt (Pos yv14100) (Neg yv14510)",fontsize=16,color="black",shape="box"];2942 -> 2949[label="",style="solid", color="black", weight=3]; 16.91/6.22 2943[label="primMulInt (Neg yv14100) (Pos yv14510)",fontsize=16,color="black",shape="box"];2943 -> 2950[label="",style="solid", color="black", weight=3]; 16.91/6.22 2944[label="primMulInt (Neg yv14100) (Neg yv14510)",fontsize=16,color="black",shape="box"];2944 -> 2951[label="",style="solid", color="black", weight=3]; 16.91/6.22 2945[label="yv14500",fontsize=16,color="green",shape="box"];2946[label="yv14100",fontsize=16,color="green",shape="box"];2947 -> 1243[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2947[label="List.nubNub' yv155 (yv154 : yv156 : yv157)",fontsize=16,color="magenta"];2947 -> 2952[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2947 -> 2953[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2947 -> 2954[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2948[label="Pos (primMulNat yv14100 yv14510)",fontsize=16,color="green",shape="box"];2948 -> 2955[label="",style="dashed", color="green", weight=3]; 16.91/6.22 2949[label="Neg (primMulNat yv14100 yv14510)",fontsize=16,color="green",shape="box"];2949 -> 2956[label="",style="dashed", color="green", weight=3]; 16.91/6.22 2950[label="Neg (primMulNat yv14100 yv14510)",fontsize=16,color="green",shape="box"];2950 -> 2957[label="",style="dashed", color="green", weight=3]; 16.91/6.22 2951[label="Pos (primMulNat yv14100 yv14510)",fontsize=16,color="green",shape="box"];2951 -> 2958[label="",style="dashed", color="green", weight=3]; 16.91/6.22 2952[label="yv154",fontsize=16,color="green",shape="box"];2953[label="yv155",fontsize=16,color="green",shape="box"];2954[label="yv156 : yv157",fontsize=16,color="green",shape="box"];2955[label="primMulNat yv14100 yv14510",fontsize=16,color="burlywood",shape="triangle"];3239[label="yv14100/Succ yv141000",fontsize=10,color="white",style="solid",shape="box"];2955 -> 3239[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3239 -> 2959[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3240[label="yv14100/Zero",fontsize=10,color="white",style="solid",shape="box"];2955 -> 3240[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3240 -> 2960[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2956 -> 2955[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2956[label="primMulNat yv14100 yv14510",fontsize=16,color="magenta"];2956 -> 2961[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2957 -> 2955[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2957[label="primMulNat yv14100 yv14510",fontsize=16,color="magenta"];2957 -> 2962[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2958 -> 2955[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2958[label="primMulNat yv14100 yv14510",fontsize=16,color="magenta"];2958 -> 2963[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2958 -> 2964[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2959[label="primMulNat (Succ yv141000) yv14510",fontsize=16,color="burlywood",shape="box"];3241[label="yv14510/Succ yv145100",fontsize=10,color="white",style="solid",shape="box"];2959 -> 3241[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3241 -> 2965[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3242[label="yv14510/Zero",fontsize=10,color="white",style="solid",shape="box"];2959 -> 3242[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3242 -> 2966[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2960[label="primMulNat Zero yv14510",fontsize=16,color="burlywood",shape="box"];3243[label="yv14510/Succ yv145100",fontsize=10,color="white",style="solid",shape="box"];2960 -> 3243[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3243 -> 2967[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3244[label="yv14510/Zero",fontsize=10,color="white",style="solid",shape="box"];2960 -> 3244[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3244 -> 2968[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2961[label="yv14510",fontsize=16,color="green",shape="box"];2962[label="yv14100",fontsize=16,color="green",shape="box"];2963[label="yv14100",fontsize=16,color="green",shape="box"];2964[label="yv14510",fontsize=16,color="green",shape="box"];2965[label="primMulNat (Succ yv141000) (Succ yv145100)",fontsize=16,color="black",shape="box"];2965 -> 2969[label="",style="solid", color="black", weight=3]; 16.91/6.22 2966[label="primMulNat (Succ yv141000) Zero",fontsize=16,color="black",shape="box"];2966 -> 2970[label="",style="solid", color="black", weight=3]; 16.91/6.22 2967[label="primMulNat Zero (Succ yv145100)",fontsize=16,color="black",shape="box"];2967 -> 2971[label="",style="solid", color="black", weight=3]; 16.91/6.22 2968[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2968 -> 2972[label="",style="solid", color="black", weight=3]; 16.91/6.22 2969 -> 2973[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2969[label="primPlusNat (primMulNat yv141000 (Succ yv145100)) (Succ yv145100)",fontsize=16,color="magenta"];2969 -> 2974[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2970[label="Zero",fontsize=16,color="green",shape="box"];2971[label="Zero",fontsize=16,color="green",shape="box"];2972[label="Zero",fontsize=16,color="green",shape="box"];2974 -> 2955[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2974[label="primMulNat yv141000 (Succ yv145100)",fontsize=16,color="magenta"];2974 -> 2975[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2974 -> 2976[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2973[label="primPlusNat yv173 (Succ yv145100)",fontsize=16,color="burlywood",shape="triangle"];3245[label="yv173/Succ yv1730",fontsize=10,color="white",style="solid",shape="box"];2973 -> 3245[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3245 -> 2977[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3246[label="yv173/Zero",fontsize=10,color="white",style="solid",shape="box"];2973 -> 3246[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3246 -> 2978[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2975[label="yv141000",fontsize=16,color="green",shape="box"];2976[label="Succ yv145100",fontsize=16,color="green",shape="box"];2977[label="primPlusNat (Succ yv1730) (Succ yv145100)",fontsize=16,color="black",shape="box"];2977 -> 2979[label="",style="solid", color="black", weight=3]; 16.91/6.22 2978[label="primPlusNat Zero (Succ yv145100)",fontsize=16,color="black",shape="box"];2978 -> 2980[label="",style="solid", color="black", weight=3]; 16.91/6.22 2979[label="Succ (Succ (primPlusNat yv1730 yv145100))",fontsize=16,color="green",shape="box"];2979 -> 2981[label="",style="dashed", color="green", weight=3]; 16.91/6.22 2980[label="Succ yv145100",fontsize=16,color="green",shape="box"];2981[label="primPlusNat yv1730 yv145100",fontsize=16,color="burlywood",shape="triangle"];3247[label="yv1730/Succ yv17300",fontsize=10,color="white",style="solid",shape="box"];2981 -> 3247[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3247 -> 2982[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3248[label="yv1730/Zero",fontsize=10,color="white",style="solid",shape="box"];2981 -> 3248[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3248 -> 2983[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2982[label="primPlusNat (Succ yv17300) yv145100",fontsize=16,color="burlywood",shape="box"];3249[label="yv145100/Succ yv1451000",fontsize=10,color="white",style="solid",shape="box"];2982 -> 3249[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3249 -> 2984[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3250[label="yv145100/Zero",fontsize=10,color="white",style="solid",shape="box"];2982 -> 3250[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3250 -> 2985[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2983[label="primPlusNat Zero yv145100",fontsize=16,color="burlywood",shape="box"];3251[label="yv145100/Succ yv1451000",fontsize=10,color="white",style="solid",shape="box"];2983 -> 3251[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3251 -> 2986[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 3252[label="yv145100/Zero",fontsize=10,color="white",style="solid",shape="box"];2983 -> 3252[label="",style="solid", color="burlywood", weight=9]; 16.91/6.22 3252 -> 2987[label="",style="solid", color="burlywood", weight=3]; 16.91/6.22 2984[label="primPlusNat (Succ yv17300) (Succ yv1451000)",fontsize=16,color="black",shape="box"];2984 -> 2988[label="",style="solid", color="black", weight=3]; 16.91/6.22 2985[label="primPlusNat (Succ yv17300) Zero",fontsize=16,color="black",shape="box"];2985 -> 2989[label="",style="solid", color="black", weight=3]; 16.91/6.22 2986[label="primPlusNat Zero (Succ yv1451000)",fontsize=16,color="black",shape="box"];2986 -> 2990[label="",style="solid", color="black", weight=3]; 16.91/6.22 2987[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2987 -> 2991[label="",style="solid", color="black", weight=3]; 16.91/6.22 2988[label="Succ (Succ (primPlusNat yv17300 yv1451000))",fontsize=16,color="green",shape="box"];2988 -> 2992[label="",style="dashed", color="green", weight=3]; 16.91/6.22 2989[label="Succ yv17300",fontsize=16,color="green",shape="box"];2990[label="Succ yv1451000",fontsize=16,color="green",shape="box"];2991[label="Zero",fontsize=16,color="green",shape="box"];2992 -> 2981[label="",style="dashed", color="red", weight=0]; 16.91/6.22 2992[label="primPlusNat yv17300 yv1451000",fontsize=16,color="magenta"];2992 -> 2993[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2992 -> 2994[label="",style="dashed", color="magenta", weight=3]; 16.91/6.22 2993[label="yv1451000",fontsize=16,color="green",shape="box"];2994[label="yv17300",fontsize=16,color="green",shape="box"];} 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (8) 16.91/6.22 Complex Obligation (AND) 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (9) 16.91/6.22 Obligation: 16.91/6.22 Q DP problem: 16.91/6.22 The TRS P consists of the following rules: 16.91/6.22 16.91/6.22 new_nubNub'(:(yv480, yv481), yv49, yv50, bc) -> new_nubNub'1(yv480, yv481, yv49, yv50, yv49, yv50, bc) 16.91/6.22 new_nubNub'10(yv154, yv155, yv156, yv157, False, [], bb) -> new_nubNub'(yv155, yv154, :(yv156, yv157), bb) 16.91/6.22 new_nubNub'1(yv141, yv142, yv143, yv144, yv145, yv146, ba) -> new_nubNub'10(yv141, yv142, yv143, yv144, new_esEs4(yv141, yv145, ba), yv146, ba) 16.91/6.22 new_nubNub'10(yv154, yv155, yv156, yv157, False, :(yv1590, yv1591), bb) -> new_nubNub'1(yv154, yv155, yv156, yv157, yv1590, yv1591, bb) 16.91/6.22 new_nubNub'10(yv154, yv155, yv156, yv157, True, yv159, bb) -> new_nubNub'(yv155, yv156, yv157, bb) 16.91/6.22 16.91/6.22 The TRS R consists of the following rules: 16.91/6.22 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), ty_Double, cd) -> new_esEs9(yv1410, yv1450) 16.91/6.22 new_esEs22(yv1412, yv1452, ty_Float) -> new_esEs6(yv1412, yv1452) 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), ty_Ordering, cd) -> new_esEs10(yv1410, yv1450) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, app(ty_Ratio, ea)) -> new_esEs8(yv1410, yv1450, ea) 16.91/6.22 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), ty_Integer, cd) -> new_esEs17(yv1410, yv1450) 16.91/6.22 new_esEs17(Integer(yv1410), Integer(yv1450)) -> new_primEqInt(yv1410, yv1450) 16.91/6.22 new_esEs21(yv1410, yv1450, ty_Ordering) -> new_esEs10(yv1410, yv1450) 16.91/6.22 new_esEs15(Left(yv1410), Right(yv1450), cc, cd) -> False 16.91/6.22 new_esEs15(Right(yv1410), Left(yv1450), cc, cd) -> False 16.91/6.22 new_esEs22(yv1412, yv1452, app(app(ty_Either, bdc), bdd)) -> new_esEs15(yv1412, yv1452, bdc, bdd) 16.91/6.22 new_esEs4(yv141, yv145, app(ty_[], cb)) -> new_esEs13(yv141, yv145, cb) 16.91/6.22 new_esEs23(yv1411, yv1451, app(ty_[], bed)) -> new_esEs13(yv1411, yv1451, bed) 16.91/6.22 new_esEs19(yv1410, yv1450, ty_Char) -> new_esEs16(yv1410, yv1450) 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), app(app(ty_@2, dc), dd), cd) -> new_esEs12(yv1410, yv1450, dc, dd) 16.91/6.22 new_esEs21(yv1410, yv1450, ty_Integer) -> new_esEs17(yv1410, yv1450) 16.91/6.22 new_esEs19(yv1410, yv1450, ty_@0) -> new_esEs5(yv1410, yv1450) 16.91/6.22 new_esEs4(yv141, yv145, ty_@0) -> new_esEs5(yv141, yv145) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, ty_Ordering) -> new_esEs10(yv1410, yv1450) 16.91/6.22 new_esEs20(yv1411, yv1451, app(app(ty_@2, hb), hc)) -> new_esEs12(yv1411, yv1451, hb, hc) 16.91/6.22 new_esEs20(yv1411, yv1451, ty_Bool) -> new_esEs14(yv1411, yv1451) 16.91/6.22 new_asAs(True, yv172) -> yv172 16.91/6.22 new_esEs23(yv1411, yv1451, ty_Double) -> new_esEs9(yv1411, yv1451) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), ty_Float) -> new_esEs6(yv1410, yv1450) 16.91/6.22 new_esEs21(yv1410, yv1450, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs11(yv1410, yv1450, baa, bab, bac) 16.91/6.22 new_esEs23(yv1411, yv1451, ty_Integer) -> new_esEs17(yv1411, yv1451) 16.91/6.22 new_esEs21(yv1410, yv1450, ty_Int) -> new_esEs7(yv1410, yv1450) 16.91/6.22 new_esEs21(yv1410, yv1450, app(ty_[], baf)) -> new_esEs13(yv1410, yv1450, baf) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, ty_Double) -> new_esEs9(yv1410, yv1450) 16.91/6.22 new_esEs24(yv1410, yv1450, app(app(ty_Either, bfg), bfh)) -> new_esEs15(yv1410, yv1450, bfg, bfh) 16.91/6.22 new_primEqInt(Pos(Succ(yv14100)), Pos(Zero)) -> False 16.91/6.22 new_primEqInt(Pos(Zero), Pos(Succ(yv14500))) -> False 16.91/6.22 new_esEs20(yv1411, yv1451, ty_Float) -> new_esEs6(yv1411, yv1451) 16.91/6.22 new_esEs9(Double(yv1410, yv1411), Double(yv1450, yv1451)) -> new_esEs7(new_sr(yv1410, yv1451), new_sr(yv1411, yv1450)) 16.91/6.22 new_esEs16(Char(yv1410), Char(yv1450)) -> new_primEqNat0(yv1410, yv1450) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, app(ty_Maybe, fb)) -> new_esEs18(yv1410, yv1450, fb) 16.91/6.22 new_esEs26(yv1410, yv1450, ty_Integer) -> new_esEs17(yv1410, yv1450) 16.91/6.22 new_esEs4(yv141, yv145, ty_Double) -> new_esEs9(yv141, yv145) 16.91/6.22 new_primEqNat0(Succ(yv14100), Succ(yv14500)) -> new_primEqNat0(yv14100, yv14500) 16.91/6.22 new_esEs21(yv1410, yv1450, app(ty_Maybe, bba)) -> new_esEs18(yv1410, yv1450, bba) 16.91/6.22 new_esEs10(GT, GT) -> True 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), app(ty_Ratio, bbb)) -> new_esEs8(yv1410, yv1450, bbb) 16.91/6.22 new_esEs19(yv1410, yv1450, ty_Bool) -> new_esEs14(yv1410, yv1450) 16.91/6.22 new_esEs26(yv1410, yv1450, ty_Int) -> new_esEs7(yv1410, yv1450) 16.91/6.22 new_esEs4(yv141, yv145, ty_Bool) -> new_esEs14(yv141, yv145) 16.91/6.22 new_esEs4(yv141, yv145, app(ty_Maybe, ce)) -> new_esEs18(yv141, yv145, ce) 16.91/6.22 new_esEs21(yv1410, yv1450, ty_@0) -> new_esEs5(yv1410, yv1450) 16.91/6.22 new_esEs23(yv1411, yv1451, ty_Int) -> new_esEs7(yv1411, yv1451) 16.91/6.22 new_primMulNat0(Zero, Zero) -> Zero 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), app(ty_Maybe, dh), cd) -> new_esEs18(yv1410, yv1450, dh) 16.91/6.22 new_esEs23(yv1411, yv1451, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs11(yv1411, yv1451, bdg, bdh, bea) 16.91/6.22 new_esEs24(yv1410, yv1450, app(app(ty_@2, bfd), bfe)) -> new_esEs12(yv1410, yv1450, bfd, bfe) 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), app(app(app(ty_@3, cg), da), db), cd) -> new_esEs11(yv1410, yv1450, cg, da, db) 16.91/6.22 new_esEs21(yv1410, yv1450, app(ty_Ratio, hh)) -> new_esEs8(yv1410, yv1450, hh) 16.91/6.22 new_esEs11(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), be, bf, bg) -> new_asAs(new_esEs24(yv1410, yv1450, be), new_asAs(new_esEs23(yv1411, yv1451, bf), new_esEs22(yv1412, yv1452, bg))) 16.91/6.22 new_esEs20(yv1411, yv1451, ty_@0) -> new_esEs5(yv1411, yv1451) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, ty_Int) -> new_esEs7(yv1410, yv1450) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), app(ty_Maybe, bcc)) -> new_esEs18(yv1410, yv1450, bcc) 16.91/6.22 new_esEs4(yv141, yv145, ty_Integer) -> new_esEs17(yv141, yv145) 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), app(app(ty_Either, df), dg), cd) -> new_esEs15(yv1410, yv1450, df, dg) 16.91/6.22 new_esEs4(yv141, yv145, ty_Int) -> new_esEs7(yv141, yv145) 16.91/6.22 new_esEs4(yv141, yv145, app(app(app(ty_@3, be), bf), bg)) -> new_esEs11(yv141, yv145, be, bf, bg) 16.91/6.22 new_primEqNat0(Succ(yv14100), Zero) -> False 16.91/6.22 new_primEqNat0(Zero, Succ(yv14500)) -> False 16.91/6.22 new_esEs19(yv1410, yv1450, ty_Ordering) -> new_esEs10(yv1410, yv1450) 16.91/6.22 new_esEs23(yv1411, yv1451, app(ty_Maybe, beg)) -> new_esEs18(yv1411, yv1451, beg) 16.91/6.22 new_esEs13([], [], cb) -> True 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), ty_Integer) -> new_esEs17(yv1410, yv1450) 16.91/6.22 new_esEs21(yv1410, yv1450, ty_Char) -> new_esEs16(yv1410, yv1450) 16.91/6.22 new_esEs19(yv1410, yv1450, app(app(ty_Either, gc), gd)) -> new_esEs15(yv1410, yv1450, gc, gd) 16.91/6.22 new_esEs22(yv1412, yv1452, app(ty_Ratio, bcd)) -> new_esEs8(yv1412, yv1452, bcd) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs11(yv1410, yv1450, bbc, bbd, bbe) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), ty_Int) -> new_esEs7(yv1410, yv1450) 16.91/6.22 new_esEs14(False, True) -> False 16.91/6.22 new_esEs14(True, False) -> False 16.91/6.22 new_esEs23(yv1411, yv1451, ty_Bool) -> new_esEs14(yv1411, yv1451) 16.91/6.22 new_esEs10(EQ, EQ) -> True 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), ty_Int, cd) -> new_esEs7(yv1410, yv1450) 16.91/6.22 new_esEs20(yv1411, yv1451, app(app(ty_Either, he), hf)) -> new_esEs15(yv1411, yv1451, he, hf) 16.91/6.22 new_esEs24(yv1410, yv1450, ty_Float) -> new_esEs6(yv1410, yv1450) 16.91/6.22 new_esEs22(yv1412, yv1452, ty_Integer) -> new_esEs17(yv1412, yv1452) 16.91/6.22 new_primEqInt(Neg(Succ(yv14100)), Neg(Zero)) -> False 16.91/6.22 new_primEqInt(Neg(Zero), Neg(Succ(yv14500))) -> False 16.91/6.22 new_esEs22(yv1412, yv1452, app(ty_Maybe, bde)) -> new_esEs18(yv1412, yv1452, bde) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, ty_Integer) -> new_esEs17(yv1410, yv1450) 16.91/6.22 new_esEs19(yv1410, yv1450, app(app(ty_@2, fh), ga)) -> new_esEs12(yv1410, yv1450, fh, ga) 16.91/6.22 new_esEs20(yv1411, yv1451, ty_Char) -> new_esEs16(yv1411, yv1451) 16.91/6.22 new_primEqInt(Pos(Succ(yv14100)), Pos(Succ(yv14500))) -> new_primEqNat0(yv14100, yv14500) 16.91/6.22 new_esEs24(yv1410, yv1450, ty_Bool) -> new_esEs14(yv1410, yv1450) 16.91/6.22 new_esEs24(yv1410, yv1450, ty_Double) -> new_esEs9(yv1410, yv1450) 16.91/6.22 new_esEs7(yv141, yv145) -> new_primEqInt(yv141, yv145) 16.91/6.22 new_sr(Pos(yv14100), Neg(yv14510)) -> Neg(new_primMulNat0(yv14100, yv14510)) 16.91/6.22 new_sr(Neg(yv14100), Pos(yv14510)) -> Neg(new_primMulNat0(yv14100, yv14510)) 16.91/6.22 new_primPlusNat1(Succ(yv17300), Succ(yv1451000)) -> Succ(Succ(new_primPlusNat1(yv17300, yv1451000))) 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), app(ty_Ratio, cf), cd) -> new_esEs8(yv1410, yv1450, cf) 16.91/6.22 new_primEqInt(Pos(Succ(yv14100)), Neg(yv1450)) -> False 16.91/6.22 new_primEqInt(Neg(Succ(yv14100)), Pos(yv1450)) -> False 16.91/6.22 new_esEs14(False, False) -> True 16.91/6.22 new_esEs22(yv1412, yv1452, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs11(yv1412, yv1452, bce, bcf, bcg) 16.91/6.22 new_esEs10(LT, EQ) -> False 16.91/6.22 new_esEs10(EQ, LT) -> False 16.91/6.22 new_esEs22(yv1412, yv1452, ty_Int) -> new_esEs7(yv1412, yv1452) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), app(ty_[], bbh)) -> new_esEs13(yv1410, yv1450, bbh) 16.91/6.22 new_esEs20(yv1411, yv1451, ty_Ordering) -> new_esEs10(yv1411, yv1451) 16.91/6.22 new_esEs24(yv1410, yv1450, app(ty_[], bff)) -> new_esEs13(yv1410, yv1450, bff) 16.91/6.22 new_esEs10(LT, GT) -> False 16.91/6.22 new_esEs10(GT, LT) -> False 16.91/6.22 new_esEs20(yv1411, yv1451, ty_Integer) -> new_esEs17(yv1411, yv1451) 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), app(ty_[], de), cd) -> new_esEs13(yv1410, yv1450, de) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, ty_Float) -> new_esEs6(yv1410, yv1450) 16.91/6.22 new_esEs20(yv1411, yv1451, ty_Double) -> new_esEs9(yv1411, yv1451) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, app(ty_[], eg)) -> new_esEs13(yv1410, yv1450, eg) 16.91/6.22 new_esEs19(yv1410, yv1450, app(ty_Ratio, fc)) -> new_esEs8(yv1410, yv1450, fc) 16.91/6.22 new_sr(Neg(yv14100), Neg(yv14510)) -> Pos(new_primMulNat0(yv14100, yv14510)) 16.91/6.22 new_esEs23(yv1411, yv1451, ty_Float) -> new_esEs6(yv1411, yv1451) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), ty_@0) -> new_esEs5(yv1410, yv1450) 16.91/6.22 new_esEs19(yv1410, yv1450, ty_Int) -> new_esEs7(yv1410, yv1450) 16.91/6.22 new_esEs21(yv1410, yv1450, app(app(ty_Either, bag), bah)) -> new_esEs15(yv1410, yv1450, bag, bah) 16.91/6.22 new_esEs24(yv1410, yv1450, ty_@0) -> new_esEs5(yv1410, yv1450) 16.91/6.22 new_esEs20(yv1411, yv1451, app(ty_Maybe, hg)) -> new_esEs18(yv1411, yv1451, hg) 16.91/6.22 new_esEs22(yv1412, yv1452, ty_Ordering) -> new_esEs10(yv1412, yv1452) 16.91/6.22 new_esEs19(yv1410, yv1450, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs11(yv1410, yv1450, fd, ff, fg) 16.91/6.22 new_primEqInt(Pos(Zero), Neg(Succ(yv14500))) -> False 16.91/6.22 new_primEqInt(Neg(Zero), Pos(Succ(yv14500))) -> False 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), ty_Float, cd) -> new_esEs6(yv1410, yv1450) 16.91/6.22 new_esEs4(yv141, yv145, app(app(ty_Either, cc), cd)) -> new_esEs15(yv141, yv145, cc, cd) 16.91/6.22 new_esEs22(yv1412, yv1452, app(ty_[], bdb)) -> new_esEs13(yv1412, yv1452, bdb) 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), ty_Char, cd) -> new_esEs16(yv1410, yv1450) 16.91/6.22 new_esEs20(yv1411, yv1451, ty_Int) -> new_esEs7(yv1411, yv1451) 16.91/6.22 new_esEs20(yv1411, yv1451, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs11(yv1411, yv1451, gg, gh, ha) 16.91/6.22 new_primEqInt(Neg(Succ(yv14100)), Neg(Succ(yv14500))) -> new_primEqNat0(yv14100, yv14500) 16.91/6.22 new_primPlusNat0(Succ(yv1730), yv145100) -> Succ(Succ(new_primPlusNat1(yv1730, yv145100))) 16.91/6.22 new_esEs22(yv1412, yv1452, ty_Double) -> new_esEs9(yv1412, yv1452) 16.91/6.22 new_esEs4(yv141, yv145, app(ty_Ratio, bd)) -> new_esEs8(yv141, yv145, bd) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), ty_Bool) -> new_esEs14(yv1410, yv1450) 16.91/6.22 new_esEs23(yv1411, yv1451, app(ty_Ratio, bdf)) -> new_esEs8(yv1411, yv1451, bdf) 16.91/6.22 new_esEs13(:(yv1410, yv1411), [], cb) -> False 16.91/6.22 new_esEs13([], :(yv1450, yv1451), cb) -> False 16.91/6.22 new_esEs24(yv1410, yv1450, ty_Ordering) -> new_esEs10(yv1410, yv1450) 16.91/6.22 new_esEs22(yv1412, yv1452, ty_@0) -> new_esEs5(yv1412, yv1452) 16.91/6.22 new_esEs19(yv1410, yv1450, ty_Double) -> new_esEs9(yv1410, yv1450) 16.91/6.22 new_esEs21(yv1410, yv1450, app(app(ty_@2, bad), bae)) -> new_esEs12(yv1410, yv1450, bad, bae) 16.91/6.22 new_primPlusNat1(Zero, Zero) -> Zero 16.91/6.22 new_primMulNat0(Succ(yv141000), Zero) -> Zero 16.91/6.22 new_primMulNat0(Zero, Succ(yv145100)) -> Zero 16.91/6.22 new_sr(Pos(yv14100), Pos(yv14510)) -> Pos(new_primMulNat0(yv14100, yv14510)) 16.91/6.22 new_primPlusNat0(Zero, yv145100) -> Succ(yv145100) 16.91/6.22 new_esEs19(yv1410, yv1450, ty_Float) -> new_esEs6(yv1410, yv1450) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), ty_Double) -> new_esEs9(yv1410, yv1450) 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), ty_@0, cd) -> new_esEs5(yv1410, yv1450) 16.91/6.22 new_esEs4(yv141, yv145, ty_Float) -> new_esEs6(yv141, yv145) 16.91/6.22 new_esEs12(@2(yv1410, yv1411), @2(yv1450, yv1451), bh, ca) -> new_asAs(new_esEs21(yv1410, yv1450, bh), new_esEs20(yv1411, yv1451, ca)) 16.91/6.22 new_esEs20(yv1411, yv1451, app(ty_Ratio, gf)) -> new_esEs8(yv1411, yv1451, gf) 16.91/6.22 new_esEs6(Float(yv1410, yv1411), Float(yv1450, yv1451)) -> new_esEs7(new_sr(yv1410, yv1451), new_sr(yv1411, yv1450)) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), app(app(ty_@2, bbf), bbg)) -> new_esEs12(yv1410, yv1450, bbf, bbg) 16.91/6.22 new_esEs24(yv1410, yv1450, app(ty_Maybe, bga)) -> new_esEs18(yv1410, yv1450, bga) 16.91/6.22 new_esEs10(EQ, GT) -> False 16.91/6.22 new_esEs10(GT, EQ) -> False 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, ty_Bool) -> new_esEs14(yv1410, yv1450) 16.91/6.22 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 16.91/6.22 new_esEs23(yv1411, yv1451, ty_Char) -> new_esEs16(yv1411, yv1451) 16.91/6.22 new_esEs8(:%(yv1410, yv1411), :%(yv1450, yv1451), bd) -> new_asAs(new_esEs26(yv1410, yv1450, bd), new_esEs25(yv1411, yv1451, bd)) 16.91/6.22 new_esEs25(yv1411, yv1451, ty_Integer) -> new_esEs17(yv1411, yv1451) 16.91/6.22 new_primMulNat0(Succ(yv141000), Succ(yv145100)) -> new_primPlusNat0(new_primMulNat0(yv141000, Succ(yv145100)), yv145100) 16.91/6.22 new_esEs4(yv141, yv145, app(app(ty_@2, bh), ca)) -> new_esEs12(yv141, yv145, bh, ca) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, ty_Char) -> new_esEs16(yv1410, yv1450) 16.91/6.22 new_esEs22(yv1412, yv1452, ty_Char) -> new_esEs16(yv1412, yv1452) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, app(app(ty_Either, eh), fa)) -> new_esEs15(yv1410, yv1450, eh, fa) 16.91/6.22 new_esEs22(yv1412, yv1452, ty_Bool) -> new_esEs14(yv1412, yv1452) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, ty_@0) -> new_esEs5(yv1410, yv1450) 16.91/6.22 new_esEs23(yv1411, yv1451, app(app(ty_@2, beb), bec)) -> new_esEs12(yv1411, yv1451, beb, bec) 16.91/6.22 new_esEs24(yv1410, yv1450, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs11(yv1410, yv1450, bfa, bfb, bfc) 16.91/6.22 new_esEs24(yv1410, yv1450, ty_Char) -> new_esEs16(yv1410, yv1450) 16.91/6.22 new_esEs24(yv1410, yv1450, ty_Int) -> new_esEs7(yv1410, yv1450) 16.91/6.22 new_primPlusNat1(Succ(yv17300), Zero) -> Succ(yv17300) 16.91/6.22 new_primPlusNat1(Zero, Succ(yv1451000)) -> Succ(yv1451000) 16.91/6.22 new_esEs4(yv141, yv145, ty_Ordering) -> new_esEs10(yv141, yv145) 16.91/6.22 new_esEs24(yv1410, yv1450, ty_Integer) -> new_esEs17(yv1410, yv1450) 16.91/6.22 new_esEs4(yv141, yv145, ty_Char) -> new_esEs16(yv141, yv145) 16.91/6.22 new_esEs19(yv1410, yv1450, ty_Integer) -> new_esEs17(yv1410, yv1450) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs11(yv1410, yv1450, eb, ec, ed) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), ty_Char) -> new_esEs16(yv1410, yv1450) 16.91/6.22 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 16.91/6.22 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 16.91/6.22 new_esEs15(Left(yv1410), Left(yv1450), ty_Bool, cd) -> new_esEs14(yv1410, yv1450) 16.91/6.22 new_esEs15(Right(yv1410), Right(yv1450), cc, app(app(ty_@2, ee), ef)) -> new_esEs12(yv1410, yv1450, ee, ef) 16.91/6.22 new_esEs25(yv1411, yv1451, ty_Int) -> new_esEs7(yv1411, yv1451) 16.91/6.22 new_esEs19(yv1410, yv1450, app(ty_Maybe, ge)) -> new_esEs18(yv1410, yv1450, ge) 16.91/6.22 new_esEs22(yv1412, yv1452, app(app(ty_@2, bch), bda)) -> new_esEs12(yv1412, yv1452, bch, bda) 16.91/6.22 new_esEs23(yv1411, yv1451, ty_@0) -> new_esEs5(yv1411, yv1451) 16.91/6.22 new_primEqNat0(Zero, Zero) -> True 16.91/6.22 new_esEs18(Nothing, Nothing, ce) -> True 16.91/6.22 new_esEs13(:(yv1410, yv1411), :(yv1450, yv1451), cb) -> new_asAs(new_esEs19(yv1410, yv1450, cb), new_esEs13(yv1411, yv1451, cb)) 16.91/6.22 new_esEs23(yv1411, yv1451, ty_Ordering) -> new_esEs10(yv1411, yv1451) 16.91/6.22 new_esEs18(Nothing, Just(yv1450), ce) -> False 16.91/6.22 new_esEs18(Just(yv1410), Nothing, ce) -> False 16.91/6.22 new_esEs14(True, True) -> True 16.91/6.22 new_esEs19(yv1410, yv1450, app(ty_[], gb)) -> new_esEs13(yv1410, yv1450, gb) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), app(app(ty_Either, bca), bcb)) -> new_esEs15(yv1410, yv1450, bca, bcb) 16.91/6.22 new_asAs(False, yv172) -> False 16.91/6.22 new_esEs24(yv1410, yv1450, app(ty_Ratio, beh)) -> new_esEs8(yv1410, yv1450, beh) 16.91/6.22 new_esEs21(yv1410, yv1450, ty_Bool) -> new_esEs14(yv1410, yv1450) 16.91/6.22 new_esEs18(Just(yv1410), Just(yv1450), ty_Ordering) -> new_esEs10(yv1410, yv1450) 16.91/6.22 new_esEs10(LT, LT) -> True 16.91/6.22 new_esEs5(@0, @0) -> True 16.91/6.22 new_esEs23(yv1411, yv1451, app(app(ty_Either, bee), bef)) -> new_esEs15(yv1411, yv1451, bee, bef) 16.91/6.22 new_esEs20(yv1411, yv1451, app(ty_[], hd)) -> new_esEs13(yv1411, yv1451, hd) 16.91/6.22 new_esEs21(yv1410, yv1450, ty_Double) -> new_esEs9(yv1410, yv1450) 16.91/6.22 new_esEs21(yv1410, yv1450, ty_Float) -> new_esEs6(yv1410, yv1450) 16.91/6.22 16.91/6.22 The set Q consists of the following terms: 16.91/6.22 16.91/6.22 new_esEs8(:%(x0, x1), :%(x2, x3), x4) 16.91/6.22 new_esEs25(x0, x1, ty_Int) 16.91/6.22 new_esEs24(x0, x1, ty_Double) 16.91/6.22 new_esEs15(Left(x0), Left(x1), ty_Ordering, x2) 16.91/6.22 new_esEs24(x0, x1, ty_Float) 16.91/6.22 new_esEs4(x0, x1, ty_@0) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, ty_Integer) 16.91/6.22 new_esEs20(x0, x1, ty_Char) 16.91/6.22 new_esEs19(x0, x1, app(ty_[], x2)) 16.91/6.22 new_esEs23(x0, x1, ty_Char) 16.91/6.22 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 16.91/6.22 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 16.91/6.22 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.91/6.22 new_esEs21(x0, x1, ty_Float) 16.91/6.22 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 16.91/6.22 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 16.91/6.22 new_esEs4(x0, x1, ty_Bool) 16.91/6.22 new_primMulNat0(Zero, Zero) 16.91/6.22 new_esEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 16.91/6.22 new_esEs18(Just(x0), Just(x1), ty_Ordering) 16.91/6.22 new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) 16.91/6.22 new_esEs18(Nothing, Just(x0), x1) 16.91/6.22 new_esEs15(Left(x0), Left(x1), ty_Double, x2) 16.91/6.22 new_primPlusNat1(Zero, Zero) 16.91/6.22 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.91/6.22 new_esEs18(Just(x0), Just(x1), ty_Int) 16.91/6.22 new_esEs22(x0, x1, ty_@0) 16.91/6.22 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.91/6.22 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 16.91/6.22 new_esEs21(x0, x1, app(ty_Maybe, x2)) 16.91/6.22 new_esEs13([], [], x0) 16.91/6.22 new_esEs21(x0, x1, ty_Double) 16.91/6.22 new_esEs12(@2(x0, x1), @2(x2, x3), x4, x5) 16.91/6.22 new_esEs10(EQ, EQ) 16.91/6.22 new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 16.91/6.22 new_esEs18(Just(x0), Just(x1), ty_Char) 16.91/6.22 new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 16.91/6.22 new_esEs18(Just(x0), Just(x1), ty_Double) 16.91/6.22 new_esEs22(x0, x1, ty_Bool) 16.91/6.22 new_primEqInt(Pos(Zero), Pos(Zero)) 16.91/6.22 new_primMulNat0(Succ(x0), Zero) 16.91/6.22 new_esEs21(x0, x1, app(ty_Ratio, x2)) 16.91/6.22 new_esEs21(x0, x1, ty_Int) 16.91/6.22 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 16.91/6.22 new_esEs19(x0, x1, ty_Integer) 16.91/6.22 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 16.91/6.22 new_primPlusNat1(Zero, Succ(x0)) 16.91/6.22 new_esEs14(True, True) 16.91/6.22 new_esEs24(x0, x1, ty_Ordering) 16.91/6.22 new_esEs22(x0, x1, app(ty_Maybe, x2)) 16.91/6.22 new_primEqInt(Neg(Zero), Neg(Zero)) 16.91/6.22 new_esEs22(x0, x1, ty_Char) 16.91/6.22 new_esEs24(x0, x1, ty_Int) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 16.91/6.22 new_esEs21(x0, x1, ty_Ordering) 16.91/6.22 new_esEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 16.91/6.22 new_esEs24(x0, x1, app(ty_Ratio, x2)) 16.91/6.22 new_esEs10(LT, LT) 16.91/6.22 new_esEs19(x0, x1, ty_@0) 16.91/6.22 new_esEs11(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 16.91/6.22 new_esEs18(Nothing, Nothing, x0) 16.91/6.22 new_esEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 16.91/6.22 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 16.91/6.22 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 16.91/6.22 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 16.91/6.22 new_esEs26(x0, x1, ty_Integer) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, ty_@0) 16.91/6.22 new_esEs19(x0, x1, app(ty_Ratio, x2)) 16.91/6.22 new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 16.91/6.22 new_esEs22(x0, x1, ty_Integer) 16.91/6.22 new_esEs14(False, True) 16.91/6.22 new_esEs14(True, False) 16.91/6.22 new_esEs24(x0, x1, app(ty_[], x2)) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, ty_Float) 16.91/6.22 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 16.91/6.22 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.91/6.22 new_esEs22(x0, x1, ty_Ordering) 16.91/6.22 new_esEs4(x0, x1, app(ty_Maybe, x2)) 16.91/6.22 new_primMulNat0(Succ(x0), Succ(x1)) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, ty_Bool) 16.91/6.22 new_primEqInt(Pos(Zero), Neg(Zero)) 16.91/6.22 new_primEqInt(Neg(Zero), Pos(Zero)) 16.91/6.22 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.91/6.22 new_esEs4(x0, x1, app(ty_[], x2)) 16.91/6.22 new_esEs15(Left(x0), Left(x1), ty_Integer, x2) 16.91/6.22 new_esEs22(x0, x1, app(ty_Ratio, x2)) 16.91/6.22 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 16.91/6.22 new_esEs23(x0, x1, ty_Ordering) 16.91/6.22 new_esEs9(Double(x0, x1), Double(x2, x3)) 16.91/6.22 new_esEs4(x0, x1, ty_Int) 16.91/6.22 new_esEs6(Float(x0, x1), Float(x2, x3)) 16.91/6.22 new_esEs17(Integer(x0), Integer(x1)) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, ty_Double) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, ty_Int) 16.91/6.22 new_esEs18(Just(x0), Just(x1), ty_Integer) 16.91/6.22 new_esEs20(x0, x1, ty_Ordering) 16.91/6.22 new_asAs(True, x0) 16.91/6.22 new_primPlusNat1(Succ(x0), Succ(x1)) 16.91/6.22 new_primPlusNat0(Zero, x0) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, ty_Char) 16.91/6.22 new_esEs4(x0, x1, ty_Double) 16.91/6.22 new_esEs13(:(x0, x1), :(x2, x3), x4) 16.91/6.22 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 16.91/6.22 new_esEs7(x0, x1) 16.91/6.22 new_esEs4(x0, x1, ty_Char) 16.91/6.22 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.91/6.22 new_esEs13(:(x0, x1), [], x2) 16.91/6.22 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 16.91/6.22 new_esEs23(x0, x1, ty_Integer) 16.91/6.22 new_esEs10(GT, GT) 16.91/6.22 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 16.91/6.22 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 16.91/6.22 new_esEs22(x0, x1, app(ty_[], x2)) 16.91/6.22 new_esEs24(x0, x1, ty_@0) 16.91/6.22 new_esEs4(x0, x1, app(ty_Ratio, x2)) 16.91/6.22 new_esEs24(x0, x1, app(ty_Maybe, x2)) 16.91/6.22 new_esEs24(x0, x1, ty_Bool) 16.91/6.22 new_esEs25(x0, x1, ty_Integer) 16.91/6.22 new_esEs20(x0, x1, app(ty_Ratio, x2)) 16.91/6.22 new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 16.91/6.22 new_esEs10(LT, EQ) 16.91/6.22 new_esEs10(EQ, LT) 16.91/6.22 new_esEs4(x0, x1, ty_Float) 16.91/6.22 new_esEs20(x0, x1, ty_Integer) 16.91/6.22 new_esEs4(x0, x1, ty_Ordering) 16.91/6.22 new_sr(Pos(x0), Neg(x1)) 16.91/6.22 new_sr(Neg(x0), Pos(x1)) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 16.91/6.22 new_sr(Pos(x0), Pos(x1)) 16.91/6.22 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 16.91/6.22 new_esEs23(x0, x1, app(ty_Maybe, x2)) 16.91/6.22 new_esEs19(x0, x1, ty_Double) 16.91/6.22 new_esEs19(x0, x1, app(ty_Maybe, x2)) 16.91/6.22 new_esEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 16.91/6.22 new_esEs15(Left(x0), Right(x1), x2, x3) 16.91/6.22 new_esEs15(Right(x0), Left(x1), x2, x3) 16.91/6.22 new_primPlusNat0(Succ(x0), x1) 16.91/6.22 new_esEs19(x0, x1, ty_Char) 16.91/6.22 new_esEs22(x0, x1, ty_Double) 16.91/6.22 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 16.91/6.22 new_primMulNat0(Zero, Succ(x0)) 16.91/6.22 new_esEs19(x0, x1, ty_Float) 16.91/6.22 new_esEs16(Char(x0), Char(x1)) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 16.91/6.22 new_esEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 16.91/6.22 new_esEs18(Just(x0), Just(x1), ty_Bool) 16.91/6.22 new_esEs21(x0, x1, ty_Integer) 16.91/6.22 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 16.91/6.22 new_esEs19(x0, x1, ty_Int) 16.91/6.22 new_sr(Neg(x0), Neg(x1)) 16.91/6.22 new_esEs5(@0, @0) 16.91/6.22 new_asAs(False, x0) 16.91/6.22 new_esEs21(x0, x1, ty_@0) 16.91/6.22 new_esEs15(Left(x0), Left(x1), ty_Bool, x2) 16.91/6.22 new_esEs19(x0, x1, ty_Ordering) 16.91/6.22 new_esEs20(x0, x1, ty_Float) 16.91/6.22 new_primEqNat0(Zero, Zero) 16.91/6.22 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 16.91/6.22 new_esEs20(x0, x1, ty_Double) 16.91/6.22 new_esEs23(x0, x1, ty_@0) 16.91/6.22 new_esEs4(x0, x1, ty_Integer) 16.91/6.22 new_esEs24(x0, x1, ty_Char) 16.91/6.22 new_esEs20(x0, x1, ty_Bool) 16.91/6.22 new_esEs22(x0, x1, ty_Int) 16.91/6.22 new_esEs26(x0, x1, ty_Int) 16.91/6.22 new_esEs15(Left(x0), Left(x1), ty_Char, x2) 16.91/6.22 new_esEs23(x0, x1, app(ty_Ratio, x2)) 16.91/6.22 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 16.91/6.22 new_esEs24(x0, x1, ty_Integer) 16.91/6.22 new_esEs23(x0, x1, ty_Float) 16.91/6.22 new_primEqNat0(Succ(x0), Zero) 16.91/6.22 new_esEs10(LT, GT) 16.91/6.22 new_esEs10(GT, LT) 16.91/6.22 new_esEs13([], :(x0, x1), x2) 16.91/6.22 new_esEs14(False, False) 16.91/6.22 new_esEs21(x0, x1, app(ty_[], x2)) 16.91/6.22 new_esEs23(x0, x1, ty_Bool) 16.91/6.22 new_primPlusNat1(Succ(x0), Zero) 16.91/6.22 new_esEs21(x0, x1, ty_Char) 16.91/6.22 new_esEs22(x0, x1, ty_Float) 16.91/6.22 new_esEs20(x0, x1, app(ty_Maybe, x2)) 16.91/6.22 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 16.91/6.22 new_esEs18(Just(x0), Just(x1), ty_@0) 16.91/6.22 new_esEs20(x0, x1, ty_Int) 16.91/6.22 new_esEs18(Just(x0), Nothing, x1) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 16.91/6.22 new_esEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 16.91/6.22 new_esEs18(Just(x0), Just(x1), ty_Float) 16.91/6.22 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 16.91/6.22 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, ty_Ordering) 16.91/6.22 new_esEs15(Left(x0), Left(x1), ty_Int, x2) 16.91/6.22 new_esEs23(x0, x1, app(ty_[], x2)) 16.91/6.22 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 16.91/6.22 new_esEs23(x0, x1, ty_Double) 16.91/6.22 new_esEs15(Left(x0), Left(x1), ty_@0, x2) 16.91/6.22 new_esEs19(x0, x1, ty_Bool) 16.91/6.22 new_esEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 16.91/6.22 new_esEs23(x0, x1, ty_Int) 16.91/6.22 new_esEs10(EQ, GT) 16.91/6.22 new_esEs10(GT, EQ) 16.91/6.22 new_esEs21(x0, x1, ty_Bool) 16.91/6.22 new_esEs20(x0, x1, ty_@0) 16.91/6.22 new_primEqNat0(Zero, Succ(x0)) 16.91/6.22 new_esEs15(Left(x0), Left(x1), ty_Float, x2) 16.91/6.22 new_esEs20(x0, x1, app(ty_[], x2)) 16.91/6.22 new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 16.91/6.22 new_primEqNat0(Succ(x0), Succ(x1)) 16.91/6.22 16.91/6.22 We have to consider all minimal (P,Q,R)-chains. 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (10) QDPSizeChangeProof (EQUIVALENT) 16.91/6.22 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. 16.91/6.22 16.91/6.22 From the DPs we obtained the following set of size-change graphs: 16.91/6.22 *new_nubNub'1(yv141, yv142, yv143, yv144, yv145, yv146, ba) -> new_nubNub'10(yv141, yv142, yv143, yv144, new_esEs4(yv141, yv145, ba), yv146, ba) 16.91/6.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 6 >= 6, 7 >= 7 16.91/6.22 16.91/6.22 16.91/6.22 *new_nubNub'(:(yv480, yv481), yv49, yv50, bc) -> new_nubNub'1(yv480, yv481, yv49, yv50, yv49, yv50, bc) 16.91/6.22 The graph contains the following edges 1 > 1, 1 > 2, 2 >= 3, 3 >= 4, 2 >= 5, 3 >= 6, 4 >= 7 16.91/6.22 16.91/6.22 16.91/6.22 *new_nubNub'10(yv154, yv155, yv156, yv157, False, :(yv1590, yv1591), bb) -> new_nubNub'1(yv154, yv155, yv156, yv157, yv1590, yv1591, bb) 16.91/6.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 6 > 5, 6 > 6, 7 >= 7 16.91/6.22 16.91/6.22 16.91/6.22 *new_nubNub'10(yv154, yv155, yv156, yv157, False, [], bb) -> new_nubNub'(yv155, yv154, :(yv156, yv157), bb) 16.91/6.22 The graph contains the following edges 2 >= 1, 1 >= 2, 7 >= 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_nubNub'10(yv154, yv155, yv156, yv157, True, yv159, bb) -> new_nubNub'(yv155, yv156, yv157, bb) 16.91/6.22 The graph contains the following edges 2 >= 1, 3 >= 2, 4 >= 3, 7 >= 4 16.91/6.22 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (11) 16.91/6.22 YES 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (12) 16.91/6.22 Obligation: 16.91/6.22 Q DP problem: 16.91/6.22 The TRS P consists of the following rules: 16.91/6.22 16.91/6.22 new_primMulNat(Succ(yv141000), Succ(yv145100)) -> new_primMulNat(yv141000, Succ(yv145100)) 16.91/6.22 16.91/6.22 R is empty. 16.91/6.22 Q is empty. 16.91/6.22 We have to consider all minimal (P,Q,R)-chains. 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (13) QDPSizeChangeProof (EQUIVALENT) 16.91/6.22 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. 16.91/6.22 16.91/6.22 From the DPs we obtained the following set of size-change graphs: 16.91/6.22 *new_primMulNat(Succ(yv141000), Succ(yv145100)) -> new_primMulNat(yv141000, Succ(yv145100)) 16.91/6.22 The graph contains the following edges 1 > 1, 2 >= 2 16.91/6.22 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (14) 16.91/6.22 YES 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (15) 16.91/6.22 Obligation: 16.91/6.22 Q DP problem: 16.91/6.22 The TRS P consists of the following rules: 16.91/6.22 16.91/6.22 new_primPlusNat(Succ(yv17300), Succ(yv1451000)) -> new_primPlusNat(yv17300, yv1451000) 16.91/6.22 16.91/6.22 R is empty. 16.91/6.22 Q is empty. 16.91/6.22 We have to consider all minimal (P,Q,R)-chains. 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (16) QDPSizeChangeProof (EQUIVALENT) 16.91/6.22 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. 16.91/6.22 16.91/6.22 From the DPs we obtained the following set of size-change graphs: 16.91/6.22 *new_primPlusNat(Succ(yv17300), Succ(yv1451000)) -> new_primPlusNat(yv17300, yv1451000) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2 16.91/6.22 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (17) 16.91/6.22 YES 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (18) 16.91/6.22 Obligation: 16.91/6.22 Q DP problem: 16.91/6.22 The TRS P consists of the following rules: 16.91/6.22 16.91/6.22 new_primEqNat(Succ(yv14100), Succ(yv14500)) -> new_primEqNat(yv14100, yv14500) 16.91/6.22 16.91/6.22 R is empty. 16.91/6.22 Q is empty. 16.91/6.22 We have to consider all minimal (P,Q,R)-chains. 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (19) QDPSizeChangeProof (EQUIVALENT) 16.91/6.22 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. 16.91/6.22 16.91/6.22 From the DPs we obtained the following set of size-change graphs: 16.91/6.22 *new_primEqNat(Succ(yv14100), Succ(yv14500)) -> new_primEqNat(yv14100, yv14500) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2 16.91/6.22 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (20) 16.91/6.22 YES 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (21) 16.91/6.22 Obligation: 16.91/6.22 Q DP problem: 16.91/6.22 The TRS P consists of the following rules: 16.91/6.22 16.91/6.22 new_esEs2(Left(yv1410), Left(yv1450), app(ty_Maybe, bbh), bbb) -> new_esEs3(yv1410, yv1450, bbh) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(ty_[], bh)) -> new_esEs1(yv1412, yv1452, bh) 16.91/6.22 new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(ty_Maybe, baf)) -> new_esEs3(yv1410, yv1450, baf) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(app(app(ty_@3, bc), bd), be)) -> new_esEs(yv1412, yv1452, bc, bd, be) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(ty_Maybe, hd), gf) -> new_esEs3(yv1410, yv1450, hd) 16.91/6.22 new_esEs2(Right(yv1410), Right(yv1450), bca, app(app(ty_@2, bce), bcf)) -> new_esEs0(yv1410, yv1450, bce, bcf) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(app(ty_@2, da), db), cg) -> new_esEs0(yv1411, yv1451, da, db) 16.91/6.22 new_esEs2(Right(yv1410), Right(yv1450), bca, app(app(ty_Either, bch), bda)) -> new_esEs2(yv1410, yv1450, bch, bda) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(ty_[], ed), bb, cg) -> new_esEs1(yv1410, yv1450, ed) 16.91/6.22 new_esEs3(Just(yv1410), Just(yv1450), app(app(ty_Either, bea), beb)) -> new_esEs2(yv1410, yv1450, bea, beb) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(app(app(ty_@3, gc), gd), ge), gf) -> new_esEs(yv1410, yv1450, gc, gd, ge) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(app(ty_@2, fd), ff)) -> new_esEs0(yv1411, yv1451, fd, ff) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(ty_Maybe, gb)) -> new_esEs3(yv1411, yv1451, gb) 16.91/6.22 new_esEs2(Left(yv1410), Left(yv1450), app(ty_[], bbe), bbb) -> new_esEs1(yv1410, yv1450, bbe) 16.91/6.22 new_esEs2(Right(yv1410), Right(yv1450), bca, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs(yv1410, yv1450, bcb, bcc, bcd) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(ty_[], dc), cg) -> new_esEs1(yv1411, yv1451, dc) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(app(ty_Either, fh), ga)) -> new_esEs2(yv1411, yv1451, fh, ga) 16.91/6.22 new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs(yv1410, yv1450, hf, hg, hh) 16.91/6.22 new_esEs3(Just(yv1410), Just(yv1450), app(ty_Maybe, bec)) -> new_esEs3(yv1410, yv1450, bec) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(ty_[], ha), gf) -> new_esEs1(yv1410, yv1450, ha) 16.91/6.22 new_esEs3(Just(yv1410), Just(yv1450), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(yv1410, yv1450, bdc, bdd, bde) 16.91/6.22 new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(app(ty_Either, bad), bae)) -> new_esEs2(yv1410, yv1450, bad, bae) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(app(app(ty_@3, cd), ce), cf), cg) -> new_esEs(yv1411, yv1451, cd, ce, cf) 16.91/6.22 new_esEs3(Just(yv1410), Just(yv1450), app(ty_[], bdh)) -> new_esEs1(yv1410, yv1450, bdh) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(app(ty_Either, ca), cb)) -> new_esEs2(yv1412, yv1452, ca, cb) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(ty_[], fg)) -> new_esEs1(yv1411, yv1451, fg) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(app(ty_@2, bf), bg)) -> new_esEs0(yv1412, yv1452, bf, bg) 16.91/6.22 new_esEs2(Left(yv1410), Left(yv1450), app(app(ty_Either, bbf), bbg), bbb) -> new_esEs2(yv1410, yv1450, bbf, bbg) 16.91/6.22 new_esEs2(Right(yv1410), Right(yv1450), bca, app(ty_[], bcg)) -> new_esEs1(yv1410, yv1450, bcg) 16.91/6.22 new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(app(ty_@2, baa), bab)) -> new_esEs0(yv1410, yv1450, baa, bab) 16.91/6.22 new_esEs3(Just(yv1410), Just(yv1450), app(app(ty_@2, bdf), bdg)) -> new_esEs0(yv1410, yv1450, bdf, bdg) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(app(ty_Either, dd), de), cg) -> new_esEs2(yv1411, yv1451, dd, de) 16.91/6.22 new_esEs2(Right(yv1410), Right(yv1450), bca, app(ty_Maybe, bdb)) -> new_esEs3(yv1410, yv1450, bdb) 16.91/6.22 new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), he) -> new_esEs1(yv1411, yv1451, he) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(app(app(ty_@3, dg), dh), ea), bb, cg) -> new_esEs(yv1410, yv1450, dg, dh, ea) 16.91/6.22 new_esEs2(Left(yv1410), Left(yv1450), app(app(ty_@2, bbc), bbd), bbb) -> new_esEs0(yv1410, yv1450, bbc, bbd) 16.91/6.22 new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(ty_[], bac)) -> new_esEs1(yv1410, yv1450, bac) 16.91/6.22 new_esEs2(Left(yv1410), Left(yv1450), app(app(app(ty_@3, bag), bah), bba), bbb) -> new_esEs(yv1410, yv1450, bag, bah, bba) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(ty_Maybe, cc)) -> new_esEs3(yv1412, yv1452, cc) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(ty_Maybe, df), cg) -> new_esEs3(yv1411, yv1451, df) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(app(ty_Either, ee), ef), bb, cg) -> new_esEs2(yv1410, yv1450, ee, ef) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(app(ty_@2, gg), gh), gf) -> new_esEs0(yv1410, yv1450, gg, gh) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(app(ty_Either, hb), hc), gf) -> new_esEs2(yv1410, yv1450, hb, hc) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(app(ty_@2, eb), ec), bb, cg) -> new_esEs0(yv1410, yv1450, eb, ec) 16.91/6.22 new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs(yv1411, yv1451, fa, fb, fc) 16.91/6.22 new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(ty_Maybe, eg), bb, cg) -> new_esEs3(yv1410, yv1450, eg) 16.91/6.22 16.91/6.22 R is empty. 16.91/6.22 Q is empty. 16.91/6.22 We have to consider all minimal (P,Q,R)-chains. 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (22) QDPSizeChangeProof (EQUIVALENT) 16.91/6.22 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. 16.91/6.22 16.91/6.22 From the DPs we obtained the following set of size-change graphs: 16.91/6.22 *new_esEs3(Just(yv1410), Just(yv1450), app(app(ty_Either, bea), beb)) -> new_esEs2(yv1410, yv1450, bea, beb) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs3(Just(yv1410), Just(yv1450), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs(yv1410, yv1450, bdc, bdd, bde) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(app(ty_Either, bad), bae)) -> new_esEs2(yv1410, yv1450, bad, bae) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs(yv1410, yv1450, hf, hg, hh) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs3(Just(yv1410), Just(yv1450), app(ty_[], bdh)) -> new_esEs1(yv1410, yv1450, bdh) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs3(Just(yv1410), Just(yv1450), app(app(ty_@2, bdf), bdg)) -> new_esEs0(yv1410, yv1450, bdf, bdg) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs3(Just(yv1410), Just(yv1450), app(ty_Maybe, bec)) -> new_esEs3(yv1410, yv1450, bec) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(app(ty_@2, baa), bab)) -> new_esEs0(yv1410, yv1450, baa, bab) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(ty_Maybe, baf)) -> new_esEs3(yv1410, yv1450, baf) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(app(ty_Either, ca), cb)) -> new_esEs2(yv1412, yv1452, ca, cb) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(app(ty_Either, dd), de), cg) -> new_esEs2(yv1411, yv1451, dd, de) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(app(ty_Either, ee), ef), bb, cg) -> new_esEs2(yv1410, yv1450, ee, ef) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(app(ty_Either, fh), ga)) -> new_esEs2(yv1411, yv1451, fh, ga) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(app(ty_Either, hb), hc), gf) -> new_esEs2(yv1410, yv1450, hb, hc) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Right(yv1410), Right(yv1450), bca, app(app(ty_Either, bch), bda)) -> new_esEs2(yv1410, yv1450, bch, bda) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Left(yv1410), Left(yv1450), app(app(ty_Either, bbf), bbg), bbb) -> new_esEs2(yv1410, yv1450, bbf, bbg) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), he) -> new_esEs1(yv1411, yv1451, he) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs1(:(yv1410, yv1411), :(yv1450, yv1451), app(ty_[], bac)) -> new_esEs1(yv1410, yv1450, bac) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(app(app(ty_@3, bc), bd), be)) -> new_esEs(yv1412, yv1452, bc, bd, be) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(app(app(ty_@3, cd), ce), cf), cg) -> new_esEs(yv1411, yv1451, cd, ce, cf) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(app(app(ty_@3, dg), dh), ea), bb, cg) -> new_esEs(yv1410, yv1450, dg, dh, ea) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(app(app(ty_@3, gc), gd), ge), gf) -> new_esEs(yv1410, yv1450, gc, gd, ge) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs(yv1411, yv1451, fa, fb, fc) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Right(yv1410), Right(yv1450), bca, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs(yv1410, yv1450, bcb, bcc, bcd) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Left(yv1410), Left(yv1450), app(app(app(ty_@3, bag), bah), bba), bbb) -> new_esEs(yv1410, yv1450, bag, bah, bba) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(ty_[], bh)) -> new_esEs1(yv1412, yv1452, bh) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(ty_[], ed), bb, cg) -> new_esEs1(yv1410, yv1450, ed) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(ty_[], dc), cg) -> new_esEs1(yv1411, yv1451, dc) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(ty_[], ha), gf) -> new_esEs1(yv1410, yv1450, ha) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(ty_[], fg)) -> new_esEs1(yv1411, yv1451, fg) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Left(yv1410), Left(yv1450), app(ty_[], bbe), bbb) -> new_esEs1(yv1410, yv1450, bbe) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Right(yv1410), Right(yv1450), bca, app(ty_[], bcg)) -> new_esEs1(yv1410, yv1450, bcg) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(app(ty_@2, da), db), cg) -> new_esEs0(yv1411, yv1451, da, db) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(app(ty_@2, bf), bg)) -> new_esEs0(yv1412, yv1452, bf, bg) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(app(ty_@2, eb), ec), bb, cg) -> new_esEs0(yv1410, yv1450, eb, ec) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, bb, app(ty_Maybe, cc)) -> new_esEs3(yv1412, yv1452, cc) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), ba, app(ty_Maybe, df), cg) -> new_esEs3(yv1411, yv1451, df) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs(@3(yv1410, yv1411, yv1412), @3(yv1450, yv1451, yv1452), app(ty_Maybe, eg), bb, cg) -> new_esEs3(yv1410, yv1450, eg) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(app(ty_@2, fd), ff)) -> new_esEs0(yv1411, yv1451, fd, ff) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(app(ty_@2, gg), gh), gf) -> new_esEs0(yv1410, yv1450, gg, gh) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Right(yv1410), Right(yv1450), bca, app(app(ty_@2, bce), bcf)) -> new_esEs0(yv1410, yv1450, bce, bcf) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Left(yv1410), Left(yv1450), app(app(ty_@2, bbc), bbd), bbb) -> new_esEs0(yv1410, yv1450, bbc, bbd) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), app(ty_Maybe, hd), gf) -> new_esEs3(yv1410, yv1450, hd) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs0(@2(yv1410, yv1411), @2(yv1450, yv1451), eh, app(ty_Maybe, gb)) -> new_esEs3(yv1411, yv1451, gb) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Left(yv1410), Left(yv1450), app(ty_Maybe, bbh), bbb) -> new_esEs3(yv1410, yv1450, bbh) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 16.91/6.22 16.91/6.22 16.91/6.22 *new_esEs2(Right(yv1410), Right(yv1450), bca, app(ty_Maybe, bdb)) -> new_esEs3(yv1410, yv1450, bdb) 16.91/6.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 16.91/6.22 16.91/6.22 16.91/6.22 ---------------------------------------- 16.91/6.22 16.91/6.22 (23) 16.91/6.22 YES 16.91/6.26 EOF